﻿:root {
  --bg-deep: #030814;
  --bg-main: #07111d;
  --bg-alt: #0b1726;
  --panel: rgba(10, 20, 35, 0.82);
  --panel-soft: rgba(15, 27, 44, 0.72);
  --panel-strong: rgba(8, 16, 28, 0.96);
  --line: rgba(159, 181, 213, 0.18);
  --line-strong: rgba(159, 181, 213, 0.34);
  --text: #f4f7ff;
  --muted: #a3b4d1;
  --muted-strong: #cbd7ec;
  --blue: #4f7cff;
  --cyan: #59d8ff;
  --teal: #25d0a1;
  --amber: #ffb65c;
  --danger: #ff7b72;
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.24);
  --radius-lg: 32px;
  --radius: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1240px;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-head: "Space Grotesk", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(900px 520px at 0% 0%, rgba(79, 124, 255, 0.22), transparent 62%),
    radial-gradient(760px 420px at 100% 0%, rgba(37, 208, 161, 0.16), transparent 60%),
    radial-gradient(720px 540px at 50% 100%, rgba(255, 182, 92, 0.09), transparent 64%),
    linear-gradient(180deg, var(--bg-deep), var(--bg-main) 35%, #091320 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 88%);
  opacity: 0.24;
}

body::after {
  background:
    radial-gradient(circle at 20% 20%, rgba(89, 216, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(79, 124, 255, 0.1), transparent 20%),
    radial-gradient(circle at 40% 78%, rgba(37, 208, 161, 0.08), transparent 22%);
  filter: blur(18px);
  opacity: 0.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

main {
  position: relative;
}

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(18px);
  background: rgba(3, 8, 20, 0.76);
  border-bottom: 1px solid rgba(159, 181, 213, 0.11);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(89, 216, 255, 0.4), transparent);
  opacity: 0.5;
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  padding: 7px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(159, 181, 213, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), var(--shadow-md);
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-weight: 600;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(159, 181, 213, 0.16);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(159, 181, 213, 0.22);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(159, 181, 213, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle span {
  font-family: var(--font-mono);
  font-size: 0.88rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(159, 181, 213, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(159, 181, 213, 0.32);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible,
.page-nav a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(89, 216, 255, 0.7);
  outline-offset: 2px;
}

.btn-primary {
  border-color: rgba(89, 216, 255, 0.38);
  background: linear-gradient(135deg, rgba(79, 124, 255, 0.9), rgba(89, 216, 255, 0.92));
  color: #04111e;
}

.btn-primary:hover {
  border-color: rgba(89, 216, 255, 0.7);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
}

.btn-tone {
  border-color: rgba(37, 208, 161, 0.36);
  background: linear-gradient(135deg, rgba(37, 208, 161, 0.22), rgba(37, 208, 161, 0.08));
}

.btn-ghost {
  background: transparent;
  box-shadow: none;
}

.btn-small {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.btn-block {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(89, 216, 255, 0.28);
  background: linear-gradient(180deg, rgba(79, 124, 255, 0.12), rgba(89, 216, 255, 0.05));
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(89, 216, 255, 0.14);
}

.section {
  padding: clamp(48px, 6.4vw, 88px) 0;
}

.section-tight {
  padding-top: 0;
}

.section-tone {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 70%);
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 840px;
  margin-bottom: 22px;
}

.section-head--compact {
  max-width: none;
  margin: 26px 0 18px;
}

.section-title,
.hero-title,
.page-title,
.thanks-title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.7rem);
}

.page-title,
.section-title,
.thanks-title {
  font-size: clamp(1.85rem, 3.3vw, 3rem);
}

.section-subtitle {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.32rem, 2vw, 1.84rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-lead,
.hero-text,
.card-text,
.profile-text,
.result-card p,
.service-card p,
.case-card p,
.step-card p,
.contact-card p,
.contact-form .helper,
.legal-card p,
.legal-card li,
.thanks-panel p,
.signal-card,
.pricing-card p,
.table-card p,
.quote-panel,
.note {
  color: var(--muted);
  line-height: 1.72;
}

.hero {
  padding: 30px 0 54px;
}

.hero-grid,
.page-hero-grid,
.profile-layout,
.contact-grid,
.story-layout,
.results-layout {
  display: grid;
  gap: 24px;
}

.hero-grid,
.page-hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}

.hero-copy,
.page-hero-copy,
.contact-card,
.contact-form,
.legal-card,
.thanks-panel,
.trust-card,
.service-card,
.case-card,
.pricing-card,
.step-card,
.signal-card,
.result-card,
.table-card,
.quote-panel,
.page-nav,
.metrics-ribbon,
.story-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 23, 38, 0.9), rgba(8, 18, 31, 0.82));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-copy,
.page-hero-copy,
.contact-card,
.contact-form,
.thanks-panel {
  padding: clamp(28px, 4vw, 40px);
}

.hero-copy::before,
.page-hero-copy::before,
.thanks-panel::before,
.contact-card::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(89, 216, 255, 0.18), transparent 65%);
  pointer-events: none;
}

.hero-copy > *,
.page-hero-copy > *,
.contact-card > *,
.contact-form > *,
.thanks-panel > * {
  position: relative;
}

.hero-text,
.page-hero-copy .section-lead {
  max-width: 63ch;
  font-size: 1.04rem;
}

.hero-badges,
.mini-pill-row,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.mini-pill strong {
  color: var(--text);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-kpis,
.trust-grid,
.cards-grid,
.journey-grid,
.case-grid,
.pricing-grid,
.results-grid,
.legal-grid,
.metrics-grid {
  display: grid;
  gap: 18px;
}

.hero-kpis {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.manifesto-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  margin-top: -12px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(159, 181, 213, 0.16);
  background:
    linear-gradient(135deg, rgba(18, 44, 73, 0.65), rgba(7, 17, 29, 0.94) 56%),
    radial-gradient(circle at 0% 0%, rgba(89, 216, 255, 0.16), transparent 38%);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.manifesto-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0.22;
  pointer-events: none;
}

.manifesto-copy,
.manifesto-stack {
  position: relative;
  z-index: 1;
}

.manifesto-copy {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: 10px 6px 10px 4px;
}

.manifesto-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.8vw, 3.15rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.manifesto-copy p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted-strong);
  line-height: 1.75;
}

.manifesto-stack {
  display: grid;
  gap: 14px;
}

.manifesto-card {
  position: relative;
  padding: 18px 18px 18px 70px;
  border-radius: 22px;
  border: 1px solid rgba(159, 181, 213, 0.12);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.manifesto-card::before {
  content: attr(data-step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(89, 216, 255, 0.22);
  background: rgba(79, 124, 255, 0.14);
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.manifesto-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.manifesto-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.services-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 24px;
  align-items: start;
}

.services-intro {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.services-intro .section-head {
  margin-bottom: 0;
}

.services-intro .section-lead {
  max-width: 56ch;
}

.services-notes {
  display: grid;
  gap: 12px;
}

.services-note {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.services-note strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-head);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.services-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.services-stack {
  display: grid;
  gap: 16px;
}

.service-strip {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px 24px 22px;
  border-radius: 26px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: linear-gradient(180deg, rgba(10, 20, 34, 0.92), rgba(8, 16, 28, 0.82));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.service-strip::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(89, 216, 255, 0.95), rgba(79, 124, 255, 0.42));
  opacity: 0.9;
}

.service-strip:nth-child(2)::before,
.service-strip:nth-child(5)::before {
  background: linear-gradient(180deg, rgba(37, 208, 161, 0.95), rgba(89, 216, 255, 0.42));
}

.service-strip:nth-child(3)::before,
.service-strip:nth-child(6)::before {
  background: linear-gradient(180deg, rgba(255, 182, 92, 0.95), rgba(79, 124, 255, 0.42));
}

.service-strip-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.service-index {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.service-strip h3 {
  margin: 8px 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.28rem, 2vw, 1.64rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.service-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.hero-kpi,
.metric {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.hero-kpi span,
.metric span,
.service-tag,
.case-tag,
.small-label,
.quote-panel strong,
.result-card strong,
.table-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-kpi strong,
.metric strong,
.result-card h3,
.service-card h3,
.case-card h3,
.step-card h3,
.pricing-card h3,
.contact-card h3,
.legal-card h3,
.story-card h3,
.table-card h3,
.signal-title {
  display: block;
  margin-top: 10px;
  font-family: var(--font-head);
  font-size: 1.22rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-kpi p,
.metric p,
.result-card p,
.signal-card p,
.pricing-card p,
.case-card p,
.step-card p,
.service-card p,
.story-card p {
  margin: 10px 0 0;
}

.hero-art,
.page-hero-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
  align-items: stretch;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(159, 181, 213, 0.18);
  background: linear-gradient(180deg, rgba(10, 17, 28, 0.84), rgba(10, 17, 28, 0.94));
  box-shadow: var(--shadow-xl);
  min-height: 220px;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 17, 0) 36%, rgba(4, 9, 17, 0.86) 100%);
}

.photo-frame--tall {
  min-height: 560px;
  grid-row: span 2;
}

.photo-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.photo-badge strong {
  font-family: var(--font-head);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.photo-badge span {
  color: rgba(244, 247, 255, 0.78);
  line-height: 1.55;
}

.signal-card {
  padding: 22px;
  display: grid;
  gap: 14px;
  border-color: rgba(89, 216, 255, 0.16);
  background:
    linear-gradient(160deg, rgba(12, 28, 47, 0.94), rgba(7, 16, 28, 0.86)),
    radial-gradient(circle at 0% 0%, rgba(89, 216, 255, 0.12), transparent 36%);
}

.signal-card .signal-title {
  margin-top: 0;
  font-size: clamp(1.38rem, 2vw, 1.86rem);
}

.signal-card ul,
.service-list,
.check-list,
.feature-list,
.pricing-list,
.legal-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.signal-card li,
.service-list li,
.check-list li,
.feature-list li,
.pricing-list li,
.legal-card li,
.table-points li {
  position: relative;
  padding-left: 18px;
}

.signal-card li::before,
.service-list li::before,
.check-list li::before,
.feature-list li::before,
.pricing-list li::before,
.legal-card li::before,
.table-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 0 4px rgba(89, 216, 255, 0.12);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(89, 216, 255, 0.22);
  background: rgba(3, 8, 20, 0.66);
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.trust-grid,
.cards-grid,
.pricing-grid,
.results-grid,
.legal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-band {
  margin-bottom: 18px;
  align-items: stretch;
}

.case-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
}

.case-grid .case-card:first-child {
  grid-row: span 2;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(14, 32, 56, 0.94), rgba(7, 17, 29, 0.88)),
    radial-gradient(circle at 12% 10%, rgba(89, 216, 255, 0.16), transparent 42%);
}

.pricing-grid .pricing-card:first-child {
  background:
    linear-gradient(160deg, rgba(18, 42, 68, 0.98), rgba(8, 18, 31, 0.9) 58%),
    radial-gradient(circle at 8% 10%, rgba(89, 216, 255, 0.18), transparent 36%);
  border-color: rgba(89, 216, 255, 0.24);
  transform: translateY(-8px);
}

.story-card--feature {
  background:
    linear-gradient(155deg, rgba(16, 39, 63, 0.98), rgba(8, 18, 31, 0.9) 58%),
    radial-gradient(circle at 12% 10%, rgba(89, 216, 255, 0.18), transparent 34%);
  border-color: rgba(89, 216, 255, 0.22);
}

.story-card--feature h3 {
  font-size: clamp(1.48rem, 2.4vw, 2.28rem);
}

.pricing-grid .pricing-card:first-child .pricing-price {
  color: #dff7ff;
}

.trust-card,
.service-card,
.result-card,
.pricing-card,
.case-card,
.step-card,
.story-card,
.table-card,
.quote-panel,
.legal-card {
  padding: 24px;
}

.trust-card strong,
.result-card strong,
.quote-panel strong,
.story-card strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.service-card::after,
.pricing-card::after,
.step-card::after,
.case-card::after,
.result-card::after,
.story-card::after,
.legal-card::after,
.table-card::after,
.quote-panel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(89, 216, 255, 0.52), transparent);
  opacity: 0.7;
}

.service-tag,
.case-tag,
.table-label,
.small-label {
  color: var(--muted-strong);
}

.journey-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(89, 216, 255, 0.26);
  background: rgba(79, 124, 255, 0.12);
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.case-meta span,
.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.pricing-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.05em;
}

.pricing-note,
.table-note {
  margin-top: 16px;
  font-size: 0.94rem;
  color: var(--muted);
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.profile-layout,
.contact-grid,
.results-layout {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
}

.profile-photo {
  min-height: 480px;
}

.profile-card {
  display: grid;
  gap: 18px;
  align-content: center;
}

.quote-panel {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.quote-panel strong {
  margin-top: 0;
}

.page-hero {
  padding: 34px 0 56px;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px;
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(159, 181, 213, 0.12);
  background: rgba(7, 17, 29, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.page-nav-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(159, 181, 213, 0.1);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(159, 181, 213, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.page-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(159, 181, 213, 0.2);
  transform: translateY(-1px);
}

.metrics-ribbon {
  padding: 18px;
  margin-top: 18px;
}

.metrics-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.table-shell {
  overflow-x: auto;
  margin-top: 20px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(159, 181, 213, 0.12);
}

.pricing-table th {
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-table td b {
  color: var(--text);
}

.table-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field,
.field-full {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(159, 181, 213, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

input::placeholder,
textarea::placeholder {
  color: #90a0bb;
}

select option {
  color: #081019;
}

textarea {
  min-height: 164px;
  resize: vertical;
}

.helper,
.contact-note,
.note {
  font-size: 0.93rem;
}

.link-inline {
  color: var(--muted-strong);
  text-decoration: underline;
  text-decoration-color: rgba(89, 216, 255, 0.5);
  text-underline-offset: 3px;
}

.site-footer {
  padding: 32px 0 120px;
  border-top: 1px solid rgba(159, 181, 213, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(3, 8, 20, 0.34));
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.footer-copy,
.footer-links a {
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover,
.link-inline:hover {
  color: var(--text);
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 95;
  width: min(420px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(159, 181, 213, 0.2);
  background: rgba(3, 8, 20, 0.92);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }

.thanks-wrap {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 180px);
  padding: 56px 0 96px;
}

.mono {
  font-family: var(--font-mono);
}

.accent {
  color: var(--cyan);
}

.theme-business .eyebrow,
.theme-business .btn-primary,
.theme-business .floating-chip {
  border-color: rgba(37, 208, 161, 0.32);
}

.theme-business .btn-primary {
  background: linear-gradient(135deg, rgba(37, 208, 161, 0.92), rgba(89, 216, 255, 0.9));
}

.theme-home .hero--editorial {
  position: relative;
  padding: 46px 0 72px;
}

.theme-home .hero--editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 14%, rgba(89, 216, 255, 0.14), transparent 26%),
    radial-gradient(circle at 84% 24%, rgba(79, 124, 255, 0.18), transparent 24%);
  pointer-events: none;
}

.theme-home .hero-grid--editorial {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: stretch;
}

.theme-home .hero-copy--stage {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.theme-home .hero-copy--stage::before {
  display: none;
}

.hero-note {
  margin: 0;
  max-width: 42ch;
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title--stage {
  max-width: 8.8ch;
  font-size: clamp(3.35rem, 7.1vw, 5.9rem);
  line-height: 0.91;
}

.hero-text--stage {
  max-width: 57ch;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.hero-command {
  display: grid;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background:
    linear-gradient(145deg, rgba(13, 29, 48, 0.9), rgba(7, 17, 29, 0.72)),
    radial-gradient(circle at 0% 0%, rgba(89, 216, 255, 0.08), transparent 30%);
  box-shadow: var(--shadow-lg);
}

.hero-command-text {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.76;
}

.hero-command-text strong {
  color: var(--text);
}

.theme-home .hero-art--stage {
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: start;
}

.hero-stage {
  position: relative;
  min-height: 660px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(159, 181, 213, 0.18);
  background: linear-gradient(180deg, rgba(9, 18, 31, 0.78), rgba(7, 17, 29, 0.96));
  box-shadow: var(--shadow-xl);
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 9, 17, 0.08) 0%, rgba(4, 9, 17, 0.16) 38%, rgba(4, 9, 17, 0.9) 100%),
    linear-gradient(90deg, rgba(4, 9, 17, 0.2), transparent 30%, rgba(4, 9, 17, 0.35));
}

.hero-stage-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.hero-stage-caption strong {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-stage-caption p {
  margin: 0;
  max-width: 34ch;
  color: rgba(244, 247, 255, 0.82);
  line-height: 1.6;
}

.hero-stage-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(159, 181, 213, 0.2);
  background: rgba(3, 8, 20, 0.48);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: -62px;
  padding: 0 18px;
}

.hero-proof {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(159, 181, 213, 0.16);
  background: rgba(7, 17, 29, 0.72);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.hero-proof span,
.profile-note strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-proof strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-head);
  font-size: 1.24rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-proof p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.hero-marquee {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.hero-marquee span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(159, 181, 213, 0.12);
  background: rgba(7, 17, 29, 0.46);
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.hero-kpis--stage {
  margin-top: 18px;
}

.proof-ledger {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  padding: 36px 0;
}

.proof-ledger-intro {
  display: grid;
  gap: 18px;
  align-content: start;
}

.proof-ledger-intro .section-title {
  max-width: 12ch;
}

.proof-ledger-items {
  display: grid;
}

.proof-ledger-card {
  position: relative;
  padding: 22px 0 22px 84px;
  border-top: 1px solid rgba(159, 181, 213, 0.12);
}

.proof-ledger-card:last-child {
  border-bottom: 1px solid rgba(159, 181, 213, 0.12);
}

.proof-ledger-card::before {
  content: attr(data-ledger);
  position: absolute;
  left: 0;
  top: 22px;
  color: rgba(89, 216, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
}

.proof-ledger-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}

.proof-ledger-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.mission-atlas {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.mission-atlas-intro {
  display: grid;
  gap: 18px;
  align-content: start;
}

.mission-atlas-intro .quote-panel {
  margin-top: 2px;
}

.mission-stack {
  display: grid;
  gap: 16px;
}

.mission-item {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px 24px 22px 106px;
  border-radius: 30px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: linear-gradient(160deg, rgba(11, 23, 38, 0.94), rgba(7, 17, 29, 0.82));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.mission-item::before {
  content: attr(data-mission);
  position: absolute;
  left: 24px;
  top: 18px;
  color: rgba(89, 216, 255, 0.28);
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 3vw, 3.7rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.mission-item::after {
  content: "";
  position: absolute;
  left: 84px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(89, 216, 255, 0.06), rgba(89, 216, 255, 0.34), rgba(89, 216, 255, 0.06));
}

.mission-item--feature {
  background:
    linear-gradient(155deg, rgba(16, 39, 63, 0.98), rgba(8, 18, 31, 0.9) 58%),
    radial-gradient(circle at 12% 10%, rgba(89, 216, 255, 0.16), transparent 34%);
  border-color: rgba(89, 216, 255, 0.22);
}

.mission-item h3 {
  margin: 0;
  max-width: 24ch;
  font-family: var(--font-head);
  font-size: clamp(1.48rem, 2vw, 2rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.mission-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.mission-item .case-meta {
  margin-top: 2px;
}

.mission-proof {
  padding-top: 14px;
  border-top: 1px solid rgba(159, 181, 213, 0.1);
  color: var(--muted-strong);
  line-height: 1.64;
}

.mission-proof strong {
  color: var(--text);
}

.services-editorial {
  display: grid;
  gap: 28px;
}

.services-rail {
  display: grid;
  gap: 18px;
}

.service-panel {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px 24px;
  align-items: start;
  padding: 28px 30px 24px;
  border-radius: 32px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: linear-gradient(160deg, rgba(10, 20, 34, 0.96), rgba(7, 17, 29, 0.84));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.service-panel::after {
  content: "";
  position: absolute;
  left: 106px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: linear-gradient(180deg, rgba(89, 216, 255, 0.06), rgba(89, 216, 255, 0.36), rgba(89, 216, 255, 0.06));
  opacity: 0.72;
}

.service-panel:nth-child(odd) {
  margin-right: 0;
}

.service-panel:nth-child(even) {
  margin-left: 0;
  background: linear-gradient(155deg, rgba(14, 34, 56, 0.96), rgba(7, 17, 29, 0.84));
}

.service-panel-head {
  display: contents;
}

.service-panel-index {
  font-family: var(--font-head);
  display: block;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: rgba(89, 216, 255, 0.34);
}

.service-panel-copy {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 8px;
  align-content: start;
  max-width: none;
}

.service-panel-copy h3 {
  margin: 0;
  font-family: var(--font-head);
  max-width: 13ch;
  font-size: clamp(1.64rem, 2.2vw, 2.28rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.service-panel p {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.68;
}

.service-panel-list {
  grid-column: 2;
  grid-row: 3;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-panel-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.method-runway {
  display: grid;
  gap: 26px;
}

.method-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.method-step {
  position: relative;
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 22px 20px;
  border-radius: 28px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: linear-gradient(160deg, rgba(11, 23, 38, 0.94), rgba(7, 17, 29, 0.82));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.method-step::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 18px;
  color: rgba(89, 216, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
}

.method-step h3 {
  margin: 42px 0 10px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.method-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.case-theater {
  display: grid;
  gap: 24px;
}

.case-theater-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  align-items: stretch;
}

.case-visual {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(159, 181, 213, 0.16);
  background: linear-gradient(180deg, rgba(8, 18, 31, 0.76), rgba(7, 17, 29, 0.96));
  box-shadow: var(--shadow-xl);
}

.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 17, 0.1), rgba(4, 9, 17, 0.86) 88%);
}

.case-visual-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.case-visual-copy strong {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.case-visual-copy p {
  margin: 0;
  max-width: 34ch;
  color: rgba(244, 247, 255, 0.82);
  line-height: 1.62;
}

.case-scenarios {
  display: grid;
  gap: 14px;
  align-content: start;
}

.case-scenario {
  position: relative;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: linear-gradient(160deg, rgba(11, 23, 38, 0.94), rgba(7, 17, 29, 0.82));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.case-scenario--after {
  background: linear-gradient(160deg, rgba(16, 41, 66, 0.98), rgba(7, 17, 29, 0.9));
  border-color: rgba(89, 216, 255, 0.24);
  transform: translateY(24px);
}

.case-scenario h3 {
  margin: 10px 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2vw, 1.92rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.case-scenario p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.offer-stage {
  display: grid;
  gap: 24px;
}

.offer-stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: start;
}

.offer-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(159, 181, 213, 0.16);
  background:
    linear-gradient(155deg, rgba(16, 39, 63, 0.98), rgba(8, 18, 31, 0.9) 60%),
    radial-gradient(circle at 12% 10%, rgba(89, 216, 255, 0.18), transparent 34%);
  box-shadow: var(--shadow-xl);
}

.offer-feature-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.offer-feature h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.offer-feature p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

.offer-feature-visual {
  position: relative;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(159, 181, 213, 0.16);
}

.offer-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 17, 0.04), rgba(4, 9, 17, 0.82) 90%);
}

.offer-feature-visual figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: rgba(244, 247, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.55;
}

.offer-grid {
  display: grid;
  gap: 14px;
}

.offer-pack {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: linear-gradient(160deg, rgba(11, 23, 38, 0.94), rgba(7, 17, 29, 0.82));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.offer-pack h3 {
  margin: 10px 0 0;
  font-family: var(--font-head);
  font-size: 1.42rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.offer-pack p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-command {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(159, 181, 213, 0.16);
  background:
    linear-gradient(160deg, rgba(11, 23, 38, 0.94), rgba(7, 17, 29, 0.82)),
    radial-gradient(circle at 12% 8%, rgba(89, 216, 255, 0.12), transparent 40%);
  box-shadow: var(--shadow-lg);
}

.pricing-command-grid {
  display: grid;
  gap: 12px;
}

.pricing-command-card {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(159, 181, 213, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.pricing-command-card span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-command-card strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-head);
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.pricing-command-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-switchboard {
  display: grid;
  gap: 26px;
  padding-top: 18px;
}

.pricing-switchboard-copy {
  max-width: 760px;
}

.pricing-lane-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-lane {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: linear-gradient(160deg, rgba(11, 23, 38, 0.94), rgba(7, 17, 29, 0.82));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.pricing-lane::before {
  content: attr(data-lane);
  position: absolute;
  right: 18px;
  top: 16px;
  color: rgba(89, 216, 255, 0.32);
  font-family: var(--font-head);
  font-size: 2.8rem;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.pricing-lane--feature {
  background:
    linear-gradient(155deg, rgba(16, 39, 63, 0.98), rgba(8, 18, 31, 0.9) 60%),
    radial-gradient(circle at 12% 10%, rgba(89, 216, 255, 0.16), transparent 34%);
  border-color: rgba(89, 216, 255, 0.24);
}

.pricing-lane h3 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-head);
  font-size: 1.58rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.pricing-lane p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.pricing-lane-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(159, 181, 213, 0.1);
}

.pricing-lane-footer span {
  font-family: var(--font-head);
  font-size: 1.14rem;
  letter-spacing: -0.03em;
}

.pricing-lane-footer a {
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.pricing-grid--uniform {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid--uniform .pricing-card:first-child {
  background: linear-gradient(160deg, rgba(11, 23, 38, 0.94), rgba(7, 17, 29, 0.82));
  border-color: rgba(159, 181, 213, 0.14);
  transform: none;
}

.pricing-note-strong {
  max-width: 78ch;
}

.form-submit-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.form-submit {
  min-width: 240px;
  padding: 0 24px;
}

.form-submit-note {
  justify-content: flex-start;
}

.profile-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

.profile-stage-photo {
  min-height: 520px;
}

.profile-stage-copy {
  display: grid;
  gap: 22px;
  align-content: center;
}

.profile-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.profile-note {
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.profile-note strong {
  margin-bottom: 8px;
}

.profile-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.profile-quote {
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(159, 181, 213, 0.14);
  border-left: 2px solid rgba(89, 216, 255, 0.5);
  background: linear-gradient(160deg, rgba(12, 28, 46, 0.9), rgba(7, 17, 29, 0.78));
  box-shadow: var(--shadow-lg);
}

.profile-quote strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.24rem, 2vw, 1.7rem);
  letter-spacing: -0.03em;
}

.profile-quote p {
  margin: 10px 0 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

.page-business .page-hero,
.page-pricing .page-hero,
.page-legal .page-hero {
  padding-top: 42px;
}

.page-legal .page-hero-copy {
  max-width: 980px;
}

.page-legal .legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-legal .legal-card--feature {
  grid-column: span 2;
  background:
    linear-gradient(155deg, rgba(16, 39, 63, 0.98), rgba(8, 18, 31, 0.9) 58%),
    radial-gradient(circle at 12% 10%, rgba(89, 216, 255, 0.18), transparent 34%);
  border-color: rgba(89, 216, 255, 0.22);
}

.page-legal .legal-card--feature h3 {
  font-size: clamp(1.48rem, 2.4vw, 2.28rem);
}

.page-thanks .thanks-wrap {
  display: block;
  min-height: auto;
  padding: 42px 0 72px;
}

.page-thanks .contact-grid {
  align-items: stretch;
}

.page-thanks .thanks-panel,
.page-thanks .contact-card {
  min-height: 100%;
}

@media (max-width: 1120px) {
  .topbar-inner {
    grid-template-columns: auto auto;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 14px;
    margin-bottom: 8px;
    border-radius: 22px;
    border: 1px solid rgba(159, 181, 213, 0.14);
    background: rgba(7, 17, 29, 0.96);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  body.nav-open .header-actions {
    display: flex;
  }

  .hero-grid,
  .page-hero-grid,
  .services-stage,
  .profile-layout,
  .contact-grid,
  .results-layout {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .page-hero-visuals {
    grid-template-columns: 1fr 1fr;
  }

  .photo-frame--tall {
    grid-row: auto;
    min-height: 420px;
  }

  .journey-grid,
  .hero-kpis,
  .case-grid,
  .metrics-grid,
  .trust-grid,
  .cards-grid,
  .pricing-grid,
  .results-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifesto-band {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .services-intro {
    position: static;
  }

  .case-grid .case-card:first-child {
    grid-row: auto;
  }

  .pricing-grid .pricing-card:first-child {
    transform: none;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(calc(100% - 22px), var(--max));
  }

  .section {
    padding: 40px 0;
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 15vw, 4.2rem);
  }

  .page-title,
  .section-title,
  .thanks-title {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .hero-copy,
  .page-hero-copy,
  .contact-card,
  .contact-form,
  .thanks-panel {
    padding: 22px 20px;
  }

  .hero-art,
  .page-hero-visuals,
  .manifesto-stack,
  .cards-grid,
  .journey-grid,
  .trust-grid,
  .case-grid,
  .pricing-grid,
  .results-grid,
  .legal-grid,
  .metrics-grid,
  .hero-kpis,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .photo-frame--tall,
  .profile-photo {
    min-height: 320px;
  }

  .hero-art .photo-frame--support {
    display: none;
  }

  .manifesto-band {
    padding: 20px;
    gap: 16px;
  }

  .service-strip {
    padding: 20px 18px 18px;
    gap: 14px;
  }

  .service-strip-head {
    gap: 12px;
  }

  .service-index {
    width: 40px;
    height: 40px;
  }

  .mini-pill {
    min-height: 34px;
    font-size: 0.84rem;
  }

  .photo-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .floating-chip {
    top: 12px;
    right: 12px;
    min-height: 32px;
    font-size: 0.74rem;
  }

  .cta-row,
  .service-points,
  .pricing-actions,
  .cookie-actions,
  .footer-links,
  .inline-links {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .site-nav a {
    width: 100%;
  }

  .page-nav {
    padding: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .page-nav::-webkit-scrollbar,
  .hero-kpis::-webkit-scrollbar {
    display: none;
  }

  .page-nav-label,
  .page-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero-kpis {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .hero-kpi {
    min-width: 190px;
    flex: 0 0 190px;
    scroll-snap-align: start;
  }

  .mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 150px;
  }
}

@media (max-width: 560px) {
  body::before {
    opacity: 0.16;
  }

  .topbar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .wrap {
    width: min(calc(100% - 18px), var(--max));
  }

  .topbar-inner {
    gap: 10px;
    min-height: 72px;
  }

  .brand {
    gap: 10px;
  }

  .brand-copy {
    max-width: 74px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    padding: 5px;
    border-radius: 14px;
  }

  .brand-copy strong {
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    min-height: 40px;
    min-width: 48px;
    padding: 0 10px;
  }

  .nav-toggle span {
    font-size: 0.68rem;
  }

  .hero-copy,
  .page-hero-copy,
  .contact-card,
  .contact-form,
  .thanks-panel {
    padding: 20px 16px;
  }

  .hero-title {
    font-size: clamp(1.98rem, 14vw, 3.04rem);
    line-height: 0.94;
  }

  .hero-text,
  .section-lead,
  .profile-text,
  .contact-card p {
    font-size: 0.97rem;
    line-height: 1.62;
  }

  .hero-kpis {
    margin-top: 18px;
    gap: 12px;
  }

  .hero-kpi,
  .metric,
  .services-note,
  .signal-card,
  .story-card,
  .case-card,
  .pricing-card,
  .step-card,
  .quote-panel {
    padding: 18px;
  }

  .manifesto-band {
    padding: 18px;
    gap: 14px;
  }

  .manifesto-card {
    padding: 16px 16px 16px 58px;
  }

  .manifesto-card::before {
    left: 14px;
    top: 14px;
    width: 32px;
    height: 32px;
  }

  .photo-frame--tall,
  .profile-photo {
    min-height: 280px;
  }

  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 86px;
    width: auto;
    padding: 14px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .cookie-actions .btn {
    width: auto;
    flex: 1 1 0;
  }

  .site-footer {
    padding-bottom: 138px;
  }
}

@media (max-width: 1120px) {
  .theme-home .hero-grid--editorial,
  .proof-ledger,
  .mission-atlas,
  .case-theater-grid,
  .offer-stage-grid,
  .profile-stage {
    grid-template-columns: 1fr;
  }

  .pricing-lane-grid,
  .pricing-grid--uniform {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage {
    min-height: 520px;
  }

  .proof-ledger {
    padding: 28px 0 0;
  }

  .service-panel:nth-child(odd),
  .service-panel:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }

  .method-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-scenario--after {
    transform: none;
  }

  .offer-feature {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

  .profile-notes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .theme-home .hero--editorial {
    padding: 28px 0 52px;
  }

  .page-legal .legal-grid {
    grid-template-columns: 1fr;
  }

  .page-legal .legal-card--feature {
    grid-column: auto;
  }

  .hero-title--stage {
    max-width: 10.2ch;
    font-size: clamp(2.45rem, 13.2vw, 3.8rem);
  }

  .hero-command {
    padding: 18px;
    border-radius: 24px;
  }

  .hero-stage {
    min-height: 380px;
    border-radius: 28px;
  }

  .hero-stage-caption,
  .case-visual-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-proof-list {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0;
  }

  .hero-marquee {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-ledger {
    gap: 24px;
  }

  .mission-item {
    padding: 20px 18px 18px 88px;
  }

  .mission-item::before {
    left: 18px;
    top: 16px;
    font-size: 2.4rem;
  }

  .mission-item::after {
    left: 68px;
    top: 14px;
    bottom: 14px;
  }

  .proof-ledger-card {
    padding: 18px 0 18px 60px;
  }

  .service-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 20px;
  }

  .service-panel::after {
    display: none;
  }

  .offer-feature {
    grid-template-columns: 1fr;
  }

  .pricing-lane-grid,
  .pricing-grid--uniform,
  .form-submit-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
  }

  .service-panel-index,
  .service-panel-copy,
  .service-panel p,
  .service-panel-list {
    grid-column: auto;
    grid-row: auto;
  }

  .service-panel-copy {
    max-width: none;
  }

  .service-panel-copy h3 {
    max-width: none;
  }

  .method-track,
  .profile-notes,
  .hero-proof-list {
    grid-template-columns: 1fr;
  }

  .case-visual {
    min-height: 380px;
  }

  .offer-feature-visual {
    min-height: 260px;
  }

  .profile-stage-photo {
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  .hero-note {
    font-size: 0.76rem;
  }

  .hero-title--stage {
    font-size: clamp(2.05rem, 14vw, 2.9rem);
  }

  .hero-text--stage,
  .hero-command-text,
  .hero-stage-caption p,
  .case-visual-copy p {
    font-size: 0.96rem;
  }

  .hero-stage {
    min-height: 320px;
  }

  .hero-stage-caption strong,
  .case-visual-copy strong {
    font-size: 1.54rem;
  }

  .hero-marquee {
    display: none;
  }

  .proof-ledger-card {
    padding-left: 52px;
  }

  .mission-item {
    padding: 18px 16px 18px 70px;
  }

  .mission-item::before {
    left: 16px;
    top: 14px;
    font-size: 2rem;
  }

  .mission-item::after {
    left: 54px;
    top: 12px;
    bottom: 12px;
  }

  .mission-item h3 {
    max-width: none;
    font-size: 1.34rem;
  }

  .proof-ledger-card h3 {
    font-size: 1.24rem;
  }

  .service-panel,
  .method-step,
  .case-scenario,
  .offer-pack,
  .profile-note {
    padding: 18px;
  }

  .offer-feature {
    padding: 20px;
  }

  .profile-stage-photo {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
