:root {
  --bg: #040b18;
  --bg2: #07142b;
  --ink: #eaf2ff;
  --muted: #8ea3c4;
  --line: rgba(148, 196, 255, .14);
  --glass: rgba(14, 30, 58, .55);
  --cyan: #22d3ee;
  --cyan2: #7aa2ff;
  --ok: #34d399;
  --err: #fb7185;
  --r: 18px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: -20vh -20vw auto auto;
  width: 70vw; height: 70vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(34, 211, 238, .18), transparent 62%);
  pointer-events: none; z-index: 0;
}
body::after {
  content: "";
  position: fixed; inset: auto auto -25vh -25vw;
  width: 80vw; height: 80vw; max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, rgba(122, 162, 255, .13), transparent 60%);
  pointer-events: none; z-index: 0;
}
.wrap { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 28px 16px 64px; }

header.top { display: flex; align-items: center; gap: 10px; margin-bottom: 36px; }
header.top img { height: 34px; filter: drop-shadow(0 0 18px rgba(34, 211, 238, .45)); }
header.top .wm { font-family: "Space Grotesk", sans-serif; font-weight: 600; letter-spacing: .02em; }
header.top .wm small { display: block; font-size: 10px; letter-spacing: .18em; color: var(--muted); font-weight: 500; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); font-weight: 700; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 7vw, 44px); line-height: 1.08; letter-spacing: -.02em; font-weight: 700;
  margin-bottom: 16px;
}
h1 em { font-style: normal; background: linear-gradient(92deg, #93f5ff, var(--cyan) 45%, var(--cyan2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--muted); font-size: 17px; margin-bottom: 26px; }

.who {
  display: flex; gap: 14px; align-items: center;
  padding: 14px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  margin-bottom: 26px;
}
.who img { width: 58px; height: 58px; border-radius: 14px; object-fit: cover; object-position: center 30%; flex: none; }
.who b { display: block; font-size: 15px; }
.who span { color: var(--muted); font-size: 13.5px; }

ul.gets { list-style: none; display: grid; gap: 10px; margin-bottom: 30px; }
ul.gets li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
ul.gets li::before {
  content: ""; flex: none; margin-top: 7px; width: 16px; height: 9px;
  border-left: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan); transform: rotate(-45deg);
}

form.card {
  border: 1px solid var(--line); border-radius: 22px; padding: 22px 18px;
  background: linear-gradient(180deg, rgba(16, 36, 70, .6), rgba(8, 20, 42, .55));
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .7), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.progress { height: 3px; background: rgba(255, 255, 255, .07); border-radius: 3px; overflow: hidden; margin-bottom: 22px; }
.progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--cyan), var(--cyan2)); transition: width .35s ease; }

.field { margin-bottom: 22px; }
.field > label, .field > .q { display: block; font-weight: 700; font-size: 15px; margin-bottom: 9px; }
.field .hint { display: block; font-weight: 500; color: var(--muted); font-size: 13px; margin-top: 2px; }
.req { color: var(--cyan); }
input[type=text], input[type=url], textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: rgba(3, 10, 24, .6); border: 1px solid var(--line); border-radius: 13px;
  padding: 13px 14px; font-size: 16px; outline: none; transition: border-color .2s, box-shadow .2s;
}
textarea { min-height: 92px; resize: vertical; }
input:focus, textarea:focus { border-color: rgba(34, 211, 238, .6); box-shadow: 0 0 0 4px rgba(34, 211, 238, .12); }
input::placeholder, textarea::placeholder { color: #587096; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips label { position: relative; cursor: pointer; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span {
  display: inline-block; padding: 10px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 600;
  border: 1px solid var(--line); background: rgba(3, 10, 24, .5); color: #c8d6ee;
  transition: all .18s ease; user-select: none;
}
.chips label:hover span { border-color: rgba(34, 211, 238, .4); }
.chips input:checked + span {
  color: #03101f; background: linear-gradient(92deg, #93f5ff, var(--cyan)); border-color: transparent;
  box-shadow: 0 6px 22px -8px rgba(34, 211, 238, .8);
}
.chips input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

button.go {
  width: 100%; border: 0; cursor: pointer; font: inherit; font-weight: 800; font-size: 17px;
  color: #03101f; padding: 17px 20px; border-radius: 15px;
  background: linear-gradient(92deg, #93f5ff, var(--cyan) 50%, var(--cyan2));
  box-shadow: 0 16px 40px -14px rgba(34, 211, 238, .75);
  transition: transform .15s ease, filter .2s;
}
button.go:hover { filter: brightness(1.06); }
button.go:active { transform: translateY(1px); }
button.go[disabled] { opacity: .6; cursor: wait; }
.fine { color: var(--muted); font-size: 12.5px; text-align: center; margin-top: 12px; }
.err { color: var(--err); font-size: 14px; margin-top: 12px; text-align: center; min-height: 1em; }

.done { display: none; text-align: center; padding: 34px 10px; }
.done .ring {
  width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%;
  border: 2px solid var(--cyan); display: grid; place-items: center;
  box-shadow: 0 0 40px rgba(34, 211, 238, .45);
  animation: pulse 2.4s ease-in-out infinite;
}
.done .ring::after { content: ""; width: 24px; height: 13px; border-left: 3px solid var(--cyan); border-bottom: 3px solid var(--cyan); transform: rotate(-45deg) translate(2px, -3px); }
.done h2 { font-family: "Space Grotesk", sans-serif; font-size: 26px; margin-bottom: 10px; }
.done p { color: var(--muted); }
@keyframes pulse { 50% { box-shadow: 0 0 70px rgba(34, 211, 238, .7); } }

.choose { display: grid; gap: 14px; margin-top: 8px; }
.choose a {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--line); border-radius: 20px; padding: 22px 20px;
  background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: border-color .2s, transform .2s;
}
.choose a:hover { border-color: rgba(34, 211, 238, .5); transform: translateY(-2px); }
.choose b { display: block; font-family: "Space Grotesk", sans-serif; font-size: 21px; margin-bottom: 6px; }
.choose span { color: var(--muted); font-size: 15px; }
.choose .arrow { color: var(--cyan); font-weight: 800; margin-top: 12px; display: inline-block; }

.reveal { opacity: 0; transform: translateY(14px); animation: up .7s cubic-bezier(.2, .7, .2, 1) forwards; }
.reveal.d1 { animation-delay: .08s; } .reveal.d2 { animation-delay: .16s; } .reveal.d3 { animation-delay: .24s; } .reveal.d4 { animation-delay: .32s; }
@keyframes up { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } .done .ring { animation: none; } }
@media (min-width: 560px) { form.card { padding: 30px 28px; } }

/* SEO-блок під формою (25.09): як проходить розбір, що перевіряємо, FAQ */
.more { margin-top: 56px; }
.more h2 { font-family: "Space Grotesk", "Manrope", sans-serif; font-size: 24px; line-height: 1.2; letter-spacing: -.01em; margin: 40px 0 16px; }
.more h2:first-child { margin-top: 0; }
.steps { list-style: none; counter-reset: s; display: grid; gap: 12px; }
.steps li { counter-increment: s; position: relative; padding: 16px 16px 16px 58px; border: 1px solid var(--line); border-radius: var(--r); background: var(--glass); color: var(--muted); font-size: 15px; }
.steps li::before { content: counter(s); position: absolute; left: 16px; top: 15px; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 14px; color: #03101f; background: linear-gradient(135deg, #93f5ff, var(--cyan)); }
.steps b { color: var(--ink); }
.checks { list-style: none; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 28px; color: var(--muted); font-size: 15px; }
.checks li::before { content: ""; position: absolute; left: 4px; top: 7px; width: 12px; height: 7px; border-left: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan); transform: rotate(-45deg); }
.plat { margin-top: 16px; font-size: 13.5px; color: var(--cyan); font-weight: 600; }
.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: var(--glass); padding: 0 16px; }
.faq summary { cursor: pointer; list-style: none; padding: 15px 28px 15px 0; font-weight: 700; font-size: 15px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 12px; color: var(--cyan); font-size: 20px; font-weight: 500; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); font-size: 14.5px; padding-bottom: 16px; }
a.go.again { display: block; text-align: center; text-decoration: none; margin-top: 32px; width: 100%; font-weight: 800; font-size: 17px; color: #03101f; padding: 17px 20px; border-radius: 15px; background: linear-gradient(92deg, #93f5ff, var(--cyan) 50%, var(--cyan2)); box-shadow: 0 16px 40px -14px rgba(34, 211, 238, .75); }
html { scroll-behavior: smooth; }
