.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: #111111; padding: 12px 20px;
  border-radius: 0 0 4px 0; font-weight: 650; text-decoration: none;
}
.skip:focus { left: 0; }

:root {
  --bg: #0f0f0f;
  --bg-alt: #141414;
  --surface: #1a1a1a;
  --ink: #ffffff;
  --muted: #aaaaaa;
  --line: #2a2a2a;
  --accent: #ffcc00;
  --accent-hover: #ffdb4d;
  --accent-ink: #111111;
  --no: #e0604f;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.5);
  --shadow: 0 14px 34px -14px rgba(0,0,0,.75);
  --shadow-lg: 0 30px 60px -24px rgba(0,0,0,.85);
  --r: 4px;
  --r-lg: 6px;
  --wrap: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: clip; }

body {
  margin: 0;
  position: relative;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 900px;
  background: radial-gradient(900px 780px at 8% -10%, rgba(255,204,0,.22), rgba(255,204,0,.06) 55%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}

.nav, main, .foot { position: relative; z-index: 1; }

img { max-width: 100%; }
a { color: inherit; }

::selection { background: var(--accent); color: #111111; }

* { scrollbar-color: #2f2f2f #0f0f0f; scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #0f0f0f; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border: 3px solid #0f0f0f; }
::-webkit-scrollbar-thumb:hover { background: #3d3d3d; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

section { padding: 88px 0; }
section.tight { padding: 64px 0; }
.alt {
  background: #131313;
  border-top: 1px solid #212121;
  border-bottom: 1px solid #212121;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; }
h3 { font-size: 20px; font-weight: 700; }
p { margin: 0; }


.lead { color: var(--muted); font-size: 19px; max-width: 78ch; text-wrap: pretty; }
h1 + .lead, h2 + .lead, h3 + .lead { margin-top: 16px; }
.warn-list h3 + p { margin-top: 6px; }

.head { max-width: 900px; margin-bottom: 44px; }
.head p { margin-top: 14px; color: var(--muted); font-size: 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 650;
  font-size: 15.5px;
  padding: 13px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  will-change: transform;
  transition:
    transform .32s cubic-bezier(.2,.8,.25,1),
    box-shadow .32s cubic-bezier(.2,.8,.25,1),
    background-color .28s ease,
    border-color .28s ease,
    color .28s ease;
}
.btn [aria-hidden] {
  display: inline-block;
  transition: transform .32s cubic-bezier(.2,.8,.25,1);
}
.btn:hover [aria-hidden] { transform: translateX(4px); }
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn-accent::after, .btn-dark::after, .btn-ghost::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 36%, rgba(255,255,255,.34) 50%, transparent 64%);
  transform: translateX(-130%);
  transition: transform .85s cubic-bezier(.25,.7,.25,1);
}
.btn-accent:hover::after, .btn-dark:hover::after, .btn-ghost:hover::after { transform: translateX(130%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); transition-duration: .08s; }
.btn-accent {
  background: var(--accent); color: var(--accent-ink); font-weight: 700;
  box-shadow: 0 0 22px -6px rgba(255,204,0,.55);
}
.btn-accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 34px -4px rgba(255,219,77,.75);
}
.btn-dark { background: #242424; color: var(--ink); border-color: #333333; }
.btn-dark:hover { background: #2f2f2f; border-color: #4a4a4a; box-shadow: 0 10px 24px -16px rgba(0,0,0,.9); }

.btn-ghost {
  border-color: #333333;
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,204,0,.07);
  box-shadow: 0 0 26px -8px rgba(255,204,0,.55), inset 0 0 22px -14px rgba(255,204,0,.9);
}
.btn-on-dark { border-color: #3a3a3a; color: #eaeaea; }
.btn-on-dark:hover { color: var(--accent); }
.btn-sm { padding: 10px 20px; font-size: 15px; }

.nav { position: sticky; top: 12px; z-index: 50; }
.nav-in {
  position: relative;
  display: flex; align-items: center; gap: 24px;
  height: 66px; padding: 0 10px 0 20px;
  width: min(100% - 40px, var(--wrap)); margin-inline: auto;
  border-radius: 6px;
  background: rgba(22,22,22,.55);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  box-shadow: none;
  transition: height .28s ease, background .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.nav.stuck .nav-in {
  height: 56px;
  background: rgba(18,18,18,.62);
  border-color: rgba(255,255,255,.14);
  backdrop-filter: blur(32px) saturate(190%);
  -webkit-backdrop-filter: blur(32px) saturate(190%);
  box-shadow: 0 14px 32px -26px rgba(0,0,0,.95);
}
.nav::after {
  content: ""; position: fixed; left: 0; top: 0; height: 2px; width: var(--progress, 0%);
  background: var(--accent);
  z-index: 60;
  transition: width .12s linear;
}
.nav.stuck .brand { font-size: 17px; }
.nav.stuck .brand .dot { width: 26px; height: 26px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; text-decoration: none; font-size: 18px; transition: font-size .28s ease; cursor: pointer; }
.brand:hover .dot { transform: rotate(-11deg) scale(1.1); }
.brand .dot {
  width: 30px; height: 30px; border-radius: 4px;
  object-fit: cover; display: block;
  transform: rotate(-8deg);
  transition: width .28s ease, height .28s ease, transform .3s cubic-bezier(.2,.8,.25,1);
}
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.nav-links a {
  position: relative;
  text-decoration: none; color: var(--muted); font-size: 15px; font-weight: 500;
  padding: 8px 12px; border-radius: 3px; transition: color .18s ease, background .18s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .26s cubic-bezier(.2,.7,.3,1);
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,.04); }
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a.active,
.nav-links a[aria-current="page"] { color: var(--accent); background: rgba(255,204,0,.12); }
.nav .btn { margin-left: 8px; }
.burger {
  display: none; margin-left: auto; background: var(--surface); border: 1px solid var(--line);
  border-radius: 4px; width: 42px; height: 42px; cursor: pointer; color: var(--ink);
  place-items: center;
}
.burger svg { width: 20px; height: 20px; }
.nav.open .burger svg { transform: rotate(90deg); transition: transform .2s ease; }

.hero { padding: 64px 0 72px; position: relative; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5.4vw, 60px); font-weight: 800; }
.hero h1 span { color: var(--accent); text-shadow: 0 0 60px rgba(255,204,0,.3); }
.hero .lead { margin-top: 20px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 16px; font-size: 14px; color: var(--muted); }

.term {
  background: #0b0b0b;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid #242424;
}
.term-bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; background: #111111; border-bottom: 1px solid #242424; }
.term-bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a3a3a; display: block; }
.term-bar i:first-child { background: #ff5f57; }
.term-bar i:nth-child(2) { background: #febc2e; }
.term-bar i:nth-child(3) { background: #28c840; }
.term-bar span { margin-left: auto; font-family: "JetBrains Mono", monospace; font-size: 12px; color: #6e6e6e; }
.term pre {
  margin: 0; padding: 22px; font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13.5px; line-height: 1.85; color: #dddddd; white-space: pre-wrap; word-break: break-word;
}
.term .c { color: #8f8f8f; }
.term .k { color: var(--accent); font-weight: 700; }
.term .cur { display: inline-block; width: 8px; background: var(--accent); color: transparent; animation: blink 1.15s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.term .d { color: #777777; }

.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: 56px; }
.stats div { background: var(--surface); padding: 22px 20px; transition: background .22s ease; }
.stats div:hover { background: #1e1e1e; }
.stats b { display: block; font-family: "JetBrains Mono", monospace; font-size: 21px; font-weight: 700; letter-spacing: -.02em; white-space: nowrap; }
.stats small { color: var(--muted); font-size: 13.5px; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px 28px; box-shadow: var(--shadow-sm); position: relative;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.plan:hover {
  transform: translateY(-2px);
  border-color: rgba(255,204,0,.4);
  box-shadow: 0 26px 54px -28px rgba(0,0,0,.95), 0 0 40px -22px rgba(255,204,0,.7);
}
.plan.feature:hover { box-shadow: var(--shadow-lg); }
.plan.feature { border-color: var(--accent); box-shadow: 0 20px 44px -26px rgba(0,0,0,.9), 0 0 44px -26px rgba(255,204,0,.8); }
.plan.feature::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0, rgba(255,204,0,.1), transparent 62%);
}
.tag {
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
}
.tag.beta { background: #1f1f1f; border: 1px solid #333333; color: var(--accent); }
.tag.pro-tag {
  left: auto; right: 24px;
  background: var(--accent);
  color: var(--accent-ink);
}
.plan.pro {
  border-color: rgba(255,204,0,.4);
  box-shadow: 0 18px 40px -28px rgba(0,0,0,.9), 0 0 34px -26px rgba(255,204,0,.7);
}
.plan.pro::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(255,204,0,.07));
}
.feats li.hi { color: var(--accent); font-weight: 650; }
.feats li.hi::before { color: var(--accent); }
.plan h3 { font-family: "JetBrains Mono", monospace; font-size: 22px; }
.price { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 4px; }
.price b { font-size: 44px; font-weight: 800; letter-spacing: -.03em; }
.price span { color: var(--muted); font-family: "JetBrains Mono", monospace; font-size: 15px; }
.price-note { font-size: 13.5px; color: #8f8f8f; font-weight: 550; }
.feats { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 9px; font-size: 15.5px; align-content: start; }
.plan .feats { flex: 1; }
.feats li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; }
.feats li::before { content: "✓"; color: var(--accent); font-weight: 700; }
.feats li.no { color: var(--muted); }
.feats li.no::before { content: "✕"; color: var(--no); }
.plan .btn { width: 100%; }
.plan-foot { margin-top: 12px; font-family: "JetBrains Mono", monospace; font-size: 11.5px; color: var(--muted); text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.who-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 44px; }
.who-item { padding: 18px 0; border-top: 1px solid var(--line); }
.who-item h3 { font-size: 17px; margin-bottom: 5px; }
.who-item p { color: var(--muted); font-size: 15.5px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .24s cubic-bezier(.2,.7,.3,1), box-shadow .24s ease, border-color .24s ease, background .24s ease;
}
.card:hover {
  transform: translateY(-2px);
  background: #1e1e1e;
  border-color: rgba(255,204,0,.32);
  box-shadow: 0 20px 44px -24px rgba(0,0,0,.95), 0 0 34px -20px rgba(255,204,0,.65);
}

.card:hover .card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card.flat:hover { transform: none; box-shadow: var(--shadow-sm); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: s; }
.step { position: relative; padding-top: 18px; }
.step .n {
  font-family: "JetBrains Mono", monospace; font-size: 13px; font-weight: 700;
  width: 42px; height: 42px; border-radius: 4px; display: grid; place-items: center;
  background: #1f1f1f; border: 1px solid #2f2f2f; color: var(--accent); margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15.5px; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-size: 16px; }
.checklist li::before { content: "✓"; color: var(--accent); font-weight: 700; }

.g-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }

.g-review {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 20px 18px;
  box-shadow: 0 1px 2px rgba(0,0,0,.3), 0 4px 14px -8px rgba(0,0,0,.6);
  font-family: Roboto, Inter, system-ui, sans-serif;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .22s ease, transform .22s ease;
}
.g-review:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(0,0,0,.35), 0 14px 30px -12px rgba(0,0,0,.7); }

.g-head { display: flex; align-items: center; gap: 12px; }
.g-avatar {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  color: #ffffff; font-size: 18px; font-weight: 500; line-height: 1;
}
.g-avatar.c1 { background: #1a73e8; }
.g-avatar.c2 { background: #d93025; }
.g-avatar.c3 { background: #188038; }
.g-avatar.c4 { background: #9334e6; }
.g-avatar.c5 { background: #e8710a; }
.g-avatar.c6 { background: #12796f; }

.g-who { display: grid; min-width: 0; }
.g-name { font-size: 15px; font-weight: 500; color: #202124; letter-spacing: 0; }
.g-meta { font-size: 12.5px; color: #70757a; }

.g-stars { display: flex; gap: 2px; margin: -4px 0 -2px; }
.g-stars svg { width: 17px; height: 17px; fill: #fbbc04; }

.g-text { font-size: 14.5px; line-height: 1.58; color: #3c4043; }

.g-src {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 500; color: #1a73e8; text-decoration: none;
}
.g-src svg { width: 15px; height: 15px; }
.g-src { transition: color .2s ease; }
.g-src span {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  padding-bottom: 2px;
  transition: background-size .34s cubic-bezier(.2,.8,.25,1);
}
.g-src:hover span { background-size: 100% 1px; }

.dark {
  background: #161616; border: 1px solid #262626; color: #eaeaea; border-radius: var(--r-lg);
  padding: 52px 48px; box-shadow: var(--shadow-lg);
}
.dark h2, .dark h3 { color: #fff; }
.dark p { color: #a3a3a3; }
.dark .cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }

.case {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm);
  transition: transform .24s cubic-bezier(.2,.7,.3,1), box-shadow .24s ease, border-color .24s ease;
}
.case .pill, .case a { transition: border-color .24s ease, color .24s ease; }
.case:hover {
  transform: translateY(-2px);
  border-color: rgba(255,204,0,.3);
  box-shadow: 0 20px 44px -26px rgba(0,0,0,.95), 0 0 30px -20px rgba(255,204,0,.55);
}
.case:hover .pill { border-color: rgba(255,204,0,.4); }
.case:hover a { color: var(--accent-hover); }
.case h3 { font-size: 18px; }
.case dl { margin: 0; display: grid; grid-template-columns: 92px 1fr; gap: 7px 14px; font-size: 14.5px; align-items: start; }
.case dt { color: var(--muted); font-family: "JetBrains Mono", monospace; font-size: 12px; text-transform: lowercase; letter-spacing: .04em; padding-top: 3px; overflow-wrap: anywhere; }
.case dd { margin: 0; font-weight: 550; min-width: 0; text-wrap: pretty; }
.case .pill {
  align-self: flex-start; font-family: "JetBrains Mono", monospace; font-size: 12px;
  background: #1f1f1f; border: 1px solid #2f2f2f; border-radius: 3px; padding: 4px 9px; color: var(--accent);
}
.case a {
  margin-top: auto; color: var(--accent); font-weight: 650; text-decoration: none; font-size: 15px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  align-self: flex-start;
  padding-bottom: 3px;
  transition: color .2s ease, background-size .34s cubic-bezier(.2,.8,.25,1);
}
.case:hover a, .case a:hover { background-size: 100% 1px; }

.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.compare .card.win { border-color: var(--accent); box-shadow: var(--shadow); }
.compare ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; font-size: 15.5px; color: var(--muted); }
.compare li { display: grid; grid-template-columns: 14px 1fr; gap: 10px; align-items: start; }
.compare li::before {
  content: "";
  width: 6px; height: 6px; margin-top: 9px;
  background: #4a4a4a;
  transition: background .24s ease;
}
.compare .card.win li::before { background: var(--accent); }
.compare .card:hover li::before { background: var(--accent); }
.compare .price-line { margin-top: 10px; font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }

.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.specs div { background: var(--surface); padding: 18px 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.specs dt, .specs b { color: var(--muted); font-family: "JetBrains Mono", monospace; font-weight: 400; font-size: 13.5px; }
.specs span { font-family: "JetBrains Mono", monospace; font-size: 14.5px; font-weight: 500; text-align: right; }

details.faq {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 392px) 1fr;
  column-gap: 44px;
  align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: 4px;
  padding: 0 52px 0 22px; margin-bottom: 10px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
details.faq[open] { border-color: rgba(255,204,0,.4); box-shadow: var(--shadow-sm); }
details.faq::after {
  content: "+"; position: absolute; right: 22px; top: 16px;
  font-size: 21px; font-weight: 400; color: var(--accent); pointer-events: none;
}
details.faq[open]::after { content: "\2212"; }
details.faq summary {
  grid-column: 1; grid-row: 1;
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 650; font-size: 16.5px;
  transition: color .18s ease;
}
details.faq summary::before {
  content: ""; position: absolute; inset: 0; cursor: pointer;
}
details.faq summary > span {
  display: block;
  width: min(100%, 392px);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary:hover { color: var(--accent); }
details.faq p {
  position: relative; z-index: 1;
  padding: 18px 0; color: var(--muted); font-size: 16px;
  cursor: pointer;
}
details.faq[open] p { animation: faq-in .3s cubic-bezier(.2,.7,.3,1); }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } }
details.faq summary:hover { color: var(--accent); }
details.faq summary { transition: color .18s ease; }

.warnbox { border-left: 3px solid var(--no); padding-left: 18px; }

.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(30px, 4vw, 46px); }
.cta-final .lead { margin: 16px auto 0; }
.cta-final .hero-cta { justify-content: center; }
.mailrow {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid #2f2f2f; border-radius: 4px; padding: 10px 10px 10px 18px;
}
.mailrow code { font-family: "JetBrains Mono", monospace; font-size: 15px; color: var(--accent); word-break: break-all; }

.cookie {
  position: fixed; left: 20px; bottom: 20px; z-index: 60;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  max-width: min(560px, calc(100% - 40px));
  padding: 16px 18px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: rgba(20,20,20,.82); backdrop-filter: blur(22px) saturate(180%);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,.95);
  font-size: 14.5px; color: var(--muted); line-height: 1.6;
  opacity: 0; transform: translateY(14px);
  transition: opacity .34s ease, transform .38s cubic-bezier(.2,.8,.25,1);
}
.cookie[hidden] { display: none; }
.cookie.show { opacity: 1; transform: none; }
.cookie p { margin: 0; flex: 1 1 260px; }
.cookie a {
  color: var(--accent); text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat; background-position: 0 100%; background-size: 100% 1px;
  padding-bottom: 1px;
  transition: background-size .3s cubic-bezier(.2,.8,.25,1), opacity .2s ease;
}
.cookie a:hover { background-size: 0% 1px; opacity: .85; }
.cookie .btn { flex: 0 0 auto; }

main > section:last-child.alt { border-bottom: 0; }
.foot { padding: 62px 0 26px; font-size: 14.5px; color: var(--muted); background: #0a0a0a; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 44px 36px; align-items: start; }
.foot-brand { max-width: 34ch; }
.foot .foot-logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 800; font-size: 17px; letter-spacing: -.02em;
  background-image: none; padding-bottom: 0;
}
.foot .foot-logo img { width: 28px; height: 28px; border-radius: 4px; object-fit: cover; display: block; transform: rotate(-8deg); transition: transform .3s cubic-bezier(.2,.8,.25,1); }
.foot .foot-logo:hover { color: var(--accent); }
.foot .foot-logo:hover img { transform: rotate(-11deg) scale(1.08); }
.foot-brand p { margin-top: 14px; line-height: 1.7; }
.foot-col { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.foot-col h2 {
  margin-bottom: 3px; font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #7d7d7d;
}
.foot a { color: var(--muted); text-decoration: none; }
.foot a {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  padding-bottom: 2px;
  transition: color .22s ease, background-size .32s cubic-bezier(.2,.8,.25,1);
}
.foot a:hover { background-size: 100% 1px; color: var(--accent); }
.foot-contact a { display: inline-flex; align-items: center; gap: 10px; }
.foot-contact svg { width: 16px; height: 16px; flex-shrink: 0; color: #6f6f6f; transition: color .22s ease; }
.foot-contact a:hover svg { color: var(--accent); }
.foot-contact a { background-image: none; }
.foot-contact span {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat; background-position: 0 100%; background-size: 0% 1px;
  padding-bottom: 2px; transition: background-size .32s cubic-bezier(.2,.8,.25,1);
}
.foot-contact a:hover span { background-size: 100% 1px; }
.foot-social { display: flex; gap: 8px; margin-top: 22px; }
.foot-social a {
  display: grid; place-items: center; width: 36px; height: 36px;
  border: 1px solid var(--line); border-radius: var(--r);
  background-image: none; padding: 0; color: var(--muted);
  transition: color .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .32s ease, transform .32s cubic-bezier(.2,.8,.25,1);
}
.foot-social a:hover {
  color: var(--accent); border-color: rgba(255,204,0,.45); background-color: rgba(255,204,0,.05);
  box-shadow: 0 0 24px -10px rgba(255,204,0,.8); transform: translateY(-2px);
}
.foot-social svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.foot-bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 14px 26px; flex-wrap: wrap;
  font-size: 13.5px; color: #7d7d7d;
}
.foot-bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover, .card:hover, .plan:hover, .case:hover, .g-review:hover, .foot-social a:hover { transform: none; }
  .foot .foot-logo:hover img { transform: rotate(-8deg); }
  .btn [aria-hidden], .btn-ghost, .brand .dot, .foot-logo img, .g-src span, .case a, .strip-cta a, .foot a, .foot-social a, .doc-body a:not(.btn) { transition: none; }
  .cookie { transition: none; }
  .term .cur { animation: none; }
  details.faq[open] p { animation: none; }
  .nav-links a::after { transition: none; }
  .btn-accent::after, .btn-dark::after, .btn-ghost::after { display: none; }
  .nav-in, .brand, .brand .dot, .nav::after { transition: none; }
}

@media (max-width: 1200px) and (min-width: 1001px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: 8px 9px; font-size: 14.5px; }
}

@media (max-width: 1090px) and (min-width: 1001px) {
  .nav-links a { padding: 8px 6px; font-size: 13.5px; }
  .nav-right { margin-left: 4px; }
}

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .plans, .grid-3, .steps, .cases, .compare { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .g-reviews { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .foot-brand { grid-column: 1 / -1; max-width: 52ch; }
  .nav-links { display: none; }
  .nav .btn { display: none; }
  .nav-right { margin-left: auto; }
  .burger { display: grid; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: var(--surface); border: 1px solid var(--line); border-radius: 4px;
    padding: 12px; gap: 2px; box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: 12px; font-size: 16px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  section { padding: 60px 0; }
  .plans, .grid-3, .grid-2, .grid-4, .steps, .cases, .compare, .specs, .checklist, .who-list { grid-template-columns: 1fr; }
  details.faq { grid-template-columns: 1fr; column-gap: 0; padding: 0 44px 0 18px; }
  details.faq summary { padding-bottom: 4px; }
  details.faq summary > span { width: 100%; }
  details.faq p { padding-top: 0; padding-bottom: 18px; }
  .stats { grid-template-columns: 1fr; }
  .g-reviews { grid-template-columns: 1fr; }
  .cookie { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 15px 16px; }
  .foot { padding: 48px 0 24px; }
  .foot-top { grid-template-columns: 1fr; gap: 34px; }
  .foot-brand { grid-column: auto; }
  .foot-bottom { margin-top: 36px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .dark { padding: 34px 24px; }
  .hero { padding: 48px 0 56px; }
}

.grid-2.spaced { margin-top: 22px; }


.head-tight { margin-bottom: 32px; }
.section-more { margin-top: 24px; }

.grid-2.wide { gap: 48px; }
.grid-2.middle { align-items: center; }
.stack { display: grid; gap: 20px; align-content: start; }
.warn-list { margin-top: 26px; display: grid; gap: 20px; }
.warn-list p { color: var(--muted); }

.card .btn { margin-top: 16px; }
.fineprint { margin-top: 10px; font-size: 13px; color: var(--muted); }

.case p { color: var(--muted); font-size: 15px; }
.compare .card > p:last-child { margin-top: 18px; font-size: 15px; }

.feats.plain { font-size: 16.5px; margin: 0; }

.dark .lead { color: #a3a3a3; }
.dark .specs { border-color: #2f2f2f; background: #2f2f2f; grid-template-columns: 1fr; }
.dark .specs div { background: #1b1b1b; }
.dark .specs b { color: #8f8f8f; }
.dark .specs span { color: #eaeaea; }
.dark .foot-note { margin-top: 26px; font-size: 14.5px; color: #8f8f8f; }

.btn-on-dark { background: transparent; border-color: #333333; color: #eaeaea; }
.btn-on-dark:hover { border-color: var(--accent); color: var(--accent); }

.cta-note { margin-top: 22px; font-size: 14px; color: #8f8f8f; max-width: 60ch; margin-inline: auto; }
.cert-note { margin-top: 22px; font-size: 14.5px; color: #8f8f8f; text-align: center; }

.subhead { padding: 56px 0 20px; }

.subhead h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; }
.subhead p { margin-top: 16px; max-width: 92ch; color: var(--muted); font-size: 18px; }
.back {
  display: flex; width: fit-content; align-items: center; gap: 8px; text-decoration: none;
  color: var(--muted); font-size: 15px; font-weight: 550; margin-bottom: 22px;
}
.back { transition: color .18s ease, gap .18s ease; }
.back:hover { color: var(--accent); gap: 11px; }
.back svg { width: 16px; height: 16px; }

.doc { padding: 20px 0 80px; }

.doc-body {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 44px 46px; box-shadow: var(--shadow-sm);
}
.doc-body h2 {
  font-size: 22px; margin-top: 38px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.doc-body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.doc-body h3 { font-size: 17px; margin-top: 24px; }
.doc-body p { margin-top: 14px; max-width: 92ch; color: var(--muted); font-size: 16.5px; }
.doc-body strong { color: var(--ink); font-weight: 650; }
.doc-body ul, .doc-body ol { margin: 14px 0 0; padding-left: 22px; max-width: 92ch; color: var(--muted); font-size: 16.5px; }
.doc-body li { margin-top: 9px; }
.doc-body li::marker { color: var(--accent); font-weight: 600; }
.doc-body a:not(.btn), .who-item a:not(.btn), .card p a:not(.btn), details.faq p a, .strip-cta a {
  color: var(--accent); font-weight: 550; text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 1px;
  transition: background-size .3s cubic-bezier(.2,.8,.25,1), opacity .2s ease;
}
.doc-body a:not(.btn):hover, .who-item a:not(.btn):hover, .card p a:not(.btn):hover,
details.faq p a:hover { background-size: 0% 1px; opacity: .85; }
.doc-meta { margin-top: 28px; font-size: 14px; color: var(--muted); }
.doc-note {
  margin-top: 22px; max-width: 92ch; padding: 18px 22px; border-radius: 4px;
  background: var(--bg-alt); border: 1px solid var(--line); font-size: 15.5px; color: var(--muted);
}

.gift-steps { display: grid; gap: 18px; counter-reset: g; }
.gift-step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px 26px; display: grid; grid-template-columns: 46px 1fr; gap: 20px; align-items: start;
  box-shadow: var(--shadow-sm);
  transition: border-color .24s ease, background .24s ease;
}
.gift-step:hover { border-color: rgba(255,204,0,.3); background: #1e1e1e; }
.gift-step .n {
  width: 46px; height: 46px; border-radius: 4px; display: grid; place-items: center;
  background: #1f1f1f; border: 1px solid #2f2f2f; color: var(--accent);
  font-family: "JetBrains Mono", monospace; font-size: 15px; font-weight: 700;
}
.gift-step h3 { margin-bottom: 6px; }
.gift-step p { color: var(--muted); font-size: 15.5px; }

.cert {
  background: #161616; border: 1px solid #262626; border-radius: var(--r-lg); padding: 40px;
  color: #eaeaea; box-shadow: var(--shadow-lg);
}
.cert-inner {
  border: 1px dashed #f5c400; border-radius: 4px; padding: 34px 30px; text-align: center;
}
.cert-inner .mono { font-family: "JetBrains Mono", monospace; font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); }
.cert-inner h3 { font-size: 26px; margin: 14px 0 10px; color: #fff; }
.cert-inner p { color: #a3a3a3; font-size: 15px; }
.cert-line { margin-top: 26px; border-top: 1px solid #2f2f2f; padding-top: 16px; font-size: 13px; color: #808080; }

@media (max-width: 680px) {
  .doc-body { padding: 30px 22px; }
  .cert { padding: 22px; }
  .cert-inner { padding: 24px 18px; }
  .gift-step { grid-template-columns: 1fr; gap: 14px; }
}

.post-meta {
  margin-top: 14px; font-family: "JetBrains Mono", monospace;
  font-size: 13px; color: var(--muted);
}

.doc-body pre {
  margin: 18px 0 0; padding: 18px 20px; max-width: 100%; overflow-x: auto;
  background: #0b0b0b; border: 1px solid #242424; border-radius: 4px;
  font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 13.5px;
  line-height: 1.7; color: #ddd; white-space: pre;
}
.doc-body code { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .92em; color: var(--accent); }
.doc-body h2 + p { margin-top: 12px; }
.doc-body img { border-radius: 4px; border: 1px solid var(--line); }
.doc-body table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 15.5px; }
.doc-body th, .doc-body td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.doc-body th { color: var(--ink); font-weight: 650; background: var(--bg-alt); }

.strip-cta {
  text-align: center;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  font-size: 17px; color: var(--muted);
}
.strip-cta a {
  color: var(--accent); font-weight: 600; text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  padding-bottom: 2px;
  transition: background-size .34s cubic-bezier(.2,.8,.25,1);
}
.strip-cta a:hover { background-size: 100% 1px; }
