
:root {
  --white: #ffffff; --off: #F9F7F4; --cream: #F2EFE8;
  --gold: #C8A84B; --gold-dark: #8B7332; --gold-light: #F5E9C4;
  --black: #0A0A0A; --ink: #111111; --muted: #888880;
  --border: #E8E4DC; --border-dark: #D4CFC4;
  --aurora-container-max: 1280px;
  --aurora-container-narrow: 760px;
  --aurora-container-padding: clamp(20px, 4vw, 48px);
  --aurora-header-height: 70px;
  --aurora-admin-bar-offset: 0px;
  --aurora-font-serif: var(--aurora-font-serif), Georgia, 'Times New Roman', serif;
  --aurora-font-sans: var(--aurora-font-sans), -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body { background: var(--white); color: var(--ink); font-family: var(--aurora-font-sans); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0; height: var(--aurora-header-height); background: #ffffff; border-bottom: 0.5px solid var(--border); }
nav > .aurora-container--bar {
  height: var(--aurora-header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
body { padding-top: var(--aurora-header-height); }
.nav-logo { display: flex; align-items: center; text-decoration: none; grid-column: 1; justify-self: start; flex-shrink: 0; }
.nav-logo .cell { background: var(--gold); color: var(--black); font-family: var(--aurora-font-sans); font-weight: 500; font-size: 17px; padding: 3px 8px 4px; letter-spacing: -0.3px; }
.nav-logo .mind { color: var(--ink); font-family: var(--aurora-font-sans); font-weight: 500; font-size: 17px; letter-spacing: -0.3px; padding-left: 1px; }
.nav-menu { grid-column: 2; justify-self: center; min-width: 0; }
.nav-links { display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); font-weight: 500; }
.nav-cta {
  grid-column: 3;
  justify-self: end;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.25rem;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--gold-dark);
  border: 0.5px solid var(--gold);
  padding: 8px 18px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }
.nav-toggle {
  grid-column: 3;
  justify-self: end;
}

/* HERO — editorial split, contained on large screens */
.hero {
  background: var(--white);
  min-height: calc(100vh - var(--aurora-header-height));
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  width: 100%;
  max-width: var(--aurora-container-max);
  min-height: calc(100vh - var(--aurora-header-height));
  margin: 0 auto;
  padding-inline: var(--aurora-container-padding);
  box-sizing: border-box;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px 48px 56px 0;
  background: var(--white);
  border-right: 0.5px solid var(--border);
}
.hero-label {
  font-size: 11px; letter-spacing: 0.28em; color: var(--gold-dark);
  text-transform: uppercase; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
}
.hero-label::before { content: ''; width: 32px; height: 0.5px; background: var(--gold); }
.hero-h1 {
  font-family: var(--aurora-font-serif);
  font-size: clamp(44px, 4.8vw, 76px); font-weight: 900;
  color: var(--ink); line-height: 0.95; letter-spacing: -3px;
  margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s 0.25s forwards;
}
.hero-h1-line { display: block; }
.hero-h1 em { font-style: italic; color: var(--gold-dark); display: block; margin-top: 4px; }
.hero-sub {
  font-size: 15px; font-weight: 300; color: var(--muted);
  line-height: 1.75; max-width: 420px; margin-bottom: 16px;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-disclaimer {
  font-size: 11px; font-weight: 300; color: #aaa;
  line-height: 1.5; max-width: 420px; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.48s forwards;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: fadeUp 0.8s 0.55s forwards;
}
.btn-primary { background: var(--ink); color: var(--white); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 32px; text-decoration: none; transition: all 0.2s; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-ghost { font-size: 13px; color: var(--muted); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.btn-ghost:hover { color: var(--ink); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }
.hero-stats {
  display: flex; gap: 0;
  border-top: 0.5px solid var(--border); margin-top: 40px; padding-top: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; padding-right: 24px; margin-right: 24px; border-right: 0.5px solid var(--border); }
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-num { font-family: var(--aurora-font-serif); font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -0.5px; }
.hero-stat-lbl { font-size: 9px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }

/* HERO RIGHT — product visual */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 40px 32px;
  background: var(--white);
  opacity: 0;
  animation: fadeUp 0.9s 0.3s forwards;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  width: min(100%, 480px);
  flex-shrink: 0;
}
.hero-visual-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-visual-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-bottom {
  margin-top: 20px;
}
.hero-right img {
  width: 100%;
  height: auto;
  max-height: min(720px, 58vh);
  object-fit: contain;
  object-position: center center;
  display: block;
}
.hero-overlay-tl {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 14px;
  border: 0.5px solid var(--border);
  flex-shrink: 0;
}
.hero-overlay-tr {
  background: var(--gold-light);
  padding: 10px 16px;
  border: 0.5px solid var(--gold);
  text-align: center;
  flex-shrink: 0;
}
.hero-overlay-tr-val { font-family: var(--aurora-font-serif); font-size: 18px; font-weight: 700; color: var(--ink); }
.hero-overlay-tr-lbl { font-size: 7px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); }
.hero-overlay-bl {
  width: 100%;
  background: var(--black);
  padding: 14px 20px;
  box-sizing: border-box;
}
.hero-overlay-bl-name { font-size: 11px; letter-spacing: 0.1em; color: var(--white); text-transform: uppercase; font-weight: 500; }
.hero-overlay-bl-sub { font-size: 9px; color: var(--gold); letter-spacing: 0.08em; margin-top: 4px; }
.hero-overlay-dots {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 12px;
}
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border-dark); }
.hero-dot.on { background: var(--gold); }

/* STRIP */
.editorial-strip { background: var(--ink); padding: 18px 48px; display: flex; gap: 48px; align-items: center; overflow: hidden; }
.strip-item { display: flex; align-items: center; gap: 12px; white-space: nowrap; flex-shrink: 0; }
.strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.strip-text { font-size: 11px; letter-spacing: 0.2em; color: #555; text-transform: uppercase; }
.strip-text span { color: var(--gold); }

/* SHARED — site container */
.aurora-container {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--aurora-container-max);
  margin-inline: auto;
  padding-inline: var(--aurora-container-padding);
}

.aurora-container--narrow {
  max-width: var(--aurora-container-narrow);
}

.aurora-container--bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Nav bar uses grid (see nav > .aurora-container--bar); other bars keep flex. */
nav > .aurora-container--bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-content: unset;
}

.aurora-page-main {
  padding-block: 96px;
}

.section-wrap { max-width: var(--aurora-container-max); margin: 0 auto; padding: 96px var(--aurora-container-padding); }
.section-tag { font-size: 10px; letter-spacing: 0.28em; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.section-tag::before { content: ''; width: 24px; height: 0.5px; background: var(--gold); }
.section-h2 { font-family: var(--aurora-font-serif); font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: var(--ink); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 24px; }
.section-h2 em { font-style: italic; color: var(--gold-dark); }

/* BRAND STATEMENT */
.statement-bg { background: var(--ink); padding: 96px 48px; }
.statement-inner { max-width: var(--aurora-container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.statement-label { font-size: 10px; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.statement-label::before { content: ''; width: 24px; height: 0.5px; background: var(--gold-dark); }
.statement-h2 { font-family: var(--aurora-font-serif); font-size: clamp(28px, 3.5vw, 46px); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -1.5px; }
.statement-h2 em { font-style: italic; color: var(--gold); }
.statement-right { display: flex; flex-direction: column; gap: 32px; }
.statement-point { display: flex; gap: 16px; }
.statement-point-num { font-family: var(--aurora-font-serif); font-size: 13px; font-weight: 700; color: var(--gold-dark); min-width: 24px; padding-top: 1px; }
.statement-point-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.statement-point-desc { font-size: 15px; font-weight: 300; color: #666; line-height: 1.7; }

/* CATEGORIES */
.cat-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border); border: 0.5px solid var(--border); margin-top: 48px; }
.cat-card { background: var(--white); padding: 40px 32px; transition: background 0.2s; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.cat-card:hover { background: var(--off); }
.cat-card--empty { background: var(--white); pointer-events: none; }
.cat-card--empty:hover { background: var(--white); }
.cat-num { font-size: 11px; letter-spacing: 0.2em; color: var(--border-dark); text-transform: uppercase; margin-bottom: 20px; }
.cat-title { font-family: var(--aurora-font-serif); font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.3px; }
.cat-desc { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.8; flex: 1; }
.cat-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 24px; padding-top: 20px; border-top: 0.5px solid var(--border); }
.cat-meta-pill { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); background: var(--gold-light); padding: 3px 8px; }
.cat-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-top: 20px; transition: gap 0.2s; }
.cat-card:hover .cat-link { gap: 10px; }

/* NUMBERS */
.numbers-bg { background: var(--cream); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.numbers-inner { max-width: var(--aurora-container-max); margin: 0 auto; padding: 80px var(--aurora-container-padding); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 0.5px solid var(--border); margin-top: 48px; }
.number-item { padding: 40px 32px; border-right: 0.5px solid var(--border); display: flex; flex-direction: column; }
.number-item:last-child { border-right: none; }
.number-val { font-family: var(--aurora-font-serif); font-size: 40px; font-weight: 900; color: var(--ink); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.number-lbl { font-size: 11px; letter-spacing: 0.18em; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 12px; }
.number-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; margin-top: auto; padding-top: 16px; border-top: 0.5px solid var(--border); }

/* HOW */
.how-steps { display: flex; flex-direction: column; margin-top: 48px; }
.how-step { display: flex; gap: 32px; align-items: flex-start; padding: 28px 0; border-bottom: 0.5px solid var(--border); }
.how-step:last-child { border-bottom: none; }
.step-num { font-family: var(--aurora-font-serif); font-size: 32px; font-weight: 900; color: var(--border-dark); min-width: 48px; line-height: 1; }
.step-title { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.step-desc { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* FAQ */
.faq-bg { background: var(--off); border-top: 0.5px solid var(--border); padding: 96px 0; }
.faq-inner { max-width: var(--aurora-container-max); margin: 0 auto; padding: 0 var(--aurora-container-padding); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; margin-top: 48px; }
.faq-item { padding: 24px 0; border-bottom: 0.5px solid var(--border); }
.faq-q { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 10px; line-height: 1.4; }
.faq-a { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* CTA */
.cta-band { background: var(--ink); padding: 96px 48px; text-align: center; }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-tag { font-size: 10px; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.cta-tag::before, .cta-tag::after { content: ''; width: 32px; height: 0.5px; background: var(--gold-dark); }
.cta-h2 { font-family: var(--aurora-font-serif); font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--white); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; }
.cta-h2 em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 15px; font-weight: 300; color: #666; line-height: 1.7; margin-bottom: 40px; }
.btn-gold { background: var(--gold); color: var(--black); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 16px 40px; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-gold:hover { background: var(--white); }

/* FOOTER */
.disclaimer-bar { background: var(--off); border-top: 0.5px solid var(--border); padding: 20px 48px; }
.disclaimer-text { font-size: 10px; color: #bbb; line-height: 1.7; max-width: var(--aurora-container-max); margin: 0 auto; text-align: center; padding-inline: var(--aurora-container-padding); }
footer { background: var(--ink); padding: 64px var(--aurora-container-padding) 32px; }
.footer-inner { max-width: var(--aurora-container-max); margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
.footer-logo .cell { background: var(--gold); color: var(--black); font-family: var(--aurora-font-sans); font-weight: 500; font-size: 15px; padding: 2px 7px 3px; }
.footer-logo .mind { color: var(--white); font-family: var(--aurora-font-sans); font-weight: 500; font-size: 15px; padding-left: 1px; }
.footer-tagline { font-size: 11px; letter-spacing: 0.12em; color: #444; margin-top: 8px; text-transform: uppercase; }
.footer-cols { display: flex; gap: 64px; }
.footer-col-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #444; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; font-weight: 300; color: #666; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 0.5px solid #1e1e1e; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11px; color: #333; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: #333; text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
