/* Shared marketing page styles. Each page sets its palette + fonts in :root. */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0; overflow-x: hidden;
  background: var(--bg); color: var(--text);
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: var(--accent-text); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--font-display); font-weight: var(--display-weight, 700); letter-spacing: var(--display-tracking, -0.02em); line-height: 1.1; margin: 0; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.eyebrow { color: var(--accent-text); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }

/* nav */
nav.top { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
nav.top .brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-family: var(--font-display); font-weight: var(--display-weight, 700); font-size: 19px; }
nav.top .brand img { width: 34px; height: 34px; border-radius: 9px; }
nav.top .links { display: flex; align-items: center; gap: 22px; font-size: 15px; }
nav.top .links a { color: var(--muted); }
nav.top .links a:hover { color: var(--accent-text); text-decoration: none; }
nav.top .links .btn { padding: 9px 16px; font-size: 14px; background: #000; color: #fff; box-shadow: none; border-radius: 999px; }
nav.top .links .btn:hover { filter: none; background: #222; box-shadow: none; }

/* buttons + badge */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: var(--on-accent); font-weight: 700; font-size: 16px;
  padding: 14px 24px; border-radius: 12px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent) 35%, transparent);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 10px 28px color-mix(in srgb, var(--accent) 45%, transparent); }
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--border); box-shadow: none; }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent-text); }
.badge {
  display: inline-flex; align-items: center; gap: 10px; background: #000; color: #fff;
  border: 1px solid #a6a6a6; border-radius: 10px; padding: 8px 16px 8px 12px; line-height: 1.1;
  transition: transform .15s ease;
}
.badge:hover { text-decoration: none; transform: translateY(-2px); }
.badge svg { width: 26px; height: 26px; fill: #fff; }
.badge .t { display: flex; flex-direction: column; }
.badge .t small { font-size: 10px; letter-spacing: .02em; }
.badge .t b { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }

/* hero */
.hero { display: grid; min-width: 0; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: 56px; align-items: center; padding: 64px 0 88px; }
.hero h1 { font-size: clamp(38px, 5.2vw, 62px); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent-text); }
.hero .lead { font-size: 20px; color: var(--muted); margin: 0 0 30px; max-width: 520px; }
.cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cta small { color: var(--muted); font-size: 14px; }
.trust { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }
.trust span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; padding: 7px 12px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--muted); }
.trust span::before { content: "✓"; color: var(--accent-text); font-weight: 800; }

/* device frame */
.phone { position: relative; width: min(100%, 320px); aspect-ratio: 1320/2868; margin: 0 auto; border-radius: 46px; background: #0b0b0c; padding: 10px; box-shadow: 0 30px 70px rgba(0,0,0,.22), inset 0 0 0 2px #2a2a2e; }
.phone::before { content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 34%; height: 24px; background: #0b0b0c; border-radius: 999px; z-index: 2; }
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 38px; }
.phone.sm { width: min(100%, 250px); border-radius: 38px; padding: 8px; }
.phone.sm img { border-radius: 31px; }
.hero-shots { position: relative; display: flex; justify-content: center; align-items: flex-end; gap: 0; min-width: 0; }
.hero-shots .phone { z-index: 1; }
.hero-shots .phone.sm { margin-left: -70px; margin-bottom: -30px; z-index: 0; opacity: .96; }
.glow { position: absolute; inset: auto 0 10% 0; height: 60%; background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent) 28%, transparent), transparent 70%); filter: blur(30px); z-index: -1; pointer-events: none; }

/* answer box (AIO) */
.answer { background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 14px; padding: 22px 26px; margin: 0 0 8px; font-size: 17px; }
.answer p { margin: 0; }
.answer strong { color: var(--text); }

/* sections */
section { padding: 88px 0; }
section + section { border-top: 1px solid var(--border); }
.sec-head { max-width: 680px; margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 12px; }
.sec-head p { color: var(--muted); font-size: 19px; margin: 0; }

.feature { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 64px; align-items: center; padding: 56px 0; }
.feature + .feature { border-top: 1px dashed var(--border); }
.feature.flip .copy { order: 2; }
.feature h3 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 14px; }
.feature p { color: var(--muted); font-size: 18px; margin: 0 0 18px; }
.feature ul { margin: 0 0 22px; padding: 0; list-style: none; }
.feature li { padding: 6px 0 6px 28px; position: relative; }
.feature li::before { content: ""; position: absolute; left: 0; top: 14px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent-dim); box-shadow: inset 0 0 0 2px var(--accent); }
.feature .shot { display: flex; justify-content: center; position: relative; }
.feature .link { font-weight: 600; }
.feature .link::after { content: " →"; }

/* audience */
.who { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.who div { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.who div b { display: block; font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; font-weight: var(--display-weight, 700); }
.who div span { color: var(--muted); }

/* grid of extras */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid > div { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; }
.grid strong { display: block; margin-bottom: 4px; }
.grid span { color: var(--muted); font-size: 15px; }

/* pricing */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 34px; display: flex; flex-direction: column; position: relative; }
.plan.hi { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset, 0 24px 60px color-mix(in srgb, var(--accent) 18%, transparent); }
.plan .tag { position: absolute; top: -13px; left: 30px; background: var(--accent); color: var(--on-accent); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.plan .name { font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.plan.hi .name { color: var(--accent-text); }
.plan .price { font-family: var(--font-display); font-size: 44px; font-weight: var(--display-weight, 800); letter-spacing: -0.02em; margin: 10px 0 2px; }
.plan .price span { font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan .alt { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.plan ul { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.plan li { padding: 8px 0; border-top: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; font-size: 16px; }
.plan li::before { content: "✓"; color: var(--accent-text); font-weight: 800; flex-shrink: 0; }
.plan li.no { color: var(--muted); }
.plan li.no::before { content: "–"; color: var(--muted); }
.legal { color: var(--muted); font-size: 13px; margin-top: 22px; max-width: 760px; }

/* faq */
.faq { max-width: 800px; }
.faq details { border-top: 1px solid var(--border); }
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; font-weight: 600; font-size: 18px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 16px; font-size: 26px; color: var(--accent-text); font-weight: 300; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 20px; color: var(--muted); max-width: 720px; }

/* download band */
.band { background: var(--accent); color: var(--on-accent); border-radius: 28px; padding: 56px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; margin: 0 0 24px; }
.band h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 10px; color: inherit; }
.band p { margin: 0 0 24px; opacity: .9; font-size: 18px; }
.band .badge { background: var(--on-accent); color: var(--accent); border-color: transparent; }
.band .badge svg { fill: var(--accent); }
.band .qr { background: #fff; border-radius: 16px; padding: 14px; width: 168px; text-align: center; color: #1c1c1e; font-size: 12px; font-weight: 600; }
.band .qr img, .band .qr svg { width: 140px; height: 140px; margin: 0 auto 6px; }

footer { border-top: 1px solid var(--border); padding: 32px 0 56px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
footer .flinks { display: flex; gap: 18px; flex-wrap: wrap; }
footer a { color: var(--muted); }
footer a:hover { color: var(--accent-text); }

/* reveal */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 36px 0 64px; }
  .hero-shots { order: 2; }
  .feature, .feature.flip { grid-template-columns: 1fr; gap: 32px; padding: 44px 0; }
  .feature.flip .copy { order: 0; }
  .who, .grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; }
  .band { grid-template-columns: 1fr; padding: 40px 28px; }
  section { padding: 64px 0; }
}
@media (max-width: 560px) {
  nav.top .links a:not(.btn) { display: none; }
  .who, .grid { grid-template-columns: 1fr; }
  .hero-shots .phone.sm { display: none; }
  .phone { width: min(100%, 280px); }
  .band .qr { display: none; }
}
