:root {
  --bg: #f9f7f8;
  --bg-soft: #f1eef1;
  --surface: rgba(255, 255, 255, .82);
  --surface-strong: #ffffff;
  --ink: #21151c;
  --muted: #6f5d67;
  --line: rgba(75, 38, 59, .12);
  --dark: #12070d;
  --dark-2: #1d0b13;
  --wine: #8c1937;
  --wine-2: #b2264d;
  --rose: #e86b8c;
  --gold: #e4b65f;
  --gold-soft: #f5ddae;
  --cyan: #72e8e1;
  --green: #62d8a3;
  --shadow: 0 24px 70px rgba(42, 16, 31, .14);
  --shadow-soft: 0 18px 44px rgba(42, 16, 31, .08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { background: rgba(178, 38, 77, .2); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 104px 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 16px; background: #fff; border-radius: 12px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }
.scroll-progress { position: fixed; z-index: 999; top: 0; left: 0; width: 100%; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--rose), var(--gold), var(--cyan)); box-shadow: 0 0 16px rgba(114, 232, 225, .6); }

.topbar { position: relative; z-index: 110; color: #eae3e7; background: #0d0509; border-bottom: 1px solid rgba(255,255,255,.07); }
.topbar-inner { min-height: 40px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 11px; font-weight: 800; letter-spacing: .09em; text-align: center; }
.topbar strong { color: var(--gold-soft); }
.topbar-divider { color: rgba(255,255,255,.28); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(98,216,163,.09), 0 0 14px rgba(98,216,163,.8); animation: statusPulse 2s infinite; }
@keyframes statusPulse { 50% { opacity: .55; transform: scale(.85); } }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(18, 7, 13, .78); backdrop-filter: blur(18px) saturate(150%); transition: box-shadow .2s ease, background .2s ease; }
.site-header.is-scrolled { background: rgba(18, 7, 13, .94); box-shadow: 0 18px 40px rgba(10, 3, 7, .18); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand-symbol { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; color: var(--gold-soft); background: linear-gradient(145deg, rgba(178,38,77,.5), rgba(255,255,255,.03)); border: 1px solid rgba(245,221,174,.18); box-shadow: inset 0 0 18px rgba(255,255,255,.04), 0 10px 28px rgba(0,0,0,.22); }
.brand-symbol svg { width: 27px; }
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-size: 14px; letter-spacing: -.02em; }
.brand-copy small { color: rgba(255,255,255,.65); font-size: 12px; }
.desktop-nav { display: flex; align-items: center; gap: 26px; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 700; }
.desktop-nav a { position: relative; padding: 8px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: linear-gradient(90deg, var(--rose), var(--cyan)); transition: right .2s ease; }
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { right: 0; }

.btn { position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 14px; padding: 14px 20px; font-weight: 900; letter-spacing: -.01em; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; overflow: hidden; }
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; background: linear-gradient(110deg, transparent 15%, rgba(255,255,255,.45) 45%, transparent 70%); transform: translateX(-120%); transition: transform .55s ease, opacity .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { opacity: 1; transform: translateX(120%); }
.btn svg { width: 20px; }
.btn-small { padding: 11px 16px; font-size: 13px; }
.btn-xl { padding: 18px 23px; min-height: 58px; font-size: 16px; }
.btn-xxl { width: 100%; min-height: 64px; padding: 18px 26px; font-size: 18px; }
.btn-primary { color: #271306; background: linear-gradient(135deg, #f7dfa9 0%, #dda743 55%, #f2c96c 100%); box-shadow: 0 18px 38px rgba(221,167,67,.28), inset 0 1px 0 rgba(255,255,255,.6); }
.btn-primary:hover { box-shadow: 0 22px 46px rgba(221,167,67,.38), inset 0 1px 0 rgba(255,255,255,.7); }
.btn-ghost { color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,.02); }
.btn-ghost span { color: var(--gold-soft); }

.hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 18% 18%, rgba(178,38,77,.24), transparent 29%), radial-gradient(circle at 86% 22%, rgba(114,232,225,.09), transparent 24%), linear-gradient(180deg, #12070d 0%, #1b0b13 66%, #240d16 100%); padding: 78px 0 38px; }
.hero-grid-overlay, .method-grid-bg, .offer-grid-bg, .final-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 96%); }
.hero-grid-overlay::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 119px, rgba(114,232,225,.025) 120px); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-a { width: 410px; height: 410px; left: -180px; top: 60px; background: radial-gradient(circle, rgba(232,107,140,.16), transparent 68%); }
.hero-orb-b { width: 480px; height: 480px; right: -180px; bottom: 40px; background: radial-gradient(circle, rgba(114,232,225,.09), transparent 68%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.protocol-badge { width: fit-content; display: inline-flex; align-items: center; gap: 10px; padding: 9px 13px; color: var(--gold-soft); border: 1px solid rgba(245,221,174,.18); border-radius: 999px; background: rgba(255,255,255,.035); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.protocol-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); animation: statusPulse 1.6s infinite; }
.hero h1 { margin: 20px 0 0; max-width: 720px; font-size: clamp(40px, 5.3vw, 66px); line-height: 1.03; letter-spacing: -.055em; text-wrap: balance; }
.hero h1 em { color: var(--gold-soft); font-style: normal; text-shadow: 0 0 34px rgba(228,182,95,.14); }
.hero-lead { margin: 23px 0 0; max-width: 690px; color: rgba(255,255,255,.74); font-size: 18px; line-height: 1.72; }
.hero-lead strong { color: #fff; }
.hero-benefits { display: grid; gap: 12px; margin-top: 28px; }
.benefit-row { display: flex; gap: 12px; align-items: flex-start; padding: 13px 14px; border: 1px solid rgba(255,255,255,.07); border-radius: 15px; background: linear-gradient(90deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); }
.benefit-check { flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; color: var(--cyan); background: rgba(114,232,225,.08); border: 1px solid rgba(114,232,225,.15); font-weight: 900; }
.benefit-row p { margin: 0; color: rgba(255,255,255,.73); font-size: 15px; }
.benefit-row strong { color: #fff; }
.hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.hero-price { min-width: 170px; display: grid; padding: 10px 0 10px 18px; border-left: 1px solid rgba(255,255,255,.14); }
.hero-price small { color: rgba(255,255,255,.48); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.hero-price strong { color: var(--gold-soft); font-size: 28px; line-height: 1.1; letter-spacing: -.03em; }
.hero-price span { color: rgba(255,255,255,.55); font-size: 11px; }
.micro-trust { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; color: rgba(255,255,255,.55); font-size: 12px; }
.micro-trust span { display: inline-flex; align-items: center; gap: 6px; }
.micro-trust i { color: var(--green); font-style: normal; }

.tech-frame { position: relative; padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.018)); box-shadow: 0 42px 90px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.09); overflow: hidden; }
.tech-frame::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, transparent 0 45%, rgba(114,232,225,.035) 46% 47%, transparent 48% 100%); background-size: 180% 100%; animation: scanFrame 7s linear infinite; }
@keyframes scanFrame { to { background-position: -180% 0; } }
.frame-header { position: relative; z-index: 2; min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 8px 10px; color: rgba(255,255,255,.47); font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.frame-dots { display: flex; gap: 5px; }
.frame-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.2); }
.frame-dots i:first-child { background: var(--rose); box-shadow: 0 0 10px rgba(232,107,140,.55); }
.frame-dots i:nth-child(2) { background: var(--gold); }
.frame-dots i:nth-child(3) { background: var(--green); }
.frame-signal { display: flex; align-items: end; gap: 3px; height: 12px; }
.frame-signal b { width: 2px; background: var(--cyan); opacity: .75; }
.frame-signal b:nth-child(1) { height: 4px; }.frame-signal b:nth-child(2) { height: 8px; }.frame-signal b:nth-child(3) { height: 12px; }
.book-stage { position: relative; min-height: 560px; display: grid; place-items: center; border-radius: 20px; background: radial-gradient(circle at 50% 42%, rgba(178,38,77,.23), transparent 30%), radial-gradient(circle at 50% 50%, rgba(114,232,225,.06), transparent 55%), #10070c; border: 1px solid rgba(255,255,255,.06); overflow: hidden; }
.book-stage::before { content: ""; position: absolute; width: 80%; height: 40px; left: 10%; bottom: 54px; border-radius: 50%; background: rgba(0,0,0,.6); filter: blur(16px); }
.stage-rings span { position: absolute; left: 50%; top: 49%; translate: -50% -50%; border-radius: 50%; border: 1px solid rgba(114,232,225,.10); }
.stage-rings span:nth-child(1) { width: 350px; height: 350px; animation: ringSpin 20s linear infinite; border-style: dashed; }
.stage-rings span:nth-child(2) { width: 450px; height: 450px; border-color: rgba(232,107,140,.08); }
.stage-rings span:nth-child(3) { width: 560px; height: 560px; border-color: rgba(228,182,95,.06); border-style: dashed; animation: ringSpin 34s linear reverse infinite; }
@keyframes ringSpin { to { rotate: 360deg; } }
.book-3d { position: relative; z-index: 3; width: min(66%, 325px); transform: perspective(900px) rotateY(-7deg) rotateX(1deg); transform-style: preserve-3d; filter: drop-shadow(22px 28px 34px rgba(0,0,0,.48)); }
.book-3d::after { content: ""; position: absolute; inset: 2% -9% 1% auto; width: 10%; z-index: -1; border-radius: 0 8px 8px 0; background: linear-gradient(90deg, #dfd7cf, #fff, #bcb4ad); transform: translateZ(-2px); }
.book-3d img { width: 100%; height: auto; object-fit: contain; border-radius: 8px 2px 2px 8px; }
.float-data { position: absolute; z-index: 4; min-width: 115px; padding: 11px 12px; border: 1px solid rgba(114,232,225,.18); border-radius: 13px; background: rgba(13,6,10,.78); backdrop-filter: blur(12px); box-shadow: 0 16px 34px rgba(0,0,0,.24); }
.float-data small { display: block; color: rgba(255,255,255,.45); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.float-data strong { display: block; color: var(--cyan); font-size: 28px; line-height: 1.05; }
.float-data span { color: rgba(255,255,255,.55); font-size: 9px; }
.float-data-a { top: 72px; right: 22px; }
.float-data-b { left: 22px; bottom: 80px; border-color: rgba(228,182,95,.18); }
.float-data-b strong { color: var(--gold-soft); }
.method-console { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding: 12px 2px 0; }
.console-line { display: grid; grid-template-columns: 8px 1fr; grid-template-rows: auto auto; align-items: center; column-gap: 6px; }
.console-line span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.16); }
.console-line span.active { background: var(--green); box-shadow: 0 0 10px rgba(98,216,163,.55); }
.console-line i { height: 1px; background: rgba(255,255,255,.12); }
.console-line b { grid-column: 1 / -1; margin-top: 5px; color: rgba(255,255,255,.53); font-size: 8px; letter-spacing: .04em; text-transform: uppercase; }
.metrics-strip { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 58px; border: 1px solid rgba(255,255,255,.08); border-radius: 20px; background: rgba(255,255,255,.035); backdrop-filter: blur(10px); overflow: hidden; }
.metrics-strip > div { position: relative; display: grid; grid-template-columns: auto 1fr; column-gap: 12px; padding: 18px 22px; }
.metrics-strip > div:not(:last-child)::after { content: ""; position: absolute; top: 22%; right: 0; width: 1px; height: 56%; background: rgba(255,255,255,.08); }
.metrics-strip span { grid-row: 1 / 3; align-self: center; color: rgba(255,255,255,.18); font-size: 26px; font-weight: 900; }
.metrics-strip strong { color: #fff; font-size: 15px; }
.metrics-strip small { color: rgba(255,255,255,.48); font-size: 11px; }

.section-heading { max-width: 860px; margin: 0 auto 50px; }
.section-heading.centered { text-align: center; }
.section-heading h2, .content-copy h2, .value-copy h2, .faq-intro h2 { margin: 14px 0 0; font-size: clamp(34px, 4.5vw, 52px); line-height: 1.08; letter-spacing: -.045em; text-wrap: balance; }
.section-heading h2 em, .content-copy h2 em { color: var(--wine); font-style: normal; }
.section-heading p, .content-copy > p, .value-copy > p, .faq-intro > p { margin: 18px auto 0; color: var(--muted); font-size: 18px; line-height: 1.72; }
.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: rgba(255,255,255,.62); }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--wine); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.section-kicker.gold { color: var(--gold-soft); }

.diagnosis-section { background: linear-gradient(180deg, #faf8f9 0%, #f3eef1 100%); }
.diagnosis-layout { display: grid; grid-template-columns: 1.4fr .6fr; gap: 24px; align-items: stretch; }
.symptom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.symptom-card { display: flex; gap: 16px; min-height: 178px; padding: 24px; border-radius: 22px; background: rgba(255,255,255,.78); border: 1px solid var(--line); box-shadow: var(--shadow-soft); backdrop-filter: blur(10px); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.symptom-card:hover { transform: translateY(-4px); border-color: rgba(178,38,77,.22); box-shadow: var(--shadow); }
.symptom-index { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--wine); background: rgba(140,25,55,.07); border: 1px solid rgba(140,25,55,.1); font-size: 12px; font-weight: 900; }
.symptom-card h3 { margin: 2px 0 8px; font-size: 19px; line-height: 1.2; letter-spacing: -.025em; }
.symptom-card p { margin: 0; color: var(--muted); font-size: 14px; }
.symptom-card.alarm { background: linear-gradient(145deg, #fff, #fff2f5); border-color: rgba(178,38,77,.22); }
.symptom-card.alarm .symptom-index { color: #fff; background: linear-gradient(145deg, var(--wine), var(--wine-2)); box-shadow: 0 12px 26px rgba(140,25,55,.2); }
.diagnosis-panel { display: flex; flex-direction: column; padding: 24px; border-radius: 24px; color: #fff; background: radial-gradient(circle at 50% 35%, rgba(114,232,225,.08), transparent 36%), linear-gradient(180deg, #160a11, #0f070b); border: 1px solid rgba(255,255,255,.08); box-shadow: 0 28px 70px rgba(26,9,17,.24); overflow: hidden; }
.panel-top { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .12em; }
.panel-top strong { color: var(--rose); font-size: 10px; }
.radar { position: relative; width: min(100%, 250px); aspect-ratio: 1; margin: 20px auto; border-radius: 50%; background: radial-gradient(circle, rgba(114,232,225,.08), transparent 65%); border: 1px solid rgba(114,232,225,.16); overflow: hidden; }
.radar-circle { position: absolute; left: 50%; top: 50%; translate: -50% -50%; border-radius: 50%; border: 1px solid rgba(114,232,225,.12); }
.radar-circle.c1 { width: 33%; height: 33%; }.radar-circle.c2 { width: 66%; height: 66%; }.radar-circle.c3 { width: 100%; height: 100%; }
.radar-line { position: absolute; left: 50%; top: 0; width: 1px; height: 100%; background: rgba(114,232,225,.1); }
.radar-line.l2 { rotate: 90deg; }
.radar-sweep { position: absolute; left: 50%; top: 50%; width: 48%; height: 48%; transform-origin: 0 0; background: conic-gradient(from -90deg, rgba(114,232,225,.26), transparent 70deg); animation: radarSweep 4s linear infinite; }
@keyframes radarSweep { to { rotate: 360deg; } }
.radar-dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 11px var(--rose); }
.radar-dot.d1 { left: 62%; top: 28%; }.radar-dot.d2 { left: 27%; top: 57%; }.radar-dot.d3 { left: 69%; top: 72%; }
.diagnosis-panel p { margin: auto 0 20px; color: rgba(255,255,255,.66); font-size: 14px; }
.diagnosis-panel p strong { color: #fff; }
.panel-link { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; color: var(--cyan); border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; font-weight: 900; letter-spacing: .08em; }

.problem-solution { color: #fff; background: radial-gradient(circle at center, rgba(178,38,77,.11), transparent 36%), #12070d; }
.split-system { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: center; }
.system-card { min-height: 400px; padding: 34px; border-radius: 28px; border: 1px solid rgba(255,255,255,.09); background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018)); box-shadow: 0 30px 70px rgba(0,0,0,.24); }
.system-before { box-shadow: inset 0 3px 0 rgba(232,107,140,.5), 0 30px 70px rgba(0,0,0,.24); }
.system-after { box-shadow: inset 0 3px 0 rgba(98,216,163,.5), 0 30px 70px rgba(0,0,0,.24); }
.system-label { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.45); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.system-label span { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 10px var(--rose); }
.system-after .system-label span { background: var(--green); box-shadow: 0 0 10px var(--green); }
.system-card h2 { margin: 16px 0 24px; font-size: 34px; letter-spacing: -.04em; }
.system-card ul { list-style: none; display: grid; gap: 13px; margin: 0; padding: 0; }
.system-card li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.67); }
.system-card li i { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: var(--rose); background: rgba(232,107,140,.08); font-style: normal; font-weight: 900; }
.system-after li i { color: var(--green); background: rgba(98,216,163,.08); }
.system-transition { width: 110px; display: grid; place-items: center; }
.transition-core { position: relative; width: 82px; height: 82px; display: grid; place-items: center; border-radius: 50%; color: var(--gold-soft); border: 1px solid rgba(228,182,95,.24); background: rgba(228,182,95,.05); box-shadow: 0 0 44px rgba(228,182,95,.12); }
.transition-core::before, .transition-core::after { content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(228,182,95,.15); animation: ringSpin 14s linear infinite; }
.transition-core::before { inset: -12px; }.transition-core::after { inset: -26px; animation-direction: reverse; }
.transition-core span { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px rgba(228,182,95,.65); }
.transition-core b { position: absolute; top: calc(100% + 34px); font-size: 8px; letter-spacing: .12em; }

.method-section { overflow: hidden; color: #fff; background: radial-gradient(circle at 50% 22%, rgba(178,38,77,.18), transparent 27%), linear-gradient(180deg, #1a0a12 0%, #0f070b 100%); }
.method-grid-bg { opacity: .7; mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent); }
.method-timeline { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.method-timeline::before { content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(114,232,225,.32), rgba(228,182,95,.42), transparent); }
.method-node { position: relative; min-height: 330px; padding: 26px 20px 22px; border: 1px solid rgba(255,255,255,.08); border-radius: 23px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); backdrop-filter: blur(10px); box-shadow: 0 24px 60px rgba(0,0,0,.16); transition: transform .2s ease, border-color .2s ease; }
.method-node:hover { transform: translateY(-5px); border-color: rgba(114,232,225,.2); }
.method-node.featured { border-color: rgba(228,182,95,.28); background: linear-gradient(180deg, rgba(228,182,95,.1), rgba(255,255,255,.02)); }
.node-number { position: absolute; top: 20px; right: 18px; color: rgba(255,255,255,.16); font-size: 30px; font-weight: 900; }
.node-icon { position: relative; z-index: 2; width: 66px; height: 66px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 20px; color: var(--cyan); background: rgba(114,232,225,.07); border: 1px solid rgba(114,232,225,.16); box-shadow: 0 0 28px rgba(114,232,225,.06); }
.node-icon svg { width: 30px; }
.method-node.featured .node-icon { color: var(--gold-soft); background: rgba(228,182,95,.08); border-color: rgba(228,182,95,.2); }
.method-node h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.025em; }
.method-node p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }
.method-node small { position: absolute; left: 20px; bottom: 20px; color: rgba(255,255,255,.28); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.method-logic { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 18px; margin-top: 26px; padding: 18px 22px; border-radius: 18px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.035); }
.method-logic div { display: grid; }
.method-logic span { color: rgba(255,255,255,.32); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.method-logic strong { font-size: 13px; }
.method-logic i { color: var(--gold); font-style: normal; }

.plan-section { background: linear-gradient(180deg, #f7f4f6, #efe9ed); }
.weeks-dashboard { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.week-module { min-height: 370px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.78); box-shadow: var(--shadow-soft); backdrop-filter: blur(10px); }
.week-module.featured { color: #fff; background: linear-gradient(155deg, #6f1732 0%, #2a0b17 100%); border-color: rgba(228,182,95,.28); box-shadow: 0 26px 58px rgba(84,18,41,.24); }
.module-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.module-header span { color: var(--wine); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.module-header b { font-size: 13px; }
.week-module.featured .module-header span { color: var(--gold-soft); }
.module-progress { height: 4px; margin: 20px 0; border-radius: 999px; background: rgba(80,32,54,.09); overflow: hidden; }
.module-progress i { display: block; width: var(--progress); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--rose), var(--gold)); box-shadow: 0 0 12px rgba(232,107,140,.32); }
.week-module p { margin: 0; color: var(--muted); font-size: 14px; }
.week-module.featured p { color: rgba(255,255,255,.68); }
.week-module ul { list-style: none; display: grid; gap: 9px; margin: auto 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); }
.week-module li { position: relative; padding-left: 15px; color: var(--ink); font-size: 13px; font-weight: 700; }
.week-module li::before { content: ""; position: absolute; left: 0; top: .68em; width: 5px; height: 5px; border-radius: 50%; background: var(--wine); }
.week-module.featured ul { border-color: rgba(255,255,255,.1); }
.week-module.featured li { color: #fff; }.week-module.featured li::before { background: var(--gold); }

.content-section { background: #fff; }
.content-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.content-copy h2 { margin-top: 14px; }
.content-sequence { display: grid; gap: 12px; margin-top: 28px; }
.content-sequence > div { display: flex; gap: 14px; padding: 15px 16px; border-radius: 17px; border: 1px solid var(--line); background: #fbf9fa; }
.content-sequence > div > span { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: var(--wine); background: rgba(140,25,55,.07); font-size: 10px; font-weight: 900; }
.content-sequence p { display: grid; margin: 0; }
.content-sequence strong { font-size: 14px; }.content-sequence small { color: var(--muted); font-size: 12px; }
.stack-screen { padding: 16px; border-radius: 26px; background: #12070d; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 38px 78px rgba(37,12,25,.24); }
.screen-header { min-height: 46px; display: flex; align-items: center; justify-content: space-between; padding: 0 8px 12px; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.screen-header i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.screen-list { display: grid; gap: 7px; }
.screen-list > div { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; min-height: 54px; padding: 8px 10px; border-radius: 13px; border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.035); }
.screen-list b { color: rgba(255,255,255,.2); font-size: 12px; }
.screen-list p { margin: 0; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 700; }
.screen-list span { padding: 5px 7px; border-radius: 7px; color: var(--cyan); background: rgba(114,232,225,.07); font-size: 7px; font-weight: 900; letter-spacing: .08em; }

.preview-section { color: #fff; background: radial-gradient(circle at 15% 15%, rgba(178,38,77,.17), transparent 26%), #10070b; }
.preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.preview-card { margin: 0; padding: 12px; border-radius: 24px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.035); box-shadow: 0 28px 64px rgba(0,0,0,.22); }
.preview-window { overflow: hidden; border-radius: 16px; border: 1px solid rgba(255,255,255,.08); background: #090407; }
.window-bar { height: 34px; display: flex; align-items: center; gap: 6px; padding: 0 11px; background: #180b12; }
.window-bar > span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.18); }
.window-bar > span:first-child { background: var(--rose); }.window-bar > span:nth-child(2) { background: var(--gold); }.window-bar > span:nth-child(3) { background: var(--green); }
.window-bar small { margin-left: auto; color: rgba(255,255,255,.32); font-size: 8px; letter-spacing: .08em; }
.preview-window img { width: 100%; aspect-ratio: 16 / 9; height: auto; object-fit: contain; object-position: center; background: #0b0609; }
.preview-card figcaption { display: grid; gap: 3px; padding: 14px 5px 2px; }
.preview-card figcaption b { font-size: 15px; }.preview-card figcaption span { color: rgba(255,255,255,.52); font-size: 12px; }

.value-section { background: linear-gradient(180deg, #f6f2f5, #eee8ec); }
.value-layout { display: grid; grid-template-columns: 1fr .85fr; gap: 48px; align-items: center; }
.value-copy h2, .faq-intro h2 { margin-top: 14px; }
.value-copy strong { color: var(--wine); }
.value-note { display: flex; gap: 14px; margin-top: 24px; padding: 18px; border: 1px solid rgba(140,25,55,.12); border-radius: 18px; background: rgba(255,255,255,.68); }
.value-note i { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: var(--wine); background: rgba(140,25,55,.08); font-style: normal; font-weight: 900; }
.value-note p { margin: 0; color: var(--muted); font-size: 13px; }
.value-terminal { padding: 14px; border-radius: 24px; color: #fff; background: #12070d; box-shadow: 0 34px 72px rgba(38,13,26,.24); }
.terminal-head { display: flex; justify-content: space-between; align-items: center; padding: 8px 8px 14px; color: rgba(255,255,255,.4); font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.terminal-head i { color: var(--green); font-style: normal; }
.terminal-body { overflow: hidden; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; }
.terminal-body > div { display: grid; grid-template-columns: 1fr 1.3fr; gap: 16px; padding: 15px; border-bottom: 1px solid rgba(255,255,255,.06); }
.terminal-body > div:last-child { border: 0; }
.terminal-body span { color: rgba(255,255,255,.4); font-size: 10px; text-transform: uppercase; letter-spacing: .05em; }
.terminal-body strong { text-align: right; font-size: 12px; }
.terminal-body .terminal-total { background: rgba(228,182,95,.08); }.terminal-body .terminal-total strong { color: var(--gold-soft); font-size: 18px; }

.offer-section { overflow: hidden; color: #fff; background: radial-gradient(circle at 18% 42%, rgba(178,38,77,.23), transparent 28%), radial-gradient(circle at 78% 15%, rgba(114,232,225,.07), transparent 22%), linear-gradient(180deg, #15080f, #0d0509); }
.offer-grid-bg { opacity: .75; }
.offer-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; align-items: center; }
.offer-product { position: relative; min-height: 620px; display: grid; place-items: center; }
.offer-hologram span { position: absolute; left: 50%; top: 49%; translate: -50% -50%; border-radius: 50%; border: 1px solid rgba(114,232,225,.12); }
.offer-hologram span:nth-child(1) { width: 360px; height: 360px; animation: ringSpin 19s linear infinite; border-style: dashed; }.offer-hologram span:nth-child(2) { width: 460px; height: 460px; border-color: rgba(228,182,95,.09); }.offer-hologram span:nth-child(3) { width: 560px; height: 560px; border-color: rgba(232,107,140,.08); border-style: dashed; animation: ringSpin 32s linear reverse infinite; }
.offer-book { position: relative; z-index: 2; width: min(76%, 390px); filter: drop-shadow(24px 34px 38px rgba(0,0,0,.5)); transform: perspective(900px) rotateY(-8deg); }
.offer-book img { width: 100%; height: auto; object-fit: contain; border-radius: 8px 2px 2px 8px; }
.offer-product-chip { position: absolute; z-index: 3; right: 0; bottom: 76px; min-width: 210px; padding: 15px 17px; border: 1px solid rgba(114,232,225,.18); border-radius: 15px; background: rgba(10,4,7,.78); backdrop-filter: blur(10px); }
.offer-product-chip b { display: block; color: var(--cyan); font-size: 10px; letter-spacing: .1em; }.offer-product-chip span { color: rgba(255,255,255,.52); font-size: 11px; }
.offer-card { position: relative; padding: 36px; border: 1px solid rgba(255,255,255,.1); border-radius: 30px; background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); box-shadow: 0 38px 90px rgba(0,0,0,.32); backdrop-filter: blur(12px); }
.offer-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(228,182,95,.35), transparent 30%, rgba(114,232,225,.18)); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; }
.offer-status { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border-radius: 999px; color: var(--green); background: rgba(98,216,163,.07); border: 1px solid rgba(98,216,163,.14); font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.offer-status span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.offer-card h2 { margin: 18px 0 0; font-size: clamp(38px, 4.4vw, 54px); line-height: 1.04; letter-spacing: -.05em; }
.offer-subtitle { margin: 15px 0 0; color: rgba(255,255,255,.62); font-size: 16px; }
.offer-items { display: grid; gap: 9px; margin-top: 24px; }
.offer-items > div { display: flex; gap: 12px; padding: 12px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; background: rgba(255,255,255,.03); }
.offer-items i { flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; color: var(--cyan); background: rgba(114,232,225,.07); font-style: normal; font-weight: 900; }
.offer-items p { display: grid; margin: 0; }.offer-items strong { font-size: 13px; }.offer-items small { color: rgba(255,255,255,.45); font-size: 11px; }
.offer-price-box { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; margin: 24px 0 16px; padding: 20px; border-radius: 18px; background: linear-gradient(135deg, rgba(228,182,95,.12), rgba(178,38,77,.1)); border: 1px solid rgba(228,182,95,.18); }
.offer-price-box > div:first-child { display: grid; }.offer-price-box small { color: rgba(255,255,255,.4); font-size: 9px; font-weight: 900; letter-spacing: .1em; }.offer-price-box strong { color: var(--gold-soft); font-size: 46px; line-height: 1.02; letter-spacing: -.04em; }.offer-price-box span { color: rgba(255,255,255,.45); font-size: 10px; }
.price-code { padding: 9px 10px; border: 1px dashed rgba(255,255,255,.14); border-radius: 10px; color: rgba(255,255,255,.45); font: 700 9px ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .05em; }
.secure-line { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 16px; color: rgba(255,255,255,.44); font-size: 10px; }
.secure-line span { display: inline-flex; align-items: center; gap: 5px; }.secure-line svg { width: 14px; }
.offer-disclaimer { margin: 15px 0 0; color: rgba(255,255,255,.36); font-size: 10px; text-align: center; }

.faq-section { background: linear-gradient(180deg, #f8f5f7, #eee8ec); }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px; align-items: start; }
.faq-intro { position: sticky; top: 110px; }
.faq-signal { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; padding: 10px 13px; border-radius: 999px; border: 1px solid rgba(98,216,163,.18); background: rgba(98,216,163,.06); }
.faq-signal span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 11px var(--green); }.faq-signal b { color: #2a7c5e; font-size: 9px; letter-spacing: .1em; }
.accordion { display: grid; gap: 12px; }
.accordion details { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.82); box-shadow: var(--shadow-soft); overflow: hidden; }
.accordion summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; font-weight: 800; font-size: 15px; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--wine); font-size: 23px; font-weight: 400; transition: rotate .2s ease; }
.accordion details[open] summary span { rotate: 45deg; }
.accordion details > div { padding: 0 22px 20px; color: var(--muted); font-size: 14px; }
.accordion details p { margin: 0; }

.final-cta { position: relative; overflow: hidden; padding: 100px 0; color: #fff; background: radial-gradient(circle at center, rgba(178,38,77,.22), transparent 32%), #0e0509; }
.final-grid { opacity: .7; }
.final-cta-inner { position: relative; z-index: 2; max-width: 920px; text-align: center; }
.final-code { width: fit-content; margin: 0 auto; padding: 9px 12px; border: 1px solid rgba(114,232,225,.15); border-radius: 9px; color: var(--cyan); background: rgba(114,232,225,.05); font: 800 10px ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; }
.final-cta h2 { margin: 20px auto 0; font-size: clamp(38px, 5vw, 58px); line-height: 1.05; letter-spacing: -.05em; text-wrap: balance; }
.final-cta p { margin: 18px auto 28px; max-width: 700px; color: rgba(255,255,255,.62); font-size: 17px; }
.final-cta p strong { color: var(--gold-soft); }

.site-footer { color: #fff; background: #090307; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 36px; padding: 38px 0 28px; }
.footer-brand { width: fit-content; }
.site-footer p { max-width: 520px; color: rgba(255,255,255,.42); font-size: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(120px, auto)); gap: 8px 24px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 12px; }.footer-links a:hover { color: #fff; }
.legal { display: flex; justify-content: space-between; gap: 24px; padding: 20px 0 110px; border-top: 1px solid rgba(255,255,255,.07); }
.legal p { margin: 0; max-width: 760px; color: rgba(255,255,255,.34); font-size: 10px; }

.mobile-cta { position: fixed; z-index: 96; left: 12px; right: 12px; bottom: 12px; display: none; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 13px; color: #fff; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(14,5,9,.92); box-shadow: 0 22px 50px rgba(0,0,0,.32); backdrop-filter: blur(16px); opacity: 0; pointer-events: none; transform: translateY(18px); transition: opacity .22s ease, transform .22s ease; }
.mobile-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-cta div { display: grid; }.mobile-cta b { color: rgba(255,255,255,.55); font-size: 8px; letter-spacing: .1em; }.mobile-cta span { color: var(--gold-soft); font-size: 19px; font-weight: 900; }.mobile-cta .btn { padding: 12px 15px; border-radius: 12px; font-size: 12px; }
.checkout-warning { position: fixed; z-index: 9999; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(10,4,7,.82); backdrop-filter: blur(10px); }
.checkout-warning[hidden] { display: none; }
.checkout-warning-card { position: relative; width: min(100%, 520px); padding: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; color: #fff; background: #160911; box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.checkout-warning-card button { position: absolute; right: 14px; top: 12px; border: 0; color: rgba(255,255,255,.65); background: transparent; font-size: 28px; cursor: pointer; }.checkout-warning-card > span { color: var(--gold-soft); font-size: 9px; font-weight: 900; letter-spacing: .12em; }.checkout-warning-card h2 { margin: 12px 0 8px; font-size: 30px; }.checkout-warning-card p { margin: 0; color: rgba(255,255,255,.6); }.checkout-warning-card code { color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1120px) {
  .hero-layout, .content-layout, .value-layout, .offer-layout, .faq-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .tech-frame { max-width: 700px; margin-inline: auto; }
  .diagnosis-layout { grid-template-columns: 1fr; }
  .diagnosis-panel { max-width: 720px; width: 100%; margin-inline: auto; }
  .method-timeline { grid-template-columns: repeat(3, 1fr); }
  .method-timeline::before { display: none; }
  .weeks-dashboard { grid-template-columns: repeat(2, 1fr); }
  .faq-intro { position: static; }
  .offer-product { min-height: 520px; }
}

@media (max-width: 860px) {
  .desktop-nav { display: none; }
  .btn-ghost { display: none; }
  .hero { padding-top: 58px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-price { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); padding: 14px 0 0; }
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .metrics-strip > div:nth-child(2)::after { display: none; }
  .symptom-grid { grid-template-columns: 1fr; }
  .split-system { grid-template-columns: 1fr; }
  .system-transition { width: 100%; height: 100px; }
  .transition-core { rotate: 90deg; }
  .transition-core b { rotate: -90deg; white-space: nowrap; }
  .method-timeline { grid-template-columns: repeat(2, 1fr); }
  .method-logic { grid-template-columns: 1fr; text-align: center; }.method-logic i { rotate: 90deg; }
  .preview-grid { grid-template-columns: 1fr; }
  .footer-grid, .legal { grid-template-columns: 1fr; flex-direction: column; }
}

@media (max-width: 620px) {
  .section { padding: 76px 0; }
  .topbar-inner { min-height: 36px; font-size: 8px; gap: 6px; }
  .topbar-divider:nth-of-type(2), .topbar-inner > span:last-child { display: none; }
  .nav-wrap { min-height: 66px; }
  .brand-symbol { width: 38px; height: 38px; border-radius: 12px; }.brand-copy strong { font-size: 12px; }.brand-copy small { font-size: 10px; }
  .hero h1 { font-size: clamp(39px, 11vw, 50px); }
  .hero-lead, .section-heading p, .content-copy > p, .value-copy > p, .faq-intro > p { font-size: 16px; }
  .protocol-badge { font-size: 9px; }
  .btn-xl, .btn-xxl { min-height: 58px; font-size: 15px; }
  .benefit-row { padding: 12px; }.benefit-row p { font-size: 13px; }
  .micro-trust { gap: 10px; }
  .tech-frame { padding: 9px; border-radius: 22px; }
  .book-stage { min-height: 430px; }
  .book-3d { width: 60%; }
  .float-data { min-width: 98px; padding: 9px; }.float-data-a { top: 44px; right: 10px; }.float-data-b { left: 10px; bottom: 60px; }.float-data strong { font-size: 22px; }
  .method-console { gap: 4px; }.console-line b { font-size: 6px; }
  .metrics-strip { margin-top: 34px; }.metrics-strip > div { padding: 15px 12px; }.metrics-strip span { font-size: 20px; }.metrics-strip strong { font-size: 12px; }.metrics-strip small { font-size: 9px; }
  .section-heading { margin-bottom: 34px; }.section-heading h2, .content-copy h2, .value-copy h2, .faq-intro h2 { font-size: clamp(32px, 9vw, 42px); }
  .symptom-card { min-height: 0; padding: 20px; }.symptom-index { flex-basis: 40px; width: 40px; height: 40px; }
  .system-card { min-height: 0; padding: 25px; }.system-card h2 { font-size: 29px; }
  .method-timeline, .weeks-dashboard { grid-template-columns: 1fr; }
  .method-node { min-height: 290px; }
  .method-logic { padding: 16px; }
  .content-layout { gap: 36px; }
  .screen-list > div { grid-template-columns: 28px 1fr; }.screen-list span { display: none; }
  .preview-card { padding: 8px; border-radius: 18px; }.preview-window { border-radius: 12px; }
  .terminal-body > div { grid-template-columns: 1fr; gap: 4px; }.terminal-body strong { text-align: left; }
  .offer-product { min-height: 460px; }.offer-hologram span:nth-child(1) { width: 280px; height: 280px; }.offer-hologram span:nth-child(2) { width: 360px; height: 360px; }.offer-hologram span:nth-child(3) { width: 440px; height: 440px; }.offer-product-chip { right: 6px; bottom: 32px; min-width: 170px; }
  .offer-card { padding: 25px; }.offer-card h2 { font-size: 38px; }.offer-price-box { grid-template-columns: 1fr; }.offer-price-box strong { font-size: 42px; }.price-code { width: fit-content; }
  .secure-line { gap: 8px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .mobile-cta { display: flex; }
  .legal { padding-bottom: 104px; }
}

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

/* Reembolso de 7 dias */
.refund-mini-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(98,216,163,.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(98,216,163,.08), rgba(114,232,225,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.refund-mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(114,232,225,.08), transparent);
  opacity: .55;
}
.refund-mini-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #102d25;
  background: linear-gradient(145deg, #a9f1d3, var(--green));
  box-shadow: 0 12px 28px rgba(98,216,163,.22), inset 0 1px 0 rgba(255,255,255,.8);
  font-size: 25px;
  font-weight: 950;
}
.refund-mini-card > div:last-child { position: relative; z-index: 1; }
.refund-mini-card strong { display: block; color: #fff; font-size: 14px; }
.refund-mini-card p { margin: 3px 0 0; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.55; }
.refund-mini-card a { display: inline-block; margin-top: 6px; color: var(--cyan); font-size: 10px; font-weight: 900; letter-spacing: .03em; }
.refund-mini-card a:hover { text-decoration: underline; }

.refund-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 50%, rgba(98,216,163,.14), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(114,232,225,.09), transparent 24%),
    linear-gradient(180deg, #0b0b10 0%, #10070c 100%);
}
.refund-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .48;
  background-image:
    linear-gradient(rgba(114,232,225,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114,232,225,.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}
.refund-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 64px;
  align-items: center;
}
.refund-shield {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}
.shield-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  border: 1px solid rgba(114,232,225,.16);
}
.shield-ring-a {
  width: 330px;
  height: 330px;
  border-style: dashed;
  animation: ringSpin 22s linear infinite;
}
.shield-ring-b {
  width: 245px;
  height: 245px;
  border-color: rgba(228,182,95,.16);
  animation: ringSpin 16s linear reverse infinite;
}
.shield-core {
  position: relative;
  width: 184px;
  height: 210px;
  display: grid;
  place-content: center;
  text-align: center;
  clip-path: polygon(50% 0, 92% 16%, 86% 70%, 50% 100%, 14% 70%, 8% 16%);
  color: #08291e;
  background: linear-gradient(155deg, #d7fae9 0%, #67dca8 50%, #3dbd8a 100%);
  filter: drop-shadow(0 28px 45px rgba(98,216,163,.22));
}
.shield-core::after {
  content: "";
  position: absolute;
  inset: 10px;
  clip-path: inherit;
  border: 1px solid rgba(255,255,255,.65);
}
.shield-core strong { display: block; font-size: 78px; line-height: .9; letter-spacing: -.08em; }
.shield-core span { display: block; margin-top: 9px; font-size: 16px; font-weight: 950; letter-spacing: .22em; }
.refund-copy h2 {
  margin: 15px 0 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.refund-copy > p { margin: 18px 0 0; max-width: 760px; color: rgba(255,255,255,.64); font-size: 17px; line-height: 1.74; }
.refund-steps { display: grid; gap: 10px; margin-top: 26px; }
.refund-steps > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}
.refund-steps > div > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green);
  background: rgba(98,216,163,.08);
  border: 1px solid rgba(98,216,163,.14);
  font: 900 12px ui-monospace, SFMono-Regular, Menlo, monospace;
}
.refund-steps p { display: grid; margin: 0; }
.refund-steps strong { font-size: 14px; }
.refund-steps small { color: rgba(255,255,255,.47); font-size: 11px; }
.refund-policy-link { width: fit-content; margin-top: 22px; }
.legal a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }

/* Página de política de reembolso */
.policy-page { min-height: 100vh; color: #fff; background: linear-gradient(180deg, #12070d, #090307); }
.policy-hero { position: relative; overflow: hidden; padding: 82px 0 52px; }
.policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(98,216,163,.16), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(228,182,95,.11), transparent 24%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}
.policy-hero-inner { position: relative; z-index: 1; max-width: 900px; }
.policy-hero h1 { margin: 18px 0 0; font-size: clamp(42px, 7vw, 72px); line-height: 1; letter-spacing: -.055em; }
.policy-hero p { margin: 20px 0 0; max-width: 760px; color: rgba(255,255,255,.64); font-size: 18px; }
.policy-main { padding: 0 0 96px; }
.policy-card {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 38px 90px rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
}
.policy-summary {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 20px;
  color: #08291e;
  background: linear-gradient(145deg, #d7fae9, #67dca8);
}
.policy-summary .days {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,.55);
  font-size: 42px;
  font-weight: 950;
}
.policy-summary strong { display: block; font-size: 20px; }
.policy-summary span { display: block; margin-top: 3px; font-size: 14px; opacity: .76; }
.policy-section { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08); }
.policy-section:first-of-type { border-top: 0; }
.policy-section h2 { margin: 0 0 10px; font-size: 24px; letter-spacing: -.03em; }
.policy-section p, .policy-section li { color: rgba(255,255,255,.64); }
.policy-section ul, .policy-section ol { margin: 10px 0 0; padding-left: 22px; }
.policy-section li + li { margin-top: 8px; }
.policy-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  color: rgba(255,255,255,.72);
  background: rgba(228,182,95,.07);
}
.policy-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

@media (max-width: 980px) {
  .refund-layout { grid-template-columns: 1fr; gap: 18px; }
  .refund-shield { min-height: 360px; }
}

@media (max-width: 620px) {
  .topbar-inner > span:last-child { display: inline; }
  .topbar-divider:last-of-type { display: none; }
  .refund-mini-card { grid-template-columns: 48px 1fr; }
  .refund-mini-icon { width: 48px; height: 48px; border-radius: 15px; font-size: 21px; }
  .refund-shield { min-height: 300px; }
  .shield-ring-a { width: 270px; height: 270px; }
  .shield-ring-b { width: 205px; height: 205px; }
  .shield-core { width: 154px; height: 176px; }
  .shield-core strong { font-size: 64px; }
  .refund-copy h2 { font-size: clamp(34px, 10vw, 44px); }
  .policy-hero { padding: 62px 0 38px; }
  .policy-card { padding: 24px; border-radius: 22px; }
  .policy-summary { grid-template-columns: 64px 1fr; padding: 16px; }
  .policy-summary .days { width: 64px; height: 64px; border-radius: 18px; font-size: 34px; }
  .policy-summary strong { font-size: 16px; }
}


.social-proof-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(124, 80, 255, 0.08), transparent 26%),
    radial-gradient(circle at right center, rgba(60, 215, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(9, 15, 30, 0.96), rgba(16, 22, 42, 0.98));
  color: #eef2ff;
}
.social-proof-section .section-kicker { color: #95d9ff; }
.social-proof-section .section-heading p,
.social-proof-section .section-heading h2,
.social-proof-section .section-heading h2 em { color: #eef2ff; }
.social-proof-section .section-heading p { color: rgba(235, 243, 255, 0.78); }
.social-proof-shell {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(146, 194, 255, 0.18);
  background: linear-gradient(180deg, rgba(14, 21, 40, 0.82), rgba(10, 15, 30, 0.9));
  box-shadow: 0 30px 70px rgba(0, 7, 20, 0.42);
  overflow: hidden;
}
.social-proof-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(117, 139, 255, 0.08), transparent 24%, transparent 76%, rgba(104, 231, 255, 0.08));
  pointer-events: none;
}
.social-proof-topbar,
.social-proof-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(157, 207, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8f6ff;
}
.social-proof-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #66dcff, #7f7aff);
  box-shadow: 0 0 14px rgba(102, 220, 255, 0.8);
}
.social-proof-controls {
  display: inline-flex;
  gap: 10px;
}
.social-nav {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(157, 207, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f7ff;
  font-size: 28px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.social-nav:hover {
  transform: translateY(-2px);
  background: rgba(132, 176, 255, 0.18);
  border-color: rgba(176, 210, 255, 0.34);
}
.social-proof-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 1fr);
  gap: 18px;
  margin-top: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.social-proof-track::-webkit-scrollbar { display: none; }
.social-card {
  scroll-snap-align: start;
  min-width: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(176, 208, 255, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}
.social-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: cover;
  display: block;
}
.social-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px 18px 20px;
}
.social-card figcaption strong {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.social-card figcaption span {
  color: rgba(235, 243, 255, 0.78);
  line-height: 1.5;
}
.social-proof-footer {
  margin-top: 18px;
  flex-wrap: wrap;
}
.social-proof-footer p {
  margin: 0;
  max-width: 760px;
  color: rgba(235, 243, 255, 0.74);
}
.social-proof-dots {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.social-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(184, 206, 239, 0.26);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.social-dot.is-active {
  background: linear-gradient(180deg, #67dbff, #8c79ff);
  box-shadow: 0 0 0 4px rgba(103, 219, 255, 0.16);
  transform: scale(1.08);
}
