/* eweb.ai content landing — match live hero chrome */
:root {
  --bg-hero: #0b0b17;
  --bg-content: #000000;
  --glow-a: #28245f;
  --glow-b: #34307a;
  --accent: #635ee7;
  --accent-hover: #7570f0;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.62);
  --text-dim: rgba(255, 255, 255, 0.45);
  --panel: #121218;
  --panel-border: rgba(255, 255, 255, 0.08);
  --chip-bg: rgba(255, 255, 255, 0.06);
  --chip-border: rgba(255, 255, 255, 0.1);
  --card-bg: #0d0d12;
  --card-border: rgba(255, 255, 255, 0.08);
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --font-ui: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "DM Sans", Inter, system-ui, sans-serif;
  --max: 1120px;
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  background: var(--bg-content);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }

/* ——— Nav ——— */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: transparent;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.nav-brand .dot { color: var(--accent); }
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 28px;
}
.nav-center a,
.nav-right a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.nav-center a:hover,
.nav-right a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 48px) 24px 80px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 35% 40%, rgba(52, 48, 122, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 55% 45%, rgba(40, 36, 95, 0.7) 0%, transparent 60%),
    linear-gradient(135deg, #15122a 0%, #0b0b17 45%, #080812 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 42% 48%, rgba(99, 94, 231, 0.12), transparent 42%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
}
.hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.hero .sub {
  margin: 0 0 36px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  font-weight: 400;
}

/* Prompt panel */
.prompt {
  background: #0e0e14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 18px 18px 14px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: left;
}
.prompt textarea {
  width: 100%;
  min-height: 88px;
  resize: none;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
  padding: 4px 6px 12px;
}
.prompt textarea::placeholder { color: rgba(255, 255, 255, 0.38); }
.prompt-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.15s ease, transform 0.1s ease;
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.1); }
.icon-btn.send {
  background: var(--accent);
  color: #fff;
}
.icon-btn.send:hover { background: var(--accent-hover); }
.icon-btn.send:disabled {
  opacity: 0.45;
  cursor: default;
}
.icon-btn svg { width: 18px; height: 18px; }

.palette-pill {
  margin: 16px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
}
.palette-pill svg { width: 16px; height: 16px; opacity: 0.8; }
.palette-pill .chev { opacity: 0.55; }

.chips {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.chip {
  appearance: none;
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  padding: 9px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.chip:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ——— Shared sections ——— */
.section {
  padding: 96px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.section-narrow { max-width: 820px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.section h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.lead {
  margin: 0 0 40px;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 62ch;
}
.lead.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Two pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 30px;
}
.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(99, 94, 231, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pillar-icon svg { width: 20px; height: 20px; }
.pillar h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.pillar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* See Own Decide Do */
.arc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.arc-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 26px 26px 28px;
  position: relative;
}
.arc-step {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.arc-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.arc-card .practice {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.arc-card .product {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}
.arc-card .product strong {
  color: var(--text);
  font-weight: 600;
}

/* Product today */
.feature-blocks {
  display: grid;
  gap: 16px;
}
.feature-block {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}
.feature-block h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.feature-block p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.feature-block ul {
  margin: 10px 0 0;
  padding-left: 1.15em;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.feature-block li { margin: 4px 0; }
.placeholder-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.shot {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(99, 94, 231, 0.08), transparent 50%),
    #0a0a10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}

/* Honest */
.honest {
  background: rgba(99, 94, 231, 0.06);
  border: 1px solid rgba(99, 94, 231, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
}
.honest h2 { margin-bottom: 12px; font-size: 1.35rem; }
.honest p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* CTA */
.cta {
  text-align: center;
  padding: 100px 24px 110px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99, 94, 231, 0.18), transparent 60%),
    #000;
}
.cta h2 { margin-bottom: 12px; }
.cta-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}
.btn-secondary:hover { border-color: rgba(255, 255, 255, 0.3); }

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 24px 40px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 13px;
}
.footer a:hover { color: var(--text-muted); }

@media (max-width: 800px) {
  .nav-center { display: none; }
  .pillars, .arc-grid, .placeholder-shots { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 64px); padding-bottom: 64px; }
  .section { padding: 72px 20px; }
}


.product-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.product-shot {
  margin: 0;
  background: #0a0a12;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.product-shot figcaption {
  padding: 12px 14px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
@media (max-width: 960px) {
  .product-shots { grid-template-columns: 1fr; }
}

/* Variant extras */
.gallery-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 36px;
}
.gallery-hero .product-shot {
  margin: 0;
  background: #0a0a12;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
}
.gallery-hero .product-shot img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-hero .product-shot figcaption {
  padding: 14px 18px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.day-steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.day-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.day-step .n {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 4px;
}
.day-step h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
.day-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.outcome-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 24px 26px;
}
.outcome-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.outcome-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}
.outcome-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .outcome-grid { grid-template-columns: 1fr; }
  .day-step { grid-template-columns: 1fr; gap: 6px; }
}
.secure-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.secure-list li {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  color: var(--text-muted);
  font-size: 0.98rem;
}
.secure-list strong {
  display: block;
  color: #fff;
  font-weight: 650;
  margin-bottom: 4px;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

/* Tenants strip */
.tenants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.tenant {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 22px 26px;
  position: relative;
  overflow: hidden;
}
.tenant::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.tenant .n {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.tenant h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}
.tenant p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}
@media (max-width: 900px) {
  .tenants { grid-template-columns: 1fr; }
}

/* Hero primary CTA under prompt */
.hero-cta-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.hero-cta-row .btn-primary {
  min-width: 180px;
  padding: 14px 28px;
  font-size: 16px;
  box-shadow: 0 0 0 1px rgba(99, 94, 231, 0.35), 0 10px 40px rgba(99, 94, 231, 0.25);
}
.hero-cta-row .btn-ghost {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
}
.hero-cta-row .btn-ghost:hover { color: var(--text); }
