:root {
  --bg: #090b0e;
  --panel: #11151a;
  --panel-2: #171c22;
  --text: #f3f1eb;
  --muted: #9ba2ad;
  --line: rgba(255,255,255,.10);
  --gold: #c9a45c;
  --gold-bright: #e3c37a;
  --slate: #718096;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(201,164,92,.12), transparent 34rem),
    linear-gradient(180deg, #0b0e12 0%, var(--bg) 38%, #07090b 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.grain {
  position: fixed; inset: 0; pointer-events: none; opacity: .16; z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.topbar {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.03em; }
.mark {
  display: grid; place-items: center; width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.28);
  background: linear-gradient(145deg, #f5f5f3 5%, #777f87 43%, #e8e8e5 76%, #666d73);
  color: #111; font-family: Marcellus, serif; font-size: 23px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
.nav { display: flex; align-items: center; gap: 28px; color: #c7ccd3; font-size: 14px; }
.nav a:hover { color: white; }
.nav-cta { border: 1px solid var(--line); padding: 10px 15px; border-radius: 999px; }
.menu-button { display: none; border: 1px solid var(--line); color: white; background: transparent; padding: 9px 13px; border-radius: 999px; }

.hero { padding: 110px 0 76px; text-align: center; }
.eyebrow { color: var(--gold-bright); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 700; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 16px auto 22px;
  max-width: 900px;
  font-family: Marcellus, Georgia, serif;
  font-size: clamp(58px, 9vw, 112px);
  line-height: .92; letter-spacing: -.055em; font-weight: 400;
}
h1 span { color: var(--gold-bright); }
.hero-copy { max-width: 710px; margin: 0 auto; color: #b7bdc6; font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; border-radius: 8px; font-weight: 700; font-size: 14px; }
.primary { background: var(--gold-bright); color: #17130d; }
.primary:hover { filter: brightness(1.05); }
.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.trust-row { margin-top: 84px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); text-align: left; }
.trust-row div { padding: 24px; border-right: 1px solid var(--line); }
.trust-row div:last-child { border-right: 0; }
.trust-row strong, .trust-row span { display: block; }
.trust-row strong { font-size: 14px; }
.trust-row span { color: var(--muted); font-size: 13px; margin-top: 5px; }

.section { padding: 96px 0; }
.section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 38px; }
h2 { font-family: Marcellus, Georgia, serif; font-size: clamp(38px, 5vw, 64px); line-height: 1.02; font-weight: 400; letter-spacing: -.035em; margin: 10px 0 0; }
.section-heading > p { max-width: 480px; color: var(--muted); margin-bottom: 3px; }
.objective-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.objective {
  appearance: none; text-align: left; padding: 25px; min-height: 185px;
  border: 1px solid var(--line); border-radius: 12px; color: white;
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.objective:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.22); }
.objective.active { border-color: rgba(227,195,122,.64); background: linear-gradient(160deg, rgba(201,164,92,.16), rgba(255,255,255,.018)); }
.objective-kicker { display: block; color: var(--gold-bright); text-transform: uppercase; font-size: 10px; letter-spacing: .15em; font-weight: 800; margin-bottom: 32px; }
.objective strong { display: block; font-size: 19px; margin-bottom: 7px; }
.objective small { color: var(--muted); font-size: 14px; }

.demo-frame { border: 1px solid var(--line); border-radius: 22px; padding: 54px; background: linear-gradient(140deg, rgba(255,255,255,.05), rgba(255,255,255,.012)); display: grid; grid-template-columns: minmax(310px, 440px) 1fr; gap: 75px; align-items: center; overflow: hidden; }
.phone { border: 1px solid rgba(255,255,255,.16); background: #090b0e; border-radius: 34px; padding: 18px; box-shadow: 0 35px 80px rgba(0,0,0,.42); }
.phone-status { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); padding: 5px 5px 17px; }
.live-dot { color: #b9d9bd; }
.live-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; background: #62c572; border-radius: 50%; margin-right: 6px; }
.decision-card { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(155deg, #171c22, #0e1115); }
.decision-label { color: var(--gold-bright); font-size: 9px; letter-spacing: .14em; font-weight: 800; }
.decision-card h3 { font-family: Marcellus, Georgia, serif; font-size: 30px; line-height: 1.05; margin: 11px 0; font-weight: 400; }
.decision-card > p { color: #abb2bc; font-size: 13px; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 20px 0; }
.metrics div { padding: 10px 8px; border-radius: 8px; background: rgba(255,255,255,.035); }
.metrics span, .metrics strong { display: block; }
.metrics span { color: var(--muted); font-size: 8px; }
.metrics strong { font-size: 11px; margin-top: 4px; }
.start-button, .show-work { width: 100%; border-radius: 9px; min-height: 45px; cursor: pointer; }
.start-button { border: 0; background: var(--gold-bright); color: #18140d; font-weight: 800; }
.show-work { margin-top: 8px; background: transparent; border: 1px solid var(--line); color: white; }
.work-panel { color: #aeb5bf; font-size: 12px; padding: 17px 2px 0; }
.evidence-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.evidence-tags span { border: 1px solid var(--line); border-radius: 99px; padding: 5px 8px; font-size: 9px; }
.power-card { margin-top: 10px; border: 1px solid var(--line); border-radius: 14px; padding: 15px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.power-card strong { display: block; font-size: 13px; margin-top: 4px; }
.power-card > span { color: var(--gold-bright); font-size: 10px; white-space: nowrap; }
.bottom-nav { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; padding: 15px 2px 1px; }
.bottom-nav button { border: 0; background: transparent; color: #757d88; font-size: 9px; padding: 8px 0; }
.bottom-nav .selected { color: var(--gold-bright); }
.demo-copy p { color: var(--muted); max-width: 530px; font-size: 17px; }
.demo-copy ul { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; color: #c7ccd2; }
.demo-copy li::before { content: "—"; color: var(--gold); margin-right: 10px; }

.evidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.evidence-grid article { min-height: 200px; border: 1px solid var(--line); border-radius: 12px; padding: 22px; background: rgba(255,255,255,.018); }
.evidence-grid article > span { font-size: 24px; }
.evidence-grid h3 { margin: 30px 0 7px; font-size: 16px; }
.evidence-grid p { color: var(--muted); font-size: 13px; }

.about { border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.about p { color: #b2b9c2; font-size: 21px; margin-top: 14px; }
.footer { min-height: 110px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 12px; }

@media (max-width: 820px) {
  .topbar { min-height: 68px; }
  .menu-button { display: block; }
  .nav { position: absolute; display: none; top: 60px; left: 0; right: 0; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: #11151a; flex-direction: column; align-items: stretch; gap: 8px; }
  .nav.open { display: flex; }
  .nav a { padding: 10px; }
  .hero { padding-top: 76px; }
  .trust-row, .objective-grid, .evidence-grid { grid-template-columns: 1fr; }
  .trust-row div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-row div:last-child { border-bottom: 0; }
  .section { padding: 70px 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .demo-frame { grid-template-columns: 1fr; padding: 24px; gap: 48px; }
  .phone { max-width: 440px; margin-inline: auto; width: 100%; }
  .about { grid-template-columns: 1fr; gap: 18px; }
  .footer { flex-direction: column; justify-content: center; gap: 16px; text-align: center; }
}
