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

:root {
  --bg:        #050506;
  --surface:   #0D1014;
  --surface2:  #131920;
  --text:      #F4F4F1;
  --muted:     #B7B7AE;
  --gold:      #C9A45C;
  --gold-dim:  rgba(201,164,92,0.15);
  --border:    rgba(255,255,255,0.10);
  --radius:    6px;
  --max:       960px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.75;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,5,6,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; height: 56px;
}
.nav-brand {
  font-size: 0.9rem; letter-spacing: 0.1em;
  color: var(--gold); text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 1.6rem; list-style: none; margin-left: auto; flex-wrap: wrap;
}
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.8rem;
  letter-spacing: 0.06em; font-family: 'Helvetica Neue', Arial, sans-serif;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* ── LAYOUT ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

/* ── HERO ── */
.hero {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem; letter-spacing: 0.22em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: normal; letter-spacing: 0.01em; line-height: 1.25;
  margin-bottom: 1.2rem;
}
.hero-sub {
  color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 1.8rem;
}
.hero-tagline {
  color: var(--muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.hero-trust {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem; color: rgba(183,183,174,0.55); letter-spacing: 0.03em;
  max-width: 460px;
}

/* ── HERO SHOT ── */
.hero-shot {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  min-height: 260px;
}
.hero-shot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-shot-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
}
.hero-shot-placeholder .ph-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.68rem; letter-spacing: 0.18em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.hero-shot-placeholder p {
  font-size: 0.8rem; color: rgba(183,183,174,0.4); max-width: 260px; line-height: 1.5;
}
/* Gold corner accents */
.hero-shot::before, .hero-shot::after {
  content: ''; position: absolute;
  width: 24px; height: 24px; border-color: var(--gold); border-style: solid;
}
.hero-shot::before { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.hero-shot::after  { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 0.7rem 1.6rem;
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  text-decoration: none; font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem; letter-spacing: 0.08em; border-radius: var(--radius);
  transition: background 0.2s, color 0.2s; white-space: nowrap; cursor: pointer;
}
.btn:hover { background: var(--gold); color: #050506; }
.btn-primary {
  background: var(--gold); color: #050506; border-color: var(--gold);
}
.btn-primary:hover { background: #b8923e; border-color: #b8923e; color: #050506; }

/* ── SECTION ── */
section { padding: 4.5rem 2rem; border-bottom: 1px solid var(--border); }
section:last-of-type { border-bottom: none; }
.section-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.7rem; letter-spacing: 0.22em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.8rem;
}
section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: normal;
  margin-bottom: 1.2rem; letter-spacing: 0.02em;
}
section p { color: var(--muted); margin-bottom: 1rem; max-width: 720px; }
section p:last-child { margin-bottom: 0; }
section p.lead { font-size: 1.05rem; color: var(--text); }

/* ── PROBLEM ── */
.problem-list {
  list-style: none; padding: 0; margin: 1rem 0 1.2rem;
}
.problem-list li {
  padding: 0.3rem 0 0.3rem 1.4rem; position: relative;
  font-size: 0.95rem; color: var(--muted);
}
.problem-list li::before {
  content: '×'; position: absolute; left: 0; color: rgba(201,164,92,0.5); font-size: 0.9rem;
}

/* ── STEPS ── */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0; margin-top: 2rem; position: relative;
}
.step {
  padding: 1.5rem 1.2rem;
  border: 1px solid var(--border); border-radius: 0;
  margin: -1px 0 0 -1px;
}
.step-num {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.68rem; letter-spacing: 0.14em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.step h4 { font-size: 0.88rem; font-weight: normal; color: var(--text); margin-bottom: 0.4rem; }
.step p { font-size: 0.82rem; color: var(--muted); max-width: none; margin: 0; }

/* ── PACKAGES ── */
.packages {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem; margin-top: 2rem;
}
.package {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.8rem;
  display: flex; flex-direction: column;
}
.package.featured { border-color: rgba(201,164,92,0.4); background: var(--surface2); }
.package-badge {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.65rem; letter-spacing: 0.16em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.package-name {
  font-size: 0.95rem; font-weight: normal; color: var(--text); margin-bottom: 0.6rem;
}
.package-price { font-size: 1.6rem; color: var(--text); margin-bottom: 0.3rem; }
.package-for {
  font-size: 0.8rem; color: var(--muted); font-style: italic; margin-bottom: 1rem;
}
.package ul {
  list-style: none; padding: 0; margin: 0 0 1.4rem; flex: 1;
}
.package ul li {
  font-size: 0.85rem; color: var(--muted);
  padding: 0.2rem 0 0.2rem 1.2rem; position: relative;
}
.package ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; }
.package .btn { align-self: flex-start; margin-top: auto; }

/* ── WORKSPACE PREVIEW ── */
.workspace-mock {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; margin-top: 2rem;
}
.workspace-mock-header {
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.ws-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.ws-dot.gold { background: var(--gold); }
.ws-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem; letter-spacing: 0.1em; color: var(--muted); margin-left: 0.4rem;
}
.workspace-items {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.8rem;
}
.ws-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.9rem 1rem;
}
.ws-item-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.68rem; letter-spacing: 0.14em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.3rem;
}
.ws-item-val { font-size: 0.82rem; color: var(--muted); }

/* ── PILOT TEASER ── */
.pilot-teaser {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; margin-top: 2rem;
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
.pilot-teaser h3 { font-size: 1rem; font-weight: normal; margin-bottom: 0.4rem; }
.pilot-teaser p { font-size: 0.9rem; color: var(--muted); max-width: 500px; margin: 0; }

/* ── CARDS ── */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem; margin-top: 2rem;
}
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem 1.5rem;
}
.card-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.75rem; letter-spacing: 0.14em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.card p { font-size: 0.92rem; color: var(--muted); max-width: none; margin: 0; }

/* ── BULLET ── */
ul.bullet { list-style: none; padding: 0; margin: 1rem 0; color: var(--muted); }
ul.bullet li {
  padding: 0.25rem 0 0.25rem 1.4rem; position: relative; font-size: 0.95rem;
}
ul.bullet li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; }

/* ── FAQ ── */
.faq { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 1.2rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: 'Georgia', serif; font-size: 0.98rem;
  color: var(--text); margin-bottom: 0.5rem;
}
.faq-a { font-size: 0.9rem; color: var(--muted); max-width: 680px; margin: 0; }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center; padding: 5rem 2rem;
  background: linear-gradient(to bottom, var(--bg), var(--surface));
}
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p { margin: 0 auto 2rem; max-width: 540px; }
.final-cta .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── NOTICE ── */
.notice {
  background: var(--surface); border-left: 2px solid var(--gold);
  padding: 1.4rem 1.6rem; border-radius: 0 var(--radius) var(--radius) 0; margin-top: 1.5rem;
}
.notice p { font-size: 0.92rem; margin-bottom: 0.5rem; max-width: none; }

/* ── FOOTER ── */
footer {
  padding: 2.5rem 2rem; border-top: 1px solid var(--border); text-align: center;
}
footer p {
  font-size: 0.78rem; color: rgba(183,183,174,0.4);
  font-family: 'Helvetica Neue', Arial, sans-serif; letter-spacing: 0.06em; margin: 0;
}

/* ── MOBILE ── */
@media (max-width: 700px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-shot { order: -1; }
  nav .nav-links { gap: 0.8rem; }
  section { padding: 3rem 1.2rem; }
  .pilot-teaser { grid-template-columns: 1fr; }
  .wrap { padding: 0 1.2rem; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) {
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.2rem 2.5rem; }
}

/* ── HERO VIDEO ── */
.hero-video-wrap {
  position: relative;
  width: 100%;
  height: calc(100vh - 57px);
  height: calc(100dvh - 57px);
  max-height: calc(100vh - 57px);
  max-height: calc(100dvh - 57px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,6,0.45) 0%,
    rgba(5,5,6,0.55) 60%,
    rgba(5,5,6,0.85) 100%
  );
}
.hero-video-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.5rem 3rem;
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  left: 0; right: 0;
}
.hero-video-content .hero-eyebrow { margin-bottom: 0.8rem; }
.hero-video-content h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  max-width: 620px;
  margin-bottom: 1rem;
}
.hero-video-content .hero-sub {
  max-width: 560px;
  margin-bottom: 1.6rem;
}
.hero-video-content .hero-trust { max-width: 480px; }

@media (max-width: 700px) {
  .hero-video-content { padding: 2rem 1.4rem; }
  .hero-video-wrap { height: calc(100dvh - 57px); max-height: calc(100dvh - 57px); }
}

/* ── HERO LOGO ── */
.hero-logo {
  position: absolute;
  top: 1.6rem;
  left: 2rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  z-index: 10;
}
@media (max-width: 700px) {
  .hero-logo { top: 1.2rem; left: 1.4rem; font-size: 0.88rem; }
}
