/* ============================================
   D11Host — Design Tokens
   ============================================ */
:root {
  --ink: #0B1220;
  --navy: #101B33;
  --navy-soft: #16223F;
  --navy-softer: #1E2C4D;
  --signal: #1FAE7A;
  --signal-dark: #158A60;
  --signal-soft: #E1F5EC;
  --primary: #4853E3;
  --primary-dark: #363FC4;
  --amber: #F5A524;
  --amber-dark: #D98C0F;
  --bg: #F7F8FA;
  --surface: #FFFFFF;
  --border: #E4E8F0;
  --border-strong: #CBD3E1;
  --text: #101B33;
  --text-muted: #5B6B85;
  --text-on-dark: #F7F8FA;
  --text-on-dark-muted: #9FADC7;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Plus Jakarta Sans', sans-serif;

  --heading: #101B33;
  --header-bg: rgba(247, 248, 250, 0.92);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --container: 1160px;
  --shadow-sm: 0 1px 2px rgba(16, 27, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 27, 51, 0.08);
  --shadow-lg: 0 16px 48px rgba(16, 27, 51, 0.14);

  color-scheme: light;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* ============================================
   Dark theme — toggled via [data-theme="dark"] on <html>
   ============================================ */
[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0B1220;
  --surface: #16223F;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.22);
  --heading: #F1F5FB;
  --text: #F1F5FB;
  --text-muted: #9FADC7;
  --signal-soft: rgba(31, 174, 122, 0.16);
  --signal-dark: #34D399;
  --header-bg: rgba(11, 18, 32, 0.86);
  --primary: #6773F5;
  --primary-dark: #4853E3;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--heading);
}
p { margin: 0 0 16px; color: var(--text-muted); }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal-dark);
  background: var(--signal-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--dark { background: var(--navy); }
.section--alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 38px); }
.section-head p { font-size: 17px; margin-bottom: 0; }
.section--dark .section-head h2,
.section--dark h2 { color: var(--text-on-dark); }
.section--dark .section-head p { color: var(--text-on-dark-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--primary); color: #FFFFFF; box-shadow: 0 4px 14px rgba(72, 83, 227, 0.35); }
.btn--primary:hover { background: var(--primary-dark); }
.btn--ghost { background: transparent; border-color: var(--border-strong); color: var(--heading); }
.btn--ghost:hover { border-color: var(--heading); }
.btn--ghost-dark { background: transparent; border-color: rgba(255,255,255,0.25); color: var(--text-on-dark); }
.btn--ghost-dark:hover { border-color: rgba(255,255,255,0.6); }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--block { width: 100%; }

/* ============================================
   Flash sale announcement bar
   ============================================ */
.flash-bar {
  background: var(--primary);
  color: #FFFFFF;
  animation: flash-pulse 2.2s ease-in-out infinite;
}
.flash-bar-inner {
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 24px;
  line-height: 1.4;
}
.flash-bar-inner strong { font-weight: 700; }
@keyframes flash-pulse {
  0%, 100% { background: var(--primary); }
  50% { background: var(--primary-dark); }
}

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo-img { height: 42px; width: auto; display: block; }
.site-footer .logo-img,
[data-theme="dark"] .site-header .logo-img { filter: brightness(0) invert(1); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover { color: var(--heading); }
.nav-links a.active { color: var(--heading); font-weight: 700; }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; border-radius: 2px; background: var(--primary);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--heading); position: relative; transition: 0.2s;
}
.nav-toggle span::before { content: ''; position: absolute; top: -6px; }
.nav-toggle span::after { content: ''; position: absolute; top: 6px; }

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0s linear 0.25s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-toggle { display: block; }
  .nav-actions .btn--ghost { display: none; }
  .nav-item { width: 100%; }
  .nav-trigger { width: 100%; justify-content: space-between; padding: 4px 0; }
}

/* Theme toggle */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--heading);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s ease;
}
.theme-toggle:hover { border-color: var(--heading); }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* Mega menu */
.nav-item { position: relative; }
.nav-trigger {
  display: flex; align-items: center; gap: 7px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 500;
  color: var(--text-muted);
  padding: 0;
}
.nav-trigger:hover, .nav-item.open .nav-trigger { color: var(--heading); }
.nav-trigger.active { color: var(--heading); font-weight: 700; }
.nav-trigger .chev {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
  margin-top: -3px;
}
.nav-item.open .nav-trigger .chev { transform: rotate(-135deg); margin-top: 3px; }

.mega-panel {
  position: absolute; top: calc(100% + 20px); left: 50%; transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  display: none;
  z-index: 200;
}
.nav-item.open .mega-panel { display: block; }
.mega-panel--products { width: 540px; }
.mega-panel--domain { width: 300px; }
.mega-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.mega-grid--single { grid-template-columns: 1fr; }
.mega-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}
.mega-item:hover { background: var(--bg); }
.mega-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--signal-soft); color: var(--signal-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
}
.mega-item strong { display: block; font-size: 14.5px; font-weight: 600; font-family: var(--font-display); color: var(--heading); margin-bottom: 2px; }
.mega-item small { font-size: 12.5px; color: var(--text-muted); line-height: 1.4; display: block; }

@media (hover: hover) and (min-width: 901px) {
  .nav-item.has-mega:hover .mega-panel { display: block; }
  .nav-item.has-mega::before {
    content: '';
    position: absolute;
    top: 100%; left: -20px; right: -20px;
    height: 20px;
  }
}

@media (max-width: 900px) {
  .mega-panel { position: static; transform: none; width: 100% !important; box-shadow: none; border: none; padding: 8px 0 4px 14px; margin-top: 10px; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-item { padding: 10px 0; }
}

/* Status dot */
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--signal);
  display: inline-block;
  box-shadow: 0 0 0 rgba(31, 174, 122, 0.5);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(31, 174, 122, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(31, 174, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 174, 122, 0); }
}

/* ============================================
   Hero + Network Map
   ============================================ */
.hero {
  background: var(--navy);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.hero-slider { position: relative; }
.hero-slide { display: none; padding: 60px 0; align-items: center; }
.hero-slide.active { display: flex; animation: hero-fade 0.4s ease; }
.hero-slide .hero-grid { width: 100%; }
@keyframes hero-fade { from { opacity: 0; } to { opacity: 1; } }

@media (min-width: 901px) {
  .hero-slider { height: 620px; }
  .hero-slide {
    display: flex;
    position: absolute; inset: 0; width: 100%;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.4s ease;
    animation: none;
  }
  .hero-slide.active { opacity: 1; visibility: visible; pointer-events: auto; }
}

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: var(--text-on-dark);
  font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  transition: background 0.15s ease;
}
.hero-arrow:hover { background: rgba(255,255,255,0.18); }
.hero-arrow--prev { left: 16px; }
.hero-arrow--next { right: 16px; }

.hero-dots { display: flex; justify-content: center; gap: 8px; padding-bottom: 28px; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: none; cursor: pointer;
  padding: 0; transition: background 0.15s ease, width 0.15s ease;
}
.hero-dot.active { background: var(--primary); width: 22px; border-radius: 4px; }

.hero-ticket { display: flex; align-items: center; justify-content: center; padding: 20px 0; }
.hero-ticket .plan-card { max-width: 300px; width: 100%; }

@media (max-width: 900px) {
  .hero-arrow { display: none; }
  .hero-slide { min-height: 0; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1,
.hero h2 {
  color: var(--text-on-dark);
  font-size: clamp(32px, 4.6vw, 52px);
  letter-spacing: -0.01em;
}
.hero .lede { font-size: 18px; color: var(--text-on-dark-muted); max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; margin: 28px 0 36px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 13px; color: var(--text-on-dark-muted); }
.hero-meta strong { color: var(--text-on-dark); font-weight: 600; }

.network-map { position: relative; padding: 20px 0 60px; }
.network-svg { width: 100%; height: auto; }
.network-svg .route { fill: none; stroke: rgba(255,255,255,0.18); stroke-width: 1.5; stroke-dasharray: 4 6; }
.network-svg .node-ring { fill: none; stroke: var(--signal); stroke-width: 1.5; opacity: 0.5; }
.network-svg .node-dot { fill: var(--signal); }
.network-svg .node-dot.amber { fill: var(--amber); }
.network-svg text { font-family: var(--font-mono); font-size: 11px; fill: var(--text-on-dark-muted); letter-spacing: 0.04em; }
.network-svg .pulse { animation: map-pulse 2.4s ease-out infinite; transform-origin: center; }
@keyframes map-pulse {
  0% { r: 4; opacity: 0.9; }
  100% { r: 16; opacity: 0; }
}

/* ============================================
   Status rows (feature list styled like uptime dashboard)
   ============================================ */
.status-board {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.status-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
}
.status-row:last-child { border-bottom: none; }
.status-row .status-dot { margin-top: 7px; flex-shrink: 0; }
.status-row .status-body { flex: 1; }
.status-row h3 { font-size: 17px; margin-bottom: 4px; }
.status-row p { margin-bottom: 0; font-size: 14.5px; }
.status-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--signal-dark);
  background: var(--signal-soft);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 4px;
}

.status-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.status-grid .status-row { background: var(--surface); border-bottom: none; }

/* ============================================
   Plan cards — "spec ticket" style
   ============================================ */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.plan-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.plan-card.featured { border-color: var(--primary); box-shadow: var(--shadow-md); }
.plan-badge {
  position: absolute; top: -12px; right: 20px;
  background: var(--primary); color: #FFFFFF;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
}
.plan-card h3 { font-size: 20px; margin-bottom: 6px; }
.plan-price { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 32px; font-weight: 700; color: var(--heading); margin-bottom: 2px; }
.plan-price span { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.plan-cycle { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.plan-renewal { font-size: 13px; color: var(--text-muted); margin: -6px 0 6px; line-height: 1.4; }
.plan-renewal span { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 600; color: var(--heading); }
.plan-save {
  display: inline-block; font-size: 12px; font-weight: 700; color: var(--signal-dark);
  background: var(--signal-soft); padding: 2px 9px; border-radius: 999px; margin: 0 0 18px;
  letter-spacing: .02em;
}
.plan-divider {
  border: none;
  border-top: 1.5px dashed var(--border-strong);
  margin: 4px 0 18px;
}
.plan-specs { flex: 1; margin-bottom: 22px; }
.plan-specs li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 14px; color: var(--text); padding: 6px 0;
}
.plan-specs li span:first-child { color: var(--text-muted); }
.plan-specs li span:last-child { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 600; text-align: right; }

/* ============================================
   Feature / trust cards
   ============================================ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.trust-card .stat { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 28px; font-weight: 700; color: var(--signal-dark); display: block; margin-bottom: 6px; }
.trust-card h3 { font-size: 15.5px; margin-bottom: 6px; }
.trust-card p { font-size: 13.5px; margin-bottom: 0; }

/* ============================================
   FAQ accordion
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px; font-family: var(--font-display); font-size: 16.5px; font-weight: 600; color: var(--heading);
}
.faq-q .icon { font-family: var(--font-mono); color: var(--signal-dark); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 4px 20px; font-size: 15px; }

/* ============================================
   Data-center pricing tabs
   ============================================ */
.dc-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; }
.dc-tab {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600;
  padding: 10px 22px; border-radius: 999px;
  border: 1px solid var(--border-strong); background: var(--surface); color: var(--text-muted);
  cursor: pointer; transition: all 0.15s ease;
}
.dc-tab.active { background: var(--primary); border-color: var(--primary); color: #FFFFFF; }
.dc-panel { display: none; }
.dc-panel.active { display: block; }

/* ============================================
   "All Plans Include" feature grid
   ============================================ */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px 28px; }
.feature-item { text-align: left; }
.feature-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--signal-soft); color: var(--signal-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature-item h3 { font-size: 16.5px; margin-bottom: 8px; }
.feature-item p { font-size: 14px; margin-bottom: 0; }

/* ============================================
   Generic content sections (legal pages, etc.)
   ============================================ */
.page-hero {
  background: var(--navy);
  color: var(--text-on-dark);
  padding: 64px 0 48px;
}
.page-hero h1 { color: var(--text-on-dark); margin-bottom: 8px; }
.page-hero p { color: var(--text-on-dark-muted); margin-bottom: 0; }

.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 22px; margin-top: 36px; }
.prose h2:first-child { margin-top: 0; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; color: var(--text-muted); }

/* ============================================
   Domain search box
   ============================================ */
.domain-search-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
  display: flex;
  gap: 10px;
  box-shadow: var(--shadow-md);
  max-width: 620px;
  margin: 0 auto;
}
.domain-search-box input {
  flex: 1; border: none; outline: none; font-size: 16px; padding: 12px 14px; font-family: var(--font-body); background: transparent; color: var(--text);
}
.tld-table { width: 100%; border-collapse: collapse; }
.tld-table th, .tld-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.tld-table th { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); }
.tld-table td.price { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 600; color: var(--heading); }

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.footer-grid .logo { color: var(--text-on-dark); margin-bottom: 12px; }
.footer-grid p { font-size: 14px; max-width: 280px; }
.footer-col h4 { color: var(--text-on-dark); font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14.5px; color: var(--text-on-dark-muted); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--text-on-dark); }
.social-links { display: flex; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.social-links a { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: var(--text-on-dark-muted); transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease; }
.social-links svg { width: 17px; height: 17px; fill: currentColor; }
.social-links a:hover { background: var(--navy); color: var(--text-on-dark); border: 1px solid rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .status-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero-meta { gap: 16px; }
}
