/* ============ tokens ============ */
:root {
  --teal-900: #2c2013;
  --teal-950: #1c130b;
  --gold: #c9a667;
  --gold-deep: #745b38;
  --cream: #f6f1e7;
  --ink: #2c2013;
  --ink-soft: #4a3722;
  --line-on-dark: rgba(246, 241, 231, 0.14);
  --line-on-gold: rgba(11, 46, 53, 0.18);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--teal-900);
  color: var(--cream);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font-family: inherit; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

em { font-style: italic; color: var(--gold); font-family: var(--font-serif); }
.ink em { color: var(--ink); }

/* ============ type ============ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow.ink { color: var(--ink-soft); }
.eyebrow.center { justify-content: center; }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex: none;
}
.dot.dark { background: var(--ink-soft); }

.display-xl {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.display-lg {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.1;
  margin-bottom: 18px;
}
.display-md {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.14;
  margin-bottom: 20px;
}
.display-lg.center, .display-md.center, .display-xl.center { text-align: center; }
.philosophy-quote { max-width: 900px; margin-left: auto; margin-right: auto; }

.lede {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(246, 241, 231, 0.82);
  max-width: 480px;
  margin-bottom: 30px;
}
.body-md {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(246, 241, 231, 0.82);
  max-width: 480px;
  margin-bottom: 26px;
}
.body-md.ink { color: rgba(11, 46, 53, 0.82); }
.body-sm {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(246, 241, 231, 0.68);
}
.ink .body-sm, .body-sm.ink { color: rgba(11, 46, 53, 0.72); }

.section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(246, 241, 231, 0.68);
  max-width: 560px;
}
.section-sub.center { margin: 0 auto; text-align: center; }
.section-teal .section-sub, .section-teal .body-sm { color: rgba(246, 241, 231, 0.68); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: gap 0.2s ease, opacity 0.2s ease;
}
.text-link.ink { color: var(--ink); border-color: var(--ink); }
.text-link:hover { gap: 12px; opacity: 0.85; }
.arrow { transition: transform 0.2s ease; }

/* ============ layout helpers ============ */
.section { padding: 120px 0; position: relative; }
.section-dark { background: var(--teal-950); }
.section-teal { background: var(--teal-900); }
.section-gold { background: var(--gold); color: var(--ink); }

.section-head { max-width: 760px; margin: 0 auto 64px; }

/* ============ promo ticker ============ */
.promo-ticker {
  background: var(--teal-950);
  border-bottom: 1px solid var(--line-on-dark);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  padding: 9px 0;
  animation: ticker-scroll 26s linear infinite;
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
}
.ticker-item::after { content: "✦"; margin-left: 40px; color: var(--gold-deep); }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ header ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(44, 32, 19, 0.82);
  border-bottom: 1px solid var(--line-on-dark);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-mark { color: var(--gold); font-size: 18px; }
.logo-mark.small { font-size: 14px; }
.logo-svg {
  height: 30px;
  width: auto;
  fill: var(--cream);
  transition: opacity 0.2s ease;
}
.logo:hover .logo-svg { opacity: 0.85; }
.footer-logo-svg { height: 34px; }

.nav-links { display: flex; gap: 30px; }
.nav-toggle { display: none; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(246, 241, 231, 0.68);
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold);
  transition: right 0.25s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { right: 0; }

.btn { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; }
.btn-pill {
  background: var(--gold);
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-pill:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201, 166, 103, 0.3); }

/* ============ hero ============ */
.hero {
  position: relative;
  padding: 64px 0 40px;
  overflow: hidden;
  background: radial-gradient(circle at 78% 30%, rgba(201,166,103,0.1), transparent 55%), var(--teal-900);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  min-height: 72vh;
}
.hero-cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 6px; }

.hero-art { position: relative; height: 460px; display: flex; align-items: center; justify-content: center; }
.hero-glow {
  position: absolute; inset: 0; margin: auto;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,166,103,0.32), rgba(44,32,19,0) 70%);
  filter: blur(8px);
  animation: glow-breathe 5s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

/* dot-grid backdrop */
.dot-grid {
  position: absolute; inset: 0; margin: auto;
  width: 100%; height: 100%;
  background-image: radial-gradient(rgba(201,166,103,0.35) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
  animation: grid-drift 30s linear infinite;
}
@keyframes grid-drift {
  to { background-position: 26px 26px; }
}

/* authentication-card frame */
.scan-frame {
  position: absolute; inset: 0; margin: auto;
  width: 100%; height: 100%;
}
.frame-border {
  fill: none;
  stroke: var(--gold);
  stroke-opacity: 0.22;
  stroke-width: 1;
  stroke-dasharray: 3 5;
}
.crosshair line {
  stroke: var(--gold);
  stroke-opacity: 0.16;
  stroke-width: 1;
}
.crosshair-ticks line {
  stroke: var(--gold);
  stroke-opacity: 0.55;
  stroke-width: 1;
}
.corner-frame {
  animation: frame-pulse 4s ease-in-out infinite;
}
.corner-frame path {
  fill: none;
  stroke: var(--gold);
  stroke-opacity: 0.7;
  stroke-width: 1.2;
}
@keyframes frame-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* gem — static faceted diamond with a light chasing around its corners */
.gem-stage {
  position: relative;
  width: 46%;
  display: flex;
  justify-content: center;
  margin-top: -32px;
}
.gem-wrap {
  position: relative;
  width: 100%;
  max-width: 190px;
  animation: gem-bob 7s ease-in-out infinite;
}
@keyframes gem-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.gem {
  width: 100%;
  display: block;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,0.45)) drop-shadow(0 0 24px rgba(201,166,103,0.2));
}
.gem-outline { fill: none; stroke: var(--gold); stroke-width: 1.2; stroke-opacity: 0.85; }
.facet { stroke: var(--gold); stroke-width: 0.6; stroke-opacity: 0.5; }
.facet.f1 { fill: var(--gold); fill-opacity: 0.3; }
.facet.f2 { fill: var(--gold); fill-opacity: 0.15; }
.facet.f3 { fill: var(--gold); fill-opacity: 0.36; }
.facet.f4 { fill: var(--gold); fill-opacity: 0.2; }
.facet.f5 { fill: var(--gold); fill-opacity: 0.26; }

.corner-light {
  fill: var(--cream);
  opacity: 0.15;
  animation: corner-chase 12s ease-in-out infinite;
}
.c1 { animation-delay: 0s; }
.c2 { animation-delay: 2.4s; }
.c3 { animation-delay: 4.8s; }
.c4 { animation-delay: 7.2s; }
.c5 { animation-delay: 9.6s; }
@keyframes corner-chase {
  0%, 100% { opacity: 0.15; filter: drop-shadow(0 0 0 rgba(246,241,231,0)); }
  2.5% { opacity: 1; filter: drop-shadow(0 0 7px rgba(246,241,231,0.95)); }
  17.5% { opacity: 1; filter: drop-shadow(0 0 7px rgba(246,241,231,0.95)); }
  20% { opacity: 0.15; filter: drop-shadow(0 0 0 rgba(246,241,231,0)); }
}

/* vertical projection beams */
.holo-beam {
  position: absolute; left: 50%; width: 1px;
  background: linear-gradient(var(--beam-dir, to top), var(--gold), transparent);
  animation: beam-flicker 2.6s ease-in-out infinite;
}
.beam-up { top: -70px; height: 70px; --beam-dir: to top; }
.beam-down { bottom: -70px; height: 70px; --beam-dir: to bottom; }
@keyframes beam-flicker {
  0%, 100% { opacity: 0.25; }
  45% { opacity: 0.7; }
  60% { opacity: 0.35; }
  80% { opacity: 0.6; }
}

/* particles */
.particle {
  position: absolute;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold);
  animation: particle-drift 8s ease-in-out infinite;
}
.p1 { top: 18%; left: 10%; animation-delay: 0s; }
.p2 { top: 68%; left: 6%; animation-delay: 1.6s; }
.p3 { top: 12%; left: 82%; animation-delay: 3.1s; }
.p4 { top: 78%; left: 78%; animation-delay: 4.4s; }
.p5 { top: 44%; left: 92%; animation-delay: 2.2s; }
@keyframes particle-drift {
  0%, 100% { transform: translateY(0); opacity: 0.2; }
  50% { transform: translateY(-16px); opacity: 0.9; }
}

/* annotation badge (cycling readout) */
.annotation { position: absolute; }
.ann-1 { top: 79%; left: 0; right: 0; width: max-content; margin: 0 auto; }
.readout-text {
  flex: 1;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.readout-text.fade-out { opacity: 0; transform: translateY(4px); }
.floating-badge {
  display: flex; align-items: center; justify-content: center;
  width: 216px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--cream);
  white-space: nowrap;
}

.scroll-indicator {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  width: max-content; margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; color: rgba(246,241,231,0.5);
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); }

/* ============ stats bar ============ */
.stats-bar { padding: 60px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.stat-block { padding: 0 10px; }
.stat-big {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-caption {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  color: rgba(246,241,231,0.55); text-transform: uppercase;
}

/* ============ process strip ============ */
.process-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative;
}
.process-strip::before {
  content: "";
  position: absolute; top: 14px; left: 6%; right: 6%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold-deep) 0 8px, transparent 8px 16px);
  opacity: 0.6;
}
.process-step { position: relative; padding-top: 6px; }
.process-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--teal-900);
  background: var(--gold);
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.process-title { font-family: var(--font-serif); font-weight: 500; font-size: 24px; margin-bottom: 10px; }

/* ============ shop by category / price ============ */
.category-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px; margin-bottom: 48px;
}
.category-chip {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  border: 1px solid var(--line-on-dark);
  border-radius: 16px;
  padding: 22px 26px;
  min-width: 110px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.category-chip:hover { border-color: var(--gold-deep); transform: translateY(-3px); }
.cat-icon { width: 26px; height: 26px; color: var(--gold); }
.category-chip span:last-child { font-size: 12.5px; font-weight: 600; color: var(--cream); }

.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  position: relative;
  border-radius: 18px;
  padding: 30px 28px;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-1 { background: linear-gradient(135deg, rgba(201,166,103,0.14), rgba(201,166,103,0.03)); border: 1px solid var(--line-on-dark); }
.price-2 { background: linear-gradient(135deg, rgba(201,166,103,0.26), rgba(201,166,103,0.06)); border: 1px solid var(--line-on-dark); }
.price-3 { background: linear-gradient(135deg, var(--gold-deep), rgba(116,91,56,0.5)); border: 1px solid transparent; }
.price-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(246,241,231,0.6); margin-bottom: 6px; text-transform: uppercase; }
.price-value { font-family: var(--font-serif); font-size: 30px; font-weight: 600; margin-bottom: 18px; }
.price-arrow { font-family: var(--font-mono); font-size: 14px; color: var(--gold); }

/* ============ brand carousel ============ */
.carousel-wrap { position: relative; display: flex; align-items: center; gap: 12px; padding: 0 32px; }
.brand-track {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 0 16px;
  scrollbar-width: none;
}
.brand-track::-webkit-scrollbar { display: none; }
.brand-card {
  scroll-snap-align: start;
  flex: 0 0 220px;
  display: flex; flex-direction: column; gap: 10px;
  border: 1px solid var(--line-on-dark);
  border-radius: 18px;
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.brand-card:hover { border-color: var(--gold-deep); transform: translateY(-3px); }
.brand-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-deep); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  margin-bottom: 4px;
}
.brand-card-more .brand-avatar { background: transparent; border: 1px dashed var(--gold); color: var(--gold); }
.brand-name { font-family: var(--font-serif); font-size: 22px; font-weight: 500; }
.brand-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: rgba(246,241,231,0.5); text-transform: uppercase; }
.brand-visit { font-family: var(--font-mono); font-size: 11px; color: var(--gold); margin-top: 6px; }
.carousel-arrow {
  flex: none;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  background: transparent; color: var(--cream);
  cursor: pointer; font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.carousel-arrow:hover { border-color: var(--gold); background: rgba(201,166,103,0.1); }
.marquee-caption { text-align: center; margin-top: 26px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(246,241,231,0.45); }

/* ============ feature sections ============ */
.feature-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.feature-reverse .feature-inner { direction: rtl; }
.feature-reverse .feature-copy, .feature-reverse .feature-art { direction: ltr; }
.pill-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 4px; }
.soon-pill {
  font-family: var(--font-mono);
  border: 1px solid var(--line-on-gold);
  border-radius: 999px; padding: 5px 12px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.check-list { margin: 26px 0; }
.check-list li {
  position: relative; padding: 14px 0 14px 22px;
  border-bottom: 1px solid var(--line-on-gold);
  font-size: 14.5px; color: rgba(11,46,53,0.78);
}
.section-dark .check-list li, .section-teal .check-list li { border-color: var(--line-on-dark); color: rgba(246,241,231,0.78); }
.check-list li::before {
  content: "•"; position: absolute; left: 0; color: var(--gold-deep); font-size: 18px; line-height: 1;
}

/* phone mock */
.phone-mock {
  width: 280px; margin: 0 auto;
  background: var(--teal-950);
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
  position: relative;
}
.phone-notch {
  width: 90px; height: 18px; background: #14100a;
  border-radius: 0 0 14px 14px; margin: 0 auto 6px;
}
.phone-status { display: flex; justify-content: space-between; font-size: 11px; color: rgba(246,241,231,0.6); padding: 0 6px; margin-bottom: 10px; }
.phone-app-header {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-weight: 700; font-size: 13px;
  color: var(--cream); padding: 0 6px 14px; border-bottom: 1px solid var(--line-on-dark);
}
.phone-badge {
  margin-left: auto; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em;
  border: 1px solid var(--gold-deep); color: var(--gold); border-radius: 999px; padding: 3px 8px;
}
.phone-screen {
  height: 200px; margin: 14px 0; border-radius: 18px;
  background: radial-gradient(circle at 50% 40%, rgba(201,166,103,0.25), rgba(28,19,11,0.9));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  border: 1px solid var(--line-on-dark);
}
.phone-ring {
  width: 70px; height: 70px; border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 24px rgba(201,166,103,0.4);
}
.phone-caption { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--gold); font-weight: 600; }
.phone-chips { display: flex; gap: 8px; flex-wrap: wrap; padding: 0 6px; margin-bottom: 14px; }
.phone-chips span {
  font-family: var(--font-mono);
  font-size: 10px; padding: 6px 10px; border-radius: 999px;
  border: 1px solid var(--line-on-dark); color: rgba(246,241,231,0.7);
}
.phone-cta {
  width: 100%; background: var(--gold); color: var(--ink);
  border: none; border-radius: 12px; padding: 13px; font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em; cursor: pointer; font-family: var(--font-sans);
}

/* chat mock (Genie) */
.chat-mock {
  background: var(--teal-950);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  max-width: 420px; margin: 0 auto;
}
.chat-header {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--cream);
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line-on-dark);
}
.chat-mark { color: var(--gold); font-size: 16px; }
.chat-sub { margin-left: auto; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; color: rgba(246,241,231,0.45); text-transform: uppercase; }
.chat-body { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.bubble { font-size: 13.5px; line-height: 1.5; padding: 12px 16px; border-radius: 16px; max-width: 88%; }
.bubble.user { align-self: flex-end; background: var(--gold-deep); color: var(--cream); border-bottom-right-radius: 4px; }
.bubble.bot { align-self: flex-start; background: rgba(246,241,231,0.06); color: rgba(246,241,231,0.85); border-bottom-left-radius: 4px; }
.chat-results { display: flex; flex-direction: column; gap: 8px; }
.result-chip {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; color: rgba(246,241,231,0.75);
  border: 1px solid var(--line-on-dark); border-radius: 10px; padding: 10px 12px;
}
.result-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.chat-input {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--line-on-dark); border-radius: 999px;
  padding: 12px 16px;
  font-size: 12.5px; color: rgba(246,241,231,0.45);
}
.send-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

/* lookbook */
.lookbook-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px; }
.look-card { border-top: 1px solid var(--gold-deep); padding: 26px 4px 4px; }
.look-index { font-family: var(--font-mono); color: var(--gold-deep); font-size: 13px; margin-bottom: 10px; }
.look-title { font-family: var(--font-serif); font-weight: 500; font-size: 28px; margin-bottom: 10px; }

/* for brands */
.benefit-rows { margin: 28px 0 34px; }
.benefit-row { padding: 18px 0; border-bottom: 1px solid var(--line-on-dark); }
.benefit-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }

/* stat mock + bar chart */
.stat-mock {
  background: var(--cream); color: var(--ink);
  border-radius: 4px 20px 20px 20px; padding: 26px; max-width: 460px; margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.stat-mock-header { display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 14px; margin-bottom: 22px; }
.stat-mock-dot { width: 10px; height: 10px; border-radius: 50%; background: #2f9e63; }
.bar-chart { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-label { font-family: var(--font-mono); font-size: 10.5px; width: 88px; flex: none; color: rgba(11,46,53,0.6); }
.bar-track { flex: 1; height: 8px; border-radius: 999px; background: rgba(11,46,53,0.08); overflow: hidden; }
.bar-fill { display: block; height: 100%; border-radius: 999px; background: var(--gold-deep); }
.stat-mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-cell { background: rgba(11,46,53,0.05); border-radius: 12px; padding: 16px; }
.stat-num { font-family: var(--font-serif); font-size: 26px; font-weight: 600; margin-bottom: 4px; }
.stat-label { font-family: var(--font-mono); font-size: 10px; color: rgba(11,46,53,0.6); text-transform: uppercase; letter-spacing: 0.04em; }

/* trust medallions */
.medallion-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.medallion-cell { text-align: center; padding: 0 10px; }
.medallion {
  width: 78px; height: 78px; margin: 0 auto 18px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold);
  position: relative;
}
.medallion::before {
  content: "";
  position: absolute; inset: -7px;
  border-radius: 50%;
  border: 1px dashed var(--line-on-dark);
}
.trust-title { font-family: var(--font-serif); font-weight: 500; font-size: 21px; margin-bottom: 10px; }

/* faq */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-on-dark); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; color: var(--cream); cursor: pointer;
  padding: 22px 4px; text-align: left;
  font-family: var(--font-serif); font-size: 20px; font-weight: 500;
}
.faq-icon { font-family: var(--font-mono); color: var(--gold); font-size: 16px; transition: transform 0.25s ease; flex: none; margin-left: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 4px;
}
.faq-item.open .faq-a { max-height: 160px; padding: 0 4px 22px; }
.faq-a p { max-width: 620px; }

/* philosophy */
.hr-short { width: 60px; height: 1px; background: var(--gold-deep); margin: 30px auto; }

/* ============ footer ============ */
.footer { background: var(--teal-950); padding: 90px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 70px; border-bottom: 1px solid var(--line-on-dark);
}
.footer-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--gold-deep); margin: 18px 0 14px; }
.footer-brand .body-sm { max-width: 320px; }
.footer-heading { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; color: rgba(246,241,231,0.45); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: rgba(246,241,231,0.75); margin-bottom: 14px; }
.footer-col a:hover { color: var(--gold); }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row span {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-on-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px;
  padding-bottom: 30px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(246,241,231,0.6); }
.footer-legal a:hover { color: var(--gold); }

/* ============ back to top ============ */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  border: none; font-size: 16px; cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ============ reveal animation ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ responsive ============ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-art { height: 320px; order: -1; }
  .gem-stage { margin-top: -18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .process-strip { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .process-strip::before { display: none; }
  .feature-inner { grid-template-columns: 1fr; }
  .feature-reverse .feature-inner { direction: ltr; }
  .feature-reverse .feature-art { order: -1; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .medallion-row { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .nav-links { display: none; }
}
@media (max-width: 620px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .section { padding: 80px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-strip { grid-template-columns: 1fr; }
  .medallion-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
  .btn-pill span.arrow { display: none; }
  .carousel-wrap { padding: 0 12px; }
  .brand-card { flex: 0 0 200px; }
  .back-to-top { right: 16px; bottom: 16px; }
  .price-row { gap: 10px; }
  .price-card { padding: 16px 12px; border-radius: 14px; }
  .price-label { font-size: 8.5px; margin-bottom: 4px; }
  .price-value { font-size: 18px; margin-bottom: 8px; }
  .price-arrow { font-size: 12px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .category-row { gap: 10px; }
  .category-chip { padding: 16px 18px; min-width: 92px; }
}

/* ============ mobile nav ============ */
@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px; height: 34px;
    background: none; border: none; cursor: pointer;
    flex: none;
  }
  .nav-toggle span {
    display: block; width: 100%; height: 1px; background: var(--cream);
  }
  .nav-links {
    display: flex;
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--teal-950);
    border-bottom: 1px solid var(--line-on-dark);
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links a { padding: 16px 32px; border-bottom: 1px solid var(--line-on-dark); }
  .header-inner .btn-pill { padding: 10px 16px; font-size: 11.5px; }
}
