/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --plum:    #7D3457;
  --plum-l:  #A45878;
  --plum-d:  #5A2240;
  --gold:    #B08040;
  --gold-l:  #CCA060;
  --gold-d:  #8A6030;
  --cream:   #FAF7F4;
  --cream-d: #EDE0D4;
  --cream-dd:#D8C8BC;
  --dark:    #1C1018;
  --dark-l:  #2E1A28;
  --dark-ll: #442038;
  --muted:   #8A6878;
  --muted-l: #B090A0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom cursor ────────────────────────────────────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s, opacity .2s;
  mix-blend-mode: normal;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(176,128,64,.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .12s ease-out, width .2s, height .2s, border-color .2s;
}
body:has(a:hover) .cursor, body:has(button:hover) .cursor { width:6px; height:6px; background:var(--gold-l); }
body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { width:56px; height:56px; border-color:rgba(176,128,64,.3); }

/* ── Grain overlay ────────────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .028;
  pointer-events: none;
  z-index: 1000;
}

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes slideRight {
  from { transform:scaleX(0); }
  to   { transform:scaleX(1); }
}
@keyframes floatArch {
  0%,100% { transform:translateY(0) rotate(-2deg); }
  50%      { transform:translateY(-18px) rotate(-2deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-ring {
  0%   { transform:scale(1); opacity:.6; }
  100% { transform:scale(1.8); opacity:0; }
}
@keyframes countUp { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
@keyframes spin { to { transform:rotate(360deg); } }

/* ── NAV ──────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(28,16,24,.95) 0%, transparent 100%);
  backdrop-filter: blur(0px);
  transition: backdrop-filter .3s, background .3s;
}
nav.scrolled {
  backdrop-filter: blur(16px);
  background: rgba(28,16,24,.88);
  border-bottom: 1px solid rgba(176,128,64,.12);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500;
  letter-spacing: 3px;
  color: var(--cream);
}
.nav-wordmark .ai { color: var(--gold-l); }
.nav-right { display:flex; align-items:center; gap:28px; }
.nav-link {
  font-size: 12px; color: var(--muted-l); text-decoration: none;
  letter-spacing: .5px;
  transition: color .2s;
}
.nav-link:hover { color: var(--cream); }
.nav-btn {
  background: transparent;
  border: 1px solid rgba(176,128,64,.4);
  color: var(--gold-l);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 12px; font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: none;
  letter-spacing: .4px;
  transition: all .2s;
}
.nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 48px 60px;
  gap: 40px;
}

/* Background radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 100vh;
  background: radial-gradient(ellipse at center, rgba(125,52,87,.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Diagonal lines */
.hero-lines {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-lines::before {
  content: '';
  position: absolute; inset: -100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 58px,
    rgba(176,128,64,.03) 58px,
    rgba(176,128,64,.03) 59px
  );
}

/* Hero left */
.hero-left {
  position: relative; z-index: 2;
  animation: fadeUp .9s ease both;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  animation: fadeUp .9s .1s ease both;
}
.eyebrow-line {
  width: 36px; height: 1px;
  background: var(--gold);
  transform-origin: left;
  animation: slideRight .8s .4s ease both;
}
.eyebrow-text {
  font-size: 10px; letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--cream);
  margin-bottom: 28px;
  animation: fadeUp .9s .15s ease both;
}
.hero-h1 em {
  font-style: italic;
  color: var(--plum-l);
}
.hero-h1 .gold-word {
  color: var(--gold-l);
  font-style: normal;
}

.hero-sub {
  font-size: 16px; color: var(--muted-l);
  line-height: 1.75; font-weight: 300;
  max-width: 440px;
  margin-bottom: 44px;
  animation: fadeUp .9s .22s ease both;
}

/* Waitlist form */
.waitlist-form {
  animation: fadeUp .9s .3s ease both;
}
.form-label {
  font-size: 11px; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 12px; display: block;
}
.form-row {
  display: flex; gap: 8px;
  margin-bottom: 14px;
}
.input-wrap {
  position: relative; flex: 1;
}
.input-wrap input {
  width: 100%;
  background: rgba(250,247,244,.06);
  border: 1px solid rgba(176,128,64,.2);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .2s, background .2s;
}
.input-wrap input::placeholder { color: var(--muted); }
.input-wrap input:focus {
  border-color: rgba(176,128,64,.5);
  background: rgba(250,247,244,.09);
}
.form-names { display:flex; gap:8px; margin-bottom:8px; }
.form-names .input-wrap { flex:1; }

.submit-btn {
  background: var(--plum);
  color: var(--cream);
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 14px; font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: none;
  white-space: nowrap;
  position: relative; overflow: hidden;
  transition: background .2s, transform .15s;
}
.submit-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  background-size: 200% 100%;
  animation: shimmer 2.4s infinite;
}
.submit-btn:hover { background: var(--plum-l); transform: translateY(-1px); }
.submit-btn:active { transform: translateY(0); }
.submit-btn.loading { pointer-events: none; }
.submit-btn.loading .btn-text { opacity:0; }
.submit-btn .btn-spinner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
}
.submit-btn.loading .btn-spinner { opacity:1; }
.spinner-ring {
  width: 18px; height: 18px;
  border: 2px solid rgba(250,247,244,.3);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.form-sub {
  font-size: 11px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.form-sub svg { opacity: .5; }

/* Success state */
.success-state {
  display: none;
  animation: fadeUp .5s ease both;
}
.success-state.visible { display: block; }
.waitlist-form.submitted { display: none; }
.success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(29,158,117,.15);
  border: 1px solid rgba(29,158,117,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.success-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400;
  color: var(--cream); margin-bottom: 8px;
}
.success-sub { font-size: 14px; color: var(--muted-l); line-height: 1.6; }
/* Social proof */
.hero-social {
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px;
  animation: fadeUp .9s .38s ease both;
}

/* Live dot */
.live-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(29,158,117,.1);
  border: 1px solid rgba(29,158,117,.25);
  border-radius: 40px;
  padding: 5px 12px;
  font-size: 11px; color: #9FE1CB;
  position: relative;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #1D9E75;
  position: relative;
}
.live-dot::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1px solid #1D9E75;
  animation: pulse-ring 1.8s ease-out infinite;
}

/* ── HERO RIGHT — Arch visual ─────────────────────────────────────────────── */
.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 1.2s .4s ease both;
}
.arch-visual {
  position: relative;
  width: 380px; height: 440px;
}
.arch-svg-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  animation: floatArch 6s ease-in-out infinite;
}
.arch-glow {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125,52,87,.35) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

/* Floating stat cards */
.float-card {
  position: absolute;
  background: rgba(28,16,24,.88);
  border: 1px solid rgba(176,128,64,.2);
  border-radius: 14px;
  padding: 12px 16px;
  backdrop-filter: blur(12px);
  animation: fadeUp 1s ease both;
  white-space: nowrap;
}
.fc-1 { top: 30px; left: -40px; animation-delay: .7s; }
.fc-2 { bottom: 80px; right: -30px; animation-delay: .9s; }
.fc-3 { bottom: 30px; left: 10px; animation-delay: 1.1s; }
.fc-label { font-size: 9px; text-transform:uppercase; letter-spacing:.5px; color:var(--muted); margin-bottom:3px; font-weight:500; }
.fc-value { font-size: 20px; font-weight:500; color:var(--cream); font-family:'Cormorant Garamond',serif; }
.fc-sub { font-size: 10px; color:var(--muted-l); margin-top:2px; }
.fc-dot { width:7px; height:7px; border-radius:50%; background:#1D9E75; display:inline-block; margin-right:5px; }

/* ── DIVIDER STRIP ───────────────────────────────────────────────────────── */
.strip {
  background: var(--dark-l);
  border-top: 1px solid rgba(176,128,64,.12);
  border-bottom: 1px solid rgba(176,128,64,.12);
  padding: 18px 48px;
  overflow: hidden;
}
.strip-inner {
  display: flex; gap: 0; align-items: center;
  animation: none;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 36px;
  border-right: 1px solid rgba(176,128,64,.15);
  flex-shrink: 0;
}
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child  { border-right: none; }
.strip-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(125,52,87,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.strip-text strong { display:block; font-size:13px; color:var(--cream); font-weight:500; margin-bottom:1px; }
.strip-text span   { font-size:11px; color:var(--muted-l); }

/* ── HOW IT WORKS ─────────────────────────────────────────────────────────── */
.how-section {
  padding: 100px 48px;
  position: relative;
}
.how-section::before {
  content: '';
  position: absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(176,128,64,.2), transparent);
}
.section-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end;
  margin-bottom: 64px;
}
.section-tag {
  font-size: 10px; letter-spacing:3px; text-transform:uppercase;
  color: var(--gold); font-weight:500; margin-bottom:14px;
}
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 400; line-height: 1.12;
  color: var(--cream);
}
.section-h2 em { font-style:italic; color:var(--plum-l); }
.section-sub {
  font-size: 15px; color:var(--muted-l); line-height:1.7;
  font-weight:300; max-width:400px; align-self:end;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.step-card {
  padding: 36px 32px;
  position: relative;
  background: rgba(250,247,244,.02);
  border: 1px solid rgba(176,128,64,.08);
  transition: background .25s, border-color .25s;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute; inset:0;
  background: linear-gradient(135deg, rgba(125,52,87,.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.step-card:hover { background: rgba(250,247,244,.04); border-color: rgba(176,128,64,.18); }
.step-card:hover::before { opacity:1; }
.step-card.dark-card { background: rgba(125,52,87,.08); border-color: rgba(125,52,87,.2); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight:300;
  color: rgba(176,128,64,.2);
  line-height:1; margin-bottom:20px;
}
.step-icon {
  width: 40px; height:40px;
  border-radius:10px;
  background: rgba(125,52,87,.2);
  border: 1px solid rgba(125,52,87,.3);
  display: flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.step-title {
  font-size:16px; font-weight:500; color:var(--cream);
  margin-bottom:10px; line-height:1.3;
}
.step-body {
  font-size:13px; color:var(--muted-l); line-height:1.65; font-weight:300;
}
.step-tag {
  position:absolute; top:20px; right:18px;
  font-size:9px; padding:3px 9px;
  border-radius:10px; font-weight:500;
  text-transform:uppercase; letter-spacing:.4px;
}
.tag-ai   { background:rgba(125,52,87,.2); color:var(--plum-l); }
.tag-auto { background:rgba(176,128,64,.15); color:var(--gold-l); }

/* ── COMPARISON ──────────────────────────────────────────────────────────── */
.comparison-section {
  padding: 80px 48px;
  background: var(--dark-l);
  border-top: 1px solid rgba(176,128,64,.08);
  border-bottom: 1px solid rgba(176,128,64,.08);
}
.comp-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  align-items: start;
  max-width: 820px; margin: 0 auto;
}
.comp-col {
  padding: 32px;
  border-radius: 16px;
}
.comp-col.everyone { background: rgba(250,247,244,.03); border: 1px solid rgba(250,247,244,.06); }
.comp-col.aisle    { background: rgba(125,52,87,.12);   border: 1px solid rgba(125,52,87,.25); position:relative; }
.comp-col.aisle::before {
  content: 'Aisle';
  position: absolute; top:-12px; left:50%; transform:translateX(-50%);
  background: var(--plum); color:var(--cream);
  font-size:11px; font-weight:500; padding:4px 14px;
  border-radius:10px; letter-spacing:.5px;
}
.comp-divider {
  display: flex; align-items: center; justify-content: center;
  padding-top: 100px;
  font-size: 18px; color: var(--muted);
}
.comp-header {
  font-size:12px; font-weight:500; letter-spacing:.5px; text-transform:uppercase;
  color:var(--muted); margin-bottom:24px;
}
.comp-item {
  display: flex; align-items:flex-start; gap:10px;
  padding: 9px 0; border-bottom: 1px solid rgba(250,247,244,.05);
  font-size: 13px; line-height:1.4;
}
.comp-item:last-child { border-bottom:none; }
.comp-item .ci-icon { font-size:13px; flex-shrink:0; margin-top:1px; }
.comp-item .ci-text { color:var(--muted-l); }
.everyone .ci-icon { opacity:.4; }
.aisle .ci-text    { color:var(--cream); }
.comp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 46px); font-weight:400;
  color:var(--cream); margin-bottom:12px; text-align:center;
}
.comp-title em { font-style:italic; color:var(--plum-l); }
.comp-sub { font-size:14px; color:var(--muted-l); text-align:center; line-height:1.7; margin-bottom:48px; }

/* ── BOTTOM CTA ──────────────────────────────────────────────────────────── */
.cta-section {
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content:'';
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:600px; height:600px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(125,52,87,.2) 0%, transparent 70%);
  pointer-events:none;
}
.cta-tag { font-size:10px; letter-spacing:3px; color:var(--gold); text-transform:uppercase; margin-bottom:16px; font-weight:500; }
.cta-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px,4.5vw,66px); font-weight:400;
  color:var(--cream); line-height:1.08;
  margin-bottom:20px;
}
.cta-h2 em { font-style:italic; color:var(--plum-l); }
.cta-sub { font-size:15px; color:var(--muted-l); line-height:1.7; max-width:460px; margin:0 auto 44px; font-weight:300; }
.cta-form {
  display:flex; gap:8px; max-width:460px; margin:0 auto;
}
.cta-form input {
  flex:1;
  background:rgba(250,247,244,.07);
  border:1px solid rgba(176,128,64,.25);
  border-radius:12px;
  padding:14px 18px;
  font-size:14px; color:var(--cream);
  font-family:'DM Sans',sans-serif;
  outline:none;
  transition:border-color .2s;
}
.cta-form input::placeholder { color:var(--muted); }
.cta-form input:focus { border-color:rgba(176,128,64,.5); }
.cta-submit {
  background:var(--plum);
  color:var(--cream);
  border:none; border-radius:12px;
  padding:14px 24px;
  font-size:14px; font-weight:500;
  font-family:'DM Sans',sans-serif;
  cursor:none;
  transition:all .2s;
  white-space:nowrap;
}
.cta-submit:hover { background:var(--plum-l); transform:translateY(-1px); }
.cta-note { font-size:11px; color:var(--muted); margin-top:12px; }
.cta-form-vendor { max-width:520px; margin:0 auto; }
.cta-form-row {
  display:flex; gap:8px; margin-bottom:8px;
}
.cta-form-row input {
  flex:1;
  background:rgba(250,247,244,.07);
  border:1px solid rgba(176,128,64,.25);
  border-radius:12px;
  padding:14px 18px;
  font-size:14px; color:var(--cream);
  font-family:'DM Sans',sans-serif;
  outline:none;
  transition:border-color .2s;
}
.cta-form-row input::placeholder { color:var(--muted); }
.cta-form-row input:focus { border-color:rgba(176,128,64,.5); }
.cta-form-vendor .cta-submit { width:100%; margin-top:0; }
.cta-success {
  display:none;
  font-size:14px; color:#9FE1CB;
  padding:14px;
}
.cta-success.show { display:block; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(176,128,64,.1);
  display: flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:16px;
}
.footer-logo {
  font-family:'Cormorant Garamond',serif;
  font-size:18px; font-weight:500; letter-spacing:3px; color:var(--cream);
}
.footer-logo .ai { color:var(--gold-l); }
.footer-links { display:flex; gap:24px; flex-wrap:wrap; }
.footer-links a { font-size:11px; color:var(--muted); text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:var(--cream); }
.footer-copy { font-size:11px; color:var(--muted); }

/* ── Scroll reveal ───────────────────────────────────────────────────────── */
.reveal {
  opacity:0; transform:translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  nav { padding:16px 24px; }
  .nav-right .nav-link { display:none; }
  .hero { grid-template-columns:1fr; padding:90px 24px 48px; gap:32px; min-height:auto; }
  .hero-right { display:none; }
  .strip { padding:16px 24px; overflow-x:auto; }
  .strip-inner { min-width:600px; }
  .how-section, .comparison-section, .cta-section { padding:64px 24px; }
  .section-intro { grid-template-columns:1fr; gap:16px; }
  .steps-grid { grid-template-columns:1fr; gap:2px; }
  .comp-grid { grid-template-columns:1fr; gap:16px; }
  .comp-divider { display:none; }
  .cta-form { flex-direction:column; }
  .cta-form-row { flex-direction:column; }
  footer { flex-direction:column; align-items:flex-start; padding:24px; }
  .cursor, .cursor-ring { display:none; }
  body { cursor:auto; }
  .submit-btn, .cta-submit, .pc-btn, .nav-btn { cursor:pointer; }
}
