:root {
  --bg: #05090a;
  --bg-soft: #091113;
  --surface: rgba(10, 15, 18, 0.84);
  --surface-2: rgba(15, 24, 28, 0.94);
  --surface-3: rgba(16, 28, 31, 0.7);
  --line: rgba(87, 255, 219, 0.16);
  --line-strong: rgba(87, 255, 219, 0.32);
  --accent: #41e6c7;
  --accent-2: #23cdb1;
  --accent-3: #8ff6e2;
  --white: #f4f7f8;
  --text: rgba(244, 247, 248, 0.92);
  --muted: rgba(210, 221, 225, 0.72);
  --dark: #0c1216;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.24);
  --radius: 26px;
  --radius-lg: 36px;
  --radius-xl: 42px;
  --container: min(1260px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 15%, rgba(65, 230, 199, 0.18), transparent 22%),
    radial-gradient(circle at 80% 8%, rgba(21, 137, 117, 0.12), transparent 18%),
    linear-gradient(180deg, #040708 0%, #071012 20%, #071112 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.section {
  position: relative;
  padding: 96px 0;
}

.section-tight {
  padding-top: 28px;
  padding-bottom: 40px;
}

.page-glow {
  position: fixed;
  inset: auto auto 0 0;
  width: 38vw;
  height: 38vw;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.26;
  z-index: -1;
}

.page-glow--left {
  background: #24d5b4;
  left: -14vw;
  bottom: -12vw;
}

.page-glow--right {
  background: #0d6e63;
  right: -16vw;
  top: 8vw;
  left: auto;
  bottom: auto;
}

.grid-noise {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.18;
  pointer-events: none;
  z-index: -2;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  backdrop-filter: blur(18px);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 9, 10, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(7, 11, 13, 0.6);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.brand,
.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(65, 230, 199, 0.28), rgba(65, 230, 199, 0.08));
  border: 1px solid rgba(65, 230, 199, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 18px rgba(17, 191, 160, 0.14);
}

.brand-mark-core {
  width: 18px;
  height: 18px;
  border-radius: 7px 7px 12px 7px;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  transform: rotate(45deg);
  position: relative;
}

.brand-mark-core::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(6, 17, 16, 0.8);
  top: 2px;
  right: 2px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.site-nav a {
  position: relative;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.site-nav a.nav-access {
  color: #04100d;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(26, 214, 180, 0.18);
}

.header-access {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #07110f;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  box-shadow: 0 18px 32px rgba(26, 214, 180, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 44px rgba(26, 214, 180, 0.34);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-sm {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  font-size: 0.95rem;
}

.hero {
  padding-top: 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 40px;
}

.eyebrow,
.eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.eyebrow span,
.eyebrow-dark span {
  font-size: 1rem;
}

.eyebrow-dark {
  color: #101820;
  background: rgba(37, 212, 178, 0.15);
  border: 1px solid rgba(37, 212, 178, 0.24);
}

.hero-copy h1 {
  margin: 24px 0 22px;
  font-size: clamp(3.45rem, 8.2vw, 7rem);
  line-height: 0.9;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  max-width: 10ch;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #d6dfdf 48%, #7aeed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 670px;
  font-size: clamp(1.02rem, 1.8vw, 1.16rem);
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions,
.final-actions,
.support-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-pills span,
.tag-cloud span,
.footer-note {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.stat-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(65, 230, 199, 0.6), transparent 66%);
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: var(--white);
}

.stat-card span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}

.promo-shell {
  position: relative;
  width: min(100%, 540px);
  padding: 18px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(65, 230, 199, 0.22), rgba(65, 230, 199, 0.03));
  border: 1px solid rgba(65, 230, 199, 0.22);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transform: perspective(1400px) rotateY(-13deg) rotateX(7deg) rotateZ(-2deg);
  transform-style: preserve-3d;
}

.promo-shell::before,
.promo-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: inherit;
  pointer-events: none;
}

.promo-shell::before {
  inset: -22px -26px auto auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(65, 230, 199, 0.24);
  opacity: 0.26;
  transform: rotate(11deg);
}

.promo-shell::after {
  left: -36px;
  bottom: -32px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(65, 230, 199, 0.28), transparent 70%);
  filter: blur(14px);
}

.promo-screen {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.promo-screen img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  z-index: 2;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(7, 12, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.visual-badge--top {
  top: 58px;
  left: 24px;
  color: #03100d;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
}

.visual-badge--mid {
  right: 8px;
  top: 200px;
}

.visual-badge--bottom {
  left: 0;
  bottom: 86px;
}

.proof-bar {
  padding-top: 12px;
}

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

.proof-item {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.proof-number {
  display: inline-block;
  font-size: 0.86rem;
  color: var(--accent-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-head h2,
.spotlight-copy h2,
.offer-copy h2,
.video-copy h2,
.support-card h2,
.final-shell h2 {
  margin: 22px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-head p,
.spotlight-copy p,
.offer-copy p,
.video-copy p,
.support-card p,
.final-shell p,
.step-card p,
.feature-card p,
.offer-card p,
.faq-item p,
.mini-panel li,
.site-footer p {
  color: var(--muted);
  line-height: 1.76;
  font-size: 1rem;
}

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

.feature-card,
.step-card,
.offer-card,
.mini-panel,
.video-card,
.final-shell,
.support-card,
.stack-card,
.faq-item,
.offer-frame {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.step-card,
.offer-card,
.mini-panel {
  padding: 28px;
  border-radius: 26px;
  overflow: hidden;
}

.feature-card::before,
.step-card::before,
.offer-card::before,
.mini-panel::before,
.support-card::before,
.video-card::before,
.final-shell::before,
.offer-frame::before,
.stack-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(65, 230, 199, 0.58), transparent 70%);
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  color: var(--accent-3);
  background: rgba(65, 230, 199, 0.08);
  border: 1px solid rgba(65, 230, 199, 0.16);
}

.feature-card h3,
.step-card h3,
.offer-card h3,
.mini-panel h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  letter-spacing: -0.04em;
}

.spotlight {
  overflow: hidden;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

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

.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--white);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  box-shadow: 0 12px 22px rgba(35, 205, 177, 0.28);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #061110;
  border-bottom: 2px solid #061110;
  transform: rotate(-45deg);
}

.spotlight-stack {
  position: relative;
  min-height: 620px;
}

.stack-card {
  border-radius: 30px;
  overflow: hidden;
}

.stack-card--warning {
  width: min(100%, 400px);
  margin-left: auto;
  transform: rotate(3deg);
}

.stack-card--warning img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.stack-card--quote {
  position: absolute;
  left: 0;
  bottom: 26px;
  width: min(82%, 340px);
  padding: 26px;
  background: linear-gradient(180deg, rgba(15, 24, 28, 0.96), rgba(11, 17, 20, 0.96));
  transform: rotate(-6deg);
}

.stack-card--quote p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.stack-card--quote strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.25;
}

.section-light {
  background:
    radial-gradient(circle at 0% 100%, rgba(65, 230, 199, 0.22), transparent 28%),
    linear-gradient(180deg, #eff3f7 0%, #edf1f5 100%);
  color: #0f1720;
}

.section-light .section-head p,
.section-light .offer-copy p,
.section-light .offer-card p,
.section-light .offer-card-tag,
.section-light .offer-copy .eyebrow-dark {
  color: rgba(15, 23, 32, 0.72);
}

.offer-grid-main {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 36px;
  align-items: center;
}

.offer-frame {
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
  border-color: rgba(28, 36, 50, 0.08);
}

.offer-frame img {
  border-radius: 26px;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.offer-card {
  min-height: 100%;
  border-color: rgba(15, 23, 32, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8));
  box-shadow: 0 18px 38px rgba(31, 38, 54, 0.08);
}

.offer-card--accent {
  background: linear-gradient(180deg, rgba(65, 230, 199, 0.16), rgba(255, 255, 255, 0.92));
  border-color: rgba(37, 212, 178, 0.28);
}

.offer-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 23, 32, 0.05);
  border: 1px solid rgba(15, 23, 32, 0.06);
  font-weight: 700;
  font-size: 0.84rem;
}

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

.step-card {
  padding-top: 74px;
}

.step-number {
  position: absolute;
  left: 28px;
  top: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  color: #05110f;
  font-weight: 900;
}

.video-highlight {
  padding-top: 34px;
}

.video-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 34px;
  overflow: hidden;
}

.video-card::after,
.final-shell::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(65, 230, 199, 0.22), transparent 70%);
  transform: translateY(-50%);
  filter: blur(8px);
}

.video-copy {
  max-width: 720px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  align-items: start;
}

.faq-intro {
  margin-bottom: 0;
  position: sticky;
  top: 110px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 24px;
  padding: 0 26px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 26px 58px 26px 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-3);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: rgba(65, 230, 199, 0.08);
}

.faq-item p {
  margin: 0 0 24px;
  padding-top: 0;
}

.support-section {
  overflow: hidden;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.support-card,
.final-shell {
  padding: 34px;
  border-radius: 34px;
  overflow: hidden;
}

.support-card blockquote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-radius: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.8;
}

.support-side {
  display: grid;
  gap: 18px;
}

.mini-panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.mini-panel li {
  padding-left: 4px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.final-cta {
  padding-top: 40px;
}

.final-shell {
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(65, 230, 199, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(11, 17, 20, 0.96), rgba(6, 10, 11, 0.96));
}

.final-shell .eyebrow {
  margin: 0 auto;
}

.final-shell p {
  max-width: 820px;
  margin: 0 auto;
}

.final-actions {
  justify-content: center;
}

.site-footer {
  padding: 0 0 110px;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr;
  gap: 22px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer p {
  margin: 18px 0 0;
  max-width: 520px;
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-note:hover,
.footer-note:focus-visible {
  color: var(--white);
}

.footer-actions {
  display: grid;
  align-content: start;
  gap: 12px;
  justify-items: start;
}


.footer-legal-note {
  min-height: auto;
  padding: 14px 18px;
  border-radius: 24px;
  line-height: 1.45;
  max-width: 340px;
  align-items: flex-start;
}

.floating-telegram,
.floating-access {
  position: fixed;
  right: 18px;
  z-index: 90;
  min-height: 58px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #04100d;
  font-weight: 800;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  box-shadow: 0 24px 50px rgba(21, 194, 163, 0.3);
}

.floating-telegram { bottom: 18px; }
.floating-access { bottom: 88px; background: linear-gradient(180deg, #ffffff, var(--accent-3)); }

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

.reveal-delay {
  transition-delay: 0.12s;
}

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

@media (max-width: 1160px) {
  .hero-grid,
  .spotlight-grid,
  .offer-grid-main,
  .support-grid,
  .faq-layout,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 18px;
  }

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

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

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

  .proof-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .spotlight-stack {
    min-height: 500px;
  }

  .stack-card--warning {
    margin-left: 0;
  }

  .stack-card--quote {
    left: auto;
    right: 0;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 26px;
    padding: 14px;
    position: relative;
  }

  .header-cta,
  .header-access {
    display: none;
  }

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

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    padding: 14px;
    border-radius: 26px;
    background: rgba(8, 12, 15, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .site-nav a {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
  }

  .hero {
    padding-top: 24px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 5.2rem);
  }

  .promo-shell {
    transform: none;
  }

  .visual-badge--top {
    top: 10px;
  }

  .visual-badge--mid {
    right: 10px;
    top: auto;
    bottom: 92px;
  }

  .visual-badge--bottom {
    left: 12px;
    bottom: 18px;
  }

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

  .video-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-telegram {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .floating-access {
    left: 14px;
    right: 14px;
    bottom: 84px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 74px 0;
  }

  .container {
    width: min(100vw - 24px, 1180px);
  }

  .nav-shell,
  .footer-shell,
  .support-card,
  .final-shell,
  .video-card,
  .feature-card,
  .step-card,
  .offer-card,
  .mini-panel,
  .proof-item,
  .faq-item,
  .offer-frame {
    border-radius: 22px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-copy h1,
  .section-head h2,
  .spotlight-copy h2,
  .offer-copy h2,
  .video-copy h2,
  .support-card h2,
  .final-shell h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .hero-actions,
  .support-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-sm {
    width: 100%;
  }

  .visual-badge {
    position: static;
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    gap: 12px;
  }

  .proof-item,
  .stat-card,
  .feature-card,
  .step-card,
  .offer-card,
  .mini-panel,
  .support-card,
  .faq-item,
  .final-shell,
  .video-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .support-card blockquote {
    padding: 18px;
  }

  .stack-card--quote {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
    transform: none;
    margin-top: 16px;
  }

  .spotlight-stack {
    min-height: auto;
  }

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

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

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

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

/* === DinoVPN refresh based on feedback === */
.hero {
  padding-top: 34px;
  padding-bottom: 54px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 56px;
}

.hero-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 24px 0 20px;
  max-width: none;
  font-size: clamp(3.3rem, 6.9vw, 6.2rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
  overflow: visible;
}

.hero-copy h1 .hero-line {
  display: block;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: var(--white);
}

.hero-copy h1 .hero-line--accent {
  background: linear-gradient(180deg, #ffffff 0%, #d6dfdf 48%, #7aeed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-visual {
  width: 100%;
  min-height: 620px;
  justify-self: end;
}

.promo-shell {
  width: min(100%, 500px);
  margin-left: auto;
}

.visual-badge--mid {
  right: -8px;
  top: 188px;
}

.visual-badge--bottom {
  left: auto;
  right: 24px;
  bottom: 24px;
}

.hero-stats {
  gap: 14px;
  margin-top: 34px;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.016));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.proof-bar {
  padding-top: 4px;
  padding-bottom: 28px;
}

.proof-grid {
  gap: 14px;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.014));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.proof-item {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.offer-cards {
  align-items: stretch;
  gap: 18px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-start;
}

.offer-card h3 {
  margin: 0;
  line-height: 1.1;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  color: #0d1620;
}

.offer-card p {
  margin: 0;
}

.offer-card-tag {
  align-self: flex-start;
  min-height: 40px;
  padding: 0 16px;
  color: #31414f;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 237, 242, 0.92));
  border: 1px solid rgba(20, 30, 40, 0.08);
  box-shadow: 0 10px 22px rgba(20, 30, 40, 0.06);
  letter-spacing: 0.01em;
}

.offer-card--accent .offer-card-tag {
  color: #08312a;
  background: linear-gradient(180deg, rgba(209, 255, 247, 0.96), rgba(171, 245, 229, 0.9));
  border-color: rgba(37, 212, 178, 0.22);
  box-shadow: 0 10px 24px rgba(37, 212, 178, 0.12);
}

.video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 24px;
}

.video-note {
  margin-top: 14px;
}

.youtube-map {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.youtube-map::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(65, 230, 199, 0.58), transparent 72%);
}

.youtube-map-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.youtube-map-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(65, 230, 199, 0.12);
  border: 1px solid rgba(65, 230, 199, 0.2);
  color: var(--accent-3);
  font-weight: 700;
  font-size: 0.84rem;
}

.youtube-map-head strong {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--white);
}

.route-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  padding-top: 26px;
}

.route-track::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 18px;
  border-top: 1px dashed rgba(65, 230, 199, 0.36);
}

.route-stop {
  position: relative;
  z-index: 1;
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 700;
  line-height: 1.25;
}

.route-stop--accent {
  background: linear-gradient(180deg, rgba(65, 230, 199, 0.18), rgba(255, 255, 255, 0.05));
  border-color: rgba(65, 230, 199, 0.24);
}

.route-plane {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -36%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  color: #04100d;
  box-shadow: 0 14px 30px rgba(35, 205, 177, 0.24);
  z-index: 2;
}

.route-caption {
  margin: 18px 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.support-side {
  gap: 20px;
}

.mini-panel {
  padding: 30px;
}

.mini-panel h3 {
  line-height: 1.18;
}

.tag-cloud {
  gap: 12px;
}

.tag-cloud span {
  min-height: 44px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

@media (max-width: 1160px) {
  .hero-grid,
  .video-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .promo-shell {
    margin: 0 auto;
  }

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

  .route-track::before {
    display: none;
  }

  .route-plane {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 920px) {
  .hero {
    padding-bottom: 36px;
  }

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

  .visual-badge--mid,
  .visual-badge--bottom {
    position: static;
    width: 100%;
    text-align: center;
  }

  .hero-stats,
  .proof-grid {
    padding: 12px;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
    line-height: 0.9;
  }

  .hero-stats,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .proof-item {
    min-height: auto;
  }

  .youtube-map {
    padding: 22px;
  }

  .route-track {
    grid-template-columns: 1fr 1fr;
  }
}
/* final refinements */
.floating-telegram {
  display: none;
}

@media (max-width: 920px) {
  .floating-telegram {
    display: inline-flex;
  }
}


/* === DinoVPN revision: unified highlights board + routing copy === */
.hero .lead {
  max-width: 700px;
}

.visual-badge--bottom {
  max-width: 270px;
  text-align: center;
}

.proof-bar {
  padding-top: 4px;
  padding-bottom: 36px;
}

.highlights-board {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.highlights-board::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(65, 230, 199, 0.58), transparent 72%);
}

.highlights-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 4px 0;
}

.highlights-label {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(65, 230, 199, 0.1);
  border: 1px solid rgba(65, 230, 199, 0.18);
  color: var(--accent-3);
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.highlights-head p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  text-align: right;
}

.hero-stats--board,
.proof-grid--board {
  margin-top: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

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

.hero-stats--board .stat-card {
  min-height: 200px;
}

.stat-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent-3);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stats--board .stat-card strong {
  font-size: clamp(1.08rem, 1.9vw, 1.42rem);
  line-height: 1.15;
}

.hero-stats--board .stat-card > span:last-child {
  display: block;
}

.proof-grid--board {
  gap: 16px;
}

.proof-grid--board .proof-item {
  position: relative;
  min-height: 100%;
  padding: 26px 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-grid--board .proof-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(65, 230, 199, 0.58), transparent 70%);
}

.proof-grid--board .proof-item h3 {
  margin: 10px 0 12px;
  font-size: 1.24rem;
  line-height: 1.16;
  letter-spacing: -0.04em;
  color: var(--white);
}

.proof-grid--board .proof-item p {
  margin: 0;
}

.proof-item--route {
  overflow: hidden;
}

.mini-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
}

.mini-route::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 10px;
  border-top: 1px dashed rgba(65, 230, 199, 0.34);
}

.mini-route-stop {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 10px 8px;
  border-radius: 18px;
  text-align: center;
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.2;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-route-plane {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -32%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  color: #04100d;
  box-shadow: 0 12px 24px rgba(35, 205, 177, 0.2);
  z-index: 2;
}

@media (max-width: 1160px) {
  .highlights-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .highlights-head p {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 920px) {
  .highlights-board {
    padding: 16px;
  }

  .hero-stats--board,
  .proof-grid--board {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .mini-route {
    grid-template-columns: 1fr 1fr;
  }

  .mini-route::before {
    display: none;
  }

  .mini-route-plane {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 640px) {
  .highlights-board {
    border-radius: 24px;
  }

  .highlights-head {
    padding: 0;
  }

  .highlights-label {
    min-height: 38px;
  }

  .hero-stats--board .stat-card,
  .proof-grid--board .proof-item {
    min-height: auto;
  }

  .mini-route-stop {
    min-height: 54px;
    font-size: 0.9rem;
  }
}


.footer-copy {
  margin: 18px 0 0;
  max-width: 420px;
}

.legal-page {
  padding-top: 40px;
}

.legal-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.legal-shell::before {
  content: "";
  position: absolute;
}

.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-badge,
.placeholder-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.94rem;
}

.placeholder-pill {
  color: #05110f;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  border-color: rgba(65, 230, 199, 0.3);
  font-weight: 700;
}

.legal-shell h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.legal-shell > p,
.legal-shell li,
.legal-shell table,
.legal-shell td,
.legal-shell th {
  color: var(--muted);
  line-height: 1.78;
  font-size: 1rem;
}

.legal-shell h2 {
  margin: 34px 0 14px;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--white);
}

.legal-shell h3 {
  margin: 20px 0 10px;
  font-size: 1.1rem;
  color: var(--white);
}

.legal-shell ul,
.legal-shell ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.legal-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(65, 230, 199, 0.08);
  border: 1px solid rgba(65, 230, 199, 0.16);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 20px;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.legal-table th {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
}

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

.legal-mini {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-mini h3 {
  margin-top: 0;
}

.legal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

code.inline-code {
  padding: 2px 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

@media (max-width: 780px) {
  .legal-shell {
    padding: 28px 20px;
  }

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

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table td,
  .legal-table th {
    display: block;
    width: 100%;
  }

  .legal-table thead {
    display: none;
  }

  .legal-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .legal-table td {
    padding: 10px 0;
  }
}


/* === HOTFIX 2026-05-03: адаптивная шапка и кнопки Telegram без VPN === */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.nav-shell,
.site-nav,
.brand,
.brand-copy {
  min-width: 0;
}
@media (max-width: 1240px) {
  .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    gap: 12px;
    border-radius: 26px;
    padding: 12px 14px;
    position: relative;
  }
  .brand {
    overflow: hidden;
  }
  .brand-copy {
    overflow: hidden;
  }
  .brand-copy small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-cta,
  .header-access {
    display: none !important;
  }
  .nav-toggle {
    display: inline-flex !important;
    flex: 0 0 44px;
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 120;
    padding: 14px;
    border-radius: 24px;
    background: rgba(8, 12, 15, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.3);
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    justify-self: stretch;
  }
  body.nav-open .site-nav {
    display: flex !important;
  }
  .site-nav a {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
  }
}
@media (max-width: 520px) {
  .container {
    width: min(100vw - 24px, 1180px);
  }
  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    flex: 0 0 38px;
  }
  .brand-copy strong {
    font-size: 0.98rem;
  }
  .brand-copy small {
    font-size: 0.64rem;
  }
  .nav-shell {
    padding: 10px 12px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .floating-access,
  .floating-telegram {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    min-height: 52px;
    padding: 0 12px;
    text-align: center;
    line-height: 1.15;
  }
}


/* === HOTFIX 2026-05-03 #2: шапка DinoVPN без лишней кнопки и с нормальной шириной === */
.site-header {
  position: sticky !important;
  top: 0;
}
@media (min-width: 1241px) {
  .nav-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .site-nav {
    justify-self: end;
    min-width: 0;
  }
  .site-nav a {
    padding-left: 13px;
    padding-right: 13px;
  }
  .header-cta {
    white-space: nowrap;
    min-width: 132px;
  }
}
