@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/static/assets/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/static/assets/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg-950: #12081f;
  --bg-900: #1b0f2f;
  --bg-850: #261641;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(236, 220, 255, 0.12);
  --text: #f8f4ff;
  --muted: rgba(244, 235, 255, 0.74);
  --accent: #b57dff;
  --accent-strong: #8f52ed;
  --success: #9bf4c5;
  --warning: #ffd698;
  --shadow: 0 22px 56px rgba(6, 3, 16, 0.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 8% 10%, rgba(174, 112, 255, 0.22), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at 82% 88%, rgba(128, 92, 196, 0.18), transparent 22%),
    linear-gradient(180deg, var(--bg-950) 0%, var(--bg-900) 52%, var(--bg-850) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.08), transparent 18%);
  opacity: 0.9;
}

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

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

button {
  cursor: pointer;
}

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

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

.is-hidden {
  display: none !important;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.shell-backdrop {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(237, 221, 255, 0.08);
  background: rgba(15, 8, 26, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner,
.page-section,
.site-footer-inner {
  width: min(var(--max-width), calc(100vw - 32px));
  margin: 0 auto;
}

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

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-lockup img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 10px 22px rgba(184, 124, 255, 0.22));
}

.brand-lockup strong {
  display: block;
  font-size: 16px;
  font-weight: 820;
}

.brand-lockup span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-nav a {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(248, 242, 255, 0.76);
  line-height: 38px;
  font-size: 14px;
  font-weight: 720;
  transition: background 150ms ease, color 150ms ease;
}

.header-nav a:hover,
.header-nav a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

.button-primary,
.button-secondary,
.button-ghost,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 18px;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button-primary {
  border: 1px solid rgba(236, 223, 255, 0.24);
  background: linear-gradient(180deg, rgba(195, 143, 255, 0.98), rgba(120, 65, 213, 0.98));
  color: #fff;
  box-shadow: 0 16px 34px rgba(136, 72, 238, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-secondary,
.button-ghost,
.nav-toggle {
  border: 1px solid rgba(236, 223, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(251, 245, 255, 0.94);
}

.button-ghost {
  min-height: 40px;
  padding-inline: 14px;
}

.button-primary:hover,
.button-secondary:hover,
.button-ghost:hover,
.nav-toggle:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  padding: 0;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle span + span {
  margin-top: 4px;
}

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

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

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

.page-main {
  padding-bottom: 44px;
}

.hero-section {
  padding: 42px 0 20px;
}

.hero-grid,
.two-col-grid,
.support-grid,
.apps-grid,
.plan-grid,
.steps-grid,
.locations-grid,
.trust-grid,
.faq-grid,
.inclusion-grid {
  display: grid;
  gap: 18px;
}

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

.panel,
.glass-card,
.hero-card,
.faq-card,
.plan-card,
.app-card,
.step-card,
.trust-card,
.support-card,
.note-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-copy,
.hero-preview,
.page-head,
.section-card,
.panel,
.faq-card,
.plan-card,
.app-card,
.step-card,
.trust-card,
.support-card,
.note-card {
  padding: 28px;
}

.hero-kicker,
.section-kicker {
  display: block;
  color: rgba(250, 242, 255, 0.7);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-head h1,
.section-card h2,
.faq-card h2 {
  margin: 10px 0 0;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero-copy h1,
.page-head h1 {
  font-size: clamp(42px, 7vw, 72px);
}

.section-card h2,
.faq-card h2 {
  font-size: clamp(28px, 4.4vw, 42px);
}

.hero-copy p,
.page-head p,
.section-card p,
.support-card p,
.faq-card p,
.plan-card p,
.app-card p,
.note-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.cta-row,
.chip-row,
.meta-row,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-row {
  margin-top: 24px;
}

.chip-row {
  margin-top: 16px;
}

.chip,
.mini-badge {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(236, 220, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(252, 246, 255, 0.9);
  font-size: 12px;
  font-weight: 720;
  line-height: 34px;
}

.hero-preview {
  display: grid;
  gap: 14px;
}

.preview-top,
.preview-node,
.preview-price,
.plan-meta,
.app-meta {
  display: grid;
  gap: 8px;
}

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

.preview-block,
.preview-node,
.preview-price,
.plan-feature,
.app-meta,
.support-card,
.note-card {
  padding: 16px;
  border: 1px solid rgba(239, 225, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.preview-block span,
.preview-node small,
.preview-price span,
.plan-meta span,
.app-meta span,
.muted-line {
  color: rgba(248, 239, 255, 0.72);
  font-size: 12px;
}

.preview-block strong,
.preview-node strong,
.preview-price strong,
.plan-card strong,
.app-card strong,
.step-card strong,
.trust-card strong,
.support-card strong,
.note-card strong {
  display: block;
  color: #fff;
}

.preview-node {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.flag {
  font-size: 22px;
  line-height: 1;
}

.status-ok {
  color: var(--success);
  font-size: 12px;
  font-weight: 820;
}

.preview-subscription {
  overflow-wrap: anywhere;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  color: rgba(250, 244, 255, 0.88);
}

.page-section {
  padding: 18px 0;
}

.page-head {
  margin-bottom: 18px;
}

.trust-grid,
.steps-grid,
.locations-grid,
.support-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.two-col-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.step-card ol,
.faq-list,
.list,
.list-compact {
  margin: 0;
  padding-left: 18px;
  color: rgba(252, 246, 255, 0.92);
  line-height: 1.62;
}

.list-compact {
  display: grid;
  gap: 10px;
}

.trust-card p,
.step-card p,
.faq-card details p,
.plan-feature p,
.support-card p,
.note-card p,
.app-card p {
  font-size: 14px;
}

.plan-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 280px;
}

.plan-card.featured {
  border-color: rgba(184, 133, 255, 0.22);
  box-shadow: 0 20px 46px rgba(121, 63, 213, 0.16);
}

.plan-price {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 860;
}

.plan-card .button-primary,
.plan-card .button-secondary {
  margin-top: auto;
}

.plan-note {
  color: rgba(248, 239, 255, 0.72);
  font-size: 13px;
  line-height: 1.56;
}

.app-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.app-card .button-secondary {
  width: fit-content;
}

.faq-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
}

.faq-list details {
  padding: 16px 18px;
  border: 1px solid rgba(236, 220, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 760;
}

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

.site-footer {
  margin-top: 22px;
  border-top: 1px solid rgba(239, 224, 255, 0.08);
  background: rgba(13, 8, 24, 0.64);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 34px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(248, 241, 255, 0.78);
  font-size: 14px;
}

.footer-copy {
  color: rgba(248, 241, 255, 0.62);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-col-grid,
  .plan-grid,
  .trust-grid,
  .steps-grid,
  .locations-grid,
  .support-grid,
  .faq-grid,
  .apps-grid,
  .inclusion-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-grid .plan-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .shell-backdrop {
    position: fixed;
    inset: 0;
    z-index: 18;
    border: 0;
    padding: 0;
    background: rgba(5, 2, 13, 0.74);
    backdrop-filter: blur(10px);
  }

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

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

  .header-nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    z-index: 19;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(236, 220, 255, 0.14);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(31, 18, 52, 0.98), rgba(20, 10, 35, 0.99)),
      rgba(20, 10, 35, 0.99);
    box-shadow: 0 24px 72px rgba(3, 1, 10, 0.46);
  }

  .site-header.is-open .header-nav,
  .site-header.is-open .shell-backdrop {
    display: flex;
  }

  .header-nav a,
  .header-actions {
    width: 100%;
  }

  .header-nav a {
    min-height: 52px;
    padding-inline: 18px;
    border: 1px solid rgba(236, 220, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(250, 244, 255, 0.96);
    font-size: 16px;
    line-height: 50px;
  }

  .header-nav a:hover,
  .header-nav a.is-active {
    background: rgba(255, 255, 255, 0.08);
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 4px;
  }

  .header-actions .button-primary,
  .header-actions .button-secondary {
    width: 100%;
  }

  .hero-grid,
  .two-col-grid,
  .plan-grid,
  .trust-grid,
  .steps-grid,
  .locations-grid,
  .support-grid,
  .faq-grid,
  .apps-grid,
  .inclusion-grid,
  .preview-top {
    grid-template-columns: 1fr;
  }

  .plan-grid .plan-card:last-child {
    grid-column: auto;
  }

  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .page-section,
  .site-footer-inner {
    width: min(var(--max-width), calc(100vw - 24px));
  }

  .hero-copy,
  .hero-preview,
  .page-head,
  .section-card,
  .panel,
  .faq-card,
  .plan-card,
  .app-card,
  .step-card,
  .trust-card,
  .support-card,
  .note-card {
    padding: 22px;
  }

  .hero-section {
    padding-top: 26px;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

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

/* Premium home */
.premium-home {
  background:
    radial-gradient(circle at 10% 8%, rgba(155, 103, 222, 0.2), transparent 27%),
    radial-gradient(circle at 92% 4%, rgba(229, 205, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #130b20 0%, #1a1029 46%, #211333 100%);
}

.premium-home .site-header {
  background: rgba(19, 11, 32, 0.78);
}

.home-hero {
  padding: 72px 0 52px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
  min-height: 660px;
}

.home-hero-copy h1 {
  max-width: 760px;
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(54px, 7.2vw, 92px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.home-hero-copy p {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(248, 242, 255, 0.76);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

.button-large {
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 16px;
  font-weight: 740;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: rgba(244, 235, 255, 0.64);
  font-size: 13px;
  font-weight: 650;
}

.hero-proof-row span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 12px 2px 0;
  border-radius: 50%;
  background: rgba(206, 169, 255, 0.72);
}

.access-preview {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(239, 225, 255, 0.15);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(39, 22, 62, 0.78);
  box-shadow: 0 36px 80px rgba(4, 2, 12, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.access-preview::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -150px;
  border-radius: 50%;
  background: rgba(183, 127, 255, 0.12);
  filter: blur(8px);
  pointer-events: none;
}

.access-preview-head,
.location-line {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.access-preview-head strong {
  display: block;
  margin-top: 7px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(146, 244, 193, 0.18);
  border-radius: 999px;
  background: rgba(77, 179, 125, 0.1);
  color: #b8f8d5;
  font-size: 12px;
  font-weight: 740;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8df0bc;
  box-shadow: 0 0 0 5px rgba(141, 240, 188, 0.1);
}

.access-preview-link {
  position: relative;
  z-index: 1;
  padding: 20px;
  border: 1px solid rgba(239, 225, 255, 0.11);
  border-radius: 18px;
  background: rgba(8, 4, 16, 0.22);
}

.access-preview-link span,
.access-preview-meta span,
.location-line span,
.control-list span {
  color: rgba(245, 236, 255, 0.6);
  font-size: 12px;
  font-weight: 620;
}

.access-preview-link strong {
  display: block;
  margin-top: 9px;
  overflow-wrap: anywhere;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  font-weight: 560;
}

.access-preview-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.access-preview-meta div {
  min-width: 0;
  padding: 15px;
  border-top: 1px solid rgba(239, 225, 255, 0.12);
}

.access-preview-meta strong,
.location-line strong {
  display: block;
  margin-top: 7px;
  font-size: 13px;
}

.location-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(239, 225, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(249, 243, 255, 0.78);
  font-size: 11px;
  font-weight: 650;
}

.confidence-strip {
  border-block: 1px solid rgba(239, 225, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

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

.confidence-grid article {
  padding: 30px clamp(18px, 3vw, 42px);
}

.confidence-grid article + article {
  border-left: 1px solid rgba(239, 225, 255, 0.08);
}

.confidence-grid strong,
.confidence-grid span {
  display: block;
}

.confidence-grid strong {
  font-size: 16px;
}

.confidence-grid span {
  margin-top: 8px;
  color: rgba(244, 235, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.home-section {
  padding-block: 88px;
}

.section-intro {
  max-width: 810px;
  margin-bottom: 34px;
}

.section-intro h2,
.control-copy h2,
.final-cta-card h2 {
  margin: 12px 0 0;
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-intro p,
.control-copy p,
.final-cta-card p {
  margin: 18px 0 0;
  color: rgba(244, 235, 255, 0.68);
  font-size: 16px;
  line-height: 1.7;
}

.compact-intro {
  max-width: 720px;
}

.premium-plan-grid {
  align-items: stretch;
}

.premium-plan-grid .plan-card {
  position: relative;
  min-height: 370px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.premium-plan-grid .plan-card.featured {
  border-color: rgba(194, 150, 255, 0.38);
  background: linear-gradient(160deg, rgba(139, 79, 222, 0.3), rgba(255, 255, 255, 0.055));
  box-shadow: 0 28px 64px rgba(79, 35, 141, 0.22);
}

.plan-eyebrow,
.plan-period,
.best-label {
  color: rgba(246, 238, 255, 0.64);
  font-size: 12px;
  font-weight: 700;
}

.best-label {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(198, 157, 255, 0.18);
  color: #e7ceff;
}

.premium-plan-grid .plan-price {
  margin-top: 6px;
  font-size: 39px;
  letter-spacing: -0.045em;
}

.premium-plan-grid .plan-card p {
  color: rgba(245, 237, 255, 0.66);
  line-height: 1.65;
}

.pricing-footnote {
  margin: 20px 0 0;
  color: rgba(244, 235, 255, 0.54);
  font-size: 13px;
}

.setup-showcase {
  border-block: 1px solid rgba(239, 225, 255, 0.08);
}

.simple-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(239, 225, 255, 0.1);
}

.simple-steps article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(239, 225, 255, 0.1);
}

.simple-steps article > span {
  color: rgba(190, 145, 250, 0.82);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.simple-steps strong {
  display: block;
  font-size: clamp(21px, 3vw, 28px);
  letter-spacing: -0.03em;
}

.simple-steps p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(244, 235, 255, 0.64);
  line-height: 1.65;
}

.setup-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.text-link {
  padding: 12px 4px;
  color: #d9baff;
  font-size: 14px;
  font-weight: 700;
}

.control-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: clamp(38px, 7vw, 88px);
  padding: clamp(32px, 6vw, 70px);
  border: 1px solid rgba(239, 225, 255, 0.12);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: 0 30px 80px rgba(5, 2, 14, 0.25);
}

.control-copy h2 {
  font-size: clamp(36px, 4.8vw, 58px);
}

.control-list {
  display: grid;
  align-content: center;
}

.control-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(239, 225, 255, 0.1);
}

.control-list div:first-child {
  border-top: 1px solid rgba(239, 225, 255, 0.1);
}

.control-list strong {
  text-align: right;
  font-size: 14px;
}

.home-faq {
  max-width: 940px;
}

.home-faq details {
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(239, 225, 255, 0.1);
  border-radius: 0;
  background: transparent;
}

.home-faq details:first-child {
  border-top: 1px solid rgba(239, 225, 255, 0.1);
}

.home-faq summary {
  position: relative;
  padding-right: 44px;
  font-size: 17px;
}

.home-faq summary::after {
  content: "+";
  position: absolute;
  top: -4px;
  right: 0;
  color: rgba(218, 188, 255, 0.8);
  font-size: 24px;
  font-weight: 400;
}

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

.final-cta-section {
  padding-block: 72px 110px;
}

.final-cta-card {
  padding: clamp(42px, 7vw, 82px);
  border: 1px solid rgba(239, 225, 255, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 20%, rgba(202, 162, 255, 0.15), transparent 26%),
    linear-gradient(145deg, rgba(128, 72, 205, 0.24), rgba(255, 255, 255, 0.035));
  text-align: center;
}

.final-cta-card h2,
.final-cta-card p {
  max-width: 760px;
  margin-inline: auto;
}

.final-cta-card .button-primary {
  margin-top: 28px;
}

.reveal-one,
.reveal-two,
.reveal-three {
  opacity: 0;
  animation: premium-reveal 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.reveal-two {
  animation-delay: 100ms;
}

.reveal-three {
  animation-delay: 180ms;
}

@keyframes premium-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .home-hero {
    padding-top: 42px;
  }

  .home-hero-grid,
  .control-card {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    min-height: 0;
  }

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

  .confidence-grid article + article {
    border-top: 1px solid rgba(239, 225, 255, 0.08);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .home-hero {
    padding: 24px 0 34px;
  }

  .home-hero-copy h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .home-hero-copy p {
    font-size: 16px;
  }

  .hero-proof-row {
    display: grid;
    gap: 8px;
  }

  .hero-proof-row span + span::before {
    display: none;
  }

  .access-preview {
    padding: 22px;
    border-radius: 24px;
  }

  .access-preview-head,
  .location-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .access-preview-meta {
    grid-template-columns: 1fr;
  }

  .access-preview-meta div {
    padding-inline: 0;
  }

  .home-section {
    padding-block: 62px;
  }

  .simple-steps article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .setup-actions {
    display: grid;
  }

  .control-card,
  .final-cta-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .control-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .control-list strong {
    text-align: left;
  }
}

.status-page {
  padding: 42px 0 92px;
}

.status-hero h1 {
  margin: 12px 0 30px;
  font-size: clamp(52px, 8vw, 86px);
  font-weight: 740;
  letter-spacing: -0.06em;
  line-height: 1;
}

.status-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 820px;
  padding: 24px;
  border: 1px solid rgba(239, 225, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.status-summary.is-ok {
  border-color: rgba(139, 239, 186, 0.2);
  background: rgba(68, 157, 111, 0.08);
}

.status-summary.is-warning {
  border-color: rgba(255, 205, 132, 0.2);
  background: rgba(184, 119, 35, 0.08);
}

.status-indicator {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #d3b3fb;
  box-shadow: 0 0 0 8px rgba(203, 166, 252, 0.1);
}

.status-summary.is-ok .status-indicator {
  background: #8defbc;
  box-shadow: 0 0 0 8px rgba(141, 239, 188, 0.1);
}

.status-summary.is-warning .status-indicator {
  background: #ffd08f;
  box-shadow: 0 0 0 8px rgba(255, 208, 143, 0.1);
}

.status-summary strong,
.status-summary span {
  display: block;
}

.status-summary strong {
  font-size: 18px;
}

.status-summary span,
.status-updated,
.status-node-row span,
.status-incident-row span,
.status-empty {
  color: rgba(244, 235, 255, 0.62);
  font-size: 13px;
}

.status-summary span {
  margin-top: 5px;
}

.status-updated {
  margin: 14px 0 0;
}

.status-section {
  padding-block: 58px 12px;
}

.status-section .section-intro {
  margin-bottom: 22px;
}

.status-section .section-intro h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.status-node-list,
.status-incident-list {
  display: grid;
  max-width: 940px;
  border-top: 1px solid rgba(239, 225, 255, 0.1);
}

.status-node-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(239, 225, 255, 0.1);
}

.status-node-row strong,
.status-node-row span {
  display: block;
}

.status-node-row > div span {
  margin-top: 4px;
}

.status-latency {
  white-space: nowrap;
}

.status-badge {
  min-width: 112px;
  padding: 8px 10px;
  border-radius: 999px;
  text-align: center;
  font-weight: 720;
}

.status-badge.is-ok {
  background: rgba(88, 185, 135, 0.12);
  color: #aaf2cb;
}

.status-badge.is-warning {
  background: rgba(214, 147, 63, 0.12);
  color: #ffd7a1;
}

.status-incident-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(239, 225, 255, 0.1);
}

.status-empty {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid rgba(239, 225, 255, 0.1);
}

.status-empty.is-success {
  color: #aaf2cb;
}

.status-help-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 70px;
  padding: 30px;
  border: 1px solid rgba(239, 225, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.status-help-card strong {
  font-size: 19px;
}

.status-help-card p {
  margin: 7px 0 0;
  color: rgba(244, 235, 255, 0.62);
  line-height: 1.6;
}

@media (max-width: 620px) {
  .status-node-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .status-latency {
    display: none;
  }

  .status-badge {
    min-width: 0;
  }

  .status-incident-row,
  .status-help-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-help-card .button-primary {
    width: 100%;
  }
}

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