:root {
  --bg: #cdd1d8; --text: #1d1d1f; --text2: #46464b; --line: #00000014;
  --rim: inset 1px 1px 0 #fff, inset -1px -1px 0 #ffffff99, inset 0 0 0 1px #ffffff80;
  --out: 0 0 0 .5px #00000038, 0 2px 5px #00000017, 0 24px 50px -14px #00000059;
  --font: Inter, ui-sans-serif, system-ui, sans-serif;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1c1d22; --text: #f2f3f5; --text2: #b4b7c0; --line: #ffffff1a;
    --rim: inset 1px 1px 0 #ffffff33, inset -1px -1px 0 #ffffff14, inset 0 0 0 1px #ffffff1f;
    --out: 0 24px 50px -14px #00000080;
    color-scheme: dark;
  }
}
html[data-night] {
  --bg: #1c1d22; --text: #f2f3f5; --text2: #b4b7c0; --line: #ffffff1a;
  --rim: inset 1px 1px 0 #ffffff33, inset -1px -1px 0 #ffffff14, inset 0 0 0 1px #ffffff1f;
  --out: 0 24px 50px -14px #00000080;
  color-scheme: dark;
}
html[data-day] {
  --bg: #cdd1d8; --text: #1d1d1f; --text2: #46464b; --line: #00000014;
  --rim: inset 1px 1px 0 #fff, inset -1px -1px 0 #ffffff99, inset 0 0 0 1px #ffffff80;
  --out: 0 0 0 .5px #00000038, 0 2px 5px #00000017, 0 24px 50px -14px #00000059;
  color-scheme: light;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
.case, .stack, .about, .cta, .plans, .faq { scroll-margin-top: 84px; }
body {
  min-height: 100vh;
  background: radial-gradient(1200px 700px at 10% -10%, #e8eaee, transparent 55%),
              radial-gradient(900px 600px at 110% 20%, #d5dae3, transparent 50%), var(--bg);
  color: var(--text); font: 400 16px/1.55 var(--font); overflow-x: hidden;
}
html[data-night] body {
  background: radial-gradient(900px 600px at 10% -10%, #2a2d36, transparent 55%),
              radial-gradient(700px 500px at 110% 10%, #3a3344, transparent 50%), var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 80; background: #1d1d1f; }
html[data-night] .progress { background: #fff; }

.blob { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(46px); opacity: .75; animation: float 14s ease-in-out infinite; }
.b2 { animation-delay: -4s; animation-duration: 18s; }
.b3 { animation-delay: -8s; animation-duration: 16s; }
.b1 { width: 520px; height: 520px; left: -80px; top: -90px; background: #f4f5f7; }
.b2 { width: 440px; height: 440px; right: -60px; top: 220px; background: #b8c0cc; }
.b3 { width: 280px; height: 280px; left: 42%; top: 380px; background: #e3e6eb; }
html[data-night] .b1 { background: #3d4250; }
html[data-night] .b2 { background: #4a3d55; }
html[data-night] .b3 { background: #2c3340; }

.glass {
  background: linear-gradient(160deg, #ffffffc2, #ffffff6b 55%, #ffffff8c);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid #ffffffe6;
  box-shadow: var(--rim), var(--out);
}
html[data-night] .glass {
  background: linear-gradient(160deg, #ffffff1f, #ffffff0f 55%, #ffffff14);
  border-color: #ffffff22;
}

.nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 40; width: min(1120px, calc(100% - 28px));
  height: 58px; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-radius: 999px;
}
.logo { font: 800 1.15rem/1 var(--font); letter-spacing: -.03em; }
.logo span { opacity: .45; }
.nav nav { display: flex; gap: 20px; }
.nav nav a { font-size: .86rem; color: var(--text2); font-weight: 500; }
.nav nav a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.icon-btn { width: 38px; height: 38px; border-radius: 50%; }
.burger {
  display: none; position: relative; width: 42px; height: 42px;
  border-radius: 50%; flex-shrink: 0;
}
.burger span {
  position: absolute; left: 12px; right: 12px; height: 1.6px;
  background: currentColor; border-radius: 2px;
  transition: transform .38s cubic-bezier(.22,.8,.28,1), top .38s cubic-bezier(.22,.8,.28,1);
}
.burger span:first-child { top: 16px; }
.burger span:last-child { top: 24px; }
.burger.is-on span:first-child { top: 20px; transform: rotate(45deg); }
.burger.is-on span:last-child { top: 20px; transform: rotate(-45deg); }

.scrim {
  position: fixed; inset: 0; z-index: 38; background: #00000040;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
html[data-night] .scrim { background: #00000073; }
.scrim.is-on { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 80px; left: 14px; right: 14px; z-index: 39;
  padding: 10px 18px 18px; border-radius: 24px; flex-direction: column; gap: 0;
  display: flex;
  visibility: hidden; opacity: 0;
  transform: translateY(-10px) scale(.98);
  pointer-events: none;
  transition: opacity .32s ease, transform .32s cubic-bezier(.22,.8,.28,1), visibility .32s;
}
.drawer.is-on { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
.drawer a {
  font-weight: 650; padding: 14px 4px; border-bottom: 1px solid var(--line);
  transform: translateY(8px); opacity: 0;
}
.drawer.is-on a { animation: rise .4s ease forwards; }
.drawer a:nth-child(1) { animation-delay: .04s; }
.drawer a:nth-child(2) { animation-delay: .08s; }
.drawer a:nth-child(3) { animation-delay: .12s; }
.drawer a:nth-child(4) { animation-delay: .16s; }
.drawer a:nth-child(5) { animation-delay: .2s; }
.drawer a:nth-child(6) { animation-delay: .24s; border-bottom: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 20px; border-radius: 999px;
  font: 650 .92rem/1 var(--font); cursor: pointer; border: 1px solid #ffffffe6;
}
.btn-solid {
  background: #1d1d1f; color: #fff; border-color: #1d1d1f;
  box-shadow: inset 0 1px 0 #ffffff33, 0 8px 22px #0000002e;
}
.btn-solid:hover { background: #000; }
html[data-night] .btn-solid { background: #fff; color: #111; border-color: #fff; }
html[data-night] .btn-solid:hover { background: #e8e8ea; }
.nav .btn-solid { min-height: 38px; padding: 0 16px; font-size: .82rem; }

main { position: relative; z-index: 1; width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.hero { padding: 136px 0 28px; text-align: center; }
.hero h1, .hero .lead, .hero-actions, .hero-stack { animation: rise .7s ease both; }
.hero .lead { animation-delay: .08s; }
.hero-actions { animation-delay: .16s; }
.hero-stack { animation-delay: .24s; }
.eyebrow { margin-bottom: 14px; color: var(--text2); font: 500 .78rem/1 var(--font); letter-spacing: .16em; text-transform: uppercase; }
h1 { font: 800 clamp(2.4rem, 7vw, 4.6rem)/1.05 var(--font); letter-spacing: -.04em; }
h1 em {
  font-style: normal;
  background: linear-gradient(100deg, currentColor, #6e6e73 30%, currentColor 50%, #86868b 75%, currentColor);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 7s ease-in-out infinite alternate;
}
@keyframes shine { to { background-position: 100% 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes float { 50% { transform: translate3d(18px, 22px, 0); } }
@keyframes pulse { 50% { opacity: .45; } }
.lead { max-width: 540px; margin: 22px auto 0; color: var(--text2); font-size: 1.05rem; }
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.hero-stack { display: flex; justify-content: center; gap: 14px; margin-top: 48px; perspective: 900px; }
.mini {
  width: min(220px, 28vw); border-radius: 22px; overflow: hidden; padding: 8px 8px 12px;
  transform: rotateY(var(--ry, 0deg)) rotateX(var(--rx, 0deg));
  transition: transform .15s;
}
.mini:nth-child(1) { transform: rotate(-6deg) translateY(12px); }
.mini:nth-child(3) { transform: rotate(6deg) translateY(12px); }
.mini img { aspect-ratio: 16/10; object-fit: cover; border-radius: 14px; }
.mini span { display: block; margin-top: 8px; font: 700 .78rem/1 var(--font); }

.marq { overflow: hidden; margin: 48px -16px 56px; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marq-track { display: flex; gap: 36px; width: max-content; animation: marq 28s linear infinite; color: var(--text2); font: 650 .82rem/1 var(--font); letter-spacing: .12em; text-transform: uppercase; }
@keyframes marq { to { transform: translateX(-50%); } }

.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 72px; }
.stat { padding: 22px; border-radius: 28px; text-align: center; }
.stat b { display: block; font: 800 1.7rem/1.1 var(--font); letter-spacing: -.03em; }
.stat span { color: var(--text2); font-size: .88rem; }

.sec { text-align: center; margin-bottom: 28px; }
h2 { font: 800 clamp(1.7rem, 3.4vw, 2.6rem)/1.15 var(--font); letter-spacing: -.03em; }
.filters { display: flex; justify-content: center; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.chip { padding: 8px 14px; border-radius: 999px; font: 650 .78rem/1 var(--font); }
.chip.is-on { background: #1d1d1f; color: #fff; border-color: #1d1d1f; }
html[data-night] .chip.is-on { background: #fff; color: #111; }

.works { display: grid; gap: 22px; }
.case {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px;
  padding: 20px; border-radius: 36px; align-items: center;
  position: relative; overflow: hidden;
}
.case.flip { grid-template-columns: .8fr 1.2fr; }
.case.flip .device { order: 2; }
.case.is-hide { display: none; }
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { animation: rise .65s ease forwards; }
body.menu-on { overflow: hidden; }
[data-spot]:after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0), #ffffff66, transparent 42%);
  opacity: 0; transition: opacity .3s;
}
[data-spot]:hover:after { opacity: 1; }
html[data-night] [data-spot]:after { background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0), #ffffff22, transparent 42%); }

.device { position: relative; padding-bottom: 6%; }
.shot {
  display: block; overflow: hidden; border-radius: 20px; background: #111;
  box-shadow: 0 16px 40px #00000024;
}
.chrome {
  display: flex; align-items: center; gap: 6px; height: 28px; padding: 0 12px;
  background: #1a1a1c; color: #8b8b90; font-size: 11px;
}
.chrome i { width: 8px; height: 8px; border-radius: 50%; background: #3a3a3e; }
.chrome i:nth-child(1) { background: #ff5f57; }
.chrome i:nth-child(2) { background: #febc2e; }
.chrome i:nth-child(3) { background: #28c840; }
.chrome b { margin-left: 8px; font-weight: 500; }
.shot img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; }
.phone {
  position: absolute; right: 4%; bottom: -2%; width: 22%;
  border-radius: 18px; padding: 5px; background: #111; box-shadow: 0 12px 28px #00000040;
  animation: float 7s ease-in-out infinite;
}
.phone img { border-radius: 13px; aspect-ratio: 9/16; object-fit: cover; object-position: top; }

.kind { color: var(--text2); font: 600 .74rem/1 var(--font); letter-spacing: .12em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.kind em { font-style: normal; padding: 3px 7px; border-radius: 999px; background: #1d1d1f; color: #fff; letter-spacing: .06em; font-size: .62rem; animation: pulse 1.8s ease-in-out infinite; }
html[data-night] .kind em { background: #fff; color: #111; }
.case-body h3 { margin: 8px 0 10px; font: 800 1.5rem/1.15 var(--font); letter-spacing: -.02em; }
.case-body p { color: var(--text2); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 8px; }
.tags span { padding: 5px 10px; border-radius: 999px; background: #0000000a; font-size: .74rem; color: var(--text2); }
html[data-night] .tags span { background: #ffffff12; }
.case-body ul { margin: 10px 0 20px; padding-left: 18px; color: var(--text2); }
.case-body li { margin: 6px 0; }

.plans { padding: 72px 0 8px; }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.plan {
  grid-column: span 2;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 22px;
  border-radius: 28px;
  overflow: visible;
}
.plan-wide { grid-column: span 3; }
.plan.is-hot { box-shadow: var(--rim), var(--out), 0 0 0 1.5px #1d1d1f; }
html[data-night] .plan.is-hot { box-shadow: var(--rim), var(--out), 0 0 0 1.5px #fff; }
.plan-badge {
  position: absolute; top: -12px; left: 22px; z-index: 2;
  padding: 6px 12px; border-radius: 999px;
  background: #1d1d1f; color: #fff;
  font: 700 .7rem/1 var(--font); letter-spacing: .02em;
  box-shadow: 0 8px 18px #0000002e;
}
html[data-night] .plan-badge { background: #fff; color: #111; }
.plan-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.plan-ico {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: #ffffffcc; box-shadow: inset 0 0 0 1px #0000000f;
}
html[data-night] .plan-ico { background: #ffffff14; box-shadow: inset 0 0 0 1px #ffffff18; }
.plan-ico svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.plan-time {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text2); font: 550 .78rem/1 var(--font);
}
.plan-time i {
  width: 7px; height: 7px; border-radius: 50%;
  box-shadow: inset 0 0 0 1.4px currentColor;
  position: relative;
}
.plan-time i:after {
  content: ""; position: absolute; left: 2.6px; top: 1px;
  width: 1.2px; height: 3.2px; background: currentColor; border-radius: 1px;
}
.plan h3 { font: 800 1.12rem/1.25 var(--font); letter-spacing: -.02em; margin: 0 0 6px; }
.plan-price { font: 800 clamp(1.55rem, 2.2vw, 1.9rem)/1.1 var(--font); letter-spacing: -.03em; margin: 0 0 10px; }
.plan-price b { font-weight: 800; }
.plan-desc { color: var(--text2); font-size: .88rem; line-height: 1.5; margin: 0 0 18px; }
.plan-list { list-style: none; margin: 0 0 22px; }
.plan-list li {
  position: relative; padding-left: 22px;
  color: var(--text2); font-size: .86rem; line-height: 1.4;
  margin: 0 0 10px;
}
.plan-list li:last-child { margin-bottom: 0; }
.plan-list li:before {
  content: ""; position: absolute; left: 1px; top: .42em;
  width: 9px; height: 5px; border: solid currentColor; border-width: 0 0 1.6px 1.6px;
  transform: rotate(-48deg);
}
.plan-wide .plan-list { columns: 2; column-gap: 22px; }
.plan-wide .plan-list li { break-inside: avoid; }
.plan-cta {
  width: 100%; margin-top: auto;
  background: #fff; color: #1d1d1f; border-color: #ffffff;
  box-shadow: 0 8px 20px #00000012;
}
.plan-cta span { margin-left: 6px; transition: transform .2s; }
.plan-cta:hover span { transform: translateX(3px); }
html[data-night] .plan-cta {
  background: #ffffff16; color: #fff; border-color: #ffffff28;
}
.plan-tabs, .plan-dots { display: none; }

.stack { padding: 72px 0 20px; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.step { padding: 22px; border-radius: 24px; }
.step b { font: 800 1.6rem/1 var(--font); opacity: .28; }
.step h3 { margin: 8px 0 6px; font: 750 1.05rem/1.2 var(--font); }
.step p { color: var(--text2); font-size: .9rem; }

.about { padding: 72px 0 20px; }
.about-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.pad { padding: 26px; border-radius: 28px; position: relative; overflow: hidden; }
.pad h3 { margin-bottom: 8px; font: 750 1.1rem/1.2 var(--font); }
.pad p { color: var(--text2); font-size: .95rem; }

.faq { padding: 72px 0 8px; position: relative; }
.faq .sec { position: relative; z-index: 1; }
.faq-orbit { position: absolute; inset: -40px 0 auto; height: 260px; pointer-events: none; overflow: visible; }
.faq-orbit i {
  position: absolute; left: 50%; top: 48px; font: 900 3.6rem/1 var(--font); letter-spacing: -.08em;
  opacity: .09; color: currentColor; will-change: transform;
  animation: faq-orb var(--t, 14s) linear infinite;
}
.faq-orbit i:nth-child(1) { --t: 16s; --r: 210px; font-size: 5rem; }
.faq-orbit i:nth-child(2) { --t: 11s; --r: 140px; animation-direction: reverse; font-size: 2.6rem; opacity: .14; }
.faq-orbit i:nth-child(3) { --t: 20s; --r: 280px; animation-delay: -6s; font-size: 4.2rem; }
.faq-orbit i:nth-child(4) { --t: 9s; --r: 90px; animation-direction: reverse; animation-delay: -2s; font-size: 2rem; }
html[data-night] .faq-orbit i { opacity: .16; }
@keyframes faq-orb {
  from { transform: rotate(0deg) translateX(var(--r)) rotate(0deg); }
  to { transform: rotate(360deg) translateX(var(--r)) rotate(-360deg); }
}
.faq-list { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; perspective: 1400px; }
.faq-item {
  border-radius: 26px; overflow: visible; position: relative;
  transform-origin: center top;
  transition: transform .45s cubic-bezier(.22,1.4,.28,1), box-shadow .35s;
}
.faq-item.reveal { opacity: 0; transform: translateY(36px) rotateX(18deg) scale(.97); }
.faq-item.reveal.in { animation: faq-rise .8s cubic-bezier(.22,1.35,.28,1) forwards; }
.faq-item:nth-child(1).reveal.in { animation-delay: .02s; }
.faq-item:nth-child(2).reveal.in { animation-delay: .08s; }
.faq-item:nth-child(3).reveal.in { animation-delay: .14s; }
.faq-item:nth-child(4).reveal.in { animation-delay: .2s; }
.faq-item:nth-child(5).reveal.in { animation-delay: .26s; }
.faq-item:nth-child(6).reveal.in { animation-delay: .32s; }
@keyframes faq-rise { to { opacity: 1; transform: none; } }
@media (hover: hover) and (pointer: fine) {
  .faq-item.reveal.in:hover { transform: translateY(-4px) scale(1.01); }
  .faq-item.reveal.in.is-on:hover { transform: translateY(-2px) scale(1.006); }
}
.faq-item.is-on {
  animation: faq-pop .7s cubic-bezier(.18,1.7,.28,1);
  box-shadow: var(--rim), var(--out), 0 0 0 1.5px #1d1d1f22, 0 18px 40px -18px #00000040;
  z-index: 2;
}
html[data-night] .faq-item.is-on { box-shadow: var(--rim), var(--out), 0 0 0 1.5px #ffffff2e, 0 18px 40px -16px #00000080; }
@keyframes faq-pop {
  0% { transform: scale(.96) rotateX(8deg); }
  58% { transform: scale(1.028) rotateX(-2deg); }
  100% { transform: none; }
}
.faq-item.is-on:before {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(115deg, transparent 28%, #ffffff88 49%, transparent 70%);
  background-size: 220% 100%;
  animation: faq-shine 1.05s ease;
}
html[data-night] .faq-item.is-on:before { background: linear-gradient(115deg, transparent 28%, #ffffff28 49%, transparent 70%); background-size: 220% 100%; }
@keyframes faq-shine { from { background-position: 140% 0; } to { background-position: -50% 0; } }
.faq-q {
  width: 100%; display: grid; grid-template-columns: auto 1fr auto;
  gap: 14px; align-items: center; padding: 20px 20px; text-align: left;
  border-radius: inherit;
}
.faq-num {
  font: 800 .76rem/1 var(--font); letter-spacing: .04em; opacity: .34;
  transition: transform .6s cubic-bezier(.22,1.7,.28,1), opacity .3s, color .3s;
}
.faq-item.is-on .faq-num { transform: rotate(-18deg) scale(1.35); opacity: 1; }
.faq-title { font: 750 1.05rem/1.25 var(--font); letter-spacing: -.02em; }
.faq-plus {
  width: 38px; height: 38px; border-radius: 50%; position: relative; flex-shrink: 0;
  background: #ffffffb8; box-shadow: inset 0 0 0 1px #0000000f;
  transition: transform .6s cubic-bezier(.22,1.8,.28,1), background .3s, color .3s;
}
html[data-night] .faq-plus { background: #ffffff16; box-shadow: inset 0 0 0 1px #ffffff1c; }
.faq-item.is-on .faq-plus { transform: rotate(225deg) scale(1.12); background: #1d1d1f; color: #fff; }
html[data-night] .faq-item.is-on .faq-plus { background: #fff; color: #111; }
.faq-plus i {
  position: absolute; left: 11px; right: 11px; top: 50%; height: 1.7px;
  background: currentColor; border-radius: 2px; margin-top: -.85px;
  transition: transform .45s cubic-bezier(.22,1.4,.28,1), opacity .25s;
}
.faq-plus i:last-child { transform: rotate(90deg); }
.faq-item.is-on .faq-plus i:last-child { transform: rotate(90deg) scaleX(0); opacity: 0; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .62s cubic-bezier(.22,1.15,.36,1); }
.faq-item.is-on .faq-a { grid-template-rows: 1fr; }
.faq-a-in { overflow: hidden; }
.faq-a p {
  margin: 0; padding: 0 20px 22px 66px; color: var(--text2); font-size: .95rem;
}
.faq-w {
  display: inline-block; opacity: 0; transform: translateY(10px) rotateX(40deg);
  transform-origin: bottom left;
}
.faq-item.is-on.in .faq-w {
  animation: faq-w .42s calc(var(--i) * 22ms) cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes faq-w { to { opacity: 1; transform: none; } }
.faq-fx { position: absolute; inset: 0; pointer-events: none; z-index: 4; overflow: visible; }
.faq-spark, .faq-bit, .faq-ring {
  position: absolute; pointer-events: none; left: 0; top: 0;
}
.faq-spark {
  width: 7px; height: 7px; border-radius: 50%; margin: -3.5px 0 0 -3.5px;
  animation: faq-spark .75s cubic-bezier(.16,1,.3,1) forwards;
}
.faq-spark.is-long { width: 14px; height: 3px; border-radius: 99px; margin: -1.5px 0 0 -7px; }
@keyframes faq-spark {
  to { transform: translate(var(--sx), var(--sy)) scale(0) rotate(var(--rot, 40deg)); opacity: 0; }
}
.faq-bit {
  font: 800 14px/1 var(--font); margin: -8px 0 0 -5px; opacity: .85;
  animation: faq-bit .85s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes faq-bit {
  to { transform: translate(var(--sx), var(--sy)) rotate(var(--rot)) scale(.2); opacity: 0; }
}
.faq-ring {
  width: 18px; height: 18px; margin: -9px 0 0 -9px; border-radius: 50%;
  border: 1.5px solid currentColor; opacity: .45;
  animation: faq-ring .7s cubic-bezier(.16,1,.3,1) forwards;
}
.faq-ring.is-2 { animation-delay: .06s; opacity: .22; }
@keyframes faq-ring {
  to { transform: scale(4.6); opacity: 0; }
}

.cta { margin: 56px 0 80px; padding: 56px 32px; border-radius: 40px; text-align: center; position: relative; overflow: hidden; }
.cta p { max-width: 420px; margin: 12px auto 0; color: var(--text2); }

.foot {
  position: relative; z-index: 1;
  width: min(1120px, calc(100% - 32px)); margin: 0 auto;
  padding: 28px 0 48px; display: flex; justify-content: space-between; align-items: center;
  color: var(--text2); font-size: .88rem; border-top: 1px solid var(--line);
}

html.lg-refract .nav, html.lg-refract .drawer {
  -webkit-backdrop-filter: blur(2px) url(#lg-lens) saturate(200%);
  backdrop-filter: blur(2px) url(#lg-lens) saturate(200%);
}
html.lg-refract .glass:not(.nav):not(.drawer) {
  -webkit-backdrop-filter: blur(4px) url(#lg-lens) saturate(200%) brightness(1.08);
  backdrop-filter: blur(4px) url(#lg-lens) saturate(200%) brightness(1.08);
}
html.lg-refract .btn, html.lg-refract .chip, html.lg-refract .icon-btn {
  -webkit-backdrop-filter: blur(1.5px) url(#lg-lens) saturate(200%) brightness(1.08);
  backdrop-filter: blur(1.5px) url(#lg-lens) saturate(200%) brightness(1.08);
}
html.lg-refract .lg-drop {
  display: block; position: fixed; left: 0; top: 0; width: 112px; height: 112px;
  border-radius: 50%; pointer-events: none; z-index: 9999; opacity: 0;
  transition: opacity .35s, width .2s, height .2s;
  -webkit-backdrop-filter: url(#lg-drop) saturate(170%) brightness(1.06);
  backdrop-filter: url(#lg-drop) saturate(170%) brightness(1.06);
  box-shadow: inset 1.5px 1.5px 1px -.5px #fff, inset -1px -1px 1px -.5px #ffffffb3,
    inset 0 0 0 1px #ffffff59, 0 12px 30px #00000029;
}
html.lg-refract .lg-drop.is-on { opacity: 1; }
html.lg-refract .lg-drop.is-press { width: 92px; height: 92px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 860px) {
  .desk { display: none !important; }
  .burger { display: flex; }
  main { width: min(100% - 24px, 1120px); }
  .nav {
    top: 10px; height: 52px; width: calc(100% - 16px);
    padding: 0 10px 0 16px;
  }
  .drawer { top: 70px; left: 8px; right: 8px; }
  .drawer a { padding: 16px 8px; font-size: 1.05rem; }
  .hero { padding: 92px 0 12px; }
  h1 { font-size: clamp(2rem, 11vw, 2.8rem); }
  .lead { font-size: .95rem; margin-top: 14px; }
  .hero-actions { margin-top: 20px; flex-direction: column; }
  .hero-actions .btn, .case-body .btn, .cta .btn { width: 100%; }
  .hero-stack {
    justify-content: flex-start; gap: 12px; margin: 28px -12px 0;
    padding: 4px 12px 8px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; perspective: none;
  }
  .mini, .mini:nth-child(1), .mini:nth-child(3) {
    flex: 0 0 78%; width: 78%; transform: none; padding: 8px;
  }
  .mini { scroll-snap-align: start; }
  .marq { margin: 28px -12px 36px; }
  .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-bottom: 40px; }
  .stat { padding: 12px 6px; border-radius: 18px; }
  .stat b { font-size: 1.15rem; }
  .stat span { font-size: .7rem; line-height: 1.25; }
  .about-grid, .case, .case.flip { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .case { padding: 12px; border-radius: 26px; gap: 16px; }
  .case.flip .device { order: 0; }
  .device { padding-bottom: 0; }
  .phone { display: none; }
  .chrome { height: 24px; font-size: 10px; }
  .shot { border-radius: 16px; }
  .shot img, .shot picture img { aspect-ratio: 16/11; }
  .case-body h3 { font-size: 1.28rem; }
  .case-body ul { margin-bottom: 16px; }
  .stack, .about, .plans, .faq { padding: 48px 0 8px; }
  .faq-orbit i { font-size: 2.4rem; }
  .faq-orbit i:nth-child(1) { --r: 96px; font-size: 3rem; }
  .faq-orbit i:nth-child(2) { --r: 62px; }
  .faq-orbit i:nth-child(3) { --r: 118px; font-size: 2.6rem; }
  .faq-orbit i:nth-child(4) { --r: 42px; }
  .faq-q { padding: 16px 14px; gap: 10px; }
  .faq-title { font-size: .98rem; }
  .faq-a p { padding: 0 14px 16px 14px; }
  .faq-item { border-radius: 22px; }
  .plan-tabs {
    display: flex; gap: 8px;
    overflow-x: auto; scrollbar-width: none;
    margin: 0 -12px 2px; padding: 2px 12px 12px;
    -webkit-overflow-scrolling: touch;
  }
  .plan-tabs::-webkit-scrollbar { display: none; }
  .plan-tabs .chip {
    flex: 0 0 auto; min-height: 38px; padding: 0 14px;
    background: #ffffffa6; border: 1px solid #ffffffcc;
  }
  html[data-night] .plan-tabs .chip { background: #ffffff12; border-color: #ffffff22; }
  .plan-grid {
    display: flex; gap: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-padding-inline: 0; scrollbar-width: none;
    margin: 0; padding: 10px 0 6px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .plan-grid::-webkit-scrollbar { display: none; }
  .plan, .plan-wide {
    flex: 0 0 100%; grid-column: auto;
    scroll-snap-align: start; scroll-snap-stop: always;
    padding: 20px 16px 16px;
  }
  .plan-badge {
    position: static; display: inline-flex; align-self: flex-start;
    margin: 0 0 12px; box-shadow: none;
  }
  .plan-top { margin-bottom: 12px; }
  .plan h3 { font-size: 1.2rem; }
  .plan-price { font-size: 1.7rem; margin-bottom: 6px; }
  .plan-desc { margin-bottom: 14px; }
  .plan-list, .plan-wide .plan-list {
    columns: auto; margin-bottom: 16px;
  }
  .plan-list li { font-size: .84rem; margin-bottom: 7px; padding-left: 20px; }
  .plan-cta { min-height: 48px; }
  .plan-dots {
    display: flex; justify-content: center; align-items: center;
    gap: 6px; margin-top: 12px;
  }
  .plan-dots span {
    width: 6px; height: 6px; border-radius: 99px;
    background: currentColor; opacity: .22;
    transition: width .25s, opacity .25s;
  }
  .plan-dots span.is-on { width: 18px; opacity: .8; }
  .step, .pad { padding: 16px; }
  .cta { margin: 40px 0 56px; padding: 32px 18px; border-radius: 28px; }
  .foot { flex-direction: column; gap: 10px; text-align: center; padding-bottom: 36px; }
}
