/* ==========================================================================
   Strenatech — brand tokens (from Strenatech Colour Palette v1)
   ========================================================================== */
:root {
  --brand-maroon: #4A0D18;
  --brand-crimson: #8C1226;
  --brand-crimson-pressed: #6E0E1E;
  --brand-signal: #C42A3D;
  --brand-on-dark: #EE7C8C;

  --tint-04: #FDF6F6;
  --tint-12: #F3DFE2;
  --tint-24: #E0B9C0;

  --ink: #23282B;
  --ink-secondary: #4A5257;
  --ink-muted: #8A9296;
  --line: #E4E1DF;
  --paper: #FAF8F7;
  --surface: #FFFFFF;

  --night: #16181A;
  --night-surface: #1F2325;

  --status-up: #0F7A63;
  --status-info: #16618A;
  --status-warn: #B07908;
  --status-error: #D4451D;

  /* derived, theme-aware roles (light default) */
  --bg: var(--paper);
  --bg-elevated: var(--surface);
  --text: var(--ink);
  --text-secondary: var(--ink-secondary);
  --text-muted: var(--ink-muted);
  --border: var(--line);
  --link-on-dark: var(--brand-on-dark);
  --overlay-tint: var(--tint-04);
  --chip-tint: var(--tint-12);
  --chip-border: var(--tint-24);

  --font-display: "Segoe UI Semibold", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(35, 40, 43, 0.06), 0 1px 1px rgba(35, 40, 43, 0.04);
  --shadow-md: 0 8px 24px rgba(35, 40, 43, 0.08), 0 2px 6px rgba(35, 40, 43, 0.06);
  --shadow-lg: 0 24px 48px rgba(35, 40, 43, 0.14), 0 6px 16px rgba(35, 40, 43, 0.08);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: var(--night);
    --bg-elevated: var(--night-surface);
    --text: #F4F1F0;
    --text-secondary: #C7CBCE;
    --text-muted: #8A9296;
    --border: #2C3134;
    --overlay-tint: rgba(140, 18, 38, 0.08);
    --chip-tint: rgba(140, 18, 38, 0.18);
    --chip-border: rgba(238, 124, 140, 0.35);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.55);
  }
}
:root[data-theme="dark"] {
  --bg: var(--night);
  --bg-elevated: var(--night-surface);
  --text: #F4F1F0;
  --text-secondary: #C7CBCE;
  --text-muted: #8A9296;
  --border: #2C3134;
  --overlay-tint: rgba(140, 18, 38, 0.08);
  --chip-tint: rgba(140, 18, 38, 0.18);
  --chip-border: rgba(238, 124, 140, 0.35);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.55);
}
:root[data-theme="light"] {
  --bg: var(--paper);
  --bg-elevated: var(--surface);
  --text: var(--ink);
  --text-secondary: var(--ink-secondary);
  --text-muted: var(--ink-muted);
  --border: var(--line);
  --overlay-tint: var(--tint-04);
  --chip-tint: var(--tint-12);
  --chip-border: var(--tint-24);
  --shadow-sm: 0 1px 2px rgba(35, 40, 43, 0.06), 0 1px 1px rgba(35, 40, 43, 0.04);
  --shadow-md: 0 8px 24px rgba(35, 40, 43, 0.08), 0 2px 6px rgba(35, 40, 43, 0.06);
  --shadow-lg: 0 24px 48px rgba(35, 40, 43, 0.14), 0 6px 16px rgba(35, 40, 43, 0.08);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0; color: var(--text); text-wrap: balance; letter-spacing: -0.01em; }
p { margin: 0; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.tabular { font-variant-numeric: tabular-nums; }
:focus-visible { outline: 2px solid var(--brand-signal); outline-offset: 3px; border-radius: 4px; }

section { position: relative; }
.section-pad { padding: 96px 0; }
@media (max-width: 720px) { .section-pad { padding: 64px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-crimson);
}
:root[data-theme="dark"] .eyebrow, .on-dark .eyebrow { color: var(--brand-on-dark); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-signal); box-shadow: 0 0 0 4px var(--chip-tint); flex: none; }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; margin-top: 12px; }
.section-head p { color: var(--text-secondary); font-size: 17px; margin-top: 14px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand-crimson); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-crimson-pressed); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--brand-crimson); color: var(--brand-crimson); }
.on-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.28); }
.on-dark .btn-ghost:hover { border-color: var(--brand-on-dark); color: var(--brand-on-dark); }
.btn-light { background: #fff; color: var(--brand-maroon); }
.btn-light:hover { background: var(--tint-12); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 6px 0;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 4px 0;
  background: color-mix(in srgb, var(--bg-elevated) 92%, transparent);
  backdrop-filter: blur(10px) saturate(140%);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 92px; width: auto; transition: height 0.25s ease; display: block; }
.is-scrolled .brand img { height: 68px; }
.brand .brand-word { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: 0.01em; }
.brand .brand-word b { color: var(--brand-crimson); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a { font-size: 14.5px; font-weight: 600; color: var(--text-secondary); position: relative; padding: 6px 0; }
.main-nav a:hover { color: var(--text); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--brand-crimson);
  transition: right 0.2s ease;
}
.main-nav a:hover::after { right: 0; }
.nav-login-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-chip { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--text-secondary); transition: color .2s ease; }
.phone-chip:hover { color: var(--brand-crimson); }
.phone-chip svg { width: 15px; height: 15px; color: var(--brand-crimson); flex: none; }
.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: border-color .2s, color .2s;
}
.theme-toggle:hover { border-color: var(--brand-crimson); color: var(--brand-crimson); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg-elevated); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--text); position: relative; transition: transform .2s, opacity .2s; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 980px) {
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw); background: var(--bg-elevated);
    flex-direction: column; align-items: flex-start; padding: 100px 28px 28px; gap: 6px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .3s ease; border-left: 1px solid var(--border); }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--border); }
  .phone-chip { display: none; }
  .nav-login-desktop { display: none; }
  .nav-login-mobile { display: block; }
  .nav-toggle { display: flex; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(20,10,12,0.4); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 150; }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 168px 0 90px;
  background: linear-gradient(180deg, var(--overlay-tint) 0%, var(--bg) 62%);
  overflow: clip;
}
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(38px, 5vw, 60px); line-height: 1.04; margin-top: 18px; }
.hero-copy h1 em { font-style: normal; color: var(--brand-crimson); }
.hero-copy .lede { margin-top: 20px; font-size: 18px; color: var(--text-secondary); max-width: 50ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.coverage-check {
  margin-top: 36px; padding: 8px; display: flex; gap: 8px; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); max-width: 480px;
}
.coverage-check input {
  flex: 1; border: none; background: transparent; padding: 12px 14px; font-size: 15px; color: var(--text); font-family: var(--font-body); min-width: 0;
}
.coverage-check input:focus { outline: none; }
.coverage-check input::placeholder { color: var(--text-muted); }
.coverage-result { margin-top: 12px; font-size: 14px; font-weight: 600; display: none; align-items: center; gap: 8px; }
.coverage-result.show { display: flex; }
.coverage-result.ok { color: var(--status-up); }
.coverage-result .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 40px; }
.trust-row .item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--text-secondary); }
.trust-row .item svg { width: 16px; height: 16px; color: var(--status-up); flex: none; }

.hero-visual { position: relative; aspect-ratio: 1/0.92; }
.hero-visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: var(--radius-lg); }
.hero-visual .glass-card {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3;
  background: color-mix(in srgb, var(--bg-elevated) 88%, transparent); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 26px 30px; width: 78%; text-align: center;
}
.glass-card .speed { font-family: var(--font-display); font-size: 46px; font-weight: 700; color: var(--brand-signal); line-height: 1; }
.glass-card .speed span { font-size: 18px; color: var(--text-secondary); font-weight: 600; margin-left: 4px; }
.glass-card .label { margin-top: 6px; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.glass-card .live { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 12px; font-weight: 700; color: var(--status-up); letter-spacing: 0.04em; }
.glass-card .live .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--status-up); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(15,122,99,.5);} 70% { box-shadow: 0 0 0 8px rgba(15,122,99,0);} }

@media (max-width: 980px) {
  .hero { padding-top: 140px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
}

/* ==========================================================================
   Partner strip
   ========================================================================== */
.partners { padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners .container { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: space-between; }
.partners .lbl { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); flex: none; }
.partners .marks { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.partners .marks span { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text-muted); letter-spacing: 0.02em; opacity: 0.85; transition: opacity .2s, color .2s; }
.partners .marks span:hover { opacity: 1; color: var(--brand-crimson); }

/* ==========================================================================
   Live network band (dark, maroon)
   ========================================================================== */
.status-band { background: var(--brand-maroon); color: #fff; padding: 56px 0; }
.status-band .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.status-band .stat .top { display: flex; align-items: baseline; gap: 6px; }
.status-band .stat .num { font-family: var(--font-display); font-size: clamp(28px, 3vw, 38px); font-weight: 700; }
.status-band .stat .unit { font-size: 15px; color: rgba(255,255,255,0.6); font-weight: 600; }
.status-band .stat .cap { margin-top: 6px; font-size: 13.5px; color: rgba(255,255,255,0.68); font-weight: 500; }
.status-band .stat.live .num { color: var(--brand-on-dark); }
@media (max-width: 820px) { .status-band .container { grid-template-columns: repeat(2, 1fr); row-gap: 30px; } }

/* ==========================================================================
   Plans
   ========================================================================== */
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 1080px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .plans-grid { grid-template-columns: 1fr; } }

.plan-card {
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column; position: relative; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-card.featured { border-color: var(--brand-crimson); box-shadow: var(--shadow-md); background: linear-gradient(180deg, var(--overlay-tint), var(--bg-elevated) 40%); }
.plan-card .badge {
  position: absolute; top: -13px; left: 26px; background: var(--brand-crimson); color: #fff; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.plan-card .plan-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.plan-card .plan-speed { margin-top: 14px; display: flex; align-items: baseline; gap: 6px; }
.plan-card .plan-speed .n { font-family: var(--font-display); font-size: 40px; font-weight: 700; }
.plan-card .plan-speed .u { font-size: 14px; font-weight: 700; color: var(--text-muted); }
.plan-card .plan-desc { margin-top: 6px; font-size: 13.5px; color: var(--text-muted); }
.plan-card .plan-price { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.plan-card .plan-price .amt { font-family: var(--font-display); font-size: 26px; font-weight: 700; }
.plan-card .plan-price .per { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.plan-card .plan-feats { margin: 20px 0 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan-card .plan-feats li { display: flex; gap: 9px; font-size: 13.8px; color: var(--text-secondary); align-items: flex-start; }
.plan-card .plan-feats svg { width: 15px; height: 15px; color: var(--status-up); flex: none; margin-top: 2px; }


/* ==========================================================================
   Build/craft section (technical credibility)
   ========================================================================== */
.craft { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.craft-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .craft-grid { grid-template-columns: 1fr; gap: 36px; } }
.craft-steps { display: flex; flex-direction: column; }
.craft-step { display: flex; gap: 18px; padding: 20px 0; border-top: 1px solid var(--border); }
.craft-step:last-child { border-bottom: 1px solid var(--border); }
.craft-step .idx { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--brand-crimson); flex: none; width: 28px; padding-top: 3px; }
.craft-step h4 { font-size: 16px; }
.craft-step p { margin-top: 6px; font-size: 14px; color: var(--text-secondary); }

.craft-visual { position: relative; background: var(--brand-maroon); border-radius: var(--radius-lg); padding: 40px; color: #fff; overflow: hidden; }
.craft-visual::before {
  content: ""; position: absolute; inset: -20%; background: radial-gradient(circle at 30% 30%, rgba(196,42,61,0.35), transparent 55%);
}
.craft-visual .row { position: relative; display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
.craft-visual .row:last-child { border-bottom: none; }
.craft-visual .row .k { font-size: 13.5px; color: rgba(255,255,255,0.72); }
.craft-visual .row .v { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--brand-on-dark); }

/* ==========================================================================
   Why grid
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { padding: 28px; border-radius: var(--radius-md); background: var(--bg-elevated); border: 1px solid var(--border); }
.why-card .ic { width: 42px; height: 42px; border-radius: 10px; background: var(--chip-tint); display: flex; align-items: center; justify-content: center; color: var(--brand-crimson); }
.why-card .ic svg { width: 21px; height: 21px; }
.why-card h4 { margin-top: 16px; font-size: 16.5px; }
.why-card p { margin-top: 8px; font-size: 14px; color: var(--text-secondary); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 780px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; background: none; border: none; text-align: left; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text); }
.faq-q .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--brand-crimson); left: 50%; top: 50%; transform: translate(-50%,-50%); transition: transform .25s ease; }
.faq-q .plus::before { width: 14px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 14px; }
.faq-item.open .plus::after { transform: translate(-50%,-50%) rotate(90deg) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 4px 22px; font-size: 14.5px; color: var(--text-secondary); max-width: 66ch; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner { background: var(--brand-crimson); color: #fff; text-align: center; padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before { content:""; position:absolute; inset:-30%; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 55%); }
.cta-banner h2 { position: relative; font-size: clamp(28px, 3.6vw, 42px); color: #fff; }
.cta-banner p { position: relative; margin-top: 14px; color: rgba(255,255,255,0.82); font-size: 16.5px; }
.cta-banner .hero-actions { position: relative; justify-content: center; margin-top: 30px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--brand-maroon); color: rgba(255,255,255,0.82); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-word { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: #fff; }
.footer-brand .brand-word b { color: var(--brand-on-dark); }
.footer-brand p { margin-top: 14px; font-size: 13.8px; line-height: 1.65; max-width: 34ch; color: rgba(255,255,255,0.68); }
.footer-col h5 { font-family: var(--font-display); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.footer-col ul { margin-top: 16px; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.85); }
.footer-col a:hover { color: var(--brand-on-dark); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.8px; }
.footer-contact svg { width: 15px; height: 15px; color: var(--brand-on-dark); flex: none; margin-top: 2px; }
.footer-newsletter { margin-top: 16px; display: flex; gap: 8px; }
.footer-newsletter input { flex: 1; min-width: 0; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-sm); padding: 11px 12px; color: #fff; font-size: 13.5px; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter button { border: none; background: #fff; color: var(--brand-maroon); border-radius: var(--radius-sm); padding: 0 16px; font-weight: 700; font-size: 13px; font-family: var(--font-display); }
.footer-newsletter-note { margin-top: 10px; font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,0.55); }

/* ==========================================================================
   Modal (subscribe)
   ========================================================================== */
.modal-scrim { position: fixed; inset: 0; background: rgba(20,10,12,0.55); z-index: 400; opacity: 0; pointer-events: none; transition: opacity .25s ease; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-scrim.is-open { opacity: 1; pointer-events: auto; }
.modal { background: var(--bg-elevated); border-radius: var(--radius-lg); width: 100%; max-width: 460px; padding: 32px; box-shadow: var(--shadow-lg); transform: translateY(16px) scale(0.98); transition: transform .25s ease; max-height: 88vh; overflow-y: auto; }
.modal-scrim.is-open .modal { transform: translateY(0) scale(1); }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.modal-head h3 { font-size: 21px; }
.modal-head p { margin-top: 6px; font-size: 13.5px; color: var(--text-secondary); }
.modal-close { flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); background: transparent; color: var(--text-secondary); font-size: 16px; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { border-color: var(--brand-crimson); color: var(--brand-crimson); }
.form-field { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12.5px; font-weight: 700; color: var(--text-secondary); }
.form-field input, .form-field select { padding: 12px 13px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg); color: var(--text); font-size: 14.5px; font-family: var(--font-body); }
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--brand-crimson); }
.modal .btn { margin-top: 22px; }

.pay-method-list { display: flex; flex-direction: column; gap: 8px; }
.pay-method-option { position: relative; display: block; cursor: pointer; }
.pay-method-option input { position: absolute; opacity: 0; }
.pay-method-card {
  display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg); font-size: 13.5px; font-weight: 600; color: var(--text);
  transition: border-color .15s, background .15s;
}
.pay-method-card svg { width: 17px; height: 17px; flex: none; color: var(--text-muted); }
.pay-method-option input:checked + .pay-method-card { border-color: var(--brand-crimson); background: var(--overlay-tint); }
.pay-method-option input:checked + .pay-method-card svg { color: var(--brand-crimson); }
.pay-method-option.is-disabled { cursor: not-allowed; }
.pay-method-option.is-disabled .pay-method-card { color: var(--text-muted); opacity: .65; }
.pay-method-tag { font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); margin-left: 4px; }
.pay-method-option input:checked + .pay-method-card .pay-method-tag { color: var(--brand-crimson); }
.modal-success { text-align: center; padding: 12px 0; }
.modal-success .ic { width: 56px; height: 56px; border-radius: 50%; background: var(--tint-12); color: var(--status-up); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.modal-success .ic svg { width: 26px; height: 26px; }
.modal-success h3 { font-size: 19px; }
.modal-success p { margin-top: 8px; font-size: 14px; color: var(--text-secondary); }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
