:root {
  --ink: #101214;
  --ink-2: #181c18;
  --ink-3: #252b26;
  --paper: #ffffff;
  --paper-soft: #f7f8f3;
  --text: #101214;
  --muted: #707982;
  --muted-2: #8b938e;
  --line: #dfe3df;
  --line-strong: #c5cec7;
  --green: #37e46f;
  --green-2: #83f294;
  --green-dark: #1e9d4c;
  --red: #ff5a3d;
  --shadow-hard: 6px 6px 0 #101214;
  --shadow-soft: 0 22px 70px rgba(16, 18, 20, 0.12);
  --container: min(1340px, calc(100% - 56px));
  --font-body: "Inter", "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --font-display: "Inter", "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --ease: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(16, 18, 20, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #ffffff 76%, #eef4ef 100%);
  background-size: 48px 48px, auto;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  border: 0;
  background: transparent;
  color: inherit;
}

section[id],
div[id] {
  scroll-margin-top: 96px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

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

[data-reveal] {
  opacity: 1;
  transform: none;
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 5, 4, 0.9), rgba(3, 5, 4, 0.58));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition:
    background var(--ease),
    border-color var(--ease);
}

.site-header.is-scrolled {
  background: rgba(3, 5, 4, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--green);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.iconomy-dot {
  fill: rgba(255, 255, 255, 0.92);
}

.iconomy-dot--accent {
  fill: var(--green);
}

.iconomy-cursor {
  fill: var(--green);
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-copy small {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 850;
}

.site-nav a:not(.button) {
  transition: color var(--ease);
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition:
    opacity var(--ease),
    transform var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background var(--ease),
    border-color var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
}

.button-primary {
  color: #061008;
  background: var(--green);
  border-color: #0b130e;
  box-shadow: 4px 4px 0 #061008;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #63f37e;
  box-shadow: 6px 6px 0 #061008;
}

.button-outline-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.12);
}

.button-outline-dark:hover,
.button-outline-dark:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.88);
}

.nav-cta {
  min-height: 46px;
  padding-inline: 18px;
}

.block-dark {
  color: #fff;
  background:
    repeating-linear-gradient(118deg, rgba(55, 228, 111, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, rgba(2, 3, 3, 0.98) 0%, rgba(5, 7, 6, 0.93) 48%, rgba(12, 18, 14, 0.86) 100%),
    linear-gradient(180deg, #050706 0%, #101410 100%);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 106px 0 34px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(470px, 0.82fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: 40px;
  flex: 1;
  padding: 18px 0 0;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  max-width: 10.9em;
  font-size: clamp(3rem, 3.45vw, 4.45rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy h1 span {
  color: var(--green);
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  line-height: 1.55;
  font-weight: 600;
}

.hero-lead span {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.hero-route {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.hero-route span {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
}

.hero-route span:last-child {
  border-right: 0;
}

.hero-route i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 6px;
  color: #071009;
  background: var(--green);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.hero-proof-grid article {
  min-height: 88px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 7, 6, 0.62);
}

.hero-proof-grid span {
  display: block;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1;
  font-weight: 900;
}

.hero-proof-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  line-height: 1.35;
  font-weight: 750;
}

.hero-art-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 720px);
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(66, 232, 102, 0.16), transparent 32%),
    linear-gradient(rgba(8, 10, 9, 0.58), rgba(8, 10, 9, 0.72)),
    url("assets/iconomy-hero-dashboard.png") center / cover no-repeat,
    #080a09;
  background-blend-mode: normal, normal, soft-light;
  box-shadow:
    0 36px 120px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(66, 232, 102, 0.16) inset;
  overflow: hidden;
}

.hero-art-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(66, 232, 102, 0.56), transparent 42%, rgba(255, 255, 255, 0.24));
  opacity: 0.55;
}

.hero-dashboard {
  padding: 18px;
}

.dashboard-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff;
}

.dashboard-head strong {
  color: var(--green);
  font-size: 1.16rem;
  font-weight: 950;
}

.dashboard-head span:last-child {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  font-weight: 900;
}

.dashboard-mark {
  width: 26px;
  height: 26px;
  display: inline-block;
  background:
    linear-gradient(var(--green), var(--green)) 0 0 / 6px 6px no-repeat,
    linear-gradient(#fff, #fff) 10px 0 / 6px 6px no-repeat,
    linear-gradient(var(--green), var(--green)) 20px 0 / 6px 6px no-repeat,
    linear-gradient(#fff, #fff) 0 10px / 6px 6px no-repeat,
    linear-gradient(var(--green), var(--green)) 10px 10px / 6px 6px no-repeat,
    linear-gradient(#fff, #fff) 20px 10px / 6px 6px no-repeat,
    linear-gradient(var(--green), var(--green)) 0 20px / 6px 6px no-repeat,
    linear-gradient(#fff, #fff) 10px 20px / 6px 6px no-repeat;
}

.dashboard-flow {
  display: grid;
  grid-template-columns: 0.78fr 1.04fr 0.92fr;
  gap: 12px;
}

.dash-column {
  position: relative;
  min-height: 470px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
}

.dash-column--os {
  border-color: rgba(66, 232, 102, 0.64);
  box-shadow: 0 0 0 1px rgba(66, 232, 102, 0.1) inset;
}

.dash-column h3 {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.dash-column article {
  position: relative;
  min-height: 58px;
  display: grid;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.dash-column--audience article {
  grid-template-columns: 36px 1fr auto;
}

.dash-column--audience article::after,
.dash-column--os article::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 18px;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.44);
}

.dash-column--audience article::before,
.dash-column--os article::before {
  content: "";
  position: absolute;
  right: -20px;
  top: calc(50% - 3px);
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.68);
  border-right: 1px solid rgba(255, 255, 255, 0.68);
  transform: rotate(45deg);
}

.dash-column--os article {
  grid-template-columns: 30px 1fr;
}

.dash-column--products article {
  min-height: 84px;
  align-content: center;
}

.dash-column article span {
  font-size: 0.86rem;
  font-weight: 850;
}

.dash-column article strong {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
}

.channel-icon,
.dash-node {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 7px;
}

.channel-icon--yt {
  background: #ff2f18;
}

.channel-icon--yt::before {
  content: "";
  width: 0;
  height: 0;
  border-block: 6px solid transparent;
  border-left: 10px solid #fff;
  transform: translateX(1px);
}

.channel-icon--tw {
  background: #8c42ff;
}

.channel-icon--tw::before {
  content: "T";
  color: #fff;
  font-weight: 950;
}

.channel-icon--tg {
  background: #23a9f2;
}

.channel-icon--tg::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 17px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 4px solid transparent;
  transform: rotate(-20deg);
}

.channel-icon--tt {
  background: #080a09;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.channel-icon--tt::before {
  content: "♪";
  color: #fff;
  font-size: 1.2rem;
  font-weight: 950;
}

.channel-icon--vk {
  background: #2583ff;
}

.channel-icon--vk::before {
  content: "vk";
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
}

.dash-node {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--green);
}

.dash-node::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.dash-node--design::before {
  border-radius: 3px;
  transform: rotate(45deg);
}

.dash-node--dev::before {
  width: 16px;
  height: 10px;
  border-radius: 0;
  border-top: 0;
  transform: skewX(-20deg);
}

.dash-node--pay::before {
  content: "₽";
  width: auto;
  height: auto;
  border: 0;
  font-weight: 950;
}

.dash-node--support::before {
  border-bottom-color: transparent;
}

.dash-node--growth::before {
  width: 18px;
  height: 18px;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0;
}

.dash-total {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
}

.dash-total span,
.dash-formula {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
}

.dash-total strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 950;
}

.dash-formula {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding: 0 8px;
}

.dash-formula b {
  color: var(--green);
}

.dash-column--products em,
.mini-card,
.mini-gear {
  display: inline-grid;
  place-items: center;
  justify-self: start;
  margin-top: 8px;
  border-radius: 5px;
}

.dash-column--products em {
  min-width: 62px;
  min-height: 28px;
  padding: 0 8px;
  color: #fff;
  background: #050706;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 950;
}

.ring-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.ring-row i {
  width: 30px;
  height: 30px;
  border: 6px solid var(--green);
  border-radius: 50%;
}

.ring-row i:nth-child(2) {
  border-color: #ff4b30;
}

.ring-row i:nth-child(3) {
  border-color: #315dff;
}

.mini-card {
  width: 70px;
  height: 38px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 54, 31, 0.7), transparent 45%),
    #161a17;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.7rem;
  font-weight: 950;
}

.mini-gear {
  width: 82px;
  height: 42px;
  background:
    radial-gradient(ellipse at 65% 42%, var(--green) 0 11%, transparent 12%),
    linear-gradient(155deg, #2b302d, #050706);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 0;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.dashboard-metrics article {
  min-height: 58px;
  padding: 12px 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-metrics article:last-child {
  border-right: 0;
}

.dashboard-metrics span {
  display: block;
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.1;
  font-weight: 900;
}

.section {
  padding: 34px 0;
}

.model-section {
  padding-top: 42px;
}

.reference-card,
.product-team-block,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(7, 9, 8, 0.04);
}

.reference-card {
  margin-bottom: 24px;
  padding: 26px;
}

.section-heading {
  max-width: 520px;
}

.section-heading--wide {
  max-width: none;
}

.section-heading h2 span {
  color: var(--green);
}

.section-label {
  display: block;
  margin-bottom: 12px;
  color: #323a35;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-weight: 600;
}

.thesis-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(560px, 1.24fr);
  align-items: center;
  gap: 42px;
}

.thesis-card p {
  max-width: 510px;
  margin-bottom: 0;
}

.vs-panel {
  display: grid;
  grid-template-columns: 1fr 82px 1fr;
  align-items: stretch;
  min-height: 190px;
  border: 2px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.vs-panel > div {
  padding: 28px 30px;
}

.vs-panel > strong {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-inline: 1px solid var(--line-strong);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, transparent, #c3cac4, transparent) border-box;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
}

.vs-panel > strong::before {
  content: "VS";
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 8px #fff;
}

.vs-panel h3 {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.positive-list,
.negative-list,
.signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.positive-list li,
.negative-list li {
  position: relative;
  padding-left: 28px;
  color: #252b27;
  font-size: 0.94rem;
  font-weight: 720;
}

.positive-list li + li,
.negative-list li + li {
  margin-top: 13px;
}

.positive-list li::before,
.negative-list li::before {
  content: "";
  position: absolute;
  top: 0.24em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.positive-list li::before {
  background:
    linear-gradient(135deg, transparent 45%, #fff 46% 54%, transparent 55%),
    var(--green);
  box-shadow: 0 0 0 2px rgba(66, 232, 102, 0.2);
}

.negative-list li::before {
  background:
    linear-gradient(45deg, transparent 42%, #fff 43% 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, #fff 43% 57%, transparent 58%),
    var(--red);
  box-shadow: 0 0 0 2px rgba(255, 54, 31, 0.14);
}

.studio-card {
  padding: 22px;
}

.studio-card .section-heading {
  padding: 4px 4px 18px;
}

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

.os-grid article {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 30%),
    #070908;
  color: #fff;
  box-shadow: 0 1px 0 rgba(7, 9, 8, 0.18);
}

.os-grid h3 {
  color: #fff;
  font-size: 0.98rem;
}

.os-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.45;
}

.os-icon,
.team-icon,
.fit-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.os-icon {
  width: 56px;
  height: 56px;
  margin-top: 24px;
  color: var(--green-2);
  overflow: visible;
}

.os-icon-frame {
  fill: rgba(131, 242, 148, 0.07);
  stroke: rgba(131, 242, 148, 0.22);
}

.os-icon-mark {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
  vector-effect: non-scaling-stroke;
}

.os-icon-soft {
  opacity: 0.72;
}

.partnership-card {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(210px, 0.82fr) minmax(170px, 0.6fr) minmax(210px, 0.82fr);
  align-items: center;
  gap: 28px;
  padding: 30px 28px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 48%, rgba(66, 232, 102, 0.15), transparent 28%),
    linear-gradient(180deg, #050706, #090d0a);
  border-color: rgba(255, 255, 255, 0.14);
}

.partnership-card > div p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.partnership-card .section-label {
  color: rgba(255, 255, 255, 0.62);
}

.partnership-card h2 {
  color: #fff;
}

.partner-box,
.split-box {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.partner-box {
  min-height: 245px;
  padding: 24px 22px;
}

.partner-box h3 {
  position: relative;
  padding-left: 34px;
  color: #fff;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.partner-box h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.partner-box--brand h3::before {
  border-radius: 5px;
  background: var(--green);
}

.partner-box .positive-list li {
  color: rgba(255, 255, 255, 0.78);
}

.split-box {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 22px;
  color: #fff;
  border-color: rgba(66, 232, 102, 0.74);
  background:
    radial-gradient(circle at 50% 30%, rgba(66, 232, 102, 0.18), transparent 52%),
    rgba(0, 0, 0, 0.48);
  text-align: center;
}

.split-box strong {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.9;
  font-weight: 900;
}

.split-box span,
.split-box p,
.split-box small {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.split-box p {
  color: #fff;
}

.authors-section {
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.cases-section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.cases-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 22px;
}

.cases-intro h2 {
  margin-bottom: 0;
}

.cases-intro p {
  max-width: 720px;
  margin-bottom: 6px;
  font-size: 1.03rem;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.case-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(7, 9, 8, 0.04);
}

.case-card--dark {
  color: #fff;
  background: #070908;
  border-color: rgba(255, 255, 255, 0.13);
}

.case-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #070908;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.case-card:hover .case-media img {
  transform: scale(1.035);
}

.case-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 22px;
}

.case-tag {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-card--dark .case-tag {
  color: var(--green);
}

.case-body h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.case-card--dark h3 {
  color: #fff;
}

.case-body p {
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 1.46;
}

.case-card--dark p {
  color: rgba(255, 255, 255, 0.68);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.case-card--dark .case-metrics {
  border-color: rgba(255, 255, 255, 0.14);
}

.case-metrics > span {
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(16, 18, 20, 0.09);
  border-radius: 8px;
  background: rgba(16, 18, 20, 0.03);
}

.case-card--dark .case-metrics > span {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
}

.case-metrics strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1;
  font-weight: 950;
}

.case-card--dark .case-metrics strong {
  color: var(--green);
}

.case-metrics small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
}

.case-card--dark .case-metrics small {
  color: rgba(255, 255, 255, 0.58);
}

.authors-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 0.95fr) minmax(300px, 1fr);
  align-items: center;
  gap: 38px;
}

.author-list h2 {
  margin-bottom: 28px;
}

.signal-list li {
  padding-left: 38px;
}

.signal-list li + li {
  margin-top: 24px;
}

.signal-list strong {
  display: block;
  margin-bottom: 4px;
  color: #171b18;
  font-size: 1.02rem;
  font-weight: 900;
}

.signal-list span {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.creator-signal-card {
  position: relative;
  min-height: 360px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 52% 25%, rgba(255, 255, 255, 0.18), transparent 20%),
    radial-gradient(ellipse at 48% 72%, rgba(66, 232, 102, 0.14), transparent 35%),
    #0a0d0b;
  box-shadow: var(--shadow-soft);
}

.creator-signal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.18;
}

.creator-signal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.08) brightness(0.88);
}

.creator-signal-card span {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 1;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6vw, 5.8rem);
  line-height: 0.9;
  font-weight: 900;
  text-shadow: 0 0 34px rgba(66, 232, 102, 0.32);
}

.product-team-block {
  margin-top: 34px;
  padding: 34px 0 0;
  border-inline: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-team-block .section-heading {
  margin-bottom: 22px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.team-grid article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding: 22px;
  border: 2px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.team-grid h3 {
  margin: 0;
  font-size: 0.98rem;
}

.team-grid p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.team-icon {
  width: 50px;
  height: 50px;
  color: var(--ink);
  overflow: visible;
}

.team-icon-frame {
  fill: rgba(16, 18, 20, 0.035);
  stroke: rgba(16, 18, 20, 0.16);
}

.team-icon-mark {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.team-icon-soft {
  opacity: 0.58;
}

.fit-section {
  padding-top: 24px;
}

.fit-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(680px, 1.72fr);
  gap: 32px;
  align-items: start;
}

.fit-heading {
  padding-top: 6px;
}

.fit-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.fit-row {
  display: grid;
  grid-template-columns: 1.05fr 1.45fr 1.8fr 1.55fr;
  min-width: 820px;
}

.fit-row + .fit-row {
  border-top: 1px solid var(--line);
}

.fit-row span {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  color: #313933;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.fit-row span:last-child {
  border-right: 0;
}

.fit-row--head span {
  min-height: 54px;
  justify-content: center;
  color: #111412;
  background: #fbfcfb;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.fit-row span:first-child {
  color: #111412;
  font-weight: 900;
}

.fit-icon {
  width: 38px;
  height: 38px;
  color: var(--green-dark);
}

.fit-icon::before,
.fit-icon::after {
  content: "";
  position: absolute;
}

.fit-icon-game::before {
  left: 3px;
  top: 12px;
  width: 32px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 12px;
}

.fit-icon-game::after {
  left: 10px;
  top: 20px;
  width: 18px;
  height: 3px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 3px 100% no-repeat,
    linear-gradient(currentColor, currentColor) 7px 0 / 3px 100% no-repeat,
    linear-gradient(currentColor, currentColor) 15px 0 / 3px 100% no-repeat;
}

.fit-icon-heart::before {
  left: 7px;
  top: 8px;
  width: 23px;
  height: 23px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
  border-radius: 0 0 0 8px;
}

.fit-icon-heart::after {
  left: 6px;
  top: 7px;
  width: 26px;
  height: 18px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 16px 16px 0 0;
}

.fit-icon-edu::before {
  left: 4px;
  top: 10px;
  width: 30px;
  height: 18px;
  border: 3px solid currentColor;
  transform: skewX(-18deg);
}

.fit-icon-edu::after {
  left: 13px;
  bottom: 5px;
  width: 14px;
  height: 9px;
  border: 3px solid currentColor;
  border-top: 0;
}

.fit-icon-star::before {
  left: 5px;
  top: 5px;
  width: 28px;
  height: 28px;
  background: currentColor;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 92%, 50% 70%, 21% 92%, 32% 56%, 2% 35%, 39% 35%);
}

.process-card {
  padding: 28px 26px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(66, 232, 102, 0.12), transparent 26%),
    linear-gradient(180deg, #050706, #090c0a);
  border-color: rgba(255, 255, 255, 0.12);
}

.process-card .section-label {
  color: rgba(255, 255, 255, 0.62);
}

.process-card h2 {
  color: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-steps li {
  position: relative;
  min-height: 190px;
  padding-top: 10px;
}

.process-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 29px;
  left: 55px;
  right: -18px;
  border-top: 2px dashed rgba(255, 255, 255, 0.72);
}

.process-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 23px;
  right: -21px;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
}

.process-steps span {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #071009;
  background: var(--green);
  font-size: 0.98rem;
  font-weight: 950;
}

.process-steps h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: #fff;
}

.process-steps p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.5;
}

.process-steps small {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.76rem;
  font-weight: 900;
}

.faq-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(600px, 1.38fr);
  align-items: start;
  gap: 30px;
  padding: 24px;
}

.faq-heading h2 {
  margin-bottom: 0;
}

.faq-intro {
  max-width: 430px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

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

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition:
    border-color var(--ease),
    box-shadow var(--ease);
}

.faq-grid details[open] {
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.faq-grid summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  color: #171b18;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-grid summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid details p {
  margin: -2px 18px 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.vpn-offer-section {
  padding: 58px 0 30px;
}

.vpn-offer-layout {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1fr);
  align-items: stretch;
  gap: 44px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background:
    repeating-linear-gradient(118deg, rgba(55, 228, 111, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #050706 0%, #101214 100%);
  background-size: auto, 42px 42px, 42px 42px, auto;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.vpn-offer-layout::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 6px;
  background: var(--green);
}

.vpn-offer-layout .section-label {
  color: var(--green);
}

.vpn-offer-layout h2 {
  color: #fff;
}

.vpn-offer-layout p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
}

.vpn-offer-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.vpn-offer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.vpn-offer-topline span,
.vpn-offer-topline strong {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.vpn-offer-topline strong {
  color: var(--green);
}

.vpn-offer-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.vpn-offer-stack span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vpn-offer-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 12px;
}

.vpn-offer-kpis span {
  display: grid;
  gap: 5px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.vpn-offer-kpis span:first-child {
  color: #071009;
  background: var(--green);
  border-color: var(--green);
}

.vpn-offer-kpis strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1;
}

.vpn-offer-kpis span:first-child strong {
  color: #071009;
}

.vpn-offer-kpis small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.25;
}

.vpn-offer-kpis span:first-child small {
  color: rgba(7, 16, 9, 0.78);
}

.vpn-offer-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.vpn-offer-summary span {
  min-height: 66px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(55, 228, 111, 0.28);
  border-radius: 8px;
  background: rgba(55, 228, 111, 0.075);
}

.vpn-offer-summary strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1;
  font-weight: 950;
}

.vpn-offer-summary small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.2;
}

.vpn-offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vpn-offer-actions .button {
  min-width: 220px;
}

.wpn-mini-offer {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 34px 34px;
  overflow: hidden;
}

.wpn-mini-offer::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 92px;
  height: 92px;
  border-left: 4px solid var(--green);
  border-top: 4px solid var(--green);
  opacity: 0.78;
}

.wpn-offer-frame {
  position: relative;
  width: min(100%, 560px);
}

.wpn-offer-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.48);
}

.wpn-offer-ledger {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: -24px 18px 0;
}

.wpn-offer-ledger span {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 7, 6, 0.92);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.wpn-offer-ledger b {
  color: #fff;
  font-size: 0.78rem;
  line-height: 1;
}

.wpn-offer-ledger small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.wpn-power {
  position: absolute;
  right: -8px;
  top: -20px;
  z-index: 3;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #070908;
  box-shadow:
    0 0 0 7px rgba(55, 228, 111, 0.12),
    0 0 42px rgba(55, 228, 111, 0.28);
}

.wpn-power span {
  width: 48px;
  height: 48px;
  border: 6px solid var(--green);
  border-top-color: transparent;
  border-radius: 50%;
}

.wpn-power span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 13px;
  width: 6px;
  height: 24px;
  border-radius: 999px;
  background: var(--green);
  transform: translateX(-50%);
}

.final-cta-section {
  padding: 28px 0 54px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(240px, 420px) auto;
  align-items: center;
  gap: 28px;
  padding: 32px;
}

.final-cta h2 {
  max-width: 880px;
}

.final-cta p {
  max-width: 760px;
  margin-bottom: 0;
}

.final-cta-media {
  height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #070908;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  color: #fff;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand--footer .brand-mark {
  box-shadow: none;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 80;
}

.cookie-banner__inner {
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(5, 7, 6, 0.94);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.cookie-banner__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.cookie-banner__copy a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
}

@media (min-width: 1440px) {
  .hero-art-card[data-reveal].is-visible {
    transform: translateY(-24px);
  }
}

@media (min-width: 1760px) {
  .studio-card {
    width: min(1640px, calc(100% - 56px));
  }

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

  .os-grid article {
    min-height: 220px;
    padding: 22px 18px;
  }
}

@media (max-width: 1220px) {
  .site-nav {
    gap: 18px;
    font-size: 0.86rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 36px;
  }

  .hero-copy {
    max-width: 920px;
  }

  .hero-art-card {
    max-width: 900px;
    width: 100%;
    justify-self: start;
  }

  .hero-art-card[data-reveal].is-visible {
    transform: none;
  }

  .cases-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

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

  .dash-column {
    min-height: 420px;
  }

  .thesis-card,
  .fit-card {
    grid-template-columns: 1fr;
  }

  .fit-table {
    overflow-x: auto;
  }

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

  .partnership-card {
    grid-template-columns: 1fr 1fr;
  }

  .authors-layout {
    grid-template-columns: 1fr;
  }

  .creator-signal-card {
    order: -1;
    min-height: 320px;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(760px, calc(100% - 36px));
  }

  body {
    background-size: 38px 38px, auto;
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(5, 7, 6, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity var(--ease),
      visibility var(--ease),
      transform var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 14px;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .brand-copy small {
    max-width: 145px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 92px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 11vw, 4.8rem);
  }

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

  .hero-proof-grid article {
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .dashboard-flow {
    grid-template-columns: 1fr;
  }

  .dash-column {
    min-height: auto;
  }

  .dash-column--audience article::before,
  .dash-column--audience article::after,
  .dash-column--os article::before,
  .dash-column--os article::after {
    display: none;
  }

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

  .dashboard-metrics article:first-child {
    grid-column: 1 / -1;
  }

  .vs-panel {
    grid-template-columns: 1fr;
  }

  .vs-panel > strong {
    min-height: 74px;
    border-block: 1px solid var(--line-strong);
    border-inline: 0;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-steps li {
    min-height: 0;
    padding-left: 58px;
    padding-top: 0;
  }

  .process-steps li:not(:last-child)::after {
    top: 42px;
    left: 18px;
    right: auto;
    bottom: -18px;
    height: auto;
    border-top: 0;
    border-left: 2px dashed rgba(255, 255, 255, 0.72);
  }

  .process-steps li:not(:last-child)::before {
    top: auto;
    right: auto;
    left: 12px;
    bottom: -20px;
    border-top: 0;
    border-left: 0;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
  }

  .process-steps span {
    position: absolute;
    left: 0;
    top: 0;
  }

  .process-steps h3 {
    margin-top: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-card {
    grid-template-columns: 1fr;
  }

  .vpn-offer-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .wpn-mini-offer {
    min-height: 300px;
  }

  .final-cta .button,
  .vpn-offer-layout .button {
    justify-self: start;
  }

  .vpn-offer-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .final-cta-media {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(520px, calc(100% - 28px));
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy small {
    font-size: 0.68rem;
  }

  .hero-section {
    padding-bottom: 18px;
  }

  .hero-layout {
    gap: 24px;
    padding: 22px 0 26px;
  }

  .hero-copy {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    min-width: 0;
  }

  .hero-copy h1 {
    max-width: 9.8em;
    overflow-wrap: normal;
    text-wrap: auto;
    font-size: clamp(1.9rem, 7.8vw, 2.25rem);
    line-height: 1.04;
  }

  .hero-lead {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    overflow-wrap: break-word;
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .hero-lead span {
    max-width: calc(100vw - 28px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-route {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    grid-template-columns: 1fr 1fr;
  }

  .hero-route span:nth-child(2n) {
    border-right: 0;
  }

  .hero-route span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-proof-grid {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    grid-template-columns: 1fr;
  }

  .hero-proof-grid article {
    min-width: 0;
    min-height: 104px;
    padding: 15px 14px;
  }

  .hero-proof-grid span {
    font-size: 1.08rem;
  }

  .hero-proof-grid p {
    font-size: 0.68rem;
  }

  .hero-dashboard {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding: 12px;
  }

  .dashboard-head strong,
  .dashboard-head span:last-child {
    font-size: 0.98rem;
  }

  .dash-column {
    padding: 12px;
  }

  .dash-column article {
    min-height: 52px;
    padding: 9px 10px;
  }

  .dash-column--audience article {
    grid-template-columns: 30px 1fr auto;
  }

  .channel-icon,
  .dash-node {
    width: 28px;
    height: 28px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-metrics article,
  .dashboard-metrics article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dashboard-metrics article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 22px 0;
  }

  .reference-card {
    padding: 18px;
    margin-bottom: 18px;
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.35rem);
  }

  .vs-panel > div {
    padding: 22px 18px;
  }

  .os-grid,
  .team-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .cases-intro {
    margin-bottom: 16px;
  }

  .case-card {
    min-height: auto;
  }

  .case-body {
    padding: 18px;
  }

  .case-media {
    aspect-ratio: 16 / 10;
  }

  .os-grid article {
    min-height: 180px;
  }

  .partnership-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-box {
    min-height: 0;
  }

  .split-box {
    min-height: 140px;
  }

  .authors-section {
    padding-top: 34px;
  }

  .authors-layout {
    gap: 24px;
  }

  .creator-signal-card {
    min-height: 260px;
  }

  .creator-signal-card span {
    top: 24px;
    right: 24px;
  }

  .team-grid article {
    min-height: 0;
  }

  .fit-row {
    min-width: 760px;
    grid-template-columns: 1.08fr 1.35fr 1.65fr 1.45fr;
  }

  .fit-row span {
    padding: 14px;
    font-size: 0.84rem;
  }

  .vpn-offer-layout {
    padding: 22px;
  }

  .vpn-offer-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .wpn-mini-offer {
    min-height: 210px;
    padding: 12px;
  }

  .wpn-offer-image {
    max-width: 100%;
  }

  .wpn-power {
    width: 58px;
    height: 58px;
    right: -4px;
    top: -14px;
  }

  .wpn-power span {
    width: 38px;
    height: 38px;
  }

  .wpn-offer-ledger {
    grid-template-columns: 1fr;
    margin: 10px 0 0;
  }

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

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

  .final-cta {
    padding: 22px;
  }

  .final-cta-media {
    height: 170px;
  }

  .footer-inner {
    min-height: 150px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner__inner {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
