:root {
  --bg: #faf8f4;
  --bg-alt: #f2ede5;
  --fg: #1a1520;
  --fg-muted: #5c5470;
  --accent: #c8973e;
  --accent-light: #f5e8cc;
  --accent-dark: #a07820;
  --plum: #4a2040;
  --plum-light: #6b3060;
  --border: #e0d8cc;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* — NAV — */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 64px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--fg);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--plum);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* — HERO — */
.hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: auto auto;
  gap: 0 64px;
  padding: 80px 64px 100px;
  min-height: 80vh;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  pointer-events: none;
}
.hero-deco {
  position: absolute;
  top: 60px;
  left: 64px;
  width: 500px;
  height: 400px;
  pointer-events: none;
}
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.25;
}
.ring-1 { width: 120px; height: 120px; top: 0; left: 0; }
.ring-2 { width: 220px; height: 220px; top: -30px; left: -30px; opacity: 0.15; }
.ring-3 { width: 340px; height: 340px; top: -60px; left: -60px; opacity: 0.08; border-style: dashed; }
.deco-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.dot-1 { top: 40px; left: 200px; }
.dot-2 { top: 120px; left: 300px; width: 12px; height: 12px; }
.dot-3 { top: 80px; left: 400px; width: 6px; height: 6px; }
.deco-lines .line {
  position: absolute;
  background: var(--accent);
  opacity: 0.2;
}
.l1 { width: 2px; height: 80px; top: 200px; left: 100px; }
.l2 { width: 60px; height: 2px; top: 150px; left: 200px; }
.l3 { width: 2px; height: 50px; top: 280px; left: 350px; }
.hero-content { grid-column: 1; grid-row: 1 / 3; padding-left: 80px; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--plum);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.stat-divider { width: 1px; height: 48px; background: var(--border); }
.hero-aside {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: end;
}
.proBadge {
  background: var(--plum);
  color: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proLabel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
}
.proSub { font-size: 13px; opacity: 0.75; }
.launchTag {
  background: var(--accent);
  color: var(--white);
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

/* — VISION — */
.vision { padding: 100px 64px; background: var(--bg-alt); }
.vision-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 48px;
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.vision-card {
  padding: 48px 40px;
  background: var(--bg);
}
.vision-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--plum);
}
.vision-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.8; }

/* — PILLARS — */
.pillars { padding: 100px 64px; }
.pillars-header { max-width: 540px; margin-bottom: 64px; }
.pillars-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.pillars-header p { font-size: 16px; color: var(--fg-muted); }
.pillars-list { display: flex; flex-direction: column; gap: 0; }
.pillar {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.pillar:first-child { border-top: 1px solid var(--border); }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.pillar-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pillar-body p { font-size: 16px; color: var(--fg-muted); max-width: 600px; line-height: 1.8; }

/* — PRODUCT — */
.product { padding: 100px 64px; background: var(--plum); color: var(--white); }
.product-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.product h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 48px;
}
.product-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.product-screen {
  background: var(--plum-light);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.screen-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-light);
}
.screen-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.product-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

/* — ROADMAP — */
.roadmap { padding: 100px 64px; background: var(--bg-alt); }
.roadmap-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.roadmap-intro {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 64px;
}
.roadmap-items { display: flex; flex-direction: column; gap: 0; }
.roadmap-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.roadmap-item:first-child { border-top: 1px solid var(--border); }
.roadmap-period {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 4px;
}
.roadmap-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
.roadmap-body p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; max-width: 520px; }
.roadmap-badge {
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  white-space: nowrap;
}

/* — CLOSING — */
.closing {
  padding: 120px 64px;
  background: var(--fg);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,151,62,0.15) 0%, transparent 70%);
}
.closing-deco {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  position: relative;
}
.closing-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 20px;
}
.closing-dots {
  display: grid;
  grid-template-columns: repeat(3, 8px);
  gap: 16px;
  position: absolute;
  top: 60px;
  left: 60px;
}
.closing-dots div {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}
.closing-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.closing-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.closing-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--fg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
}

/* — FOOTER — */
footer {
  background: var(--plum);
  color: var(--white);
  padding: 80px 64px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand { grid-column: 1; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-mark-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--fg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
}
.footer-brandname { font-size: 15px; font-weight: 600; letter-spacing: 0.1em; }
.footer-tagline { font-size: 12px; opacity: 0.55; margin-top: 4px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col a, .footer-col span { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* — MOBILE — */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    min-height: auto;
  }
  .hero-deco { display: none; }
  .hero-content { padding-left: 0; }
  .hero-headline { font-size: 40px; }
  .hero-aside { display: none; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 28px; }
  .vision { padding: 60px 24px; }
  .vision-grid { grid-template-columns: 1fr; }
  .pillars { padding: 60px 24px; }
  .pillar { grid-template-columns: 60px 1fr; gap: 24px; }
  .pillar-num { font-size: 36px; }
  .product { padding: 60px 24px; }
  .product-scroll { grid-template-columns: 1fr 1fr; }
  .roadmap { padding: 60px 24px; }
  .roadmap-item { grid-template-columns: 80px 1fr; }
  .roadmap-badge { display: none; }
  .closing { padding: 80px 24px; flex-direction: column; gap: 40px; }
  .closing-deco { width: 100px; height: 100px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .product-scroll { grid-template-columns: 1fr; }
}
