/**
 * FOLK VPN — Cyber Brutalism design tokens + components (AURA).
 * Source: teya-memory/design/AURADESIGN.md
 */

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --color-primary: #ccff00;
  --color-primary-hover: #b8e600;
  --color-primary-muted: rgba(204, 255, 0, 0.15);
  --color-on-primary: #000000;
  --color-bg: #000000;
  --color-on-bg: #ffffff;
  --color-surface-lowest: #050505;
  --color-surface-low: #0a0a0a;
  --color-surface-container: #111111;
  --color-surface-high: #1a1a1a;
  --color-surface-elevated: #222222;
  --color-outline: rgba(255, 255, 255, 0.12);
  --color-outline-variant: rgba(255, 255, 255, 0.08);
  --color-grid-line: rgba(255, 255, 255, 0.06);
  --color-grid-cross: rgba(255, 255, 255, 0.25);
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.72);
  --color-text-muted: rgba(255, 255, 255, 0.45);
  --color-accent-glitch: rgba(204, 255, 0, 0.4);
  --color-error: #ff4444;
  --color-success: #ccff00;

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Golos Text", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --space-xs: 4px;
  --space-sm: 12px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-xxl: 96px;
  --gutter: 16px;
  --gutter-desktop: 24px;
  --section-y: 56px;
  --section-y-desktop: 96px;
  --container-max: 1200px;

  --radius-sm: 2px;
  --radius-default: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-full: 9999px;

  --border-thin: 1px solid var(--color-outline);
  --border-accent: 1px solid var(--color-primary);
  --shadow-glow-accent: 0 0 24px rgba(204, 255, 0, 0.25);
  --shadow-none: none;

  --header-height: 72px;
  --z-header: 100;
  --z-drawer: 200;
  --z-sticky-cta: 150;
  --z-cookie: 140;

  --focus-ring: 2px solid var(--color-primary);
}

@media (min-width: 768px) {
  :root {
    --section-y: var(--section-y-desktop);
    --gutter: var(--gutter-desktop);
  }
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.folk-vpn {
  margin: 0;
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.folk-vpn ::selection {
  background: var(--color-primary-muted);
  color: var(--color-primary);
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: var(--color-primary-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.skip-link:focus {
  left: var(--gutter);
  top: var(--gutter);
}

.container {
  width: min(100% - var(--gutter) * 2, var(--container-max));
  margin-inline: auto;
}

/* ==========================================================================
   Tech grid + scanlines (motion hooks)
   ========================================================================== */
.tech-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M 0 30 L 60 30 M 30 0 L 30 60' stroke='rgba(255, 255, 255, 0.04)' stroke-width='1'/%3E%3Cpath d='M 26 30 L 34 30 M 30 26 L 30 34' stroke='rgba(204, 255, 0, 0.30)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  background-position: center center;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
}

.scanlines,
.scanlines-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  );
  background-size: 100% 4px;
  opacity: 0.015;
  animation: scanline-flicker 0.15s infinite;
}

@keyframes scanline-flicker {
  0% { opacity: 0.012; }
  50% { opacity: 0.018; }
  100% { opacity: 0.012; }
}

@media (prefers-reduced-motion: reduce) {
  .scanlines,
  .scanlines-overlay {
    animation: none;
    opacity: 0.012;
  }
}

/* ==========================================================================
   HUD Components (Cyber Brutalism Premium)
   ========================================================================== */
.hud-panel {
  position: relative;
  background: rgba(3, 3, 3, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 0px !important; /* Категорически без скруглений */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hud-panel:hover {
  border-color: rgba(204, 255, 0, 0.3);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.05);
}

.hud-corner {
  position: absolute;
  width: 6px;
  height: 6px;
  border-color: #CCFF00;
  border-style: solid;
  pointer-events: none;
  transition: transform 0.3s ease;
  z-index: 5;
}
.hud-corner-tl { top: -1px; left: -1px; border-width: 1.5px 0 0 1.5px; }
.hud-corner-tr { top: -1px; right: -1px; border-width: 1.5px 1.5px 0 0; }
.hud-corner-bl { bottom: -1px; left: -1px; border-width: 0 0 1.5px 1.5px; }
.hud-corner-br { bottom: -1px; right: -1px; border-width: 0 1.5px 1.5px 0; }

.hud-panel:hover .hud-corner-tl { transform: translate(-2px, -2px); }
.hud-panel:hover .hud-corner-tr { transform: translate(2px, -2px); }
.hud-panel:hover .hud-corner-bl { transform: translate(-2px, 2px); }
.hud-panel:hover .hud-corner-br { transform: translate(2px, 2px); }

.hud-barcode {
  width: 64px;
  height: 16px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.25) 1px,
    transparent 1px,
    transparent 3px,
    rgba(255, 255, 255, 0.25) 3px,
    rgba(255, 255, 255, 0.25) 4px,
    transparent 4px,
    transparent 6px,
    rgba(255, 255, 255, 0.25) 6px,
    rgba(255, 255, 255, 0.25) 8px,
    transparent 8px,
    transparent 9px
  );
  opacity: 0.5;
  display: inline-block;
}

.rendering-status {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rendering-text {
  animation: hud-pulse 1.5s ease-in-out infinite;
}

.rendering-progress-track {
  width: 80px;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  border-radius: 0px;
}

.rendering-progress-fill {
  height: 100%;
  background-color: var(--color-primary);
  transition: width 1s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.hud-coordinates {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hud-coordinates .coord-label {
  color: var(--color-primary);
  font-size: 8px;
}

.hazard-stripe-divider {
  height: 16px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #000000,
    #000000 12px,
    #CCFF00 12px,
    #CCFF00 24px
  );
  border-top: 1px solid #CCFF00;
  border-bottom: 1px solid #CCFF00;
}

@keyframes hud-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.site {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
  padding-top: var(--header-height);
}

/* ==========================================================================
   Typography
   ========================================================================== */
.display-xl,
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 var(--space-md);
}

.display-lg,
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-sm);
}

.headline-md,
h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 var(--space-sm);
}

.body-lg {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.body-md,
p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.label-mono,
.eyebrow,
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hud-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Buttons & chips
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: var(--border-thin);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-on-primary);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-on-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-primary);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-cta--block {
  width: 100%;
}

.btn-cta--sm {
  min-height: 40px;
  padding: 10px 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: var(--border-thin);
  background: var(--color-surface-high);
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

/* ==========================================================================
   Cards & visual slots
   ========================================================================== */
.card {
  background: var(--color-surface-low);
  border: var(--border-thin);
  border-radius: var(--radius-default);
  padding: var(--space-md);
}

.card-feature,
.card-pricing {
  background: var(--color-surface-container);
}

.card-visual-inline,
.card-visual-abs {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-default);
  border: var(--border-thin);
  background: var(--color-surface-lowest);
}

.card-visual-inline {
  min-height: 180px;
}

.pricing-card-visual {
  min-height: 160px;
}

.card-visual-abs {
  position: absolute;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.88);
  border-bottom: var(--border-thin);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: 100%;
}

.site-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.site-logo__mark {
  color: var(--color-primary);
}

.main-navigation {
  display: none;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-md);
}

.nav-list a {
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--color-primary);
}

.nav-list--footer {
  flex-direction: column;
  gap: 10px;
}

.nav-list--footer a {
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  background: var(--color-surface-high);
  color: var(--color-text-primary);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .main-navigation {
    display: block;
  }

  .nav-toggle {
    display: none;
  }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  background: rgba(0, 0, 0, 0.72);
}

.mobile-drawer__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 360px);
  background: var(--color-surface-low);
  border-left: var(--border-thin);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-drawer__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-text-primary);
  cursor: pointer;
}

.nav-list--mobile {
  flex-direction: column;
  gap: var(--space-sm);
}

.nav-list--mobile a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
}

.mobile-drawer__cta {
  margin-top: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.hazard-stripe {
  height: 12px;
  background: repeating-linear-gradient(
    -45deg,
    #000000 0 12px,
    var(--color-primary) 12px 24px
  );
}

.site-footer {
  margin-top: var(--section-y);
  border-top: var(--border-thin);
  background: var(--color-surface-lowest);
}

.site-footer__grid {
  display: grid;
  gap: var(--space-lg);
  padding-block: var(--space-xl);
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.site-footer__lead {
  margin: var(--space-sm) 0 var(--space-md);
  max-width: 36ch;
}

.footer-map-preview {
  max-height: 120px;
  object-fit: cover;
  opacity: 0.85;
}

.footer-col__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-sm);
}

.site-footer__bottom {
  border-top: var(--border-thin);
  padding-block: var(--space-md);
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .site-footer__bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.site-footer__copyright {
  margin: 0;
  font-size: 12px;
  color: var(--color-text-muted);
}

.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  bottom: var(--gutter);
  z-index: var(--z-cookie);
  max-width: 480px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .cookie-banner {
    left: auto;
    right: var(--gutter-desktop);
    margin-inline: 0;
  }
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-surface-container);
  border: var(--border-thin);
  border-radius: var(--radius-default);
}

.cookie-banner__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

.cookie-banner__text a {
  text-decoration: underline;
}

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky-cta);
  padding: var(--space-sm);
  background: rgba(0, 0, 0, 0.92);
  border-top: var(--border-accent);
}

@media (min-width: 769px) {
  .sticky-mobile-cta {
    display: none !important;
  }
}

/* ==========================================================================
   Sections (shell — PAGE BUILDER fills content)
   ========================================================================== */
.section {
  padding-block: var(--section-y);
}

.section-head {
  margin-bottom: var(--space-lg);
}

.theme-shell {
  padding-block: var(--space-xl);
}

.theme-shell__notice {
  padding: var(--space-md);
  border: var(--border-thin);
  border-radius: var(--radius-default);
  background: var(--color-surface-low);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Hero motion hooks (empty shell) */
.hero.section-hero {
  overflow: visible;
}

.hero-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 5fr 7fr;
    align-items: center;
  }
}

.status-bar__track {
  display: block;
  height: 6px;
  background: var(--color-surface-high);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.status-bar__fill {
  display: block;
  height: 100%;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
}

/* ==========================================================================
   WordPress core alignment helpers
   ========================================================================== */
.alignwide {
  max-width: var(--container-max);
  margin-inline: auto;
}

.alignfull {
  width: 100%;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ==========================================================================
   PAGE BUILDER — sections & layouts
   ========================================================================== */
.hero-actions,
.trust-row,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.trust-row {
  margin-top: var(--space-sm);
}

.chip--accent {
  border-color: var(--color-primary);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.hero-visual {
  position: relative;
  min-height: 280px;
  overflow: visible;
}

.hero-visual-abs {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  aspect-ratio: 1;
  z-index: 1;
}

.hero-globe-fallback {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.hero-globe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

html.js .hero-globe-fallback.is-webgl-active {
  opacity: 0;
  transition: opacity 0.4s ease;
}

html.js [data-globe-root].is-webgl-fallback .hero-globe-canvas {
  display: none;
}

.hero-scene-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  border-radius: var(--radius-default);
}

.hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  aspect-ratio: 1;
}

.hero-hud {
  position: absolute;
  left: 0;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hud-line {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-muted);
}

.hud-line.hud-active {
  color: var(--color-primary);
}

.glitch-block {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 48px;
  height: 8px;
  background: var(--color-accent-glitch);
}

.section-band,
.trial-strip {
  padding-block: var(--space-lg);
  background: var(--color-surface-container);
  border-block: var(--border-thin);
}

.trial-band__inner {
  display: grid;
  gap: var(--space-sm);
}

.page-hero {
  padding-block: var(--section-y);
}

.card-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .card-grid--services,
  .card-grid--support {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .card-grid--blog {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid--pricing {
    grid-template-columns: repeat(4, 1fr);
  }
}

.services-layout,
.protocol-layout,
.setup-layout,
.locations-layout,
.tv-layout {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .protocol-layout,
  .setup-layout,
  .tv-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .locations-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.setup-layout {
  position: relative;
}

.setup-visual {
  position: relative;
  min-height: 320px;
}

.setup-visual img,
.protocol-visual img,
.services-collage img,
.locations-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-bars {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .status-bars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.status-bar {
  padding: var(--space-md);
  background: var(--color-surface-low);
  border: var(--border-thin);
  border-radius: var(--radius-default);
}

.status-bar__track {
  display: block;
  margin-top: var(--space-sm);
}

.status-bar__value {
  margin: 0 0 4px;
}

.status-bar__caption {
  margin: 0 0 var(--space-sm);
}

.floating-cards {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .floating-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-price {
  margin: 0 0 var(--space-sm);
  color: var(--color-primary);
}

.pricing-card--highlight {
  border-color: var(--color-primary);
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 var(--space-md);
}

.location-chip.is-hub {
  animation: nodePulse 3s ease-in-out infinite;
}

@keyframes nodePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(204, 255, 0, 0.15);
  }
}

.setup-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
}

.setup-step {
  padding: var(--space-md);
  border: var(--border-thin);
  border-radius: var(--radius-default);
  background: var(--color-surface-low);
}

.setup-step.is-active {
  border-color: var(--color-primary);
}

.geo-answer {
  margin-top: var(--space-md);
  padding: var(--space-md);
}

.geo-answer__q {
  color: var(--color-primary);
}

.faq-list {
  display: grid;
  gap: var(--space-sm);
}

.faq-item {
  border: var(--border-thin);
  border-radius: var(--radius-default);
  background: var(--color-surface-low);
  padding: 0 var(--space-md);
}

.faq-item__q {
  cursor: pointer;
  padding: var(--space-md) 0;
  font-family: var(--font-display);
  font-size: 1rem;
  list-style: none;
}

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

.faq-item__a {
  padding-bottom: var(--space-md);
}

.faq-item__a a {
  text-decoration: underline;
}

.card-blog__link {
  display: block;
  color: inherit;
}

.card-blog__link:hover {
  color: inherit;
}

.card-blog__visual {
  margin: calc(var(--space-md) * -1) calc(var(--space-md) * -1) var(--space-sm);
  min-height: 160px;
}

.card-blog__label {
  margin-bottom: var(--space-sm);
}

.card-blog__title {
  margin-bottom: var(--space-sm);
}

.card-blog__more {
  display: inline-block;
  margin-top: var(--space-sm);
  color: var(--color-primary);
}

.locations-map--full {
  min-height: 280px;
}

.location-table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-md);
}

.location-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.location-table th,
.location-table td {
  padding: 12px;
  border: var(--border-thin);
  text-align: left;
  vertical-align: top;
}

.location-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-surface-high);
}

.content-prose h2 {
  margin-top: var(--space-lg);
}

.content-prose ul,
.content-prose ol {
  padding-left: 1.25rem;
}

.content-prose code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--color-surface-high);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.content-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: 0.95rem;
}

.content-prose th,
.content-prose td {
  border: var(--border-thin);
  padding: 0.65rem 0.85rem;
  text-align: left;
  vertical-align: top;
}

.content-prose th {
  background: var(--color-surface-high);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.content-prose tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.article-body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-nav {
  margin-top: var(--space-xl);
  display: grid;
  gap: var(--space-sm);
}

.legal-content {
  max-width: 72ch;
}

.legal-notice,
.trust-line {
  padding: var(--space-md);
  border: var(--border-thin);
  border-radius: var(--radius-default);
  background: var(--color-surface-low);
}

.legal-updated {
  margin-top: var(--space-xl);
  color: var(--color-text-muted);
}

.article-single__cover {
  margin-bottom: var(--space-lg);
  min-height: 200px;
}

.article-single__footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: var(--border-thin);
}

.section-intro {
  margin-bottom: var(--space-lg);
}

.section-link {
  margin-top: var(--space-md);
}

.cross-links {
  padding-left: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .scanlines,
  .glitch-block {
    animation: none !important;
  }

  .hero-globe-canvas {
    display: none !important;
  }

  .hero-globe-fallback {
    opacity: 1 !important;
  }

  .status-bar__fill {
    transform: scaleX(var(--fill, 1)) !important;
  }

  .location-chip.is-hub {
    animation: none !important;
  }
}
