/* Rey Hernandez — reyhq.com
   Black / white, big type, purpose-built UI illustrations. Mobile first, no framework. */
:root {
  --black: #000000;
  --ink: #111113;
  --ink-2: #1C1C1F;
  --white: #FFFFFF;
  --gray: #F5F5F7;
  --gray-2: #E8E8ED;
  --muted: #86868B;
  --muted-dark: #A1A1A6;
  --line: rgba(0, 0, 0, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --blue: #2997FF;
  --green: #30D158;
  --red: #FF453A;
  --grad: linear-gradient(100deg, #34D399 0%, #22D3EE 45%, #60A5FA 100%);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --max: 1200px;
  --narrow: 820px;
  --gutter: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--black); color: var(--white); font-family: var(--sans); font-size: 17px; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.03em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }

html:not([data-lang="es"]) [data-lang="es"] { display: none !important; }
html[data-lang="es"] [data-lang="en"] { display: none !important; }

.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.narrow { width: min(100% - 2 * var(--gutter), var(--narrow)); margin-inline: auto; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--white); color: var(--black); padding: 8px 12px; z-index: 1000; border-radius: 6px; }
.skip:focus { left: 8px; }

/* reveal */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: var(--d, 0ms); }
.js .reveal.in { opacity: 1; transform: none; }

/* mouse spotlight (dark areas only, screen blend does nothing on white) */
.spot { position: fixed; inset: 0; z-index: 1; pointer-events: none; mix-blend-mode: screen; opacity: 0; transition: opacity 0.6s; background: radial-gradient(520px circle at var(--mx, -1000px) var(--my, -1000px), rgba(52, 211, 153, 0.14), rgba(96, 165, 250, 0.06) 40%, transparent 70%); }
.spot.on { opacity: 1; }
@media (hover: none) { .spot { display: none; } }

/* dot texture on dark sections */
.tex { position: relative; }
.tex::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px); background-size: 26px 26px; -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 100%); mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 100%); }
.tex > * { position: relative; }

/* ---------- nav ---------- */
.top { position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: 52px; background: rgba(0, 0, 0, 0.72); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); color: var(--white); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 12px; }
.brand { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; text-decoration: none; white-space: nowrap; display: inline-flex; align-items: center; gap: 9px; }
.brand::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.top-right { display: flex; align-items: center; gap: 10px; }
.lang { display: inline-flex; gap: 2px; }
.lang button { appearance: none; border: 0; background: transparent; color: var(--muted-dark); font: inherit; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.06em; min-width: 34px; min-height: 30px; border-radius: 999px; cursor: pointer; transition: color 0.2s, background 0.2s; }
.lang button[aria-pressed="true"] { color: var(--white); background: rgba(255, 255, 255, 0.12); }
.lang button:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.top .top-cta { display: none; min-height: 30px; padding: 0 14px; font-size: 12px; white-space: nowrap; }
@media (min-width: 400px) { .top .top-cta { display: inline-flex; } }

/* ---------- buttons & links ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border-radius: 999px; background: var(--white); color: var(--black); text-decoration: none; border: 0; cursor: pointer; font: inherit; font-size: 16px; font-weight: 600; letter-spacing: -0.01em; transition: transform 0.3s var(--ease), opacity 0.3s, background 0.3s; touch-action: manipulation; text-align: center; white-space: nowrap; }
.btn:hover { transform: scale(1.03); }
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.btn.dark { background: var(--ink); color: var(--white); }
.btn.ghost { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.35); }
.btn.ghost:hover { background: rgba(255, 255, 255, 0.08); }
.btn.wide { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: progress; transform: none; }
.more { color: var(--blue); text-decoration: none; font-size: 17px; font-weight: 500; }
.more::after { content: " \203A"; }
.more:hover { text-decoration: underline; }
.link { color: var(--blue); text-decoration: none; }
.link:hover { text-decoration: underline; }

/* ---------- section scaffolding ---------- */
section { padding: 110px 0; }
@media (min-width: 900px) { section { padding: 150px 0; } }
.light { background: var(--white); color: var(--ink); }
.soft { background: var(--gray); color: var(--ink); }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.kicker .idx { color: var(--green); }
h2 { font-size: clamp(40px, 6.5vw, 80px); line-height: 1.02; margin-bottom: 20px; }
.lede { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.4; font-weight: 500; letter-spacing: -0.01em; color: var(--muted-dark); max-width: 30em; }
.light .lede, .soft .lede { color: var(--muted); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.head { margin-bottom: 64px; }
@media (min-width: 900px) { .head { margin-bottom: 88px; } }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-content: center; padding: 120px 0 80px; overflow: hidden; }
.bg-video { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.bg-video video, .bg-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.bg-video::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse 60% 60% at 30% 40%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 30%, var(--black) 100%); }
.hero .wrap { position: relative; z-index: 2; display: grid; gap: 56px; align-items: center; }
@media (min-width: 1000px) { .hero .wrap { grid-template-columns: 7fr 5fr; gap: 48px; } }
.hero h1 { font-size: clamp(46px, 8.2vw, 104px); line-height: 0.98; letter-spacing: -0.045em; max-width: 12ch; margin: 0 0 26px; }
.hero .lede { margin: 0 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 18px; font-size: 14px; color: var(--muted); }

/* the system: three UI cards */
.system { position: relative; display: grid; gap: 14px; max-width: 420px; margin-inline: auto; }
@media (min-width: 1000px) { .system { margin: 0 0 0 auto; } }
.ui { border-radius: 20px; padding: 18px 18px 20px; transform: translateY(18px); opacity: 0; transition: transform 1s var(--ease), opacity 1s var(--ease); transition-delay: var(--d, 0ms); }
.system.in .ui { transform: none; opacity: 1; }
.ui .bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.ui .bar .mono { color: var(--muted-dark); }
.ui .live { display: inline-flex; align-items: center; gap: 6px; }
.ui .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.6); } 60% { box-shadow: 0 0 0 7px rgba(48, 209, 88, 0); } }
.ui-sms, .ui-report { color: var(--white); }
.ui-sms { background: var(--ink-2); border: 1px solid var(--line-dark); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8); }
.bubble { max-width: 88%; padding: 11px 14px; border-radius: 18px; font-size: 14.5px; line-height: 1.4; margin-bottom: 8px; }
.bubble.in { background: #2C2C2E; border-bottom-left-radius: 6px; }
.bubble.out { background: var(--blue); color: #fff; margin-left: auto; border-bottom-right-radius: 6px; }
.bubble.typing { display: inline-flex; gap: 4px; padding: 12px 14px; }
.bubble.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--muted-dark); animation: dot 1.4s infinite; }
.bubble.typing i:nth-child(2) { animation-delay: 0.2s; } .bubble.typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.ui-book { background: var(--white); color: var(--ink); }
.ui-book .bar .mono { color: var(--muted); }
.row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); }
.row:first-of-type { border-top: 0; }
.row .t { font-family: var(--mono); font-size: 12px; color: var(--muted); min-width: 92px; }
.row .d { flex: 1; font-size: 14px; font-weight: 500; }
.row .d small { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; }
.row .ok { width: 22px; height: 22px; border-radius: 50%; background: var(--green); display: grid; place-items: center; }
.row .ok svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.row.dim { opacity: 0.45; }
.ui-report { background: var(--ink-2); border: 1px solid var(--line-dark); display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; align-items: end; }
.ui-report .bar { grid-column: 1 / -1; margin-bottom: 4px; }
.ui-report .big { font-size: 44px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.ui-report .lbl { font-size: 13px; color: var(--muted-dark); margin-top: 6px; }
.ui-report svg { width: 120px; height: 44px; }
.ui-report .meta { grid-column: 1 / -1; font-family: var(--mono); font-size: 11px; color: var(--muted-dark); letter-spacing: 0.04em; margin-top: 8px; }
.example { position: absolute; top: -10px; right: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---------- why: sticky photo + lit text ---------- */
.why-grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .why-grid { grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; } .why-photo { position: sticky; top: 100px; } }
.why-photo { max-width: 440px; }
.why-photo .frame { border-radius: 24px; overflow: hidden; aspect-ratio: 3 / 4; background: var(--ink-2); box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.08); }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-photo figcaption { margin-top: 16px; font-family: var(--mono); font-size: 12px; color: var(--muted-dark); letter-spacing: 0.04em; line-height: 1.7; }
.why-photo figcaption b { color: var(--white); font-weight: 500; }
.lit { font-size: clamp(28px, 4vw, 50px); line-height: 1.12; font-weight: 600; letter-spacing: -0.03em; }
.lit p { margin: 0 0 0.8em; }
.lit .w { color: rgba(255, 255, 255, 0.16); transition: color 0.25s linear; }
.lit .w.on { color: var(--white); }
.lit .w.acc.on { color: var(--green); }
.why-foot { margin-top: 40px; font-size: 17px; color: var(--muted-dark); max-width: 42em; }
.why-foot b { color: var(--white); font-weight: 600; }

/* ---------- ad demo ---------- */
.demo-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .demo-grid { grid-template-columns: 6fr 6fr; gap: 72px; } }
.toggle { display: inline-flex; background: var(--gray-2); border-radius: 999px; padding: 4px; gap: 4px; margin-top: 8px; }
.toggle button { appearance: none; border: 0; background: transparent; color: var(--muted); font: inherit; font-size: 14px; font-weight: 600; min-height: 40px; padding: 0 18px; border-radius: 999px; cursor: pointer; transition: background 0.25s, color 0.25s; }
.toggle button[aria-pressed="true"] { background: var(--ink); color: var(--white); }
.toggle button:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.ad { position: relative; background: var(--white); border-radius: 20px; box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--line); overflow: hidden; max-width: 420px; margin-inline: auto; }
.ad .who { display: flex; align-items: center; gap: 10px; padding: 14px 16px 10px; }
.ad .av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #f5d0c5, #d8b4fe); display: grid; place-items: center; font-weight: 600; font-size: 14px; color: #3b2a4a; }
.ad .who b { display: block; font-size: 14px; }
.ad .who small { font-size: 12px; color: var(--muted); }
.ad .copy { padding: 0 16px 12px; font-size: 15px; line-height: 1.45; min-height: 66px; transition: opacity 0.3s; }
.ad .img { aspect-ratio: 3 / 2; background: var(--gray-2); position: relative; overflow: hidden; }
.ad .img img { width: 100%; height: 100%; object-fit: cover; display: block; animation: adfade 0.45s var(--ease); }
@keyframes adfade { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: none; } }
.ad .foot { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px 14px; background: var(--gray); }
.ad .foot small { font-size: 12px; color: var(--muted); }
.ad .foot .cta { font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 8px; background: var(--gray-2); }
.badge { position: absolute; top: 12px; right: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 10px; border-radius: 8px; display: inline-flex; align-items: center; gap: 7px; transition: background 0.3s, color 0.3s; }
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.ad[data-state="no"] .badge { background: #FFE5E3; color: #B3261E; }
.ad[data-state="yes"] .badge { background: #E2F8E8; color: #1B7F3B; }
.demo-note { margin-top: 26px; font-size: 15px; color: var(--muted); max-width: 34em; }

/* ---------- bento with UI inside ---------- */
.bento { display: grid; gap: 14px; }
@media (min-width: 760px) { .bento { grid-template-columns: repeat(6, 1fr); gap: 18px; } .tile:nth-child(1), .tile:nth-child(4) { grid-column: span 4; } .tile:nth-child(2), .tile:nth-child(3) { grid-column: span 2; } }
.tile { background: var(--white); border-radius: 28px; padding: 30px 28px 32px; min-height: 380px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform 0.6s var(--ease); }
.tile:hover { transform: translateY(-4px); }
.tile .kicker { margin-bottom: 0; }
.tile h3 { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.08; margin: 12px 0 8px; }
.tile p { font-size: 16px; color: var(--muted); max-width: 30em; margin-bottom: 22px; }
.tile .art { margin-top: auto; }
.tile.dark { background: var(--ink); color: var(--white); }
.tile.dark p { color: var(--muted-dark); }
/* offer ticket */
.ticket { border: 1.5px dashed rgba(0, 0, 0, 0.25); border-radius: 16px; padding: 16px 18px; display: grid; grid-template-columns: 1fr auto; gap: 6px 14px; align-items: center; background: var(--gray); }
.ticket .mono { color: var(--muted); }
.ticket b { font-size: 22px; letter-spacing: -0.02em; line-height: 1.1; }
.ticket small { font-size: 13px; color: var(--muted); grid-column: 1; }
.ticket .pill { grid-row: 1 / span 3; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; padding: 8px 10px; border-radius: 8px; background: var(--ink); color: var(--white); writing-mode: vertical-rl; transform: rotate(180deg); }
/* landing page mock */
.browser { border-radius: 14px; overflow: hidden; background: #26262A; border: 1px solid var(--line-dark); }
.browser .chrome { display: flex; gap: 6px; padding: 10px 12px; background: #1A1A1D; }
.browser .chrome i { width: 9px; height: 9px; border-radius: 50%; background: #3A3A3F; }
.browser .page { padding: 16px; display: grid; gap: 10px; }
.browser .l { height: 10px; border-radius: 5px; background: #3A3A3F; }
.browser .l.w1 { width: 80%; height: 14px; background: #55555B; } .browser .l.w2 { width: 60%; } .browser .l.w3 { width: 45%; }
.browser .cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-top: 6px; }
.browser .cal i { aspect-ratio: 1; border-radius: 5px; background: #333338; }
.browser .cal i.on { background: var(--green); }
.browser .b { margin-top: 6px; height: 32px; border-radius: 8px; background: var(--white); display: grid; place-items: center; font-size: 12px; font-weight: 600; color: var(--black); }
/* report inside tile 4 */
.tile .ui-report { padding: 18px; }
/* sms inside tile 3 */
.tile .ui-sms { padding: 16px; }

/* ---------- stacked cards (what I don't do) ---------- */
.stack { display: grid; gap: 16px; padding-bottom: 12vh; }
.stack .slide { position: sticky; top: 84px; background: var(--ink); border-radius: 28px; padding: 36px 32px; min-height: 340px; display: grid; gap: 22px; align-content: start; box-shadow: 0 -20px 60px -30px rgba(0, 0, 0, 0.9); border: 1px solid var(--line-dark); }
.stack .slide:nth-child(2) { top: 100px; } .stack .slide:nth-child(3) { top: 116px; } .stack .slide:nth-child(4) { top: 132px; }
@media (min-width: 900px) { .stack .slide { grid-template-columns: 1fr 1fr; align-items: end; min-height: 300px; padding: 44px 48px; } }
.stack .slide .mono { color: var(--muted-dark); }
.stack .slide h3 { font-size: clamp(30px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -0.035em; margin-top: 10px; }
.stack .slide p { font-size: 18px; color: var(--muted-dark); max-width: 28em; }
.stack .slide .x { width: 46px; height: 46px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); display: grid; place-items: center; margin-bottom: 6px; }
.stack .slide .x svg { width: 18px; height: 18px; stroke: var(--white); stroke-width: 2.2; stroke-linecap: round; fill: none; }
.stack .slide.last { background: var(--white); color: var(--ink); border-color: transparent; }
.stack .slide.last .x { background: var(--green); } .stack .slide.last .x svg { stroke: #fff; }
.stack .slide.last p, .stack .slide.last .mono { color: var(--muted); }

/* ---------- results ---------- */
.bignums { display: grid; gap: 28px; margin-bottom: 64px; }
@media (min-width: 700px) { .bignums { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.bignum { text-align: center; padding: 30px 20px; }
.bignum b { display: block; font-size: clamp(56px, 8vw, 96px); line-height: 1; font-weight: 600; letter-spacing: -0.05em; font-variant-numeric: tabular-nums; }
.bignum b.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bignum span { display: block; margin-top: 10px; font-size: 16px; color: var(--muted); }
.bignum small { display: block; margin-top: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--muted); }
.results-grid { display: grid; gap: 16px; }
@media (min-width: 800px) { .results-grid { grid-template-columns: 1fr 1fr; gap: 20px; } .result.featured { grid-column: 1 / -1; } }
.result { margin: 0; background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease); }
.result:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.3); }
.result .shot { display: block; width: 100%; padding: 0; border: 0; background: var(--gray-2); cursor: zoom-in; }
.result .shot img { width: 100%; height: auto; display: block; }
.result .shot:focus-visible { outline: 3px solid var(--blue); outline-offset: -3px; }
.result figcaption { padding: 18px 22px 22px; }
.result .period { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.result .stats { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.result .stat b { display: block; font-size: 28px; line-height: 1; font-weight: 600; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.result .stat span { font-size: 13px; color: var(--muted); }
.result.featured .stat b { font-size: 36px; }
.results-note { margin-top: 26px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--muted); text-align: center; }
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1400px); max-height: 92vh; }
.lightbox::backdrop { background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(8px); }
.lightbox img { display: block; max-width: 96vw; max-height: 88vh; width: auto; height: auto; border-radius: 14px; }
.lightbox-close { position: fixed; top: 18px; right: 18px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.15); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }
.lightbox-close:hover { background: rgba(255, 255, 255, 0.3); }

/* ---------- guides ---------- */
.cards { display: grid; gap: 16px; }
@media (min-width: 800px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.card { display: flex; flex-direction: column; background: var(--white); border-radius: 24px; padding: 32px 28px; min-height: 320px; text-decoration: none; transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.25); }
.card:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.card .kicker { margin-bottom: auto; }
.card h3 { font-size: clamp(24px, 2.6vw, 30px); line-height: 1.1; margin: 40px 0 10px; }
.card p { font-size: 16px; color: var(--muted); margin-bottom: 18px; }
.card .more { font-size: 16px; }

/* ---------- price ---------- */
.price-hero { text-align: center; }
.price-hero .amount { font-size: clamp(88px, 16vw, 200px); line-height: 0.95; font-weight: 600; letter-spacing: -0.06em; font-variant-numeric: tabular-nums; }
.price-hero .per { display: block; margin-top: 8px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-dark); }
.price-lines { list-style: none; margin: 56px auto 0; padding: 0; max-width: 760px; display: grid; border-top: 1px solid var(--line-dark); }
.price-lines li { padding: 22px 0; border-bottom: 1px solid var(--line-dark); font-size: clamp(18px, 2vw, 22px); font-weight: 500; letter-spacing: -0.01em; color: var(--white); display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; align-items: baseline; }
.price-lines li .mono { color: var(--green); }
.price-lines li span.sub { grid-column: 2; font-size: 16px; font-weight: 400; color: var(--muted-dark); }
.guarantee { max-width: 760px; margin: 40px auto 0; background: var(--ink); border: 1px solid var(--line-dark); border-radius: 28px; padding: 36px 32px; }
.guarantee .kicker { color: var(--green); }
.guarantee h3 { font-size: clamp(26px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -0.03em; }

/* ---------- faq ---------- */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa button { appearance: none; background: none; border: 0; width: 100%; text-align: left; cursor: pointer; color: inherit; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 24px 0; font: inherit; font-size: clamp(19px, 2.2vw, 24px); font-weight: 600; letter-spacing: -0.02em; }
.qa button:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; border-radius: 4px; }
.qa .icon { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--gray); display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.3s; }
.qa .icon svg { width: 14px; height: 14px; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; fill: none; }
.qa button[aria-expanded="true"] .icon { transform: rotate(45deg); background: var(--ink); }
.qa button[aria-expanded="true"] .icon svg { stroke: var(--white); }
.qa .panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.qa .panel.open { grid-template-rows: 1fr; }
.qa .panel > div { overflow: hidden; }
.qa .answer { padding: 0 0 26px; font-size: 18px; color: var(--muted); max-width: 40em; }

/* ---------- audit ---------- */
.audit-grid { max-width: 620px; margin-inline: auto; }
.audit-points { list-style: none; margin: 28px 0 40px; padding: 0; display: grid; gap: 10px; }
.audit-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted-dark); font-size: 16px; }
.audit-points svg { width: 20px; height: 20px; flex: 0 0 auto; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 3px; }
.form-card { background: var(--ink); border: 1px solid var(--line-dark); border-radius: 28px; padding: 26px 22px; }
@media (min-width: 600px) { .form-card { padding: 36px; } }
.form { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; }
.field .hint { font-weight: 400; color: var(--muted-dark); }
.field input { font: inherit; font-size: 17px; color: var(--white); width: 100%; min-height: 54px; padding: 12px 16px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 14px; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s; }
.field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(41, 151, 255, 0.25); background: rgba(255, 255, 255, 0.1); }
.field.invalid input { border-color: var(--red); }
.field .err { font-size: 13px; color: #FF8A8A; display: none; }
.field.invalid .err { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.check { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 14px; font-weight: 400; line-height: 1.5; color: var(--muted-dark); }
.check input { appearance: none; -webkit-appearance: none; flex: 0 0 auto; width: 22px; height: 22px; min-height: 0; padding: 0; margin: 1px 0 0; border-radius: 7px; border: 1px solid rgba(255, 255, 255, 0.35); background: rgba(255, 255, 255, 0.06); cursor: pointer; display: grid; place-items: center; transition: background 0.2s, border-color 0.2s; }
.check input::before { content: ""; width: 12px; height: 7px; border-left: 2px solid var(--black); border-bottom: 2px solid var(--black); transform: rotate(-45deg) scale(0); transition: transform 0.2s var(--ease); margin-top: -3px; }
.check input:checked { background: var(--white); border-color: var(--white); }
.check input:checked::before { transform: rotate(-45deg) scale(1); }
.check input:focus-visible { outline: 3px solid rgba(41, 151, 255, 0.5); outline-offset: 2px; }
.consent.invalid .check input { border-color: var(--red); }
.status { font-size: 15px; min-height: 1.4em; margin: 0; }
.status.bad { color: #FF8A8A; }
.fine { font-size: 13px; color: var(--muted-dark); }
.fine a { color: inherit; }
.or { margin-top: 28px; text-align: center; font-size: 16px; color: var(--muted-dark); }
.success { font-size: 20px; line-height: 1.5; outline: none; }
.success b[data-echo-email] { font-weight: 600; color: var(--green); }

/* ---------- footer ---------- */
footer { background: var(--black); color: var(--muted-dark); padding: 96px 0 40px; border-top: 1px solid var(--line-dark); }
footer .big { font-size: clamp(36px, 6vw, 72px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; color: var(--white); margin-bottom: 22px; }
footer .mail { display: inline-block; font-size: clamp(18px, 2.4vw, 26px); font-weight: 500; color: var(--white); text-decoration: none; border-bottom: 1px solid var(--line-dark); padding-bottom: 4px; }
footer .mail:hover { border-color: var(--white); }
footer .base { margin-top: 64px; padding-top: 20px; border-top: 1px solid var(--line-dark); display: grid; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; }
@media (min-width: 720px) { footer .base { grid-template-columns: 1fr auto; align-items: center; } }
footer .base a { color: inherit; text-decoration: none; }
footer .base a:hover { color: var(--white); }
footer nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- articles (guides, privacy) ---------- */
body.page { background: var(--white); color: var(--ink); }
.article { padding: 120px 0 96px; }
.article .wrap { max-width: 720px; }
.article .kicker { margin-bottom: 12px; }
.article h1 { font-size: clamp(36px, 5.6vw, 56px); line-height: 1.04; margin: 0 0 20px; letter-spacing: -0.035em; }
.article .lede { margin-bottom: 40px; color: var(--muted); }
.article h2 { font-size: clamp(26px, 3vw, 32px); margin: 48px 0 14px; letter-spacing: -0.025em; }
.article h3 { font-size: 20px; margin: 30px 0 8px; letter-spacing: -0.01em; }
.article p, .article li { font-size: 18px; color: var(--ink); }
.article ul, .article ol { padding-left: 22px; }
.article li + li { margin-top: 8px; }
.article .box { background: var(--gray); border-radius: 18px; padding: 20px 22px; margin: 20px 0; }
.article .box p { margin: 0; }
.article .box p + p { margin-top: 10px; }
.article .rewrite { display: grid; gap: 10px; margin: 18px 0; }
.article .rewrite div { padding: 16px 18px; border-radius: 16px; background: var(--gray); }
.article .rewrite .no { box-shadow: inset 4px 0 0 var(--red); }
.article .rewrite .yes { box-shadow: inset 4px 0 0 var(--green); }
.article .rewrite span { display: block; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.article .sms { background: var(--gray); border-radius: 18px; padding: 16px 18px; margin: 12px 0; font-size: 17px; max-width: 540px; }
.article .sms .when { display: block; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.article table { border-collapse: collapse; width: 100%; font-size: 16px; margin: 18px 0; }
.article th, .article td { text-align: left; padding: 12px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
.article th { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.table-wrap { overflow-x: auto; }
.article .cta-box { margin-top: 64px; padding: 40px 32px; background: var(--black); color: var(--white); border-radius: 28px; text-align: center; }
.article .cta-box h2 { margin: 0 0 10px; font-size: clamp(28px, 3.4vw, 40px); }
.article .cta-box p { color: var(--muted-dark); margin-bottom: 22px; }
.back { display: inline-block; font-size: 15px; font-weight: 500; color: var(--blue); text-decoration: none; margin-bottom: 14px; }
.back:hover { text-decoration: underline; }
.meta-line { font-size: 15px; color: var(--muted); }
.page .top { background: rgba(255, 255, 255, 0.72); color: var(--ink); border-bottom-color: var(--line); }
.page .lang button { color: var(--muted); }
.page .lang button[aria-pressed="true"] { color: var(--ink); background: rgba(0, 0, 0, 0.06); }
.page .top .btn { background: var(--ink); color: var(--white); }

/* ---------- motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js .reveal, .ui, .system .ui { opacity: 1; transform: none; }
  .lit .w { color: var(--white); }
  .bg-video video { display: none; }
  .spot { display: none; }
}
