/* Production-first: Vanilla CSS, no deps. */
:root{
  --bg: #F7F4EF;
  --surface: #FFFFFF;
  --text: #0B1020;
  --muted: #3C4359;
  --border: #1A1F33;
  --accent: #1C3DFF;
  --accent2: #FFD400;
  --focus: #1C3DFF;
  --ghost-bg: #FFFFFF;
  --ghost-fg: #0B1020;
  --ghost-border: #0B1020;
  --kicker-bg: color-mix(in oklab, var(--accent2) 75%, white);
  --kicker-fg: #0B1020;
  --kicker-border: #0B1020;
  --danger: #C0002B;
  --success: #0C7A43;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --b: 3px;

  --shadow-hard: 8px 8px 0 rgba(0,0,0,.92);
  --shadow-hardsoft: 8px 8px 0 rgba(0,0,0,.55);

  --container: 1120px;
  --section-py: 30px;
  --title-pt: 15px;
  --title-pb: 10px;

  --font-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --hero-overlay: linear-gradient(120deg, rgba(7,11,20,.92), rgba(7,11,20,.58) 52%, rgba(28,61,255,.28));
}

[data-theme="dark"]{
  --bg: #070B14;
  --surface: #0D1324;
  --text: #F2F5FF;
  --muted: #B8C0D9;
  --border: #DCE3FF;
  --accent: #4D7CFF;
  --accent2: #FFD400;
  --focus: #FFD400;
  --ghost-bg: rgba(242,245,255,.08);
  --ghost-fg: #F2F5FF;
  --ghost-border: rgba(242,245,255,.65);
  --kicker-bg: var(--accent2);
  --kicker-fg: #0B1020;
  --kicker-border: #0B1020;
  --danger: #FF5C7A;
  --success: #40D98A;

  --shadow-hard: 10px 10px 0 rgba(0,0,0,.65);
  --shadow-hardsoft: 10px 10px 0 rgba(0,0,0,.45);

  --hero-overlay: linear-gradient(120deg, rgba(7,11,20,.95), rgba(7,11,20,.65) 52%, rgba(77,124,255,.22));
}

*{ box-sizing:border-box; }
html{ color-scheme: light dark; }
body{
  margin:0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* Utilities */
.container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}
.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Skip link (must be before sticky nav) */
.skip-link{
  position:absolute;
  left: 12px;
  top: 10px;
  z-index: 9999;
  background: var(--accent2);
  color: #0B1020;
  border: var(--b) solid #0B1020;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  box-shadow: var(--shadow-hardsoft);
  transform: translateY(-140%);
  transition: transform .18s ease;
}
.skip-link:focus{ transform: translateY(0); }
.skip-link:focus-visible{ outline: 3px solid var(--focus); outline-offset: 3px; }

/* Sticky header/nav */
.site-header{
  position: relative;
}
.navbar{
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: var(--b) solid var(--border);
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
}
.brand{
  display:flex; align-items:center; gap: 10px;
  text-decoration:none;
  color: var(--text);
  font-weight: 900;
  letter-spacing: .2px;
}
.brand .mark{
  width: 34px; height: 34px;
  border-radius: 10px;
  border: var(--b) solid var(--border);
  box-shadow: var(--shadow-hardsoft);
  background: linear-gradient(135deg, var(--accent), color-mix(in oklab, var(--accent2) 60%, var(--accent)));
  display:grid; place-items:center;
  flex: 0 0 auto;
}
.brand .mark img{ width: 20px; height: 20px; }
.brand .name{ font-size: 14px; }
.brand .tag{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  display:block;
}

/* Progress bar */
.progress-wrap{
  position: relative;
  height: 6px;
  background: color-mix(in oklab, var(--border) 14%, transparent);
}
.progress{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
}

/* Nav actions */
.nav-actions{
  display:flex; align-items:center; gap: 10px;
}
.icon-btn{
  appearance:none;
  background: var(--surface);
  color: var(--text);
  border: var(--b) solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 10px;
  line-height: 0;
  box-shadow: var(--shadow-hardsoft);
  cursor:pointer;
}
.icon-btn:hover{ transform: translate(-1px,-1px); }
.icon-btn:active{ transform: translate(1px,1px); box-shadow:none; }
.icon-btn:focus-visible{ outline: 3px solid var(--focus); outline-offset: 3px; }

/* Language dropdown */
.lang{
  position: relative;
}
.lang-btn{
  display:flex; align-items:center; gap: 8px;
  background: var(--surface);
  color: var(--text);
  border: var(--b) solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  box-shadow: var(--shadow-hardsoft);
  cursor:pointer;
  font-weight: 800;
}
.lang-btn .chev{
  width: 10px; height: 10px;
  border-right: 3px solid var(--text);
  border-bottom: 3px solid var(--text);
  transform: rotate(45deg);
  margin-left: 2px;
}
.lang-btn:focus-visible{ outline: 3px solid var(--focus); outline-offset: 3px; }
.lang-menu{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  min-width: 220px;
  background: var(--surface);
  border: var(--b) solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard);
  padding: 8px;
  display:none;
}
.lang-menu[data-open="true"]{ display:block; }
.lang-menu .opt{
  width: 100%;
  background: transparent;
  border: var(--b) solid transparent;
  border-radius: 12px;
  padding: 10px 10px;
  text-align:left;
  cursor:pointer;
  color: var(--text);
  font-weight: 800;
}
.lang-menu .opt small{
  display:block;
  color: var(--muted);
  font-weight: 700;
  margin-top: 2px;
}
.lang-menu .opt[aria-selected="true"]{
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 10%, transparent);
}
.lang-menu .opt:hover{
  border-color: var(--border);
  background: color-mix(in oklab, var(--border) 10%, transparent);
}
.lang-menu .opt:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* HERO */
.hero{
  position: relative;
  overflow:hidden;
  border-bottom: var(--b) solid var(--border);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--hero-overlay), url("/assets/web/hero-bg.webp");
  background-size: cover;
  background-position: center 22%;
  filter: saturate(1.05);
  transform: scale(1.02);
}
.hero::after{
  /* brutal texture */
  content:"";
  position:absolute; inset:-20px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,212,0,.12), transparent 35%),
    radial-gradient(circle at 90% 18%, rgba(77,124,255,.15), transparent 40%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 14px);
  mix-blend-mode: overlay;
  pointer-events:none;
}
.hero .container{
  position: relative;
  padding: 42px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items:center;
}
.eyebrow{
  margin:0 0 10px;
  display:inline-flex;
  gap: 8px;
  align-items:center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .7px;
  color: rgba(242,245,255,.92);
  text-transform: uppercase;
  background: rgba(13,19,36,.55);
  border: 2px solid rgba(242,245,255,.35);
  padding: 8px 10px;
  border-radius: 999px;
}
.hero h1{
  margin:0;
  padding-top: var(--title-pt);
  padding-bottom: var(--title-pb);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  color: #F2F5FF;
  text-shadow: 0 2px 0 rgba(0,0,0,.45);
}
.subhead{
  margin: 10px 0 0;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(242,245,255,.92);
  max-width: 62ch;
}
.hero-bullets{
  margin: 16px 0 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 8px;
}
.hero-bullets li{
  display:flex; gap: 10px; align-items:flex-start;
  color: rgba(242,245,255,.92);
  font-weight: 700;
}
.hero-bullets li::before{
  content:"";
  width: 14px; height: 14px;
  margin-top: 4px;
  background: var(--accent2);
  border: 2px solid rgba(242,245,255,.55);
  border-radius: 4px;
  box-shadow: 2px 2px 0 rgba(0,0,0,.55);
  flex: 0 0 auto;
}

.cta-row{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  text-decoration:none;
  border-radius: var(--radius-md);
  border: var(--b) solid #0B1020;
  padding: 12px 16px;
  font-weight: 900;
  letter-spacing: .2px;
  box-shadow: var(--shadow-hard);
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
  min-height: 48px;
}
.btn.primary{
  background: var(--accent2);
  color: #0B1020;
}
.btn.ghost{
  background: var(--ghost-bg);
  color: var(--ghost-fg);
  border-color: var(--ghost-border);
  box-shadow: var(--shadow-hardsoft);
}
.btn:hover{ transform: translate(-2px,-2px); }
.btn:active{ transform: translate(2px,2px); box-shadow:none; }
.btn:focus-visible{ outline: 3px solid var(--focus); outline-offset: 4px; }
.btn .arrow{
  width: 12px; height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.trust-strip{
  margin-top: 18px;
  background: rgba(13,19,36,.52);
  border: 2px solid rgba(242,245,255,.28);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display:flex;
  align-items:center;
  gap: 12px;
}
.trust-strip img{
  width: min(520px, 100%);
  height: auto;
  display:block;
  margin-inline:auto;
  filter: invert(1) brightness(1.2);
  opacity: .92;
}
.hero-media{
  position: relative;
  display:grid;
  place-items:center;
}
.packshot{
  width: min(420px, 100%);
  height: auto;
  display:block;
  margin-inline:auto;
  filter: drop-shadow(20px 24px 0 rgba(0,0,0,.45));
  transform: rotate(-2deg);
}
.hero-stamp{
  position:absolute;
  right: -8px;
  bottom: -8px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  border: 3px solid rgba(242,245,255,.55);
  background: rgba(13,19,36,.6);
  display:grid;
  place-items:center;
  box-shadow: 12px 12px 0 rgba(0,0,0,.45);
}
.hero-stamp span{
  color:#F2F5FF;
  font-weight: 900;
  text-align:center;
  line-height:1.05;
  font-size: 13px;
  padding: 10px;
}

/* MAIN SECTIONS */
main{ display:block; }
.section{
  padding-block: var(--section-py);
}
.section h2{
  margin:0;
  padding-top: var(--title-pt);
  padding-bottom: var(--title-pb);
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: .2px;
}
.section article h3{
  margin:0;
  padding-top: var(--title-pt);
  padding-bottom: var(--title-pb);
  font-size: 18px;
}
.section p{
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 72ch;
}
.grid-2{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.card{
  background: var(--surface);
  border: var(--b) solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
  padding: 16px;
}
.card strong{ color: var(--text); }
.card:hover{ transform: translate(-2px,-2px); }
.card{ transition: transform .12s ease, box-shadow .12s ease; }
.card:active{ transform: translate(2px,2px); box-shadow:none; }

.kicker{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .7px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--kicker-fg);
background: var(--kicker-bg);
display:inline-block;
  padding: 8px 10px;
  border: var(--b) solid var(--kicker-border);
border-radius: 999px;
  box-shadow: var(--shadow-hardsoft);
}
.benefits{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.benefit{
  background: var(--surface);
  border: var(--b) solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-hardsoft);
  padding: 12px;
  text-align:left;
}
.benefit img{
  width: 46px; height: 46px; display:block;
  border-radius: 14px;
  border: var(--b) solid var(--border);
  box-shadow: var(--shadow-hardsoft);
  margin-bottom: 10px;
}
.benefit h4{
  margin:0 0 6px;
  font-size: 14px;
  color: var(--text);
}
.benefit p{
  margin:0;
  color: var(--muted);
  font-size: 13px;
}

.list{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 8px 0; }
.callout{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:center;
}
.callout .media{
  display:grid;
  place-items:center;
}
.callout .media img{
  width: min(520px, 100%);
  height: auto;
  display:block;
  margin-inline:auto;
}
.callout .proof{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 12px;
  border: var(--b) solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-hardsoft);
  font-weight: 900;
}
.pill img{ width: 44px; height: 44px; border-radius: 999px; border: var(--b) solid var(--border); }

/* PRICING */
.pricing{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.price-card{
  display:flex;
  flex-direction:column;
  height:100%;
  position:relative;
}
.badge{
  position:absolute;
  top: -12px;
  left: 14px;
  background: var(--accent);
  color: #F2F5FF;
  border: var(--b) solid #0B1020;
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 900;
  box-shadow: var(--shadow-hardsoft);
}
.price-card .pack{
  width: min(260px, 100%);
  height:auto;
  display:block;
  margin: 2px auto 10px;
  object-fit: contain;
}
.price-card h4{
  margin:0;
  font-size: 16px;
  color: var(--text);
}
.price-card .meta{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.price-card ul{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.cta-wrap{ margin-top:auto; padding-top: 14px; }
.price-card .btn{
  width: min(100%, 360px);
  margin-inline:auto;
}
.price-card.featured{
  outline: 4px solid var(--accent2);
  outline-offset: 4px;
}

/* FAQ (details/summary) */
.faq{
  margin-top: 18px;
  display:grid;
  gap: 12px;
}
details{
  background: var(--surface);
  border: var(--b) solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hardsoft);
  padding: 10px 12px;
}
summary{
  cursor:pointer;
  font-weight: 900;
  color: var(--text);
  list-style:none;
}
summary::-webkit-details-marker{ display:none; }
summary::after{
  content:"+";
  float:right;
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}
details[open] summary::after{ content:"–"; }
details > div{
  padding-top: 10px;
  color: var(--muted);
}
summary:focus-visible{ outline: 3px solid var(--focus); outline-offset: 3px; }

/* Footer */
footer{
  border-top: var(--b) solid var(--border);
  padding: 22px 0 26px;
}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
  align-items:center;
  justify-content:space-between;
}
.footer-inner a{
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.footer-inner a:focus-visible{ outline: 3px solid var(--focus); outline-offset: 3px; }
.disclosure{
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* Reveal motion */
.reveal{
  opacity: 0;
  transform: translateY(14px);
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.9,.2,1);
}

/* Mobile rules */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ order:-1; }
  .trust-strip img{ filter: invert(1) brightness(1.15); }
  .benefits{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pricing{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .callout{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .hero .container{ padding: 34px 0 28px; }
  .hero-copy, .section{ text-align:center; }
  .hero-bullets, .list, .benefit, .price-card ul{ text-align:left; }
  .cta-row{ justify-content:center; }
  .btn{ width: min(100%, 360px); }
  .nav-inner{ padding-inline: 0; }
}