:root {
  /* ===== OneHitVPN Design System ===== */
  --oh-bg: #070a12;
  --oh-bg-2: #0b1020;
  --oh-surface: rgba(13, 18, 34, 0.72);
  --oh-surface-2: rgba(15, 23, 42, 0.78);
  --oh-border: rgba(148, 163, 184, 0.16);
  --oh-border-strong: rgba(148, 163, 184, 0.26);

  --oh-text: #e7ecff;
  --oh-muted: rgba(231, 236, 255, 0.72);
  --oh-muted-2: rgba(231, 236, 255, 0.55);

  /* Accent: restrained “cyber” (no кислотность) */
  --oh-accent: #5b7cff;
  --oh-accent-2: #8aa0ff;
  --oh-accent-ink: #0b1020;
  --oh-good: #31d0aa;
  --oh-danger: #ff6b8b;

  --oh-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --oh-shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.35);

  --oh-radius-xl: 28px;
  --oh-radius-lg: 18px;
  --oh-radius-md: 14px;
  --oh-radius-sm: 12px;

  --oh-container: 1160px;

  /* Spacing scale */
  --oh-s-1: 6px;
  --oh-s-2: 10px;
  --oh-s-3: 14px;
  --oh-s-4: 18px;
  --oh-s-5: 24px;
  --oh-s-6: 32px;
  --oh-s-7: 44px;
  --oh-s-8: 64px;

  /* Typography */
  --oh-font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --oh-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

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

body {
  margin: 0;
  color: var(--oh-text);
  background: radial-gradient(1200px 900px at 15% -10%, rgba(91, 124, 255, 0.28), transparent 50%),
    radial-gradient(1000px 800px at 90% 0%, rgba(49, 208, 170, 0.14), transparent 55%),
    radial-gradient(900px 700px at 60% 105%, rgba(138, 160, 255, 0.12), transparent 60%),
    linear-gradient(180deg, var(--oh-bg) 0%, #05060b 65%, #04040a 100%);
  font-family: var(--oh-font);
  line-height: 1.55;
  letter-spacing: 0.01em;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Accessibility ===== */
.oh-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.oh-skip:focus {
  position: fixed;
  left: 14px;
  top: 14px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--oh-border-strong);
  color: var(--oh-text);
  z-index: 1000;
}

/* ===== Background layers ===== */
.oh-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.oh-bg__grid {
  position: absolute;
  inset: -2px;
  opacity: 0.18;
  background-image: linear-gradient(to right, rgba(231, 236, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(231, 236, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(800px 480px at 25% 10%, rgba(0, 0, 0, 1), transparent 70%);
}
.oh-bg__glow {
  position: absolute;
  width: 820px;
  height: 820px;
  filter: blur(36px);
  opacity: 0.35;
  border-radius: 50%;
}
.oh-bg__glow--a {
  left: -260px;
  top: -260px;
  background: radial-gradient(circle at 30% 30%, rgba(91, 124, 255, 0.75), transparent 55%);
}
.oh-bg__glow--b {
  right: -320px;
  top: -220px;
  background: radial-gradient(circle at 40% 40%, rgba(49, 208, 170, 0.46), transparent 60%);
}
.oh-bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  background-size: 260px 260px;
}

/* ===== Layout helpers ===== */
.oh-container {
  width: min(var(--oh-container), calc(100% - 32px));
  margin: 0 auto;
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
}

/* ===== Header ===== */
.oh-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(6, 8, 16, 0.6);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.oh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.oh-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--oh-text);
  min-width: 240px;
}
.oh-brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--oh-accent-2);
  background: linear-gradient(180deg, rgba(91, 124, 255, 0.22), rgba(15, 23, 42, 0.65));
  border: 1px solid rgba(91, 124, 255, 0.22);
  box-shadow: 0 10px 30px rgba(91, 124, 255, 0.15);
}
.oh-brand__mark svg {
  width: 22px;
  height: 22px;
}
.oh-brand__text {
  display: grid;
  gap: 2px;
}
.oh-brand__name {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.oh-brand__tag {
  font-size: 12px;
  color: var(--oh-muted-2);
}

.oh-nav {
  display: flex;
  gap: 14px;
  align-items: center;
}
.oh-nav__link {
  text-decoration: none;
  color: var(--oh-muted);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}
.oh-nav__link:hover {
  color: var(--oh-text);
  background: rgba(148, 163, 184, 0.08);
}

.oh-header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ===== Buttons ===== */
.oh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 650;
  font-size: 14px;
  border: 1px solid transparent;
  color: var(--oh-text);
  background: transparent;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.oh-btn--wide {
  width: 100%;
}
.oh-btn--primary {
  color: #0b1020;
  background: linear-gradient(180deg, rgba(138, 160, 255, 1) 0%, rgba(91, 124, 255, 1) 100%);
  border: 1px solid rgba(138, 160, 255, 0.42);
  box-shadow: 0 18px 50px rgba(91, 124, 255, 0.25);
}
.oh-btn--secondary {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid var(--oh-border);
  color: var(--oh-text);
}
.oh-btn--ghost {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--oh-muted);
}

/* ===== Typo ===== */
.oh-h1 {
  font-size: clamp(40px, 4.3vw, 62px);
  line-height: 1.03;
  margin: 0;
  letter-spacing: -0.02em;
}
.oh-h2 {
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.02em;
}
.oh-h3 {
  font-size: 18px;
  margin: 0;
  letter-spacing: -0.01em;
}
.oh-lead {
  margin: 14px 0 0;
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--oh-muted);
  max-width: 56ch;
}
.oh-sub {
  margin: 10px 0 0;
  color: var(--oh-muted);
  max-width: 70ch;
}
.oh-p {
  margin: 8px 0 0;
  color: var(--oh-muted);
}
.oh-muted {
  color: var(--oh-muted-2);
}

/* ===== Hero ===== */
.oh-hero {
  padding: 56px 0 28px;
  padding-top: max(56px, calc(56px + env(safe-area-inset-top)));
  padding-bottom: max(28px, calc(28px + env(safe-area-inset-bottom)));
}
.oh-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.oh-hero__copy {
  padding: 16px 0;
}
.oh-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.oh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: var(--oh-muted);
  font-size: 13px;
}
.oh-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.35);
}
.oh-dot--ok {
  background: rgba(49, 208, 170, 0.8);
  box-shadow: 0 0 0 4px rgba(49, 208, 170, 0.16);
}

.oh-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.oh-actions--center {
  justify-content: center;
}

.oh-micro {
  margin-top: 22px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.oh-micro__item {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(148, 163, 184, 0.14);
  min-width: 160px;
}
.oh-micro__k {
  display: block;
  font-family: var(--oh-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(231, 236, 255, 0.55);
}
.oh-micro__v {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  color: var(--oh-text);
}

/* Visual card */
.oh-hero__visual {
  display: grid;
  justify-items: end;
}
.oh-device {
  width: min(440px, 100%);
  max-width: 100%;
  border-radius: var(--oh-radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: radial-gradient(900px 600px at 10% 0%, rgba(91, 124, 255, 0.20), transparent 55%),
    radial-gradient(800px 600px at 100% 10%, rgba(49, 208, 170, 0.10), transparent 60%),
    rgba(10, 12, 20, 0.45);
  box-shadow: var(--oh-shadow);
  overflow: hidden;
  box-sizing: border-box;
}
.oh-device__top {
  display: flex;
  gap: 10px;
  padding: 16px 16px 0;
  flex-wrap: wrap;
}
.oh-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.48);
  font-size: 12px;
  color: rgba(231, 236, 255, 0.76);
}
.oh-pill--muted {
  color: rgba(231, 236, 255, 0.6);
}
.oh-device__card {
  margin: 14px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--oh-shadow-soft);
}
.oh-device__header {
  padding: 16px 16px 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}
.oh-device__title {
  font-weight: 650;
  letter-spacing: 0.01em;
}
.oh-signal {
  display: inline-flex;
  gap: 3px;
  align-items: flex-end;
}
.oh-signal span {
  width: 4px;
  border-radius: 6px;
  background: rgba(49, 208, 170, 0.75);
}
.oh-signal span:nth-child(1) {
  height: 6px;
  opacity: 0.5;
}
.oh-signal span:nth-child(2) {
  height: 10px;
  opacity: 0.7;
}
.oh-signal span:nth-child(3) {
  height: 14px;
  opacity: 0.85;
}
.oh-signal span:nth-child(4) {
  height: 18px;
}
.oh-lock svg {
  width: 20px;
  height: 20px;
  color: rgba(231, 236, 255, 0.75);
}
.oh-device__rows {
  padding: 10px 16px 0;
  display: grid;
  gap: 10px;
}
.oh-kv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(6, 8, 16, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.oh-kv__k {
  font-family: var(--oh-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(231, 236, 255, 0.6);
}
.oh-kv__v {
  font-weight: 600;
  color: rgba(231, 236, 255, 0.86);
}
.oh-device__cta {
  padding: 14px 16px 16px;
}
.oh-hint {
  margin: 10px 0 0;
  color: rgba(231, 236, 255, 0.55);
  font-size: 12px;
}
.oh-device__foot {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 16px 16px;
}
.oh-chip {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(231, 236, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.45);
}

/* ===== Sections ===== */
.oh-section {
  padding: 44px 0;
}
.oh-section__head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.oh-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.oh-card {
  border-radius: var(--oh-radius-lg);
  padding: 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.62), rgba(10, 12, 20, 0.35));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}
.oh-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: rgba(138, 160, 255, 0.95);
  background: rgba(91, 124, 255, 0.12);
  border: 1px solid rgba(91, 124, 255, 0.18);
  margin-bottom: 12px;
}
.oh-card__icon svg {
  width: 22px;
  height: 22px;
}

/* Steps */
.oh-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.oh-step {
  border-radius: var(--oh-radius-lg);
  padding: 18px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.14);
}
.oh-step--highlight {
  border-color: rgba(91, 124, 255, 0.32);
  background: radial-gradient(900px 480px at 10% 0%, rgba(91, 124, 255, 0.22), transparent 55%),
    rgba(15, 23, 42, 0.55);
}
.oh-step__n {
  font-family: var(--oh-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(231, 236, 255, 0.62);
  margin-bottom: 8px;
}

/* Pricing */
.oh-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.oh-price {
  position: relative;
  border-radius: var(--oh-radius-xl);
  padding: 18px 18px 0 18px;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(148, 163, 184, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
}
.oh-price--best {
  border-color: rgba(138, 160, 255, 0.42);
  background: radial-gradient(1000px 600px at 10% 0%, rgba(91, 124, 255, 0.26), transparent 55%),
    rgba(15, 23, 42, 0.55);
  box-shadow: 0 26px 80px rgba(91, 124, 255, 0.14);
}
.oh-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(91, 124, 255, 0.14);
  border: 1px solid rgba(91, 124, 255, 0.24);
  color: rgba(231, 236, 255, 0.85);
  font-size: 12px;
}
.oh-price__top {
  display: grid;
  gap: 6px;
}
.oh-price__mid {
  margin-top: 12px;
  flex: 1 1 auto;
  min-height: 0;
}
.oh-money {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 10px;
}
.oh-money__val {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.oh-money__per {
  color: rgba(231, 236, 255, 0.6);
}
.oh-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(231, 236, 255, 0.75);
}
.oh-list li {
  position: relative;
  padding-left: 22px;
}
.oh-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(49, 208, 170, 0.85);
  box-shadow: 0 0 0 4px rgba(49, 208, 170, 0.14);
}
.oh-price__bot {
  margin-top: auto;
  padding-top: 16px;
  padding-bottom: 18px;
  flex-shrink: 0;
}

.oh-note {
  margin: 16px 0 0;
  color: rgba(231, 236, 255, 0.52);
  font-size: 13px;
}

/* Trust rows */
.oh-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.oh-trust__item {
  border-radius: var(--oh-radius-lg);
  padding: 18px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.14);
}
.oh-trust__k {
  font-weight: 700;
}
.oh-trust__v {
  margin-top: 6px;
  color: rgba(231, 236, 255, 0.66);
}

.oh-legal {
  margin-top: 14px;
  border-radius: var(--oh-radius-xl);
  padding: 18px;
  background: rgba(6, 8, 16, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.oh-legal__copy {
  display: grid;
  gap: 4px;
}
.oh-legal__actions {
  display: flex;
  gap: 10px;
}

/* Final CTA */
.oh-final {
  padding: 46px 0 72px;
}
.oh-final__card {
  border-radius: calc(var(--oh-radius-xl) + 6px);
  padding: 28px;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(91, 124, 255, 0.28), transparent 55%),
    radial-gradient(900px 520px at 100% 0%, rgba(49, 208, 170, 0.12), transparent 60%),
    rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--oh-shadow);
  text-align: center;
}

/* Footer */
.oh-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(6, 8, 16, 0.55);
}
.oh-footer__inner {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.oh-footer__brand {
  font-weight: 750;
  letter-spacing: 0.02em;
}
.oh-footer__meta {
  margin-top: 4px;
  color: rgba(231, 236, 255, 0.55);
  font-size: 13px;
}
.oh-footer__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.oh-footer__link {
  text-decoration: none;
  color: rgba(231, 236, 255, 0.62);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}
.oh-footer__link:hover {
  color: rgba(231, 236, 255, 0.9);
  background: rgba(148, 163, 184, 0.08);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .oh-hero__grid {
    grid-template-columns: 1fr;
  }
  .oh-hero__visual {
    justify-items: start;
  }
  .oh-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .oh-steps {
    grid-template-columns: 1fr;
  }
  .oh-pricing {
    grid-template-columns: 1fr;
  }
  .oh-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .oh-nav {
    display: none;
  }
  .oh-brand__tag {
    display: none;
  }
  .oh-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ===== Mobile fixes (320-430px) ===== */
@media (max-width: 480px) {
  .oh-container {
    width: calc(100% - 32px);
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .oh-hero {
    padding: 32px 0 24px;
    padding-top: max(32px, calc(32px + env(safe-area-inset-top)));
    padding-bottom: max(24px, calc(24px + env(safe-area-inset-bottom)));
  }

  .oh-hero__copy {
    padding: 12px 0;
  }

  .oh-hero__grid {
    gap: 20px;
  }

  .oh-hero__visual {
    justify-items: stretch;
    width: 100%;
  }

  .oh-device {
    width: 100%;
    max-width: 100%;
    border-radius: var(--oh-radius-lg);
    box-sizing: border-box;
    margin: 0;
  }

  .oh-device__top {
    padding: 12px 12px 0;
  }

  .oh-device__card {
    margin: 12px;
    border-radius: 18px;
    box-sizing: border-box;
    max-width: calc(100% - 24px);
  }

  .oh-device__header {
    padding: 12px 12px 8px;
    gap: 8px;
  }

  .oh-device__rows {
    padding: 8px 12px 0;
    gap: 8px;
  }

  .oh-kv {
    padding: 8px 10px;
    border-radius: 12px;
  }

  .oh-device__cta {
    padding: 12px 12px 14px;
  }

  .oh-device__foot {
    padding: 0 12px 12px;
    gap: 8px;
  }

  .oh-badges {
    gap: 8px;
    margin-bottom: 12px;
  }

  .oh-badge {
    font-size: 12px;
    padding: 6px 8px;
  }

  .oh-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .oh-micro {
    margin-top: 18px;
    gap: 12px;
  }

  .oh-micro__item {
    min-width: auto;
    flex: 1 1 auto;
    padding: 8px 10px;
  }

  .oh-header__inner {
    padding: 12px 0;
    gap: 10px;
  }

  .oh-header__cta {
    gap: 8px;
  }

  .oh-btn {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .oh-btn--wide {
    white-space: normal;
  }

  .oh-section {
    padding: 32px 0;
    padding-top: max(32px, calc(32px + env(safe-area-inset-top)));
    padding-bottom: max(32px, calc(32px + env(safe-area-inset-bottom)));
  }

  .oh-final {
    padding: 32px 0 48px;
    padding-top: max(32px, calc(32px + env(safe-area-inset-top)));
    padding-bottom: max(48px, calc(48px + env(safe-area-inset-bottom)));
  }

  .oh-final__card {
    padding: 20px;
    border-radius: var(--oh-radius-lg);
  }

  .oh-footer__inner {
    padding: 18px 0;
    padding-bottom: max(18px, calc(18px + env(safe-area-inset-bottom)));
  }
}

/* ===== Legal pages: drop-in skin (НЕ МЕНЯЕТ ТЕКСТ) =====
   Как подключать на legal:
   1) Добавьте (или внедрите через nginx sub_filter) ссылки на CSS:
      <link rel="stylesheet" href="/onehitvpn-landing/onehitvpn-design.css">
      <link rel="stylesheet" href="/onehitvpn-landing/onehitvpn-animations.css">
   2) Ничего в тексте/структуре менять не нужно: стили ниже работают на обычные теги.
*/
.oh-legal-skin body,
body.oh-legal-skin {
  background: radial-gradient(1200px 900px at 15% -10%, rgba(91, 124, 255, 0.22), transparent 50%),
    linear-gradient(180deg, var(--oh-bg) 0%, #05060b 100%);
  color: var(--oh-text);
}
.oh-legal-skin a,
body.oh-legal-skin a {
  color: rgba(138, 160, 255, 0.95);
}
.oh-legal-skin .container,
body.oh-legal-skin .container {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}
.oh-legal-skin .card,
body.oh-legal-skin .card {
  border-radius: var(--oh-radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.55);
  box-shadow: var(--oh-shadow);
}


