/* ============================================================
   VPNXE Design System — Base
   Frost-blue dispatch window system
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Colors: surfaces */
  --bg: #E8EEF9;
  --bg-soft: #F0F5FC;
  --panel: #F6F9FE;
  --panel2: #DCE5F4;
  --lift: #FFFFFF;

  /* Colors: lines */
  --border: #C4D2E8;
  --border-soft: rgba(196, 210, 232, .55);

  /* Colors: accent */
  --accent: #0F8A5F;
  --accent-dark: #0A6B49;
  --accent-tint: rgba(15, 138, 95, .10);
  --accent-tint2: rgba(15, 138, 95, .18);

  /* Colors: text */
  --text: #17233A;
  --muted: #55688A;

  /* Colors: semantic */
  --success: #1E9E6A;
  --warn: #C77F0A;
  --error: #C2413B;

  /* Colors: flags */
  --flag-red: #CE3B45;
  --flag-blue: #2E4C93;
  --flag-gold: #F2C233;
  --flag-black: #26262E;
  --flag-white: #FFFFFF;

  /* Radii */
  --r-s: 8px;
  --r-m: 12px;
  --r-l: 16px;
  --r-pill: 999px;

  /* Fonts */
  --font-display: 'Inter', 'PingFang SC', 'Hiragino Sans', 'Microsoft YaHei', 'Malgun Gothic', sans-serif;
  --font-body: 'Inter', 'PingFang SC', 'Hiragino Sans', 'Microsoft YaHei', 'Malgun Gothic', sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(23, 35, 58, .05), 0 10px 24px -10px rgba(23, 35, 58, .12);
  --shadow-win: 0 2px 6px rgba(23, 35, 58, .07), 0 30px 60px -18px rgba(23, 35, 58, .22);
  --shadow-btn: 0 6px 16px -6px rgba(15, 138, 95, .45);
  --shadow-lift: 0 12px 32px -12px rgba(23, 35, 58, .18);

  /* Layout */
  --gutter: 32px;
  --header-h: 74px;
  --maxw: 1240px;

  /* Motion */
  --ease-out: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

html.nav-open {
  overflow: hidden;
}

body {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 56%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body:has(.float-cta)::after {
  content: '';
  display: block;
  height: calc(88px + env(safe-area-inset-bottom, 0px));
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::selection {
  background: var(--accent-tint2);
  color: var(--accent-dark);
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.2;
}

h1 {
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.2;
}

h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

h4 {
  font-size: 17px;
  font-weight: 800;
}

p {
  color: var(--text);
}

strong {
  font-weight: 800;
  color: var(--text);
}

.no-break {
  white-space: nowrap;
}

code,
pre {
  font-family: var(--font-mono);
  font-size: .92em;
}

code {
  overflow-wrap: anywhere;
}

pre {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- Buttons ---------- */
.btn-main {
  display: inline-block;
  background: var(--accent);
  color: var(--lift);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15.5px;
  padding: 15px 34px;
  border-radius: 10px;
  box-shadow: var(--shadow-btn);
  transition: background .15s, transform .15s;
  text-align: center;
}

.btn-main:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  border: 1.5px solid var(--border);
  background: transparent;
  padding: 13.5px 28px;
  border-radius: 10px;
  transition: border-color .15s, background .15s;
  text-align: center;
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--panel);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--lift);
  border-radius: var(--r-s);
  transition: border-color .15s, box-shadow .15s;
}

.btn-login:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(23, 35, 58, .08);
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--r-s);
  transition: border-color .15s, background .15s;
}

/* ---------- Kicker / Badge ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  letter-spacing: .02em;
}

.kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge-accent {
  color: var(--accent-dark);
  background: var(--accent-tint);
  border-color: var(--accent);
}

.badge-success {
  color: var(--success);
  background: rgba(30, 158, 106, .1);
  border-color: rgba(30, 158, 106, .3);
}

/* ---------- Header ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 34px;
  height: var(--header-h);
  padding-inline: var(--gutter);
  border-bottom: 1px solid var(--border);
  background: rgba(246, 249, 254, .72);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

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

.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: .02em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 10px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .15s;
  padding: 6px 2px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.on {
  color: var(--text);
  font-weight: 800;
}

.header-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 6px;
  transition: color .15s;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn svg {
  width: 14px;
  height: 14px;
  flex: none;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--lift);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  box-shadow: var(--shadow-lift);
  padding: 6px;
  display: none;
  z-index: 20;
}

.lang-menu.open {
  display: block;
}

.lang-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--r-s);
  white-space: nowrap;
  transition: background .15s, color .15s;
}

.lang-menu a:hover {
  background: var(--bg-soft);
  color: var(--text);
}

.lang-menu a.on {
  color: var(--accent-dark);
  background: var(--accent-tint);
  font-weight: 800;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex: none;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--panel);
  padding: 16px var(--gutter) 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 99;
}

.mobile-drawer.open {
  display: block;
}

.mobile-drawer > a {
  display: block;
  padding: 13px 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border-soft);
  transition: color .15s, background .15s;
}

.mobile-drawer > a:hover {
  background: var(--bg-soft);
}

.mobile-drawer > a.on {
  color: var(--accent-dark);
  font-weight: 800;
}

.drawer-lang {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.drawer-lang a {
  display: block;
  width: 100%;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  transition: color .15s, background .15s, border-color .15s;
}

.drawer-lang a:hover {
  color: var(--text);
}

.drawer-lang a.on {
  color: var(--accent-dark);
  background: var(--accent-tint);
  border-color: var(--accent);
}

/* ---------- Footer ---------- */
#site-footer {
  border-top: 1px solid var(--border);
  background: var(--panel);
  margin-top: 80px;
}

.footer-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px var(--gutter) 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--text);
}

.footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 5px 0;
  transition: color .15s;
}

.footer-col a:hover {
  color: var(--accent-dark);
}

.footer-hot {
  margin-top: 36px;
}

.footer-hot h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-hot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-hot-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  transition: color .15s, border-color .15s;
}

.footer-hot-links a:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-soft);
  margin-top: 32px;
  padding-top: 20px;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color .15s;
}

.footer-legal a:hover {
  color: var(--text);
}

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 44px 0 36px;
}

.hero-in {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 60px;
  align-items: center;
}

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

.hero h1 {
  margin: 20px 0 16px;
}

.hero h1 .hl {
  color: var(--accent);
}

.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 540px;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 800;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 16px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust b {
  color: var(--success);
  font-weight: 800;
  font-size: 13px;
}

.props {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.prop-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.prop-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--muted);
  flex: none;
  width: 76px;
}

.plat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.plat svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex: none;
}

.plat + .plat {
  margin-left: 8px;
}

.flagrow {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.flagchip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.flagchip svg {
  width: 24px;
  height: 16px;
  flex: none;
}

/* ---------- Hero Device: Dispatch Window ---------- */
.stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.stage::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 38px;
  right: -22px;
  bottom: -24px;
  background: var(--panel2);
  border-radius: var(--r-l);
  z-index: 0;
}

.win {
  position: relative;
  z-index: 1;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-win);
  transform: perspective(1500px) rotateY(-5deg) rotateX(1deg);
  transform-origin: 60% 50%;
  transition: transform .5s var(--ease-out);
  overflow: hidden;
}

.win:hover {
  transform: perspective(1500px) rotateY(-2deg) rotateX(0deg);
}

.win-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.win-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
}

.d-r { background: var(--error); }
.d-y { background: var(--warn); }
.d-g { background: var(--success); }

.win-title {
  margin-left: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}

.win-tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 8px;
  background: var(--panel);
}

.win-body {
  display: grid;
  grid-template-columns: 186px minmax(0, 1fr);
}

.win-lines {
  border-right: 1px solid var(--border);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lines-cap {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--muted);
  padding: 2px 10px 8px;
}

.line {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: var(--r-s);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.line svg {
  width: 22px;
  height: 15px;
  flex: none;
}

.line .zone {
  flex: 1;
  min-width: 0;
}

.line.active {
  background: var(--accent-tint);
  color: var(--accent-dark);
  box-shadow: inset 3px 0 0 var(--accent);
}

.line .now {
  font-size: 10px;
  font-weight: 800;
  color: var(--lift);
  background: var(--accent);
  border-radius: var(--r-pill);
  padding: 2px 7px;
  flex: none;
}

.win-main {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.state-cap {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--muted);
}

.state {
  display: flex;
  align-items: center;
  gap: 16px;
}

.switch {
  width: 86px;
  height: 46px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: inset 0 2px 5px rgba(10, 107, 73, .5), 0 4px 12px -4px rgba(15, 138, 95, .55);
  position: relative;
  flex: none;
}

.switch::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lift);
  box-shadow: 0 2px 6px rgba(23, 35, 58, .28);
}

.state-txt {
  min-width: 0;
}

.state-line1 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
}

.dot-live {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  flex: none;
  animation: pulse 2.2s ease-in-out infinite;
}

.state-line2 {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 3px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: .55; }
}

.plan {
  background: var(--lift);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  padding: 15px 17px;
  box-shadow: var(--shadow-card);
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan-cap {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--muted);
}

.plan-badge {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--accent-dark);
  background: var(--accent-tint);
  border-radius: var(--r-pill);
  padding: 3px 9px;
}

.plan-price {
  margin-top: 9px;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.plan-price .num {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 26px;
  color: var(--text);
  letter-spacing: -.02em;
}

.plan-price .per {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.plan-price .quota {
  margin-left: auto;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--accent-dark);
}

.plan-note {
  margin-top: 7px;
  font-size: 12px;
  color: var(--muted);
}

.proto-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.proto {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  border-radius: 6px;
  padding: 4px 9px;
}

/* ---------- Reveal ---------- */
.reveal {
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  will-change: opacity, transform;
}

.reveal.pending {
  opacity: 0;
  transform: translateY(16px);
}

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

/* ---------- Counter Stats ---------- */
.stat-num,
[data-count] {
  font-variant-numeric: tabular-nums;
  min-width: 1.5em;
  display: inline-block;
}

/* ---------- Tilt Card ---------- */
.tilt-card {
  will-change: transform;
  transform-style: preserve-3d;
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .hero-in {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .win {
    transform: none;
  }

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .lang-switch {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-tools {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
    --header-h: 60px;
  }

  h1 {
    font-size: 34px;
    letter-spacing: -.01em;
  }

  .hero h1 {
    font-size: 34px;
  }

  /* Narrow screens: let no-break spans in headings wrap to avoid overflow */
  h1 .no-break,
  h2 .no-break {
    white-space: normal;
  }

  /* Narrow screens: clip hero decoration that extends past the viewport */
  .stage {
    overflow-x: clip;
    max-width: 100%;
  }

  .hero-sub {
    font-size: 15px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cta-row .btn-main,
  .cta-row .btn-ghost {
    width: 100%;
  }

  .tilt-card {
    transform: none !important;
  }

  .win-body {
    grid-template-columns: 1fr;
  }

  .win-lines {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .prop-label {
    width: 100%;
  }

  .plat + .plat {
    margin-left: 0;
  }
}

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

  .win,
  .btn-main,
  .btn-ghost,
  .btn-login,
  .float-cta,
  .nav-links a,
  .footer-col a,
  .footer-hot-links a,
  .plan-card,
  .platform-card,
  .blog-card {
    transition: none !important;
  }

  .dot-live {
    animation: none;
  }

  .reveal,
  .reveal.pending {
    opacity: 1 !important;
    transform: none !important;
  }
}