:root {
  --bg: #080b11;
  --bg-soft: #0d121b;
  --panel: #111824;
  --panel-2: #172131;
  --line: rgba(154, 174, 204, .15);
  --text: #f3f6fb;
  --muted: #9aa8bb;
  --gold: #f4c34f;
  --gold-deep: #d49a20;
  --teal: #35e0d2;
  --green: #4ade80;
  --max: 1180px;
  --radius: 24px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: Sora, Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -12%, rgba(43, 66, 105, .34), transparent 42%),
    var(--bg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
h1, h2, h3 { font-family: var(--display); font-weight: 800; }

/* fundos ambiente */
.ambient { position: fixed; border-radius: 999px; filter: blur(120px); opacity: .11; pointer-events: none; z-index: -2; }
.ambient-one { width: 560px; height: 560px; background: var(--gold); top: 180px; right: -320px; }
.ambient-two { width: 520px; height: 520px; background: var(--teal); top: 1200px; left: -360px; }
.grid-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(154,174,204,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(154,174,204,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 70%);
}

/* header */
.site-header {
  position: sticky; top: 0; z-index: 50; height: 76px;
  display: flex; align-items: center; gap: 28px;
  width: min(calc(100% - 32px), 1240px); margin: 0 auto; padding: 0 20px;
  background: rgba(8, 11, 17, .8); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand img, .footer-brand img { border-radius: 10px; }
.brand span, .footer-brand div { display: flex; flex-direction: column; }
.brand strong, .footer-brand strong { font-family: var(--display); font-size: 15px; letter-spacing: .08em; }
.brand small, .footer-brand small { color: var(--muted); font-size: 11px; }
nav { display: flex; gap: 26px; }
nav a { color: var(--muted); font-size: 13px; font-weight: 600; transition: color .2s; }
nav a:hover { color: var(--text); }
.site-header > .button { min-height: 44px; }

/* botões */
.button {
  min-height: 48px; padding: 0 21px; border: 1px solid transparent; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--text); background: transparent; font-weight: 750; font-size: 14px;
  cursor: pointer; transition: transform .2s, border-color .2s, background .2s, filter .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 17px; font-size: 13px; }
.button-lg { min-height: 54px; padding: 0 26px; font-size: 15px; }
.button-primary { position: relative; color: #211800; background: linear-gradient(180deg, #ffd66d, var(--gold-deep)); box-shadow: 0 12px 38px rgba(212,154,32,.28); animation: ctaGlow 3.2s ease-in-out infinite; }
.button-primary:hover { filter: brightness(1.07); animation: none; box-shadow: 0 16px 48px rgba(212,154,32,.45); }
.button-primary span[aria-hidden] { transition: transform .2s; }
.button-primary:hover span[aria-hidden] { transform: translateX(3px); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.03); }
.button-ghost:hover { border-color: rgba(244,195,79,.4); background: rgba(244,195,79,.06); }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 12px 38px rgba(212,154,32,.22); }
  50% { box-shadow: 0 14px 50px rgba(244,195,79,.44); }
}

/* seções base */
.section-shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section-tag { color: var(--gold); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.section-heading { max-width: 720px; margin-bottom: 44px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 12px 0 10px; font-size: clamp(32px, 4vw, 50px); line-height: 1.06; letter-spacing: -.035em; }
.section-heading p { margin: 0; color: var(--muted); line-height: 1.7; }

/* HERO */
.hero {
  width: min(calc(100% - 40px), var(--max)); min-height: 640px; margin: 0 auto;
  padding: 92px 0 70px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 54px;
}
.eyebrow { display: flex; align-items: center; gap: 9px; color: var(--gold); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px var(--green); }
h1 { margin: 18px 0; font-size: clamp(42px, 5vw, 66px); line-height: 1.02; letter-spacing: -.05em; }
h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #ffe08a 0%, var(--gold) 30%, #fff4cf 50%, var(--gold) 70%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { max-width: 540px; margin: 0; color: #b4bfce; font-size: 17px; line-height: 1.62; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 26px; margin-top: 26px; }
.hero-price-tag { display: flex; align-items: baseline; gap: 9px; padding: 10px 16px; border: 1px solid rgba(244,195,79,.25); border-radius: 14px; background: rgba(244,195,79,.06); }
.hero-price-tag small, .hero-price-tag span { color: var(--muted); font-size: 11px; }
.hero-price-tag strong { font-family: var(--display); color: var(--text); font-size: 22px; letter-spacing: -.03em; }
.hero-trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: 12px; }
.hero-trust span { color: var(--green); font-weight: 900; }

.hero-product { position: relative; padding: 18px 0 0; }
.window-glow { position: absolute; inset: 10% 4%; border-radius: 50%; background: var(--gold); opacity: .14; filter: blur(70px); }
.app-window { position: relative; overflow: hidden; border: 1px solid rgba(244,195,79,.26); border-radius: 16px; background: #0a0e15; box-shadow: 0 32px 90px rgba(0,0,0,.55); }
.product-preview { transform: perspective(1400px) rotateY(-4deg) rotateX(2deg); }
.window-bar { height: 40px; padding: 0 13px; display: flex; align-items: center; justify-content: space-between; background: #161e2b; border-bottom: 1px solid var(--line); }
.window-brand { display: flex; align-items: center; gap: 8px; color: #dce5f1; font-size: 11px; font-weight: 700; }
.window-brand img { border-radius: 6px; }
.window-controls { display: flex; gap: 7px; }
.window-controls i { width: 8px; height: 8px; border-radius: 50%; background: #566278; }
.dashboard-shot { width: 100%; height: auto; display: block; }
.proof-caption { margin-top: 15px; display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--muted); font-size: 11px; }
.proof-caption strong { color: #dce5f1; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(20,28,41,.92); box-shadow: 0 12px 30px rgba(0,0,0,.35); backdrop-filter: blur(12px); font-size: 11px; font-weight: 700; }
.floating-top { top: -14px; right: -16px; }
.floating-bottom { left: -18px; bottom: 42px; }
.floating-bottom strong { font-family: var(--display); color: var(--gold); font-size: 24px; line-height: 1; }
.floating-bottom span { color: var(--muted); line-height: 1.15; }

/* faixa de números */
.stats-strip {
  margin-top: 6px; padding: 26px 34px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px 26px; border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(135deg, rgba(23,33,49,.7), rgba(11,16,24,.7)); backdrop-filter: blur(8px);
}
.stat { display: flex; flex-direction: column; gap: 3px; min-width: 120px; }
.stat strong { font-family: var(--display); font-size: 30px; letter-spacing: -.04em; background: linear-gradient(180deg, #ffe6a3, var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: 12.5px; line-height: 1.35; }
.stat-sep { width: 1px; align-self: stretch; background: var(--line); }

/* DOR */
.pain { padding: 96px 0 20px; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pain-card { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(14,20,30,.6); }
.pain-ic { font-size: 26px; margin-bottom: 14px; }
.pain-card p { margin: 0; color: #cbd5e2; font-size: 14px; line-height: 1.55; }

/* TRANSFORMAÇÃO */
.problem-section { padding: 96px 0; }
.problem-card { padding: 48px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(135deg, rgba(23,33,49,.78), rgba(11,16,24,.82)); display: grid; grid-template-columns: 1fr .92fr; gap: 56px; align-items: center; }
.problem-copy h2 { margin: 13px 0 16px; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -.035em; }
.problem-copy p { color: var(--muted); line-height: 1.7; margin: 0 0 24px; }
.before-after { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; }
.comparison { min-height: 178px; padding: 18px; border: 1px solid var(--line); border-radius: 17px; text-align: center; background: rgba(4,7,11,.45); }
.comparison > span { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .14em; }
.comparison-after > span { color: var(--gold); }
.comparison p { margin: 12px 0 0; color: #cbd5e2; font-size: 12px; }
.comparison-arrow { color: var(--gold); font-size: 22px; }
.browser-stack { height: 82px; margin-top: 15px; position: relative; }
.browser-stack i { position: absolute; width: 72%; height: 50px; left: 14%; border: 1px solid #384559; border-radius: 7px; background: #131b28; }
.browser-stack i:nth-child(1) { transform: translate(-14px, 8px) rotate(-7deg); }
.browser-stack i:nth-child(2) { transform: translate(14px, 8px) rotate(7deg); }
.browser-stack i:nth-child(3) { transform: translate(-7px, 22px) rotate(-3deg); }
.browser-stack i:nth-child(4) { transform: translate(7px, 22px) rotate(3deg); }
.mini-grid { width: 104px; height: 82px; margin: 15px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 6px; border: 1px solid rgba(244,195,79,.35); border-radius: 9px; background: #111925; }
.mini-grid i { border-radius: 3px; background: linear-gradient(135deg, #253650, #121a27); }

/* BENEFÍCIOS */
.features { padding: 96px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { padding: 28px; border: 1px solid var(--line); border-radius: 19px; background: linear-gradient(145deg, rgba(19,27,40,.88), rgba(10,14,21,.8)); transition: transform .25s, border-color .25s; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(244,195,79,.35); }
.feature-card h3 { margin: 22px 0 9px; font-size: 18px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }
.feature-icon { width: 47px; height: 47px; display: grid; place-items: center; border: 1px solid rgba(244,195,79,.24); border-radius: 13px; color: var(--gold); background: rgba(244,195,79,.075); font-size: 20px; font-weight: 850; }
.grid-icon { padding: 11px; grid-template-columns: 1fr 1fr; gap: 3px; }
.grid-icon i { width: 9px; height: 9px; border-radius: 2px; background: var(--gold); }
.session-icon { position: relative; }
.session-icon i { position: absolute; width: 19px; height: 23px; border: 2px solid var(--gold); border-radius: 5px; }
.session-icon i:first-child { transform: translate(-5px,-4px); opacity: .5; }
.session-icon i:last-child { transform: translate(5px,4px); }

/* SHOWCASE */
.showcase { padding: 40px 0 96px; text-align: center; }
.showcase-head { max-width: 640px; margin: 0 auto 32px; }
.showcase-head h2 { margin: 12px 0 0; font-size: clamp(30px, 3.6vw, 46px); letter-spacing: -.035em; }
.showcase-window { max-width: 1000px; margin: 0 auto; border-color: rgba(244,195,79,.32); box-shadow: 0 40px 110px rgba(0,0,0,.6); }

/* PASSOS */
.how { padding: 96px 0; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.steps li { position: relative; min-height: 240px; padding: 32px; background: rgba(14,20,30,.72); }
.steps li + li { border-left: 1px solid var(--line); }
.step-number { font-family: var(--display); color: rgba(244,195,79,.28); font-size: 48px; font-weight: 800; letter-spacing: -.06em; }
.steps h3 { margin: 44px 0 9px; font-size: 18px; }
.steps p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

/* SEGURANÇA */
.safety-band { margin-top: 8px; padding: 26px 30px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; border: 1px solid rgba(53,224,210,.2); border-radius: 20px; background: radial-gradient(circle at 12% 50%, rgba(53,224,210,.09), transparent 34%), rgba(13,20,29,.82); }
.safety-badge { width: 46px; height: 50px; display: grid; place-items: center; color: #061312; background: linear-gradient(145deg, #6ef3e8, #1aa99f); clip-path: polygon(50% 0, 95% 17%, 90% 70%, 50% 100%, 10% 70%, 5% 17%); font-weight: 950; }
.safety-band strong { font-family: var(--display); font-size: 16px; }
.safety-band p { margin: 5px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.safety-band > span { padding: 8px 13px; border: 1px solid rgba(53,224,210,.28); border-radius: 999px; color: var(--teal); font-size: 11px; font-weight: 800; white-space: nowrap; }

/* OFERTA */
.offer { padding: 100px 0; }
.offer-card { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; overflow: hidden; border: 1px solid rgba(244,195,79,.28); border-radius: 28px; background: linear-gradient(135deg, #182231, #0c1119); box-shadow: 0 35px 100px rgba(0,0,0,.4); }
.offer-card::before { content: ""; position: absolute; inset: 0; border-radius: 28px; padding: 1px; background: linear-gradient(135deg, rgba(244,195,79,.7), transparent 45%, rgba(53,224,210,.4)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.offer-main { padding: 50px; }
.offer-brand { display: flex; align-items: center; gap: 18px; }
.offer-brand img { border-radius: 18px; }
.offer-brand span { color: var(--gold); font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.offer-brand h2 { margin: 4px 0 0; font-size: 36px; }
.offer-main > p { max-width: 560px; margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.offer-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.offer-list li { display: flex; gap: 10px; color: #c9d3df; font-size: 14px; }
.offer-list li span { color: var(--green); font-weight: 900; }
.price-box { position: relative; padding: 50px 42px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(4,7,11,.45); border-left: 1px solid var(--line); text-align: center; }
.price-label, .price-note { color: var(--muted); font-size: 12px; }
.price { margin: 6px 0 -2px; display: flex; align-items: flex-start; letter-spacing: -.06em; font-family: var(--display); }
.price small { margin-top: 16px; font-size: 18px; }
.price strong { font-size: 74px; line-height: 1; background: linear-gradient(180deg, #ffe6a3, var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price sup { margin-top: 12px; font-size: 24px; font-weight: 800; }
.price-box .button { width: 100%; margin-top: 24px; }
.guarantee { margin-top: 16px; display: flex; align-items: center; gap: 7px; color: #8390a2; font-size: 11px; }

/* FAQ */
.faq { padding: 96px 0; }
.faq-list { display: grid; gap: 10px; }
details { border: 1px solid var(--line); border-radius: 14px; background: rgba(15,22,32,.7); }
summary { list-style: none; padding: 21px 24px; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 15px; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--gold); font-size: 22px; font-weight: 400; transition: transform .2s; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: 0; padding: 0 24px 23px; color: var(--muted); line-height: 1.65; font-size: 14px; }

/* CTA FINAL */
.final-cta { margin: 20px 0 100px; padding: 72px 30px; border: 1px solid var(--line); border-radius: 26px; text-align: center; background: radial-gradient(circle at 50% 0, rgba(244,195,79,.14), transparent 48%), #101722; }
.final-cta h2 { margin: 14px 0 16px; font-size: clamp(32px, 4vw, 50px); letter-spacing: -.035em; line-height: 1.06; }
.final-cta > p { max-width: 480px; margin: 0 auto 26px; color: var(--muted); line-height: 1.6; }
.final-cta > small { display: block; margin-top: 16px; color: var(--muted); }

/* footer */
footer { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 34px 0 95px; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-links { margin-left: auto; display: flex; gap: 22px; color: var(--muted); font-size: 12px; }
.footer-links a:hover { color: var(--text); }
.disclaimer { grid-column: 1/-1; margin: 0; color: #637084; font-size: 10px; line-height: 1.5; }
.mobile-buy-bar { display: none; }

/* toast */
.toast { position: fixed; z-index: 120; left: 50%; bottom: 28px; max-width: calc(100% - 32px); padding: 12px 18px; border: 1px solid var(--line); border-radius: 10px; background: #1a2433; box-shadow: 0 14px 45px #0008; opacity: 0; pointer-events: none; transform: translate(-50%, 15px); transition: .25s; font-size: 13px; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-one { transition-delay: .1s; }
.delay-two { transition-delay: .2s; }

/* POKE MULTI MOBILE */
.mobile-product-page .ambient-one { background: #f4c34f; }
.mobile-product-page .ambient-two { background: #35e0d2; top: 1450px; }
.mobile-hero { grid-template-columns: .92fr 1.08fr; }
.mobile-glow { inset: 16% 6%; opacity: .17; }

.mobile-device-shell {
  position: relative;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(244,195,79,.34);
  border-radius: 24px;
  background: linear-gradient(145deg, #202b3b, #080c12 70%);
  box-shadow: 0 36px 100px rgba(0,0,0,.62), inset 0 0 0 1px rgba(255,255,255,.04);
}
.mobile-device-shell::before,
.mobile-device-shell::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 30%;
  width: 3px;
  height: 17%;
  border-radius: 999px;
  background: #647188;
  opacity: .55;
}
.mobile-device-shell::before { left: 3px; }
.mobile-device-shell::after { right: 3px; }
.mobile-device-camera {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #05070a;
  box-shadow: 0 0 0 2px #273246;
}
.mobile-shot-crop {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1600 / 786;
  border-radius: 16px;
  background: #080c13;
}
.mobile-shot-crop img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

.tab-stack { height: 82px; margin-top: 15px; display: grid; align-content: center; gap: 5px; }
.tab-stack i { width: 82%; height: 13px; margin: 0 auto; border: 1px solid #384559; border-radius: 999px; background: linear-gradient(90deg, #202c40, #111925); }
.tab-stack i:nth-child(2) { transform: translateX(8px); }
.tab-stack i:nth-child(3) { transform: translateX(-7px); }

.mobile-feature-stage {
  min-height: 390px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 12%, rgba(244,195,79,.13), transparent 42%),
    linear-gradient(145deg, rgba(21,31,46,.88), rgba(8,12,18,.92));
  box-shadow: 0 35px 90px rgba(0,0,0,.35);
}
.feature-phone {
  position: relative;
  width: 100%;
  max-width: 390px;
  aspect-ratio: 2.05 / 1;
  margin: 0 auto;
  padding: 11px;
  border: 1px solid rgba(244,195,79,.3);
  border-radius: 22px;
  background: #080c12;
  box-shadow: 0 22px 60px rgba(0,0,0,.48);
}
.feature-phone > span {
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
  white-space: nowrap;
}
.phone-toolbar { height: 15%; padding: 0 8px; display: flex; justify-content: flex-end; align-items: center; gap: 5px; background: #141e2e; border-radius: 10px 10px 3px 3px; }
.phone-toolbar i { width: 15px; height: 5px; border-radius: 999px; background: #5d6b80; }
.phone-toolbar i:first-child { background: var(--gold); }
.phone-grid { height: 85%; padding: 4px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.phone-grid i { border: 1px solid #26354b; border-radius: 4px; background: linear-gradient(135deg, #21344e, #0d1521 66%); }
.phone-focus { height: 85%; padding-top: 4px; }
.phone-focus span { display: block; width: 100%; height: 100%; border: 1px solid #26354b; border-radius: 4px; background: radial-gradient(circle at 62% 52%, rgba(74,222,128,.24), transparent 14%), linear-gradient(135deg, #243954, #0c1420 68%); }
.feature-switch { color: var(--gold); font-size: 30px; font-weight: 800; }

.compatibility { padding: 72px 0 22px; }
.compatibility-card {
  padding: 44px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
  border: 1px solid rgba(53,224,210,.2);
  border-radius: 26px;
  background: radial-gradient(circle at 8% 16%, rgba(53,224,210,.1), transparent 42%), rgba(13,20,29,.82);
}
.compatibility-copy h2 { margin: 13px 0 16px; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -.035em; }
.compatibility-copy p { margin: 0; color: var(--muted); line-height: 1.72; }
.compatibility-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.compatibility-list li { padding: 14px 16px; display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: center; border: 1px solid var(--line); border-radius: 14px; background: rgba(5,9,14,.42); }
.compatibility-list li > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: #071310; background: linear-gradient(145deg, #6ef3e8, #1aa99f); font-weight: 900; }
.compatibility-list div { display: flex; flex-direction: column; gap: 3px; }
.compatibility-list strong { font-size: 13px; }
.compatibility-list small { color: var(--muted); font-size: 11px; line-height: 1.45; }
.compatibility-note { max-width: 850px; margin: 18px auto 0; color: var(--muted); font-size: 12px; line-height: 1.6; text-align: center; }
.compatibility-note strong { color: #cad6e4; }

.legal-page { width: min(calc(100% - 40px), 780px); margin: 0 auto; padding: 60px 0 90px; }
.legal-page h1 { margin: 70px 0 20px; font-size: clamp(36px, 6vw, 50px); line-height: 1.08; letter-spacing: -.04em; }
.legal-page h2 { margin: 32px 0 8px; font-size: 22px; }
.legal-page p { color: var(--muted); line-height: 1.8; }
.legal-page a:not(.brand) { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* responsivo */
@media (max-width: 980px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 66px; gap: 48px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-cta, .hero-meta, .hero-trust { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .problem-card { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .offer-card { grid-template-columns: 1fr; }
  .price-box { border-left: 0; border-top: 1px solid var(--line); }
  .mobile-feature-stage { padding: 42px 26px; gap: 22px; }
  .compatibility-card { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  .stat-sep { display: none; }
  .stats-strip { justify-content: flex-start; gap: 18px 30px; }
  .stat { min-width: 40%; }
}

@media (max-width: 640px) {
  .site-header { width: 100%; height: 64px; padding: 0 15px; gap: 12px; }
  .brand small { display: none; }
  .site-header > .button { min-height: 44px; padding: 0 13px; font-size: 12px; }
  .hero { width: min(calc(100% - 28px), var(--max)); min-height: auto; padding: 34px 0 52px; gap: 34px; }
  h1 { font-size: 40px; }
  .hero-lead { font-size: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .button { width: 100%; }
  .hero-product { padding: 4px 0 0; }
  .product-preview { transform: none; }
  .mobile-device-shell { padding: 6px; border-radius: 15px; }
  .mobile-shot-crop { border-radius: 10px; }
  .mobile-device-shell::before, .mobile-device-shell::after, .mobile-device-camera { display: none; }
  .app-window { border-radius: 12px; }
  .floating-card { display: none; }
  .section-shell { width: min(calc(100% - 28px), var(--max)); }
  .pain, .problem-section, .features, .showcase, .how, .faq, .offer { padding: 60px 0; }
  .section-heading { margin-bottom: 30px; }
  .problem-card, .offer-main, .price-box { padding: 26px 20px; }
  .pain-grid, .feature-grid { grid-template-columns: 1fr; }
  .mobile-feature-stage { min-height: 620px; padding: 32px 18px 46px; grid-template-columns: 1fr; gap: 48px; }
  .feature-switch { transform: rotate(90deg); line-height: 1; }
  .compatibility { padding: 50px 0 8px; }
  .compatibility-card { padding: 27px 19px; }
  .compatibility-list li { padding: 12px; }
  .before-after { gap: 8px; }
  .comparison { min-height: 150px; padding: 11px 7px; }
  .comparison-arrow { font-size: 16px; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: auto; }
  .steps li + li { border-left: 0; border-top: 1px solid var(--line); }
  .steps h3 { margin-top: 20px; }
  .safety-band { grid-template-columns: auto 1fr; padding: 22px 18px; }
  .safety-band > span { grid-column: 1/-1; width: fit-content; }
  .offer-brand h2 { font-size: 28px; }
  .offer-list { grid-template-columns: 1fr; }
  .final-cta { margin-bottom: 60px; padding: 48px 18px; }
  footer { padding-bottom: 110px; grid-template-columns: 1fr; }
  .footer-links { margin-left: 0; flex-wrap: wrap; }
  .mobile-buy-bar { position: fixed; z-index: 60; left: 10px; right: 10px; bottom: 10px; padding: 9px 9px 9px 15px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid rgba(244,195,79,.3); border-radius: 15px; background: rgba(14,20,30,.94); box-shadow: 0 15px 45px #0008; backdrop-filter: blur(16px); opacity: 0; pointer-events: none; transform: translateY(24px); transition: opacity .25s, transform .25s; }
  .mobile-buy-bar.visible { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-buy-bar div { display: flex; flex-direction: column; }
  .mobile-buy-bar small { color: var(--muted); font-size: 9px; }
  .mobile-buy-bar strong { font-size: 18px; }
  .mobile-buy-bar .button { min-height: 43px; padding: 0 15px; font-size: 12px; }
  .legal-page { width: min(calc(100% - 32px), 780px); padding-top: 28px; }
  .legal-page h1 { margin-top: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
