@import url("https://static.tildacdn.com/css/fonts-tildasans.css");

:root {
  --bg: #ffffff;
  --ink: #080d10;
  --ink-soft: #2b3539;
  --muted: #6c7377;
  --line: #e9eef0;
  --line-strong: #d9e1e3;
  --accent: #62b2b3;
  --accent-dark: #089fa3;
  --logo-dark: #103642;
  --surface: #f5f7f7;
  --surface-soft: #fafafa;
  --shadow: 0 30px 80px rgba(16, 54, 66, 0.075);
  --shadow-soft: 0 18px 44px rgba(8, 13, 16, 0.045);
  --max: 1160px;
  --header: 64px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "TildaSans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header);
  padding: 0 clamp(18px, 3vw, 40px);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(24px) saturate(170%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 36px rgba(8, 13, 16, 0.035);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.brand img {
  display: block;
  width: 44px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 4vw, 54px);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav-links,
.site-header.is-scrolled .contact-link {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  color: var(--ink);
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle,
.contact-link,
.button {
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  cursor: pointer;
}

.language-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding: calc(var(--header) + 18px) 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(98, 178, 179, 0.055), transparent 31%),
    linear-gradient(180deg, #fff 0%, #fff 76%, #f8faf9 100%);
}

.hero::after {
  display: none;
}

.hero-grid {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 960px);
  margin: auto;
  text-align: center;
}

.hero-logo {
  width: clamp(280px, 31vw, 480px);
  height: auto;
  margin: 0 auto clamp(78px, 10vh, 128px);
  transform: translateX(clamp(22px, 4.2vw, 66px));
}

.hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(62px, 8.2vw, 118px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p {
  max-width: 720px;
  margin: 30px auto 0;
  color: var(--ink-soft);
  font-size: clamp(21px, 1.9vw, 26px);
  font-weight: 400;
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  padding: 0 24px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  width: 38px;
  height: 20px;
  color: rgba(8, 13, 16, 0.5);
  transform: translateX(-50%);
  animation: cue 1.8s ease-in-out infinite;
}

.scroll-cue svg {
  width: 100%;
  fill: currentColor;
}

.statement {
  padding: clamp(110px, 12vw, 168px) 0 clamp(96px, 10vw, 136px);
  background: var(--surface-soft);
}

.teal-rule {
  width: clamp(88px, 11vw, 160px);
  height: 4px;
  margin-bottom: 36px;
  background: var(--accent);
}

.statement p {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(26px, 2.55vw, 38px);
  font-weight: 400;
  line-height: 1.18;
  text-align: justify;
  text-align-last: left;
  word-spacing: -0.03em;
}

.statement strong {
  font-weight: 900;
}

.section {
  padding: clamp(96px, 10vw, 168px) 0;
}

.section-heading {
  margin-bottom: clamp(52px, 7vw, 90px);
}

.section-heading h2,
.contact-copy h2,
.proof-layout h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.28;
}

.section-heading.compact {
  margin-bottom: 58px;
}

.product-list {
  display: grid;
  gap: 0;
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
  padding: clamp(64px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}

.product:first-child {
  padding-top: 0;
}

.product:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product:nth-child(even) {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.82fr);
}

.product:nth-child(even) .product-copy {
  order: 2;
}

.product:nth-child(even) .product-visual {
  order: 1;
}

.product h3 {
  margin: 0;
  font-size: clamp(52px, 6.2vw, 88px);
  font-weight: 900;
  line-height: 0.95;
}

.uptitle {
  margin: 22px 0 20px;
  color: var(--accent-dark);
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-copy > p:not(.uptitle) {
  max-width: 540px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.45;
}

.signal-list {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.inline-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--accent-dark);
}

.product-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.product-plate {
  display: grid;
  align-content: space-between;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 78% 22%, rgba(98, 178, 179, 0.16), transparent 28%),
    var(--surface);
}

.product-plate::before,
.product-plate::after {
  content: "";
  position: absolute;
  inset: auto 0 30%;
  height: 1px;
  background: var(--line-strong);
}

.product-plate::after {
  inset: 30% 0 auto;
}

.product-plate span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.product-plate strong {
  position: relative;
  z-index: 1;
  max-width: 8ch;
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
}

.product-plate em {
  position: relative;
  z-index: 1;
  max-width: 360px;
  color: var(--ink-soft);
  font-size: clamp(20px, 2vw, 28px);
  font-style: normal;
  line-height: 1.18;
}

.plate-raccoon,
.plate-insurance {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.3)),
    radial-gradient(circle at 20% 28%, rgba(16, 54, 66, 0.08), transparent 32%),
    var(--surface);
}

.visual-topbar {
  display: flex;
  gap: 8px;
  height: 50px;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.visual-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d8e0e2;
}

.visual-topbar span:first-child {
  background: var(--accent);
}

.visual-columns {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 22px;
  height: calc(100% - 50px);
  min-height: 380px;
  padding: 24px;
}

.code-pane,
.flow-pane {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.code-pane {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 30px;
}

.line {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: #dce5e7;
}

.line.long {
  width: 100%;
}

.line.mid {
  width: 74%;
}

.line.short {
  width: 46%;
}

.line.teal {
  background: var(--accent);
}

.flow-pane {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 22px;
}

.flow-step {
  position: relative;
  min-height: 54px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8faf9;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-step.active,
.flow-step.fixed {
  border-color: var(--accent);
  background: rgba(98, 178, 179, 0.11);
  color: var(--ink);
}

.visual-network {
  display: grid;
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(16, 54, 66, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(16, 54, 66, 0.045) 1px, transparent 1px),
    var(--surface);
  background-size: 64px 64px;
}

.visual-control,
.visual-insure {
  display: grid;
  grid-template-rows: 50px 1fr;
  background: var(--surface);
}

.visual-control {
  min-height: 470px;
}

.control-shell {
  display: grid;
  grid-template-columns: 0.22fr 1fr;
  gap: 18px;
  padding: 22px;
}

.control-sidebar,
.control-main,
.policy-card,
.donut-chart,
.bar-chart {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.control-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 20px;
}

.control-sidebar b {
  font-size: 18px;
  line-height: 0.96;
}

.control-logo {
  width: 72px;
  height: auto;
  margin-bottom: 12px;
}

.control-sidebar span,
.policy-card span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #dce5e7;
}

.control-sidebar span:nth-child(2) {
  width: 78%;
  background: var(--accent);
}

.control-sidebar span:nth-child(3) {
  width: 92%;
}

.control-sidebar span:nth-child(4) {
  width: 58%;
}

.control-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 16px;
}

.control-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 26px;
}

.control-heading strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.control-heading span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.metric-card,
.traffic-panel,
.regions-panel,
.monitor-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.metric-card {
  display: grid;
  align-content: end;
  min-height: 66px;
  padding: 10px;
}

.metric-card span,
.traffic-panel > span,
.regions-panel > span,
.monitor-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.metric-card strong {
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(18px, 2.3vw, 25px);
  font-weight: 900;
  line-height: 0.9;
  white-space: nowrap;
}

.metric-card.alert strong {
  color: #cf2b2b;
}

.ops-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 10px;
}

.traffic-panel,
.regions-panel {
  min-height: 136px;
  padding: 12px;
}

.traffic-panel svg {
  width: 100%;
  height: 104px;
  margin-top: 6px;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: #edf2f2;
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.regions-panel {
  display: grid;
  align-content: start;
  gap: 8px;
}

.regions-panel div {
  display: grid;
  grid-template-columns: 58px 1fr 24px;
  align-items: center;
  gap: 7px;
}

.regions-panel b,
.regions-panel em {
  color: var(--ink-soft);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.regions-panel i {
  height: 5px;
  border-radius: 999px;
  background: #e7eeee;
}

.regions-panel i::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.monitor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.monitor-card {
  display: grid;
  align-content: center;
  min-height: 56px;
  padding: 12px 12px 12px 30px;
  position: relative;
}

.monitor-card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.monitor-card strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.bar-chart span {
  flex: 1;
  min-height: 34px;
  border-radius: 999px 999px 0 0;
  background: #dce5e7;
}

.bar-chart span:nth-child(3) {
  min-height: 72px;
  background: var(--accent);
}

.bar-chart span:nth-child(4) {
  min-height: 118px;
  background: var(--logo-dark);
}

.insure-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  grid-template-rows: 1fr 0.72fr;
  gap: 20px;
  padding: 24px;
}

.policy-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
}

.policy-card strong {
  font-size: 24px;
}

.policy-card span:nth-child(2) {
  width: 88%;
}

.policy-card span:nth-child(3) {
  width: 62%;
  background: var(--accent);
}

.policy-card span:nth-child(4) {
  width: 74%;
}

.donut-chart {
  display: grid;
  place-items: center;
}

.donut-chart::before {
  content: "";
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0 62%, #dce5e7 62% 84%, var(--logo-dark) 84% 100%);
  -webkit-mask: radial-gradient(circle, transparent 48%, #000 50%);
  mask: radial-gradient(circle, transparent 48%, #000 50%);
}

.bar-chart {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: 18px;
  padding: 24px 28px;
}

.privacy-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  min-height: 360px;
  padding: 28px;
  background:
    radial-gradient(circle at 22% 48%, rgba(98, 178, 179, 0.16), transparent 27%),
    radial-gradient(circle at 78% 28%, rgba(16, 54, 66, 0.07), transparent 28%),
    transparent;
}

.vpn-device,
.vpn-network {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.vpn-device {
  display: grid;
  align-content: space-between;
  min-height: 312px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 45%, rgba(98, 178, 179, 0.18), transparent 42%),
    linear-gradient(180deg, #fff, #f8fbfb);
}

.vpn-device-top,
.vpn-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--logo-dark);
  font-weight: 900;
}

.vpn-device-top strong {
  font-size: 18px;
}

.vpn-device-top span {
  padding: 8px 12px;
  border: 1px solid rgba(98, 178, 179, 0.45);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 11px;
  text-transform: uppercase;
}

.vpn-status {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 8px 0 14px;
  text-align: center;
}

.vpn-ring {
  display: grid;
  place-items: center;
  width: min(68%, 172px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, #fff 0 49%, transparent 50%),
    conic-gradient(from 142deg, #dfe8ea 0 24%, var(--accent) 24% 100%);
  box-shadow: inset 0 0 0 1px rgba(16, 54, 66, 0.05);
}

.vpn-lock {
  position: relative;
  width: 34px;
  height: 28px;
  transform: translateY(9px);
  border: 4px solid var(--logo-dark);
  border-radius: 10px;
}

.vpn-lock::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 24px;
  height: 24px;
  transform: translateX(-50%);
  border: 4px solid var(--logo-dark);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.vpn-status strong {
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
}

.vpn-status span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vpn-route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  font-size: 12px;
  text-transform: uppercase;
}

.vpn-route i {
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.vpn-network {
  position: relative;
  min-height: 312px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(16, 54, 66, 0.052) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 54, 66, 0.052) 1px, transparent 1px),
    #f8fbfb;
  background-size: 72px 72px;
}

.vpn-network svg {
  position: absolute;
  inset: 26px 18px 68px;
  width: calc(100% - 36px);
  height: calc(100% - 94px);
}

.network-grid,
.network-glow,
.network-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.network-grid {
  stroke: rgba(16, 54, 66, 0.08);
  stroke-width: 1.2;
}

.network-glow {
  stroke: rgba(98, 178, 179, 0.16);
  stroke-width: 22;
}

.network-line {
  stroke: var(--accent);
  stroke-width: 6;
}

.network-node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 58px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(16, 54, 66, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--logo-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.node-a {
  left: 44px;
  top: 160px;
}

.node-b {
  left: 54%;
  top: 82px;
  transform: translateX(-50%);
}

.node-c {
  right: 42px;
  top: 54px;
  border-color: rgba(98, 178, 179, 0.55);
  color: var(--accent-dark);
}

.vpn-apps {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.vpn-apps span {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--logo-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.store-row span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.store-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.store-row span {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 999px;
  background: var(--logo-dark);
  color: #fff;
}

.method {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.method-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.method-step {
  min-height: 218px;
  padding: 30px 26px 22px 0;
  border-right: 1px solid var(--line);
}

.method-step:last-child {
  border-right: 0;
}

.method-step span {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.method-step strong {
  display: block;
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 900;
  line-height: 1;
}

.method-step p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.35;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(36px, 7vw, 108px);
  align-items: start;
}

.proof-layout h2 {
  max-width: 680px;
}

.proof-text p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
}

.proof-metric {
  margin-top: 46px;
  padding: 4px 0 2px 28px;
  border-left: 4px solid var(--accent);
}

.proof-metric strong {
  display: block;
  max-width: 620px;
  font-size: clamp(46px, 5.8vw, 84px);
  font-weight: 900;
  line-height: 0.92;
  text-wrap: balance;
}

.proof-metric span {
  display: block;
  max-width: 420px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.35;
}

.contact {
  padding-top: clamp(90px, 10vw, 150px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #f8faf9 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: stretch;
}

.contact-copy h2 {
  margin-bottom: 34px;
}

.contact-intro {
  max-width: 470px;
  margin: -10px 0 30px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.38;
}

address {
  display: grid;
  gap: 9px;
  margin: 0;
  color: var(--ink-soft);
  font-style: normal;
  font-size: 20px;
  line-height: 1.36;
}

address a {
  color: var(--ink);
  font-weight: 900;
}

.legal {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--accent-dark);
  transition: background 160ms ease, color 160ms ease;
}

.social-links .linkedin-mark {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}

.social-links svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.map-panel {
  position: relative;
  align-self: center;
  height: 400px;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid #e1e5e6;
  border-radius: 0;
  background: #eef1f1;
  box-shadow: var(--shadow-soft);
}

.ankara-map {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.map-location {
  position: absolute;
  left: 52%;
  top: 50%;
  display: grid;
  justify-items: center;
  gap: 10px;
  transform: translate(-50%, -74%);
  pointer-events: none;
}

.map-location strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

.map-location span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--accent);
  box-shadow:
    0 0 0 1px rgba(8, 159, 163, 0.18),
    0 12px 30px rgba(16, 54, 66, 0.2);
}

.map-location span::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(98, 178, 179, 0.42);
  border-radius: 999px;
}

.map-location span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  width: 1px;
  height: 30px;
  transform: translateX(-50%);
  background: linear-gradient(rgba(98, 178, 179, 0.45), rgba(98, 178, 179, 0));
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer a {
  color: var(--ink);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.link-page {
  background: #fff;
}

.link-page .site-header .brand,
.link-page .site-header .nav-links,
.link-page .site-header .contact-link {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.link-hero {
  padding: calc(var(--header) + clamp(56px, 8vw, 104px)) 0 clamp(74px, 9vw, 122px);
  background:
    linear-gradient(90deg, rgba(16, 54, 66, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(16, 54, 66, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #fff 72%, #f8faf9 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.link-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-width: 0;
}

.link-hero-copy {
  min-width: 0;
}

.link-hero-copy h1,
.split-heading h2,
.launch-layout h2,
.model-copy h2,
.link-final h2 {
  margin: 0;
  font-size: clamp(48px, 6.8vw, 92px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.link-hero-copy p {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.32;
}

.link-actions {
  justify-content: start;
  margin-top: 34px;
}

.link-console {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.link-console-body {
  display: grid;
  grid-template-columns: 156px 1fr;
  gap: 16px;
  min-height: 520px;
  padding: 18px;
}

.link-console-side,
.link-console-main,
.console-metrics div,
.console-chart,
.console-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.link-console-side {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.link-console-side strong {
  margin-bottom: 14px;
  font-size: 19px;
  font-weight: 900;
}

.link-console-side span {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.link-console-side span.active {
  background: rgba(98, 178, 179, 0.14);
  color: var(--accent-dark);
}

.link-console-main {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
}

.console-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.console-heading strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.console-heading span,
.console-heading em,
.console-metrics span,
.console-chart > span,
.console-list > span {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.console-heading span {
  display: block;
  margin-top: 8px;
}

.console-heading em {
  padding: 9px 12px;
  border: 1px solid rgba(98, 178, 179, 0.44);
  border-radius: 999px;
  color: var(--accent-dark);
  white-space: nowrap;
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.console-metrics div {
  display: grid;
  align-content: end;
  min-height: 104px;
  padding: 14px;
}

.console-metrics strong {
  margin-top: 14px;
  font-size: clamp(26px, 2.35vw, 36px);
  font-weight: 900;
  line-height: 0.9;
  white-space: nowrap;
}

.console-work {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
}

.console-chart,
.console-list {
  min-height: 220px;
  padding: 16px;
}

.console-chart svg {
  width: 100%;
  height: 150px;
  margin-top: 18px;
}

.console-chart path {
  fill: none;
  stroke: #edf2f2;
  stroke-width: 2;
}

.console-chart polyline {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.console-list {
  display: grid;
  align-content: start;
  gap: 14px;
}

.console-list p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.console-list b,
.console-list em {
  color: var(--ink-soft);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.console-list i {
  grid-column: 1 / -1;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0 74%, #e7eeee 74%);
}

.link-band,
.responsibility-section {
  padding: clamp(84px, 10vw, 156px) 0;
}

.link-band {
  background: #fff;
}

.split-heading,
.launch-layout,
.model-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.split-heading p,
.launch-layout > div > p,
.model-copy p,
.link-final p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.38;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(46px, 7vw, 84px);
  background: var(--line);
  border: 1px solid var(--line);
}

.capability-grid article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
}

.capability-grid span,
.launch-list span {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.capability-grid h3,
.responsibility-grid h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.capability-grid p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.42;
}

.link-section,
.model-section {
  padding: clamp(84px, 10vw, 156px) 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.launch-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.launch-list li {
  padding: 26px 0;
  border-bottom: 1px solid var(--line-strong);
}

.launch-list span {
  margin-bottom: 16px;
}

.launch-list strong {
  display: block;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 900;
  line-height: 1;
}

.launch-list p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.4;
}

.model-section {
  border-top: 0;
  background: #fff;
}

.model-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 14%, rgba(98, 178, 179, 0.15), transparent 28%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.model-card strong {
  display: block;
  font-size: clamp(76px, 9vw, 126px);
  font-weight: 900;
  line-height: 0.86;
}

.model-card span {
  display: block;
  max-width: 360px;
  margin-top: 20px;
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.model-card p {
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.44;
}

.responsibility-section {
  background: var(--surface-soft);
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: clamp(44px, 6vw, 72px);
  background: var(--line);
  border: 1px solid var(--line);
}

.responsibility-grid article {
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
}

.responsibility-grid ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.responsibility-grid li {
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.32;
}

.responsibility-grid li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.link-final {
  padding: clamp(82px, 10vw, 150px) 0;
  background: #fff;
  text-align: center;
}

.link-final-inner {
  display: grid;
  justify-items: center;
}

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

.link-final p {
  max-width: 720px;
  margin-top: 26px;
}

.link-final .button {
  margin-top: 34px;
}

@keyframes cue {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .contact-link {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 64px;
  }

  .product,
  .product-privacy,
  .product:nth-child(even),
  .proof-layout,
  .contact-layout,
  .link-hero-layout,
  .split-heading,
  .launch-layout,
  .model-layout {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .link-hero {
    padding-top: calc(var(--header) + 44px);
  }

  .link-actions {
    justify-content: start;
  }

  .link-console-body {
    grid-template-columns: 1fr;
    min-height: auto;
    min-width: 0;
  }

  .link-console-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
  }

  .link-console-side strong {
    grid-column: 1 / -1;
  }

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

  .product-privacy .product-copy,
  .product-privacy .product-visual,
  .product:nth-child(even) .product-copy,
  .product:nth-child(even) .product-visual {
    order: initial;
  }

  .product-visual {
    min-height: 360px;
    width: 100%;
    min-width: 0;
  }

  .method-line {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .method-step {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-top: 1px solid var(--line-strong);
  }

  .method-step span {
    margin-bottom: 18px;
  }
}

@media (max-width: 680px) {
  :root {
    --header: 62px;
  }

  .container,
  .hero-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header {
    padding: 0 16px;
  }

  .brand span {
    display: none;
  }

  .hero-logo {
    width: min(78vw, 320px);
    margin-bottom: 74px;
    transform: translateX(clamp(16px, 7vw, 32px));
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(44px, 12vw, 54px);
    line-height: 0.96;
  }

  .hero p {
    max-width: 340px;
    font-size: 20px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .button {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .teal-rule {
    height: 4px;
  }

  .statement {
    padding-top: 70px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .contact-copy h2,
  .proof-layout h2 {
    font-size: 46px;
  }

  .section-heading p {
    margin-top: 20px;
    font-size: 22px;
  }

  .product-list {
    gap: 62px;
  }

  .product {
    gap: 30px;
    padding-bottom: 62px;
    padding-top: 62px;
  }

  .product:first-child {
    padding-top: 0;
  }

  .product h3 {
    font-size: 48px;
  }

  .product-plate {
    min-height: 340px;
    padding: 28px;
  }

  .product-plate strong {
    max-width: 100%;
    font-size: clamp(46px, 13vw, 64px);
  }

  .product-plate em {
    font-size: 20px;
  }

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

  .control-shell,
  .insure-grid,
  .privacy-preview,
  .console-work,
  .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .link-page .contact-link {
    display: none;
  }

  .link-hero-copy h1,
  .split-heading h2,
  .launch-layout h2,
  .model-copy h2,
  .link-final h2 {
    font-size: 42px;
    line-height: 1;
  }

  .link-hero-copy p,
  .split-heading p,
  .launch-layout > div > p,
  .model-copy p,
  .link-final p {
    font-size: 19px;
  }

  .link-console-body {
    padding: 12px;
  }

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

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

  .control-sidebar {
    min-height: auto;
  }

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

  .ops-grid,
  .monitor-grid {
    grid-template-columns: 1fr;
  }

  .visual-control {
    min-height: 720px;
  }

  .bar-chart {
    min-height: 120px;
  }

  .vpn-device,
  .vpn-network {
    min-height: 300px;
  }

  .store-row {
    grid-template-columns: 1fr;
  }

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

  .flow-step {
    min-height: 48px;
    padding: 15px 14px;
  }

  .map-panel {
    height: 340px;
    min-height: 340px;
  }

  address {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .language-toggle {
    padding: 0 10px;
  }

  .language-toggle svg {
    display: none;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: 42px;
  }

  .hero p,
  .statement p,
  .product-copy > p:not(.uptitle) {
    font-size: 19px;
  }

  .section-heading h2,
  .contact-copy h2,
  .proof-layout h2 {
    font-size: 40px;
  }

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

  .link-page .contact-link {
    display: none;
  }

  .link-hero-copy h1,
  .split-heading h2,
  .launch-layout h2,
  .model-copy h2,
  .link-final h2 {
    font-size: 38px;
  }

  .link-actions .button {
    width: 100%;
  }

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

  .link-console-main,
  .console-metrics div,
  .console-chart,
  .console-list {
    min-width: 0;
  }

  .link-console-side span {
    min-height: 32px;
    font-size: 10px;
  }

  .console-heading,
  .console-list p {
    grid-template-columns: 1fr;
  }

  .console-heading {
    display: grid;
  }

  .console-heading em {
    display: none;
  }
}

/* Qat Link product page: refined product-marketing system */
.link-page {
  --link-page-max: 1120px;
  --link-text: #071014;
  --link-muted: #697477;
  --link-soft: #f6f8f8;
  --link-panel: #ffffff;
  background: #fff;
  color: var(--link-text);
}

.link-page .container {
  width: min(calc(100% - 48px), var(--link-page-max));
}

.link-page .site-header .brand,
.link-page .site-header .nav-links,
.link-page .site-header .contact-link {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.link-page .contact-link {
  min-width: 130px;
  justify-content: center;
}

html[lang="ru"] .link-page {
  --link-page-max: 1080px;
}

html[lang="ru"] .link-hero h1 {
  max-width: 860px;
  font-size: clamp(48px, 5.6vw, 74px);
  line-height: 1.04;
}

html[lang="ru"] .link-lede {
  max-width: 780px;
  font-size: clamp(20px, 1.85vw, 25px);
}

html[lang="ru"] .app-copy h2,
html[lang="ru"] .income-copy h2,
html[lang="ru"] .opportunity-copy h2,
html[lang="ru"] .link-section-heading h2 {
  font-size: clamp(38px, 4.35vw, 56px);
  line-height: 1.06;
}

html[lang="ru"] .final-panel h2 {
  font-size: clamp(32px, 3.55vw, 48px);
}

html[lang="ru"] .system-core em {
  max-width: 220px;
}

.link-label {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.link-hero {
  padding: calc(var(--header) + 72px) 0 82px;
  background:
    linear-gradient(90deg, rgba(16, 54, 66, 0.032) 1px, transparent 1px),
    linear-gradient(rgba(16, 54, 66, 0.032) 1px, transparent 1px),
    #fff;
  background-size: 72px 72px;
}

.link-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.link-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 84px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.link-lede {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.34;
  text-wrap: balance;
}

.link-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 820px);
  margin-top: 44px;
  border-block: 1px solid var(--line-strong);
}

.hero-proof div {
  padding: 22px 24px;
}

.hero-proof div + div {
  border-left: 1px solid var(--line-strong);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--link-text);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  line-height: 0.95;
}

.hero-proof span {
  max-width: 170px;
  margin: 10px auto 0;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
}

.link-system {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
  gap: 18px;
  width: min(100%, 980px);
  margin-top: clamp(56px, 8vw, 92px);
}

.link-system::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 50%;
  height: 1px;
  background: var(--line-strong);
}

.system-panel,
.system-core {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.system-panel {
  display: grid;
  gap: 14px;
  min-height: 312px;
  padding: 22px;
  border-radius: 8px;
  text-align: left;
}

.system-panel h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}

.system-panel div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.system-panel strong,
.system-panel span,
.system-core strong,
.system-core em {
  display: block;
}

.system-panel strong {
  font-size: 16px;
  font-weight: 900;
}

.system-panel span {
  margin-top: 6px;
  color: var(--link-muted);
  font-size: 14px;
  line-height: 1.3;
}

.system-core {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 312px;
  padding: 24px;
  border-radius: 18px;
  text-align: center;
}

.link-mark {
  display: block;
  width: 46px;
  aspect-ratio: 1;
  margin-bottom: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 38%, transparent 39%),
    conic-gradient(from 30deg, var(--accent) 0 68%, var(--logo-dark) 68% 100%);
  box-shadow: inset 0 0 0 1px rgba(16, 54, 66, 0.08);
}

.system-core strong {
  font-size: 26px;
  font-weight: 900;
}

.system-core em {
  max-width: 194px;
  margin-top: 8px;
  color: var(--link-muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.28;
}

.link-app-section,
.link-income,
.link-opportunity,
.link-platform,
.link-launch,
.link-model,
.link-roles,
.link-final {
  padding: clamp(86px, 10vw, 144px) 0;
}

.link-income {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(16, 54, 66, 0.028) 1px, transparent 1px),
    linear-gradient(rgba(16, 54, 66, 0.028) 1px, transparent 1px),
    #fff;
  background-size: 72px 72px;
}

.income-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  grid-template-areas:
    "copy result"
    "controls result";
  gap: clamp(30px, 4vw, 48px) clamp(34px, 5vw, 58px);
  align-items: stretch;
  padding: clamp(28px, 4.4vw, 48px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.income-copy {
  grid-area: copy;
  align-self: start;
}

.income-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.income-copy p:not(.link-label) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.42;
}

.income-controls {
  grid-area: controls;
  display: grid;
  align-content: center;
  gap: 30px;
  min-width: 0;
}

.forecast-control {
  min-width: 0;
}

.forecast-control-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.forecast-control label,
.forecast-control-head label {
  color: var(--link-muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.forecast-control output {
  color: var(--link-text);
  font-size: clamp(38px, 4.3vw, 54px);
  font-weight: 900;
  line-height: 0.92;
}

.forecast-clients input[type="range"] {
  --forecast-progress: 40%;
  width: 100%;
  height: 16px;
  margin: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-dark) 0 var(--forecast-progress), #dce5e7 var(--forecast-progress) 100%);
  appearance: none;
  cursor: pointer;
}

.forecast-clients input[type="range"]:focus-visible {
  outline: 3px solid rgba(8, 159, 163, 0.18);
  outline-offset: 6px;
}

.forecast-clients input[type="range"]::-webkit-slider-thumb {
  width: 34px;
  height: 34px;
  border: 8px solid #fff;
  border-radius: 50%;
  background: var(--accent-dark);
  box-shadow: 0 10px 26px rgba(8, 13, 16, 0.16);
  appearance: none;
}

.forecast-clients input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 8px solid #fff;
  border-radius: 50%;
  background: var(--accent-dark);
  box-shadow: 0 10px 26px rgba(8, 13, 16, 0.16);
}

.forecast-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: var(--link-muted);
  font-size: 12px;
  font-weight: 850;
}

.forecast-price {
  display: grid;
  gap: 12px;
}

.forecast-price-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 76px;
  padding: 0 18px 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
}

.forecast-price-input:focus-within {
  border-color: rgba(8, 159, 163, 0.55);
  box-shadow: 0 0 0 4px rgba(8, 159, 163, 0.1);
}

.forecast-price-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--link-text);
  font-size: clamp(34px, 4.1vw, 48px);
  font-weight: 900;
  line-height: 1;
  appearance: textfield;
}

.forecast-price-input input::-webkit-inner-spin-button,
.forecast-price-input input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.forecast-price-input span {
  color: var(--accent-dark);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1;
}

.income-result {
  grid-area: result;
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(24px, 3.4vw, 36px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(98, 178, 179, 0.2), rgba(98, 178, 179, 0) 46%),
    var(--link-text);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.income-result span,
.income-result em,
.income-result p {
  color: rgba(255, 255, 255, 0.72);
}

.income-result span {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.income-result strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(48px, 5.6vw, 76px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  white-space: nowrap;
}

.income-result strong.is-compact {
  font-size: clamp(40px, 4.6vw, 60px);
}

.income-result strong.is-dense {
  font-size: clamp(32px, 3.7vw, 46px);
  line-height: 0.98;
}

.income-result em {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25;
}

.income-result p {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  line-height: 1.38;
}

.link-opportunity {
  border-top: 1px solid var(--line);
  background: #fff;
}

.opportunity-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.05fr);
  gap: clamp(46px, 8vw, 108px);
  align-items: start;
}

.opportunity-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.opportunity-copy p:not(.link-label) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.42;
}

.opportunity-list {
  border-top: 1px solid var(--line-strong);
}

.opportunity-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-strong);
}

.opportunity-list span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.opportunity-list h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.05;
}

.opportunity-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.45;
}

.link-app-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--link-soft);
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(42px, 8vw, 104px);
  align-items: center;
}

.app-copy h2,
.income-copy h2,
.link-section-heading h2,
.model-split h2,
.final-panel h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.app-copy > p:not(.link-label),
.income-copy > p:not(.link-label),
.link-section-heading p:not(.link-label),
.model-split > div > p,
.final-panel p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.4;
}

.app-points {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.app-points li {
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.32;
}

.app-points li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.phone-stage {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 0.72fr;
  gap: 22px;
  align-items: center;
  min-height: 620px;
}

.phone-stage::before {
  content: "";
  position: absolute;
  inset: 10% -12% 8% 10%;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(98, 178, 179, 0.18), rgba(255, 255, 255, 0));
}

.phone {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  width: 100%;
  min-width: 0;
  aspect-ratio: 0.49;
  padding: 22px;
  border: 8px solid #101719;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(8, 13, 16, 0.14);
}

.phone-main {
  max-width: 312px;
  justify-self: end;
}

.phone-side {
  max-width: 244px;
  justify-self: start;
  transform: translateY(38px);
  opacity: 0.92;
}

.phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.phone-bar span:last-child {
  width: 46px;
  height: 13px;
  border-radius: 999px;
  background: var(--ink);
}

.phone > strong {
  font-size: 24px;
  font-weight: 900;
}

.phone > p {
  margin: 8px 0 24px;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 900;
}

.connect-button {
  display: grid;
  place-items: center;
  width: min(100%, 178px);
  aspect-ratio: 1;
  margin: 4px auto 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 48%, transparent 49%),
    conic-gradient(from 135deg, var(--accent) 0 78%, #dce5e7 78% 100%);
}

.connect-button span {
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--logo-dark);
}

.phone-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.phone-card + .phone-card {
  margin-top: 10px;
}

.phone-card span,
.phone-card em {
  display: block;
  color: var(--link-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-card strong {
  display: block;
  margin: 8px 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.phone-card.muted {
  background: var(--link-soft);
}

.phone-search {
  margin: 20px 0 14px;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--link-soft);
  color: var(--link-muted);
  font-size: 12px;
  font-weight: 900;
}

.phone ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.phone li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.phone li b,
.phone li span {
  display: block;
}

.phone li b {
  font-size: 13px;
  font-weight: 900;
}

.phone li span {
  margin-top: 4px;
  color: var(--link-muted);
  font-size: 12px;
}

.link-section-heading {
  max-width: 760px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

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

.platform-grid article,
.roles-grid article,
.revenue-card {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.platform-grid article {
  min-height: 220px;
  padding: 26px;
}

.platform-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--link-muted);
  font-size: 12px;
  font-weight: 900;
}

.platform-grid h3,
.launch-track h3,
.roles-grid h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.05;
}

.platform-grid p,
.launch-track p,
.roles-grid li,
.revenue-card p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.42;
}

.link-launch,
.link-roles {
  border-block: 1px solid var(--line);
  background: var(--link-soft);
}

.launch-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.launch-track article {
  min-width: 0;
  min-height: 230px;
  padding: 26px 22px 0 0;
  border-right: 1px solid var(--line-strong);
}

.launch-track article:last-child {
  border-right: 0;
}

.launch-track span {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  margin-bottom: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.launch-track h3 {
  max-width: 100%;
  font-size: clamp(20px, 1.55vw, 24px);
  overflow-wrap: anywhere;
  hyphens: auto;
}

html[lang="ru"] .launch-track h3 {
  font-size: clamp(20px, 1.45vw, 23px);
  line-height: 1.08;
}

.link-model {
  background: #fff;
}

.model-story {
  max-width: 1040px;
  text-align: center;
}

.model-copy {
  max-width: 760px;
  margin: 0 auto;
}

.model-story h2 {
  margin: 0;
  font-size: clamp(54px, 7.4vw, 92px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

html[lang="ru"] .model-story h2 {
  font-size: clamp(50px, 7vw, 88px);
  line-height: 0.98;
}

.model-copy > p:not(.link-label) {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.36;
  text-wrap: balance;
}

.model-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin: clamp(52px, 7vw, 82px) auto 0;
  border-block: 1px solid var(--line-strong);
}

.model-stat {
  padding: clamp(34px, 4.4vw, 54px) 34px clamp(36px, 4.8vw, 60px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.model-stat + .model-stat {
  border-left: 1px solid var(--line-strong);
}

.model-stat strong {
  display: block;
  color: var(--link-text);
  font-size: clamp(84px, 10vw, 132px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.model-stat.revenue-card strong {
  font-size: clamp(70px, 7.8vw, 108px);
}

.model-stat span {
  display: block;
  max-width: 280px;
  margin: 20px auto 0;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.model-note {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.48;
  text-wrap: balance;
}

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

.roles-grid article {
  padding: 34px;
}

.roles-grid ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.roles-grid li {
  display: flex;
  gap: 12px;
  margin: 0;
}

.roles-grid li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.link-final {
  background: #fff;
  text-align: left;
}

.final-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--link-soft);
}

.final-panel .link-mark {
  margin: 0;
}

.final-panel h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.final-panel p {
  max-width: 680px;
  margin-top: 14px;
  font-size: 18px;
}

@media (max-width: 980px) {
  .link-page .container {
    width: min(calc(100% - 36px), var(--link-page-max));
  }

  .link-page .contact-link {
    display: none;
  }

  .link-hero {
    padding-top: calc(var(--header) + 48px);
  }

  .link-hero-inner {
    justify-items: start;
    text-align: left;
  }

  .link-hero h1 {
    font-size: clamp(42px, 9vw, 60px);
  }

  .link-lede {
    text-wrap: initial;
  }

  .link-actions {
    justify-content: flex-start;
  }

  .hero-proof div {
    text-align: left;
  }

  .hero-proof span {
    margin-left: 0;
    margin-right: 0;
  }

  .link-system,
  .app-layout,
  .income-panel,
  .opportunity-layout,
  .roles-grid,
  .final-panel {
    grid-template-columns: 1fr;
  }

  .link-system::before {
    left: 50%;
    right: auto;
    top: 18%;
    bottom: 18%;
    width: 1px;
    height: auto;
  }

  .system-core {
    order: -1;
    min-height: 220px;
  }

  .system-panel {
    min-height: auto;
  }

  .phone-stage {
    min-height: 560px;
  }

  .income-panel {
    grid-template-areas:
      "copy"
      "controls"
      "result";
    gap: 34px;
  }

  .income-copy p:not(.link-label) {
    max-width: 680px;
  }

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

  .opportunity-list article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .opportunity-list p {
    grid-column: 2;
  }

  .launch-track {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .launch-track article {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid var(--line-strong);
  }

  .launch-track span {
    margin-bottom: 16px;
  }

  .final-panel {
    justify-items: start;
  }

  .model-stats {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .link-page .container {
    width: min(calc(100% - 32px), var(--link-page-max));
  }

  .link-hero {
    padding-bottom: 66px;
  }

  .link-hero h1 {
    width: 100%;
    max-width: 360px;
    font-size: 34px;
    line-height: 1.06;
    text-wrap: initial;
  }

  .link-lede {
    max-width: 360px;
  }

  html[lang="ru"] .link-lede {
    max-width: 360px;
  }

  .link-hero-inner {
    justify-items: center;
    text-align: center;
    overflow: hidden;
  }

  .link-page {
    overflow-x: hidden;
  }

  .link-page main {
    overflow-x: hidden;
  }

  html[lang="ru"] .link-hero h1 {
    max-width: 360px;
    font-size: 33px;
    line-height: 1.08;
  }

  html[lang="ru"] .app-copy h2,
  html[lang="ru"] .income-copy h2,
  html[lang="ru"] .opportunity-copy h2,
  html[lang="ru"] .link-section-heading h2,
  html[lang="ru"] .model-story h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .link-lede,
  .app-copy > p:not(.link-label),
  .income-copy > p:not(.link-label),
  .link-section-heading p:not(.link-label) {
    font-size: 18px;
  }

  .link-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .link-actions .button {
    width: 100%;
    margin: 0;
  }

  .link-system {
    gap: 12px;
    margin-top: 48px;
  }

  .system-core {
    min-height: 190px;
  }

  .system-panel {
    padding: 20px;
  }

  .link-app-section,
  .link-income,
  .link-opportunity,
  .link-platform,
  .link-launch,
  .link-model,
  .link-roles,
  .link-final {
    padding: 72px 0;
  }

  .app-copy h2,
  .income-copy h2,
  .opportunity-copy h2,
  .link-section-heading h2 {
    font-size: 36px;
  }

  .income-panel {
    padding: 24px;
  }

  .forecast-control-head {
    align-items: flex-start;
  }

  .forecast-control output {
    font-size: 36px;
  }

  .forecast-price-input {
    min-height: 68px;
  }

  .income-result {
    min-height: auto;
  }

  .income-result strong {
    font-size: clamp(44px, 14vw, 58px);
  }

  .income-result strong.is-compact {
    font-size: clamp(32px, 10vw, 42px);
  }

  .income-result strong.is-dense {
    font-size: clamp(26px, 8vw, 34px);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .hero-proof div {
    padding: 18px 0;
    text-align: center;
  }

  .hero-proof div + div {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }

  .hero-proof span {
    margin-left: auto;
    margin-right: auto;
  }

  .opportunity-list article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .opportunity-list p {
    grid-column: auto;
  }

  .phone-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .phone-stage::before {
    inset: 8% -14% 6%;
  }

  .phone-main,
  .phone-side {
    max-width: 286px;
    justify-self: center;
  }

  .phone-side {
    display: none;
  }

  .platform-grid,
  .roles-grid {
    grid-template-columns: 1fr;
  }

  .platform-grid article,
  .roles-grid article {
    padding: 24px;
  }

  .model-story {
    text-align: left;
  }

  .model-copy > p:not(.link-label) {
    margin-left: 0;
    font-size: 18px;
    text-wrap: initial;
  }

  .model-stats {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .model-stat {
    padding: 30px 0 32px;
  }

  .model-stat + .model-stat {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }

  .model-stat strong,
  .model-stat.revenue-card strong {
    font-size: 70px;
  }

  .model-stat span {
    max-width: 280px;
    margin-left: 0;
  }

  .model-note {
    margin-left: 0;
    font-size: 16px;
    text-wrap: initial;
  }

  .final-panel {
    padding: 28px;
  }

  .final-panel h2 {
    font-size: 34px;
  }
}

/* Qat Link refund policy */
.link-refund-page {
  background: var(--link-soft);
}

.link-refund-page .site-header .brand,
.link-refund-page .site-header .nav-links,
.link-refund-page .site-header .contact-link {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.refund-hero {
  min-height: calc(100vh - var(--header));
  padding: calc(var(--header) + 56px) 0 86px;
  background:
    linear-gradient(90deg, rgba(16, 54, 66, 0.032) 1px, transparent 1px),
    linear-gradient(rgba(16, 54, 66, 0.032) 1px, transparent 1px),
    var(--link-soft);
  background-size: 72px 72px;
}

.refund-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.refund-summary,
.refund-policy {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.refund-summary {
  position: sticky;
  top: calc(var(--header) + 28px);
  padding: clamp(24px, 3vw, 34px);
}

.refund-summary .link-mark {
  margin-bottom: 24px;
}

.refund-summary h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.refund-summary p:not(.link-label) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.48;
}

.refund-policy {
  padding: clamp(28px, 4.5vw, 56px);
}

.refund-policy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.refund-effective {
  margin: 18px 0 42px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.refund-policy section {
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
}

.refund-policy section + section {
  margin-top: 30px;
}

.refund-policy h2 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.refund-policy p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.58;
}

.refund-policy a {
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .refund-layout {
    grid-template-columns: 1fr;
  }

  .refund-summary {
    position: static;
  }
}

@media (max-width: 680px) {
  .link-refund-page .nav-links {
    display: none;
  }

  .refund-hero {
    padding: calc(var(--header) + 32px) 0 64px;
  }

  .refund-policy,
  .refund-summary {
    padding: 24px;
  }

  .refund-policy h1 {
    font-size: 36px;
  }

  .refund-policy p,
  .refund-summary p:not(.link-label) {
    font-size: 16px;
  }
}
