/* ==========================================================================
   DialPro Marketing — style.css (v2)
   Palette: white / sage / forest ink / growth green / rank yellow
   Type: Geologica (display) + Golos Text (body), both with Cyrillic
   ========================================================================== */
:root {
  --bg: #FFFFFF;
  --bg-2: #F4F4F5;
  --surface: #FFFFFF;
  --ink: #1A1A1C;
  --ink-2: #5F5F68;
  --line: #E4E4E7;
  --green: #3E63DD;
  --green-2: #3E63DD;
  --yellow: #3E63DD;
  --yellow-ink: #FFFFFF;
  --forest: #1A1A1C;
  --on-forest: #F4F4F5;
  --on-forest-2: #A1A1AA;
  --skeleton: #ECECEE;
  --shadow: 0 40px 80px -44px rgba(20, 20, 24, .32);

  --f-display: "Geologica", "Arial", system-ui, sans-serif;
  --f-body: "Golos Text", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(72px, 9vw, 128px);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --header-h: 72px;

  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #141417; --bg-2: #1A1A1F; --surface: #212127; --ink: #EDEDEF; --ink-2: #A1A1AA; --line: #2F2F36; --green: #7D96FF; --green-2: #7D96FF; --yellow: #7D96FF; --yellow-ink: #111113; --forest: #1A1A1F; --on-forest: #EDEDEF; --on-forest-2: #A1A1AA; --skeleton: #2A2A31; --shadow: 0 40px 80px -40px rgba(0, 0, 0, .7);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #141417; --bg-2: #1A1A1F; --surface: #212127; --ink: #EDEDEF; --ink-2: #A1A1AA; --line: #2F2F36; --green: #7D96FF; --green-2: #7D96FF; --yellow: #7D96FF; --yellow-ink: #111113; --forest: #1A1A1F; --on-forest: #EDEDEF; --on-forest-2: #A1A1AA; --skeleton: #2A2A31; --shadow: 0 40px 80px -40px rgba(0, 0, 0, .7);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: inherit; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(env(safe-area-inset-top, 0px) + var(--header-h) + 12px); background: var(--bg); }
body { margin: 0; font-family: var(--f-body); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; text-wrap: balance; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
body.is-locked { overflow: hidden; }
:focus-visible { outline: 3px solid var(--green-2); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: 12px; top: -80px; z-index: 300; background: var(--yellow); color: var(--yellow-ink); padding: 10px 16px; border-radius: 999px; font-weight: 600; text-decoration: none; }
.skip:focus { top: calc(env(safe-area-inset-top, 0px) + 12px); }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }
.section--alt { background: var(--bg-2); }
.section--tight { padding-top: calc(var(--section) * .55); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Type ---------- */
.display { font-size: clamp(2.5rem, 5.6vw, 4.9rem); font-weight: 700; line-height: 1; letter-spacing: -0.04em; }
.h2 { font-size: clamp(1.9rem, 3.8vw, 3.1rem); font-weight: 700; line-height: 1.04; letter-spacing: -0.035em; }
.h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.015em; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.24rem); line-height: 1.55; color: var(--ink-2); max-width: 36em; }
.muted { color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn {
  --b-bg: var(--ink); --b-fg: var(--bg);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 52px; padding: 0 26px; border: 0; border-radius: 999px;
  background: var(--b-bg); color: var(--b-fg); font-weight: 600; font-size: 1rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s, background-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }
.btn--yellow { --b-bg: var(--ink); --b-fg: var(--bg); }
.btn--yellow:hover { box-shadow: 0 12px 28px -14px rgba(20, 20, 24, .6); }
.btn--line { --b-bg: transparent; --b-fg: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--line:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--small { min-height: 42px; padding: 0 18px; font-size: .94rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link { color: var(--green); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 4px; text-decoration-color: color-mix(in srgb, var(--green) 35%, transparent); transition: text-decoration-color .2s; }
.link:hover { text-decoration-color: currentColor; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 100; height: var(--header-h); background: color-mix(in srgb, var(--bg) 88%, transparent); -webkit-backdrop-filter: saturate(160%) blur(14px); backdrop-filter: saturate(160%) blur(14px); transition: box-shadow .3s; }
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--line); }
.header__row { height: 100%; display: flex; align-items: center; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.03em; flex: none; }
.logo__mark { width: 30px; height: 33px; color: var(--ink); flex: none; }
.logo small { font-weight: 500; color: var(--ink-2); font-size: .82em; letter-spacing: -0.01em; }
.nav { margin-left: auto; }
.nav__list { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav__link { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 999px; border: 0; background: none; text-decoration: none; font-weight: 500; font-size: .98rem; cursor: pointer; transition: background-color .2s; }
.nav__link:hover, .nav__link[aria-current="page"] { background: var(--bg-2); }
.nav__link svg { width: 12px; height: 12px; transition: transform .3s var(--ease); }
.nav__item { position: relative; }
.nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.sub { list-style: none; position: absolute; top: calc(100% + 12px); left: -20px; width: 460px; padding: 10px; border-radius: 22px; background: var(--surface); box-shadow: var(--shadow), 0 0 0 1px var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s, transform .3s var(--ease), visibility .2s; }
.nav__toggle[aria-expanded="true"] + .sub { opacity: 1; visibility: visible; transform: none; }
.sub a { display: block; padding: 12px 14px; border-radius: 14px; text-decoration: none; }
.sub a:hover, .sub a:focus-visible { background: var(--bg-2); }
.sub b { display: block; font-weight: 600; line-height: 1.3; }
.sub span { display: block; font-size: .85rem; line-height: 1.35; color: var(--ink-2); margin-top: 2px; }
.lang { display: inline-flex; padding: 3px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); flex: none; }
.lang a { padding: 5px 11px; border-radius: 999px; font-size: .85rem; font-weight: 600; text-decoration: none; color: var(--ink-2); }
.lang a[aria-current="true"] { background: var(--ink); color: var(--bg); }
.lang a:not([aria-current="true"]):hover { color: var(--ink); }
.nav__extra { display: none; }
.burger { display: none; width: 46px; height: 46px; border: 0; border-radius: 999px; background: var(--bg-2); cursor: pointer; position: relative; flex: none; }
.burger span { position: absolute; left: 14px; right: 14px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .35s var(--ease), top .35s var(--ease); }
.burger span:first-child { top: 19px; }
.burger span:last-child { top: 26px; }
.burger[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  :root { --header-h: 64px; }
  .burger { display: block; }
  .header__cta { margin-left: auto; }
  .nav { position: fixed; left: 0; right: 0; bottom: 0; top: calc(env(safe-area-inset-top, 0px) + var(--header-h)); margin: 0; background: var(--bg); overflow-y: auto; padding: 16px var(--gutter) calc(32px + env(safe-area-inset-bottom, 0px)); display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .25s, transform .35s var(--ease), visibility .25s; }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; }
  .nav__list > li { border-bottom: 1px solid var(--line); }
  .nav__link { width: 100%; justify-content: space-between; padding: 18px 0; border-radius: 0; font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
  .nav__link:hover, .nav__link[aria-current="page"] { background: none; color: var(--green); }
  .sub { position: static; width: auto; padding: 0 0 12px; background: none; box-shadow: none; display: none; grid-template-columns: 1fr; opacity: 1; visibility: visible; transform: none; }
  .nav__toggle[aria-expanded="true"] + .sub { display: grid; }
  .sub a { padding: 10px 0; }
  .sub a:hover { background: none; }
  .nav__extra { display: grid; gap: 10px; margin-top: auto; padding-top: 28px; }
  .nav__extra a { text-decoration: none; font-size: 1.05rem; }
}
@media (max-width: 480px) { .header__cta { display: none; } .lang { margin-left: auto; } .logo small { display: none; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: clamp(40px, 6vw, 88px) 0 clamp(56px, 7vw, 96px); position: relative; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.hero__text > * + * { margin-top: 26px; }
.hero__points { list-style: none; display: grid; gap: 10px; color: var(--ink-2); font-size: .98rem; }
.hero__points li { display: flex; gap: 10px; align-items: baseline; }
.hero__points li::before { content: ""; flex: none; width: 16px; height: 16px; border-radius: 50%; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 8.3l2.3 2.2 4.7-5'/%3E%3C/svg%3E") center / 12px no-repeat; transform: translateY(3px); }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; font-size: .92rem; color: var(--ink-2); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.hero__text > .display, .hero__text > .lead, .hero__text > .btn-row, .hero__text > .hero__points, .hero__text > .crumbs { animation: rise .8s var(--ease) both; }
.hero__text > .lead { animation-delay: .08s; }
.hero__text > .btn-row { animation-delay: .14s; }
.hero__text > .hero__points { animation-delay: .2s; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   SERP simulator — the signature element
   ========================================================================== */
.serp { background: var(--surface); border-radius: 28px; box-shadow: var(--shadow), 0 0 0 1px var(--line); padding: 14px; animation: rise .9s .1s var(--ease) both; }
.serp__tabs { display: flex; gap: 4px; padding: 4px; border-radius: 999px; background: var(--bg-2); overflow-x: auto; scrollbar-width: none; }
.serp__tabs::-webkit-scrollbar { display: none; }
.serp__tab { flex: 1 0 auto; border: 0; background: none; padding: 9px 14px; border-radius: 999px; font-size: .9rem; font-weight: 600; color: var(--ink-2); cursor: pointer; white-space: nowrap; position: relative; overflow: hidden; transition: color .2s, background-color .2s; }
.serp__tab[aria-selected="true"] { background: var(--surface); color: var(--ink); box-shadow: 0 1px 3px rgba(0, 0, 0, .08); }
.serp__tab .serp__timer { position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--green); transform-origin: left; transform: scaleX(0); }
.serp__tab.is-timing .serp__timer { animation: timer var(--dur, 7s) linear forwards; }
@keyframes timer { to { transform: scaleX(1); } }
.serp__bar { display: flex; align-items: center; gap: 12px; margin: 14px 4px 10px; padding: 0 18px; height: 54px; border-radius: 999px; box-shadow: inset 0 0 0 1.5px var(--line); font-size: 1.02rem; }
.serp__bar svg { width: 20px; height: 20px; flex: none; color: var(--ink-2); }
.serp__where { margin-left: auto; font-size: .8rem; color: var(--ink-2); white-space: nowrap; }
.serp__q { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; min-width: 0; }
.serp__caret { width: 2px; height: 22px; background: var(--green); animation: blink 1s steps(1) infinite; flex: none; margin-left: -10px; }
@keyframes blink { 50% { opacity: 0; } }
.serp__list { list-style: none; position: relative; }
.serp__row { display: grid; grid-template-columns: 30px 44px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 10px 10px; border-radius: 16px; position: relative; background: var(--surface); }
.serp__row + .serp__row { margin-top: 2px; }
.serp__rank { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: .82rem; font-weight: 700; color: var(--ink-2); background: var(--bg-2); font-variant-numeric: tabular-nums; transition: background-color .4s, color .4s; }
.serp__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--skeleton); display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; color: #fff; font-size: 1.1rem; }
.serp[data-kind="web"] .serp__icon { width: 28px; height: 28px; border-radius: 50%; font-size: .8rem; justify-self: center; }
.serp__text { display: grid; gap: 6px; min-width: 0; }
.serp__bone { height: 10px; border-radius: 6px; background: var(--skeleton); }
.serp__bone:nth-child(2) { height: 8px; opacity: .7; }
.serp__name { font-weight: 600; font-size: .98rem; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.serp[data-kind="web"] .is-ours .serp__name { color: #1a55d6; }
:root[data-theme="dark"] .serp[data-kind="web"] .is-ours .serp__name { color: #8ab4ff; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .serp[data-kind="web"] .is-ours .serp__name { color: #8ab4ff; } }
.serp__meta { font-size: .82rem; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.2; }
.serp__stars { color: #E0A800; letter-spacing: 1px; }
.serp__side { display: flex; align-items: center; gap: 8px; }
.serp__get { font-size: .8rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; background: var(--bg-2); color: #1a6fe0; }
.serp[data-kind="web"] .serp__get { display: none; }
.serp__delta { font-size: .8rem; font-weight: 700; color: var(--green); background: color-mix(in srgb, var(--green) 14%, transparent); padding: 4px 9px; border-radius: 999px; opacity: 0; transform: translateY(6px); transition: opacity .4s, transform .4s var(--ease); white-space: nowrap; }
.is-ours { box-shadow: 0 0 0 1.5px color-mix(in srgb, var(--green) 40%, transparent); z-index: 2; }
.is-ours.is-top { box-shadow: 0 0 0 2px var(--green), 0 16px 32px -18px rgba(14, 42, 31, .55); }
.is-ours.is-top .serp__rank { background: var(--yellow); color: var(--yellow-ink); }
.is-ours.is-top .serp__delta { opacity: 1; transform: none; }
.serp__cap { margin: 10px 8px 4px; font-size: .8rem; color: var(--ink-2); }
@media (max-width: 480px) {
  .serp { padding: 10px; border-radius: 22px; }
  .serp__row { grid-template-columns: 26px 38px minmax(0, 1fr) auto; gap: 10px; padding: 8px 6px; }
  .serp__rank { width: 26px; height: 26px; }
  .serp__icon { width: 38px; height: 38px; }
  .serp__get { display: none; }
  .serp__where { display: none; }
}

/* ---------- Platform strip ---------- */
.strip { border-block: 1px solid var(--line); padding: 22px 0; }
.strip__row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 36px; }
.strip__label { color: var(--ink-2); font-size: .95rem; }
.strip__list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 32px; font-family: var(--f-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.02em; }

/* ==========================================================================
   Section heads, reveal
   ========================================================================== */
.head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px clamp(32px, 5vw, 80px); align-items: end; margin-bottom: clamp(36px, 5vw, 60px); }
@media (max-width: 820px) { .head { grid-template-columns: 1fr; } }
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Services accordion (home)
   ========================================================================== */
.svc-wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); gap: 32px clamp(32px, 6vw, 96px); align-items: start; }
.svc-wrap__side { position: sticky; top: calc(var(--header-h) + 40px); }
.svc-wrap__side .h2 { margin-bottom: 20px; }
.svc-wrap__side .lead { margin-bottom: 28px; }
@media (max-width: 900px) { .svc-wrap { grid-template-columns: 1fr; } .svc-wrap__side { position: static; } }
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 24px; align-items: center; padding: 26px 0; }
.acc summary::-webkit-details-marker { display: none; }
.acc__name { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.35rem, 2.4vw, 1.9rem); letter-spacing: -0.03em; line-height: 1.1; transition: color .2s; }
.acc summary:hover .acc__name { color: var(--green); }
.acc__short { grid-column: 1; color: var(--ink-2); font-size: .98rem; }
.acc__icon { grid-row: 1 / span 2; grid-column: 2; width: 44px; height: 44px; border-radius: 50%; background: var(--bg-2); position: relative; transition: background-color .3s, transform .4s var(--ease); }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 16px; height: 2px; margin: -1px 0 0 -8px; background: var(--ink); border-radius: 2px; }
.acc__icon::after { transform: rotate(90deg); transition: transform .3s var(--ease); }
details[open] .acc__icon { background: var(--yellow); }
details[open] .acc__icon::after { transform: rotate(0); }
details[open] .acc__icon::before, details[open] .acc__icon::after { background: var(--yellow-ink); }
.acc__body { padding: 0 0 30px; display: grid; gap: 20px; animation: rise .45s var(--ease); }
.acc__body ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.acc__body li { position: relative; padding-left: 18px; color: var(--ink-2); font-size: .98rem; }
.acc__body li::before { content: ""; position: absolute; left: 0; top: .6em; width: 8px; height: 8px; border-radius: 2px; background: var(--green); }
@media (max-width: 600px) { .acc__body ul { grid-template-columns: 1fr; } }

/* ==========================================================================
   Products — tabs (home) and full rows (products page)
   ========================================================================== */
.ptabs__list { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.ptab { border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; padding: 11px 22px; border-radius: 999px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); font-weight: 600; transition: box-shadow .2s, background-color .2s; }
.ptab:hover { box-shadow: inset 0 0 0 1.5px var(--ink-2); }
.ptab[aria-selected="true"] { background: var(--ink); color: var(--bg); box-shadow: none; }
.ptab__ico { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-family: var(--f-display); font-weight: 700; font-size: .95rem; }
.ppanel[hidden] { display: none; }
.ppanel { animation: fade .5s var(--ease); }

.product { --p-bg: #111; --p-fg: #fff; --p-accent: #fff; --p-muted: rgba(255, 255, 255, .72); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); border-radius: 32px; overflow: hidden; background: var(--p-bg); color: var(--p-fg); position: relative; isolation: isolate; }
.product + .product { margin-top: clamp(20px, 3vw, 32px); }
.product--hype { --p-bg: #140C2B; --p-accent: #B89CFF; --p-muted: #C8BFE6; }
.product--sleep { --p-bg: #070F24; --p-accent: #92B4FF; --p-muted: #B6C2DF; }
.product--solo { --p-bg: #0E0C0A; --p-accent: #F2B544; --p-muted: #D5CCBF; }
.product::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse 55% 75% at 78% 55%, color-mix(in srgb, var(--p-accent) 26%, transparent), transparent 70%); }
.product__body { padding: clamp(28px, 4.5vw, 60px); display: flex; flex-direction: column; gap: 18px; }
.product__kind { font-size: .95rem; font-weight: 600; color: var(--p-accent); }
.product__name { font-size: clamp(2.1rem, 4vw, 3.3rem); font-weight: 700; letter-spacing: -0.045em; line-height: 1; }
.product__tagline { font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.45; }
.product__text { color: var(--p-muted); }
.product__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 30px; }
.product__facts li { display: grid; }
.product__facts strong { font-family: var(--f-display); font-weight: 700; font-size: 1.7rem; letter-spacing: -0.03em; line-height: 1.1; color: var(--p-accent); }
.product__facts span { font-size: .86rem; color: var(--p-muted); }
.product__features { list-style: none; display: grid; gap: 10px; }
.product__features li { position: relative; padding-left: 20px; color: var(--p-muted); }
.product__features li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 2px; background: var(--p-accent); }
.product__features b { color: var(--p-fg); font-weight: 600; }
.product__role { font-size: .95rem; color: var(--p-muted); border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 16px; }
.product__role b { color: var(--p-fg); font-weight: 600; }
.product__links { margin-top: auto; display: flex; flex-wrap: wrap; gap: 10px; }
.product__links .btn { --b-bg: var(--p-accent); --b-fg: var(--p-bg); }
.product__links .btn--line { --b-bg: transparent; --b-fg: var(--p-fg); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .28); }
.product__links .btn--line:hover { box-shadow: inset 0 0 0 1.5px var(--p-fg); }
.product__stage { display: grid; place-items: center; padding: clamp(24px, 4vw, 52px); min-height: 420px; }
.product--flip .product__stage { order: -1; }
@media (max-width: 880px) {
  .product { grid-template-columns: 1fr; }
  .product__stage, .product--flip .product__stage { order: -1; min-height: 0; padding-bottom: 0; }
}

/* ---------- Mockups (drawn in CSS, no external images) ---------- */
.mock-phone { width: min(300px, 78vw); aspect-ratio: 9 / 18.6; border-radius: 42px; padding: 10px; background: #1b1b1f; box-shadow: 0 0 0 2px rgba(255, 255, 255, .08), 0 50px 90px -40px rgba(0, 0, 0, .8); position: relative; }
.mock-phone__screen { height: 100%; border-radius: 33px; overflow: hidden; position: relative; padding: 44px 18px 18px; display: flex; flex-direction: column; gap: 12px; font-size: 13px; line-height: 1.35; }
.mock-phone__screen::before { content: ""; position: absolute; top: 12px; left: 50%; width: 86px; height: 24px; margin-left: -43px; border-radius: 20px; background: #000; }
.mock-browser { width: min(520px, 100%); border-radius: 18px; overflow: hidden; background: #1D1433; box-shadow: 0 0 0 1px rgba(255, 255, 255, .1), 0 50px 90px -40px rgba(0, 0, 0, .8); font-size: 13px; line-height: 1.35; }
.mock-browser__bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; background: #120B24; }
.mock-browser__bar i { width: 10px; height: 10px; border-radius: 50%; background: #3a2f55; }
.mock-browser__url { margin-left: 10px; flex: 1; padding: 5px 12px; border-radius: 8px; background: #231a3d; color: #b7abd6; font-size: 12px; }
.mock-browser__body { padding: 18px; display: grid; gap: 14px; color: #EDE7FF; }

/* HypeArt */
.hy-prompt { display: flex; gap: 10px; align-items: center; padding: 10px 10px 10px 14px; border-radius: 14px; background: #2A1F48; box-shadow: inset 0 0 0 1px #3d3063; }
.hy-prompt p { margin: 0; flex: 1; color: #E4DCFF; }
.hy-prompt span { flex: none; padding: 8px 14px; border-radius: 10px; background: linear-gradient(135deg, #9C7BFF, #FF7AC6); color: #140C2B; font-weight: 700; font-size: 12px; }
.hy-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.hy-chips span { padding: 4px 10px; border-radius: 999px; background: #2A1F48; color: #C8BFE6; font-size: 11.5px; }
.hy-chips span.on { background: #B89CFF; color: #140C2B; font-weight: 600; }
.hy-video { position: relative; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; }
.hy-video svg { width: 100%; height: 100%; }
.hy-play { position: absolute; left: 50%; top: 50%; width: 52px; height: 52px; margin: -26px 0 0 -26px; border-radius: 50%; background: rgba(20, 12, 43, .55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display: grid; place-items: center; }
.hy-play::before { content: ""; border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 4px; }
.hy-badge { position: absolute; left: 10px; top: 10px; padding: 3px 9px; border-radius: 999px; background: rgba(20, 12, 43, .6); font-size: 11px; color: #fff; }
.hy-timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; position: relative; }
.hy-timeline i { aspect-ratio: 16 / 10; border-radius: 6px; background: var(--g); }
.hy-timeline::after { content: ""; position: absolute; top: -4px; bottom: -4px; width: 2px; background: #FF7AC6; left: 0; animation: scrub 6s linear infinite; border-radius: 2px; }
@keyframes scrub { to { left: 100%; } }
.hy-foot { display: flex; justify-content: space-between; color: #b7abd6; font-size: 12px; }

/* Meditation & Sleep */
.sl { background: radial-gradient(ellipse 120% 60% at 50% 0%, #1b2d64, #070F24 70%); color: #E6ECFF; }
.sl-top { display: flex; justify-content: space-between; align-items: center; }
.sl-top b { font-size: 15px; }
.sl-top span { font-size: 11px; color: #9fb0d8; }
.sl-score { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 18px; background: rgba(255, 255, 255, .05); }
.sl-ring { width: 72px; height: 72px; flex: none; }
.sl-ring circle { fill: none; stroke-width: 7; }
.sl-ring .bg { stroke: rgba(255, 255, 255, .1); }
.sl-ring .fg { stroke: #92B4FF; stroke-linecap: round; stroke-dasharray: 188.5; stroke-dashoffset: 188.5; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset 1.6s var(--ease); }
.is-in .sl-ring .fg, .ppanel:not([hidden]) .sl-ring .fg.is-drawn, .sl-ring .fg.is-drawn { stroke-dashoffset: 26.4; }
.sl-ring text { fill: #fff; font: 700 20px var(--f-display); }
.sl-score p { margin: 0; font-size: 12px; color: #9fb0d8; }
.sl-score p b { display: block; font-size: 14px; color: #fff; }
.sl-hyp { padding: 12px; border-radius: 18px; background: rgba(255, 255, 255, .05); }
.sl-hyp small { display: flex; justify-content: space-between; color: #7f90b8; font-size: 10px; margin-top: 6px; }
.sl-hyp svg { width: 100%; height: 70px; }
.sl-hyp path { fill: none; stroke: url(#slg); stroke-width: 3; stroke-linejoin: round; stroke-dasharray: 600; stroke-dashoffset: 600; transition: stroke-dashoffset 2s var(--ease); }
.sl-hyp path.is-drawn { stroke-dashoffset: 0; }
.sl-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sl-stats div { padding: 10px 12px; border-radius: 14px; background: rgba(255, 255, 255, .05); font-size: 11px; color: #9fb0d8; }
.sl-stats b { display: block; font-size: 15px; color: #fff; }
.sl-guard { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 18px; background: linear-gradient(135deg, rgba(146, 180, 255, .18), rgba(146, 180, 255, .04)); margin-top: auto; }
.sl-orb { width: 42px; height: 42px; border-radius: 50%; flex: none; background: radial-gradient(circle at 35% 35%, #fff, #9fc2ff 30%, #4f6fe0 70%); box-shadow: 0 0 24px 4px rgba(146, 180, 255, .6); animation: breathe 4s ease-in-out infinite; }
@keyframes breathe { 50% { transform: scale(1.1); box-shadow: 0 0 34px 8px rgba(146, 180, 255, .75); } }
.sl-guard p { margin: 0; font-size: 12px; color: #b6c2df; }
.sl-guard b { display: block; color: #fff; font-size: 13.5px; }

/* Solo */
.so { background: #0E0C0A; color: #F5EEE3; }
.so h4 { font-size: 20px; font-family: var(--f-display); letter-spacing: -0.02em; }
.so-seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; padding: 3px; border-radius: 12px; background: #1d1a16; font-size: 11px; text-align: center; color: #a89f92; }
.so-seg span { padding: 6px 2px; border-radius: 9px; }
.so-seg .on { background: #2f2a23; color: #fff; font-weight: 600; }
.so-input { padding: 12px; border-radius: 14px; background: #1d1a16; color: #F5EEE3; min-height: 56px; }
.so-lbl { font-size: 11px; color: #a89f92; margin-bottom: -4px; }
.so-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.so-chips span { padding: 5px 10px; border-radius: 999px; background: #1d1a16; font-size: 11.5px; color: #d5ccbf; }
.so-chips .on { background: #F2B544; color: #1a1408; font-weight: 600; }
.so-btn { padding: 12px; border-radius: 14px; text-align: center; background: #F2B544; color: #1a1408; font-weight: 700; }
.so-now { margin-top: auto; display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 16px; background: #1d1a16; }
.so-cover { width: 44px; height: 44px; border-radius: 10px; flex: none; background: linear-gradient(135deg, #F2B544, #e0612f 60%, #6b1f5f); }
.so-now p { margin: 0; flex: 1; font-size: 11px; color: #a89f92; }
.so-now b { display: block; color: #fff; font-size: 13px; }
.so-eq { display: flex; align-items: flex-end; gap: 3px; height: 22px; }
.so-eq i { width: 3px; border-radius: 2px; background: #F2B544; height: 40%; animation: eq 1s ease-in-out infinite; }
.so-eq i:nth-child(2) { animation-delay: -.3s; } .so-eq i:nth-child(3) { animation-delay: -.6s; } .so-eq i:nth-child(4) { animation-delay: -.15s; }
@keyframes eq { 50% { height: 100%; } }

/* ==========================================================================
   Why us, numbers, steps
   ========================================================================== */
.why { list-style: none; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.why li { padding: 32px 32px 32px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 52px 1fr; gap: 18px; }
.why li:nth-child(odd) { border-right: 1px solid var(--line); }
.why li:nth-child(even) { padding-left: 32px; padding-right: 0; }
.why svg { width: 44px; height: 44px; color: var(--green); }
.why h3 { margin-bottom: 8px; }
.why p { color: var(--ink-2); }
@media (max-width: 760px) { .why { grid-template-columns: 1fr; } .why li, .why li:nth-child(even) { padding: 26px 0; border-right: 0; } }

.stats { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.stats li { padding: 8px 24px 8px 0; }
.stats li + li { padding-left: 24px; border-left: 1px solid var(--line); }
.stats strong { display: block; font-family: var(--f-display); font-weight: 700; font-size: clamp(2.4rem, 4.6vw, 3.8rem); letter-spacing: -0.05em; line-height: 1; margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.stats span { color: var(--ink-2); font-size: .95rem; display: block; max-width: 16em; }
.stats mark { background: none; color: inherit; box-shadow: inset 0 -.28em 0 var(--yellow); }
@media (max-width: 820px) { .stats { grid-template-columns: 1fr 1fr; gap: 28px 0; } .stats li:nth-child(3) { padding-left: 0; border-left: 0; } }

.steps { list-style: none; display: grid; grid-template-columns: repeat(var(--n, 5), minmax(0, 1fr)); counter-reset: s; }
.steps li { counter-increment: s; padding-right: 20px; position: relative; }
.steps li::before { content: counter(s); display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; margin-bottom: 20px; background: var(--surface); box-shadow: inset 0 0 0 1.5px var(--line); font-family: var(--f-display); font-weight: 700; position: relative; z-index: 1; }
.steps li:first-child::before { background: var(--yellow); color: var(--yellow-ink); box-shadow: none; }
.steps li::after { content: ""; position: absolute; top: 22px; left: 44px; right: 0; height: 1.5px; background: var(--line); }
.steps li:last-child::after { display: none; }
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--ink-2); font-size: .97rem; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .steps li { padding: 0 0 0 64px; min-height: 44px; }
  .steps li::before { position: absolute; left: 0; top: 0; margin: 0; }
  .steps li::after { top: 44px; bottom: -26px; left: 22px; right: auto; width: 1.5px; height: auto; }
}

/* ==========================================================================
   Service pages
   ========================================================================== */
.glance { background: var(--surface); border-radius: 28px; box-shadow: var(--shadow), 0 0 0 1px var(--line); padding: 10px 28px; animation: rise .9s .1s var(--ease) both; }
.glance__title { font-size: .95rem; font-weight: 600; color: var(--ink-2); padding: 18px 0 6px; }
.glance dl { margin: 0; }
.glance dl div { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.glance dl div:first-child { border-top: 0; }
.glance dt { color: var(--ink-2); font-size: .95rem; }
.glance dd { margin: 0; font-weight: 600; }
.glance__foot { border-top: 1px solid var(--line); padding: 18px 0; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 28px clamp(32px, 6vw, 96px); align-items: start; }
.split__side { position: sticky; top: calc(var(--header-h) + 36px); }
.split__side .lead { margin-top: 18px; }
.prose p { font-size: 1.08rem; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split__side { position: static; } }

.checks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.checks li { display: grid; grid-template-columns: 26px 1fr; gap: 14px; padding: 22px 24px 22px 0; border-bottom: 1px solid var(--line); }
.checks li::before { content: ""; width: 24px; height: 24px; border-radius: 50%; margin-top: 1px; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 8.3l2.3 2.2 4.7-5'/%3E%3C/svg%3E") center / 14px no-repeat; }
.checks b { display: block; font-weight: 600; }
.checks span { color: var(--ink-2); font-size: .96rem; }
@media (max-width: 700px) { .checks { grid-template-columns: 1fr; } }

.part + .part { margin-top: var(--section); }
.part__tag { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .95rem; padding: 6px 14px 6px 6px; border-radius: 999px; background: var(--bg-2); margin-bottom: 18px; }
.section--alt .part__tag { background: var(--surface); }
.part__tag i { width: 22px; height: 22px; border-radius: 50%; background: var(--yellow); display: grid; place-items: center; font-style: normal; font-size: .78rem; font-weight: 700; color: var(--yellow-ink); }

.rows { border-top: 1px solid var(--line); }
.rows > div { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr); gap: 12px 40px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.rows h3 small { display: block; font-family: var(--f-body); font-size: .88rem; font-weight: 500; color: var(--green); letter-spacing: 0; margin-bottom: 6px; }
.rows p { color: var(--ink-2); }
@media (max-width: 700px) { .rows > div { grid-template-columns: 1fr; } }

.band { border-radius: 32px; padding: clamp(28px, 5vw, 60px); display: grid; grid-template-columns: minmax(0, 1.3fr) auto; gap: 28px; align-items: center; color: #fff; background: var(--p-bg, var(--forest)); position: relative; overflow: hidden; isolation: isolate; }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse 50% 90% at 90% 50%, color-mix(in srgb, var(--p-accent, #3E63DD) 30%, transparent), transparent 70%); }
.band small { display: block; color: var(--p-accent, #A9B8FF); font-weight: 600; margin-bottom: 10px; }
.band .h2 { margin-bottom: 14px; }
.band p { color: rgba(255, 255, 255, .8); max-width: 40em; }
.band .btn { --b-bg: var(--p-accent, #FFFFFF); --b-fg: #111; }
.band .btn--line { --b-bg: transparent; --b-fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .35); }
@media (max-width: 800px) { .band { grid-template-columns: 1fr; } }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; font-family: var(--f-display); font-weight: 600; font-size: clamp(1.06rem, 1.7vw, 1.3rem); letter-spacing: -0.02em; line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq__a { padding: 0 64px 24px 0; color: var(--ink-2); animation: rise .4s var(--ease); }

.related { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.related a { display: inline-flex; padding: 12px 20px; border-radius: 999px; box-shadow: inset 0 0 0 1.5px var(--line); text-decoration: none; font-weight: 600; transition: box-shadow .2s, background-color .2s; }
.related a:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }

/* ==========================================================================
   Case
   ========================================================================== */
.case { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.case__img { border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--forest); position: sticky; top: calc(var(--header-h) + 36px); }
.case__img img { width: 100%; height: 100%; object-fit: cover; }
.case .stats { grid-template-columns: 1fr 1fr; margin-top: 36px; gap: 28px 0; }
.case .stats li:nth-child(3) { padding-left: 0; border-left: 0; }
.tsr { display: grid; gap: 18px; margin-top: 28px; }
.tsr div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding-top: 18px; border-top: 1px solid var(--line); }
.tsr b { font-family: var(--f-display); font-weight: 600; }
.tsr p { color: var(--ink-2); }
@media (max-width: 860px) { .case { grid-template-columns: 1fr; } .case__img { position: static; aspect-ratio: 16 / 10; order: -1; } .tsr div { grid-template-columns: 1fr; gap: 4px; } }

/* ==========================================================================
   Audit form
   ========================================================================== */
.audit { background: var(--forest); color: var(--on-forest); }
.audit__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.audit .lead { color: var(--on-forest-2); margin-top: 20px; }
.audit__list { list-style: none; display: grid; gap: 10px; margin-top: 28px; color: var(--on-forest); }
.audit__list li { display: flex; gap: 12px; align-items: baseline; }
.audit__list li::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--yellow); flex: none; transform: translateY(-1px); }
.contact-list { list-style: none; display: grid; gap: 12px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .14); }
.contact-list a { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; font-size: 1.1rem; }
.contact-list a:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-list svg { width: 42px; height: 42px; padding: 10px; border-radius: 50%; background: rgba(255, 255, 255, .1); flex: none; }
.form { background: var(--surface); color: var(--ink); border-radius: 28px; padding: clamp(22px, 4vw, 38px); display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .9rem; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 16px; border: 0; border-radius: 14px; background: var(--bg-2); box-shadow: inset 0 0 0 1.5px transparent; font-size: 1rem; transition: box-shadow .2s, background-color .2s; }
.field textarea { min-height: 110px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237d8f86' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: inset 0 0 0 2px var(--green); }
.field.has-error input { box-shadow: inset 0 0 0 2px #D8452E; }
.field__err { font-size: .85rem; color: #D8452E; }
.field__err:empty { display: none; }
.form__legal { font-size: .82rem; color: var(--ink-2); }
.form__status { display: none; padding: 14px 16px; border-radius: 14px; background: color-mix(in srgb, var(--green) 14%, transparent); font-size: .95rem; }
.form__status.is-shown { display: block; animation: rise .4s var(--ease); }
.form .btn { width: 100%; }
@media (max-width: 860px) { .audit__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer, contacts, 404
   ========================================================================== */
.footer { padding: clamp(56px, 7vw, 88px) 0 28px; border-top: 1px solid var(--line); font-size: .96rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer p { color: var(--ink-2); margin-top: 14px; max-width: 26em; }
.footer h2 { font-family: var(--f-body); font-size: .95rem; font-weight: 600; letter-spacing: 0; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer ul a { text-decoration: none; color: var(--ink-2); }
.footer ul a:hover { color: var(--ink); }
.footer__bottom { margin-top: 52px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--ink-2); font-size: .88rem; }
.footer__bottom a { text-decoration: none; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

.big-contacts { list-style: none; display: grid; gap: 4px; }
.big-contacts a { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.7rem, 4.6vw, 3.2rem); letter-spacing: -0.04em; text-decoration: none; line-height: 1.15; word-break: break-word; background: linear-gradient(var(--yellow), var(--yellow)) 0 88% / 0 .28em no-repeat; transition: background-size .4s var(--ease); }
.big-contacts a:hover { background-size: 100% .28em; }
.big-contacts span { display: block; color: var(--ink-2); font-size: .95rem; margin: 6px 0 18px; }
.nf__num { font-family: var(--f-display); font-weight: 700; font-size: clamp(6rem, 18vw, 13rem); letter-spacing: -0.06em; line-height: .9; }
.nf__num mark { background: var(--yellow); color: var(--yellow-ink); border-radius: .12em; padding: 0 .06em; }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

.faq .acc__icon { flex: none; width: 38px; height: 38px; }
.serp__row { min-height: 64px; } @media (max-width: 480px) { .serp__row { min-height: 56px; } }
@media (max-width: 760px) { .why li:nth-child(odd), .why li:nth-child(even) { border-right: 0; padding: 26px 0; } }
@media (max-width: 600px) { .ptabs__list { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding: 2px var(--gutter); } .ptabs__list::-webkit-scrollbar { display: none; } .ptab { flex: none; } }
.hero--svc .display { font-size: clamp(2.3rem, 4.8vw, 4.2rem); }

/* ==========================================================================
   Soft gradients (v3)
   ========================================================================== */
:root { --glow: rgba(62, 99, 221, .11); --glow-2: rgba(150, 110, 255, .08); }
:root[data-theme="dark"] { --glow: rgba(110, 140, 255, .17); --glow-2: rgba(160, 115, 255, .11); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) { --glow: rgba(110, 140, 255, .17); --glow-2: rgba(160, 115, 255, .11); } }

.hero { isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 48% 62% at 82% 38%, var(--glow), transparent 70%),
    radial-gradient(ellipse 38% 50% at 4% 96%, var(--glow-2), transparent 70%); }
.section--alt {
  background:
    radial-gradient(ellipse 55% 60% at 100% 0%, var(--glow), transparent 70%),
    radial-gradient(ellipse 45% 55% at 0% 100%, var(--glow-2), transparent 70%),
    var(--bg-2); }
.strip { background: linear-gradient(90deg, transparent, var(--glow) 50%, transparent); }
.serp, .glance { background: linear-gradient(180deg, color-mix(in srgb, var(--green) 5%, var(--surface)), var(--surface) 45%); }
.why { background: radial-gradient(ellipse 50% 70% at 50% 50%, var(--glow-2), transparent 75%); }
.audit {
  background:
    radial-gradient(ellipse 45% 75% at 88% 45%, rgba(90, 120, 255, .26), transparent 70%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(160, 115, 255, .14), transparent 70%),
    var(--forest); }
.band { background: var(--p-bg, #1C1C21); }
.band::before { background:
    radial-gradient(ellipse 50% 95% at 88% 50%, color-mix(in srgb, var(--p-accent, #5B7BFF) 34%, transparent), transparent 70%),
    radial-gradient(ellipse 35% 70% at 0% 100%, color-mix(in srgb, var(--p-accent, #A078FF) 16%, transparent), transparent 70%); }
.product::before { background:
    radial-gradient(ellipse 55% 75% at 78% 55%, color-mix(in srgb, var(--p-accent) 30%, transparent), transparent 70%),
    radial-gradient(ellipse 40% 60% at 0% 0%, color-mix(in srgb, var(--p-accent) 12%, transparent), transparent 70%); }
.footer { background: linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--bg-2) 70%, var(--bg))); }

/* ==========================================================================
   v4 — one shared background for the whole site
   ========================================================================== */
body { background: var(--bg); position: relative; isolation: isolate; }
body::before { content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 88% 8%, var(--glow), transparent 70%),
    radial-gradient(ellipse 50% 50% at 4% 55%, var(--glow-2), transparent 70%),
    radial-gradient(ellipse 55% 50% at 92% 100%, var(--glow), transparent 70%),
    var(--bg); }
:root { --glow: rgba(62, 99, 221, .09); --glow-2: rgba(150, 110, 255, .07); --glass: color-mix(in srgb, var(--surface) 78%, transparent); }
:root[data-theme="dark"] { --glow: rgba(110, 140, 255, .13); --glow-2: rgba(160, 115, 255, .09); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) { --glow: rgba(110, 140, 255, .13); --glow-2: rgba(160, 115, 255, .09); } }

/* sections become transparent: no fills, no per-block glows */
.hero::before { display: none; }
.section--alt, .strip, .why, .footer, .audit { background: none; }
.strip { border-color: var(--line); }
.footer { border-top: 1px solid var(--line); }

/* cards share one glass style */
.serp, .glance, .form, .band {
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(140%); backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 0 0 1px var(--line), 0 30px 70px -48px rgba(20, 20, 40, .45);
}
.part__tag, .section--alt .part__tag { background: var(--glass); box-shadow: inset 0 0 0 1px var(--line); }
.ptab { background: var(--glass); }

/* audit: same colors as the rest of the page */
.audit { color: var(--ink); }
.audit .lead { color: var(--ink-2); }
.audit__list { color: var(--ink); }
.audit__list li::before { background: var(--green); }
.contact-list { border-top-color: var(--line); }
.contact-list svg { background: var(--bg-2); color: var(--ink); }
.form .field input, .form .field select, .form .field textarea { background: color-mix(in srgb, var(--bg-2) 85%, transparent); }

/* band: neutral glass card instead of a dark block */
.band { color: var(--ink); }
.band::before { background: radial-gradient(ellipse 45% 90% at 92% 50%, var(--glow), transparent 70%); }
.band::after { display: none; }
.band small { color: var(--green); }
.band p { color: var(--ink-2); }
.band .btn { --b-bg: var(--ink); --b-fg: var(--bg); }
.band .btn--line { --b-bg: transparent; --b-fg: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }

/* Solo icon in results */
.serp__icon { overflow: hidden; }
.serp__icon img { width: 100%; height: 100%; object-fit: cover; }
.serp__row { background: transparent; }
.serp__row.is-ours { background: var(--surface); }

.logo { font-weight: 700; letter-spacing: -0.035em; gap: 11px; }
.logo__pro { color: var(--green); }
.serp__list { transition: opacity .3s; }
.serp__list.is-dim { opacity: .35; }
