:root {
  --bg: #f6f5f2;
  --surface: #ffffff;
  --ink: #16191d;
  --ink-2: #4a5159;
  --ink-3: #7b838c;
  --line: #e3e1dc;
  --accent: #0f6e63;
  --accent-ink: #ffffff;
  --accent-soft: #e2f0ed;
  --warn: #b4442f;
  --dark: #111416;
  --dark-2: #1b1f23;
  --dark-line: #2b3036;
  --radius: 14px;
  --maxw: 1160px;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; }

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: 24px; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 650; letter-spacing: -0.01em; text-decoration: none; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: radial-gradient(circle at 50% 50%, #fff 0 4px, transparent 5px), var(--accent);
  box-shadow: inset 0 0 0 5px var(--accent), inset 0 0 0 7px #7cc4b9;
}
.brand small { font-weight: 500; color: var(--ink-3); }
.nav-links { display: flex; gap: 22px; margin-left: auto; font-size: 14.5px; color: var(--ink-2); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.lang-toggle {
  display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; background: var(--surface);
}
.lang-toggle button {
  border: 0; background: transparent; font: 600 12.5px var(--sans); color: var(--ink-3);
  padding: 5px 10px; border-radius: 999px; cursor: pointer;
}
.lang-toggle button[aria-pressed="true"] { background: var(--ink); color: #fff; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px; font: 600 15.5px var(--sans);
  text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform .15s, background .15s;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: #0b5a51; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn:active { transform: translateY(1px); }

/* type */
h1, h2, h3 { margin: 0; letter-spacing: -0.02em; }
h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(42px, 6.4vw, 78px); line-height: 1.02; }
h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 4.2vw, 50px); line-height: 1.08; }
h3 { font-size: 19px; font-weight: 650; letter-spacing: -0.01em; line-height: 1.3; }
.eyebrow {
  font: 600 12.5px var(--mono); text-transform: uppercase; letter-spacing: .1em; color: var(--accent);
  margin-bottom: 18px; display: block;
}
.lede { font-size: clamp(18px, 1.6vw, 21px); color: var(--ink-2); max-width: 640px; }
.muted { color: var(--ink-3); }

section { padding-block: clamp(72px, 10vw, 128px); }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .lede { margin-top: 18px; }

/* hero */
.hero { padding-top: 72px; padding-bottom: 0; overflow: hidden; }
.hero-copy { max-width: 860px; }
.hero .lede { margin-top: 26px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero-shot { margin-top: 64px; position: relative; }
.trust {
  display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: center;
  padding-block: 26px; font: 500 13.5px var(--mono); color: var(--ink-3); letter-spacing: .02em;
}
.trust span::before { content: "·"; margin-right: 28px; color: var(--line); }
.trust span:nth-child(-n+2)::before { content: none; }

/* mac window mockup */
.window {
  background: var(--dark); border-radius: 14px; overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 40px 80px -30px rgba(10,20,20,.45), 0 0 0 1px rgba(0,0,0,.15);
  color: #e8ecef; font-size: 13px;
}
.titlebar { display: flex; align-items: center; gap: 8px; height: 38px; padding-inline: 14px; background: #1d2125; border-bottom: 1px solid #000; }
.dots { display: flex; gap: 7px; }
.dots i { width: 12px; height: 12px; border-radius: 50%; display: block; background: #ff5f57; }
.dots i:nth-child(2) { background: #febc2e; } .dots i:nth-child(3) { background: #28c840; }
.titlebar .t { margin-inline: auto; font-weight: 600; color: #aeb5bb; font-size: 12.5px; }
.titlebar .lock { font: 600 11px var(--mono); color: #7cc4b9; background: rgba(124,196,185,.12); padding: 3px 8px; border-radius: 6px; }

.capture { display: grid; grid-template-columns: 220px 1fr 180px; min-height: 520px; }
.cap-side { background: #16191c; border-right: 1px solid #000; padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.cap-side .lbl { font: 600 10.5px var(--mono); text-transform: uppercase; letter-spacing: .08em; color: #6f777e; }
.cap-side .val { font-size: 13.5px; color: #e8ecef; }
.pill { display: inline-flex; align-items: center; gap: 6px; font: 600 11px var(--mono); padding: 4px 8px; border-radius: 6px; background: rgba(255,69,58,.14); color: #ff6b61; }
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse 1.4s infinite; }
@keyframes pulse { 50% { opacity: .35; } }

.feed { position: relative; background: #050607; display: grid; place-items: center; overflow: hidden; }
.scope {
  width: min(78%, 440px); aspect-ratio: 1; border-radius: 50%; position: relative;
  background:
    radial-gradient(ellipse 30% 22% at 58% 46%, rgba(255,230,210,.55), transparent 70%),
    radial-gradient(circle at 50% 52%, #120604 0 9%, transparent 26%),
    radial-gradient(circle at 50% 50%, #6e2317 0 20%, #b4533a 38%, #d98062 58%, #8f3423 78%, #2a0c07 100%);
  box-shadow: 0 0 0 6px #050607, 0 0 60px rgba(217,128,98,.15);
}
.scope::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 52%, transparent 0 22px, rgba(60,10,5,.28) 24px 27px, transparent 30px);
  mix-blend-mode: multiply;
}
.feed-hud { position: absolute; top: 14px; left: 16px; right: 16px; display: flex; justify-content: space-between; font: 500 11px var(--mono); color: #8e979e; }
.latency { color: #7cc4b9; }
.toast {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  background: rgba(30,34,38,.92); border: 1px solid #353b41; padding: 9px 14px 9px 10px; border-radius: 10px;
  font-weight: 600; font-size: 13px; box-shadow: 0 10px 30px rgba(0,0,0,.4);
  animation: toast 5s ease-in-out infinite;
}
.toast .ok { width: 20px; height: 20px; border-radius: 50%; background: #28c840; display: grid; place-items: center; color: #03250b; font-size: 12px; }
@keyframes toast { 0%, 8% { opacity: 0; transform: translate(-50%, 8px); } 14%, 70% { opacity: 1; transform: translate(-50%, 0); } 80%, 100% { opacity: 0; transform: translate(-50%, 8px); } }

.strip { background: #16191c; border-left: 1px solid #000; padding: 14px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.thumb { aspect-ratio: 4/3; border-radius: 8px; position: relative; overflow: hidden; border: 1px solid #2b3036; }
.thumb::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at var(--x,50%) var(--y,50%), #120604 0 8%, #8a3322 26%, #d07a5c 52%, #6d2416 80%, #1e0805 100%); }
.thumb b { position: absolute; left: 6px; bottom: 5px; font: 600 10px var(--mono); color: #fff; text-shadow: 0 1px 2px #000; }
.thumb.new { border-color: #7cc4b9; box-shadow: 0 0 0 2px rgba(124,196,185,.35); }

/* cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.pain .quote { font-family: var(--serif); font-size: 25px; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 14px; }
.pain .num { font: 600 12px var(--mono); color: var(--warn); margin-bottom: 18px; display: block; }
.pain p { margin: 0; color: var(--ink-2); font-size: 15.5px; }
.pivot { margin-top: 44px; font-size: 19px; color: var(--ink-2); max-width: 720px; }
.pivot strong { color: var(--ink); font-weight: 600; }

/* feature lists */
.features { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; }
.features li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; }
.features .ix { font: 600 12px var(--mono); color: var(--accent); padding-top: 4px; }
.features h3 { margin-bottom: 4px; }
.features p { margin: 0; color: var(--ink-2); font-size: 15.5px; }

/* dark section */
.dark { background: var(--dark); color: #e8ecef; }
.dark .lede, .dark .features p { color: #a3abb2; }
.dark .eyebrow, .dark .features .ix { color: #7cc4b9; }
.dark .card { background: var(--dark-2); border-color: var(--dark-line); }

/* persistence flow */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 64px; border: 1px solid var(--dark-line); border-radius: var(--radius); overflow: hidden; }
.flow div { padding: 22px 22px 20px; border-right: 1px solid var(--dark-line); position: relative; background: var(--dark-2); }
.flow div:last-child { border-right: 0; background: #16302b; }
.flow b { display: block; font: 600 11px var(--mono); color: #6f777e; margin-bottom: 8px; }
.flow span { font-weight: 600; font-size: 15.5px; }
.flow div:last-child b { color: #7cc4b9; }

/* dialogs compare */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dlg { border-radius: 12px; padding: 22px; font-size: 13.5px; }
.dlg.legacy { background: #e9e9e6; color: #222; border: 1px solid #c9c9c4; font-family: Tahoma, Verdana, sans-serif; border-radius: 2px; }
.dlg.legacy .bar { background: linear-gradient(#3d6fc4, #2555a8); color: #fff; margin: -22px -22px 18px; padding: 6px 10px; font-size: 12px; font-weight: 700; }
.dlg.legacy .err { display: flex; gap: 12px; align-items: flex-start; }
.dlg.legacy .x { flex: none; width: 30px; height: 30px; border-radius: 50%; background: #d23a2a; color: #fff; display: grid; place-items: center; font-weight: 700; }
.dlg.legacy .okbtn { margin-top: 18px; margin-left: auto; display: block; width: 80px; text-align: center; border: 1px solid #777; background: #f3f3f3; padding: 3px; font-size: 12px; }
.dlg.mac { background: #23272b; border: 1px solid #353b41; color: #e8ecef; box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); }
.dlg.mac .icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(124,196,185,.15); color: #7cc4b9; display: grid; place-items: center; font-size: 20px; margin-bottom: 12px; }
.dlg.mac h4 { margin: 0 0 4px; font-size: 15px; }
.dlg.mac .rows { margin: 14px 0 18px; display: grid; gap: 6px; font-size: 13px; }
.dlg.mac .rows div { display: flex; justify-content: space-between; border-bottom: 1px solid #30353a; padding-bottom: 6px; }
.dlg.mac .rows span:first-child { color: #8e979e; }
.dlg.mac .acts { display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; }
.dlg.mac .acts i { font-style: normal; font-size: 12.5px; padding: 6px 12px; border-radius: 7px; background: #353b41; }
.dlg.mac .acts i.p { background: var(--accent); }
.cap-label { font: 600 11px var(--mono); text-transform: uppercase; letter-spacing: .08em; color: #6f777e; margin-bottom: 10px; }
.light .cap-label { color: var(--ink-3); }

/* filmstrip */
.film { background: var(--dark); border-radius: var(--radius); padding: 22px; color: #e8ecef; }
.film-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.frame { aspect-ratio: 1; border-radius: 8px; position: relative; overflow: hidden; border: 1px solid #2b3036; }
.frame::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 52% 50%, #120604 0 9%, #8a3322 28%, #d07a5c 54%, #6d2416 82%, #1e0805 100%); filter: blur(var(--blur, 0)); transform: scale(1.1); }
.frame em { position: absolute; left: 6px; bottom: 5px; font: 600 10px var(--mono); font-style: normal; color: #fff; text-shadow: 0 1px 2px #000; }
.frame.best { border: 2px solid #7cc4b9; box-shadow: 0 0 0 4px rgba(124,196,185,.2); }
.frame.best::after { content: "✓"; position: absolute; top: 5px; right: 6px; width: 18px; height: 18px; border-radius: 50%; background: #7cc4b9; color: #0c2a26; font-size: 11px; display: grid; place-items: center; font-weight: 700; }
.film-cap { display: flex; justify-content: space-between; font: 500 11.5px var(--mono); color: #8e979e; margin-top: 12px; }

.bars { margin-top: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.bar-row { display: grid; grid-template-columns: 110px 1fr 90px; gap: 14px; align-items: center; font-size: 14px; margin-top: 12px; }
.bar-row:first-of-type { margin-top: 0; }
.bar-track { height: 12px; background: #efede8; border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 99px; }
.bar-row .v { font: 600 13px var(--mono); text-align: right; }

/* timeline before/after */
.timeline { display: grid; gap: 18px; }
.tl { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.tl-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; gap: 12px; flex-wrap: wrap; }
.tl-head b { font-size: 15px; }
.tl-head span { font: 600 13px var(--mono); }
.steps { display: flex; gap: 5px; flex-wrap: wrap; }
.steps i { font-style: normal; font-size: 12.5px; padding: 5px 10px; border-radius: 6px; background: #f1efea; color: var(--ink-2); }
.tl.after .steps i { background: var(--accent-soft); color: #0b4d45; }
.tl.after .tl-head span { color: var(--accent); }
.tl.before .tl-head span { color: var(--warn); }

.templates { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.templates span { font-size: 13px; padding: 6px 12px; border: 1px solid var(--line); border-radius: 99px; background: var(--surface); color: var(--ink-2); }

/* phone */
.phone-wrap { display: grid; place-items: center; }
.phone {
  width: 300px; max-width: 100%; border-radius: 44px; background: #111; padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(10,20,20,.45), inset 0 0 0 2px #333;
}
.screen { border-radius: 34px; overflow: hidden; background: #efeae2; height: 580px; display: flex; flex-direction: column; }
.wa-top { background: #075e54; color: #fff; padding: 36px 14px 12px; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.wa-top .av { width: 32px; height: 32px; border-radius: 50%; background: #cfe9e4; color: #075e54; display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.wa-top small { display: block; font-weight: 400; font-size: 11px; opacity: .8; }
.wa-body { padding: 14px 10px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bubble { background: #fff; border-radius: 10px; padding: 8px 10px; font-size: 13px; max-width: 88%; color: #111; box-shadow: 0 1px 1px rgba(0,0,0,.08); line-height: 1.4; }
.bubble.me { align-self: flex-end; background: #d9fdd3; }
.bubble .time { display: block; text-align: right; font-size: 10px; color: #777; margin-top: 2px; }
.link-card { margin-top: 6px; border-radius: 8px; overflow: hidden; background: #f3f6f5; border: 1px solid #dfe6e4; }
.link-card .img { height: 88px; background: radial-gradient(circle at 50% 50%, #120604 0 8%, #8a3322 26%, #d07a5c 52%, #6d2416 80%, #1e0805 100%); }
.link-card .meta { padding: 8px; font-size: 12px; }
.link-card .meta b { display: block; font-size: 12.5px; }
.link-card .meta span { color: #667; font-size: 11px; }

/* storage tiers */
.tiers { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 10px; margin-top: 56px; }
.tier { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.tier b { font: 600 11px var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); display: block; margin-bottom: 8px; }
.tier h3 { margin-bottom: 4px; }
.tier p { margin: 0; color: var(--ink-2); font-size: 14.5px; }
.tier.opt { border-style: dashed; background: transparent; }
.arrow { display: grid; place-items: center; color: var(--ink-3); font-size: 22px; }

/* hardware */
.hw { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 8px; }
.hw .card { padding: 22px; }
.hw .k { font-family: var(--serif); font-size: 30px; line-height: 1; margin-bottom: 10px; color: var(--accent); }
.hw h3 { font-size: 16px; margin-bottom: 6px; }
.hw p { margin: 0; font-size: 14px; color: var(--ink-2); }
.chain { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; font: 500 14px var(--mono); color: var(--ink-2); }
.chain span { background: var(--surface); border: 1px solid var(--line); padding: 10px 16px; border-radius: 10px; }
.chain span.hl { background: var(--ink); color: #fff; border-color: var(--ink); }
.chain i { font-style: normal; color: var(--ink-3); }

/* prepsync */
.companion { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: clamp(28px, 4vw, 48px); }
.companion h2 { font-size: clamp(28px, 3.2vw, 38px); }
.companion .sync { display: grid; gap: 10px; font-size: 14.5px; }
.companion .sync div { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; background: var(--bg); }
.companion .sync b { font: 600 11px var(--mono); color: var(--accent); min-width: 72px; }
.textlink { color: var(--accent); font-weight: 600; text-decoration: none; display: inline-block; margin-top: 20px; }
.textlink:hover { text-decoration: underline; }

/* origin */
.origin { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); line-height: 1.35; letter-spacing: -0.01em; max-width: 880px; }
.origin p { margin: 0 0 20px; }
.origin-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.origin-trust span { font: 500 12.5px var(--mono); padding: 7px 12px; border: 1px solid var(--dark-line); border-radius: 8px; color: #a3abb2; }

/* pricing */
.pricing { display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 36px; }
.price-card.main { background: var(--ink); color: #fff; border-color: var(--ink); }
.price-card.main p { color: #b9c0c6; }
.price-card h3 { font-family: var(--serif); font-weight: 500; font-size: 30px; letter-spacing: -0.02em; margin-bottom: 14px; }
.price-card .big { font-family: var(--serif); font-size: 22px; line-height: 1.35; margin: 0 0 24px; }
.checks { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; font-size: 15px; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 8px; }
.checks li::before { content: "✓"; color: #7cc4b9; font-weight: 700; }
.price-card:not(.main) .checks li::before { color: var(--accent); }
.checks li.no::before { content: "—"; color: var(--ink-3); }

/* faq */
.faq { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; }
details { border-top: 1px solid var(--line); padding-block: 20px; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; font-weight: 600; font-size: 17.5px; display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-weight: 400; font-size: 24px; line-height: 1; color: var(--ink-3); transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 12px 0 0; color: var(--ink-2); font-size: 16px; max-width: 640px; }

/* demo form */
.final { text-align: center; }
.final h2 { font-size: clamp(40px, 5.6vw, 68px); }
.demo-form {
  max-width: 640px; margin: 44px auto 0; text-align: left;
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.field input, .field select {
  font: 16px var(--sans); padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.demo-form .btn { grid-column: 1 / -1; justify-content: center; margin-top: 6px; }
.form-note { grid-column: 1 / -1; font-size: 13px; color: var(--ink-3); text-align: center; margin: 0; }
.wa-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--ink-2); font-weight: 600; text-decoration: none; }
.wa-link:hover { color: var(--accent); }
.wa-dot { width: 22px; height: 22px; border-radius: 50%; background: #25d366; display: grid; place-items: center; color: #fff; font-size: 12px; }

/* footer */
footer { border-top: 1px solid var(--line); padding-block: 40px; font-size: 14px; color: var(--ink-3); }
footer .wrap { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; }
footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }
footer .right { margin-left: auto; }

/* reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .toast, .pill::before { animation: none; }
  .toast { opacity: 1; }
}

/* responsive */
@media (max-width: 1000px) {
  .capture { grid-template-columns: 1fr; }
  .cap-side { flex-direction: row; flex-wrap: wrap; gap: 16px 28px; border-right: 0; border-bottom: 1px solid #000; }
  .strip { flex-direction: row; border-left: 0; border-top: 1px solid #000; }
  .strip .thumb { flex: 1; }
  .feed { min-height: 360px; }
  .grid-3, .grid-2, .compare, .pricing, .faq, .companion { grid-template-columns: 1fr; }
  .grid-2 { gap: 40px; }
  .hw { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .arrow { transform: rotate(90deg); }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow div:nth-child(2) { border-right: 0; }
  .flow div:nth-child(-n+2) { border-bottom: 1px solid var(--dark-line); }
  .nav-links { display: none; }
  .lang-toggle { margin-left: auto; }
}
.capture > *, .grid-2 > *, .grid-3 > *, .compare > *, .pricing > *, .faq > *, .companion > *, .hw > * { min-width: 0; }
body { overflow-x: clip; }
h1, h2, .pain .quote { overflow-wrap: break-word; }

@media (max-width: 600px) {
  body { font-size: 16px; }
  .titlebar .lock, .feed-hud span:first-child { display: none; }
  .hero-ctas .btn { flex: 1 1 100%; justify-content: center; }
  .wrap { padding-inline: 16px; }
  .hw { grid-template-columns: 1fr; }
  .demo-form { grid-template-columns: 1fr; padding: 22px; }
  .strip .thumb:nth-child(n+4) { display: none; }
  .nav .btn { display: none; }
  .bar-row { grid-template-columns: 76px 1fr 64px; gap: 10px; }
  .trust span::before { content: none; }
}
