/* ============================================================
   BASE & THEME VARIABLES — UPDATED DARK THEME WAVE
   ============================================================ */
:root, html[data-theme="dark"] {
  --bg: #060b14;
  --bg-2: #0a1220;
  --surface: #0f1a2e;
  --surface-2: #162236;
  --border: rgba(255,255,255,0.10);
  --border-soft: rgba(255,255,255,0.06);
  --text: #f0f4ff;
  --text-dim: #b8c8e8;
  --text-faint: #8aa0c8;
  --ember: #FF6A3D;
  --ember-2: #FF8A5C;
  --frost: #38BDF8;
  --frost-2: #818CF8;
  --success: #4ADE80;
  --ember-rgb: 255,106,61;
  --frost-rgb: 56,189,248;
  --ink-rgb: 255,255,255;
  --shadow-rgb: 0,0,0;
  --orb-opacity: .65;
  --shadow-card: 0 10px 30px rgba(0,0,0,0.45);
  --shadow-card-hover: 0 18px 48px rgba(0,0,0,0.55);
  --scrollbar-track: rgba(255,255,255,0.04);
  --scrollbar-thumb: linear-gradient(180deg, var(--ember), var(--frost-2));
  --scrollbar-thumb-hover: linear-gradient(180deg, var(--ember-2), var(--frost));
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --maxw: 1240px;
  --ease: cubic-bezier(.22,.9,.3,1);
  --brand-gradient: linear-gradient(135deg, #FF6A3D, #FFB65C, #38BDF8, #818CF8);
  --brand-text-shadow: 0 0 40px rgba(255,106,61,0.25);
  --nav-bg: rgba(6, 11, 20, 0.88);
  --nav-border: rgba(255,255,255,0.06);
  --wave-opacity: 0.06;
}

html[data-theme="light"] {
  --bg: #e8edf5;
  --bg-2: #d5dde8;
  --surface: #ffffff;
  --surface-2: #f0f4fa;
  --border: rgba(15,23,42,0.16);
  --border-soft: rgba(15,23,42,0.10);
  --text: #091520;
  --text-dim: #1a2a42;
  --text-faint: #3a5070;
  --ember: #1A5BBF;
  --ember-2: #4A7FFF;
  --frost: #0E8B9E;
  --frost-2: #6A4CF0;
  --success: #0F8B3A;
  --ember-rgb: 26,91,191;
  --frost-rgb: 14,139,158;
  --ink-rgb: 16,23,42;
  --shadow-rgb: 16,23,42;
  --orb-opacity: .20;
  --shadow-card: 0 8px 26px rgba(16,23,42,0.08);
  --shadow-card-hover: 0 16px 42px rgba(16,23,42,0.16);
  --scrollbar-track: rgba(15,23,42,0.06);
  --scrollbar-thumb: linear-gradient(180deg, var(--ember), var(--frost-2));
  --scrollbar-thumb-hover: linear-gradient(180deg, var(--ember-2), var(--frost));
  --brand-gradient: linear-gradient(135deg, #1A5BBF, #4A7FFF, #0E8B9E, #6A4CF0);
  --brand-text-shadow: 0 0 30px rgba(26,91,191,0.20);
  --nav-bg: rgba(255, 255, 255, 0.90);
  --nav-border: rgba(15,23,42,0.10);
  --wave-opacity: 0.03;
}

/* ============================================================
   RESET & GLOBAL
   ============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color .45s var(--ease), color .45s var(--ease);
}

/* ============================================================
   WAVE OVERLAY - DARK THEME ENHANCEMENT
   ============================================================ */
.wave-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: var(--wave-opacity);
}

.wave-overlay svg {
  position: absolute;
  bottom: -20%;
  width: 200%;
  height: 80%;
  animation: waveFloat 20s ease-in-out infinite;
}

.wave-overlay svg:nth-child(2) {
  animation-delay: -7s;
  opacity: 0.5;
  bottom: -15%;
}

.wave-overlay svg:nth-child(3) {
  animation-delay: -14s;
  opacity: 0.3;
  bottom: -10%;
}

@keyframes waveFloat {
  0%, 100% { transform: translateX(0) translateY(0); }
  33% { transform: translateX(-2%) translateY(-3%); }
  66% { transform: translateX(2%) translateY(2%); }
}

*:focus-visible {
  outline: 2px solid var(--frost);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font-size: inherit;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--ember), var(--frost));
}

section {
  position: relative;
  z-index: 1;
}

.section-pad {
  padding: 60px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--text);
}

.section-head p {
  color: var(--text-dim);
  margin-top: 10px;
  font-size: 15.5px;
}

/* ============================================================
   AMBIENT BACKGROUND
   ============================================================ */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: var(--orb-opacity);
  transition: opacity .5s var(--ease);
  will-change: transform, opacity;
}

.orb-1 {
  width: 520px;
  height: 520px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, var(--ember) 0%, transparent 70%);
  animation: drift1 26s ease-in-out infinite;
}

.orb-2 {
  width: 600px;
  height: 600px;
  top: 20%;
  right: -220px;
  background: radial-gradient(circle, var(--frost-2) 0%, transparent 70%);
  animation: drift2 32s ease-in-out infinite;
}

.orb-3 {
  width: 460px;
  height: 460px;
  bottom: -140px;
  left: 30%;
  background: radial-gradient(circle, var(--frost) 0%, transparent 70%);
  animation: drift3 30s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(60px,80px); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-70px,60px); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(50px,-60px); }
}

.grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(var(--ink-rgb),0.03) 1px, transparent 1px);
  background-size: 26px 26px;
}

.mesh-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(var(--ember-rgb),0.04) 0%,
    rgba(var(--frost-rgb),0.03) 30%,
    transparent 70%);
  transition: background 0.15s ease;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--frost) transparent;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 999px;
  border: 2.5px solid var(--bg);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* ============================================================
   BRAND / LOGO
   ============================================================ */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 24px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: var(--brand-text-shadow);
  position: relative;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}

.brand:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

.brand .brand-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: font-size 0.3s var(--ease);
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.4s var(--ease);
  line-height: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
  transition: all 0.4s var(--ease);
  margin: 0;
  padding: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding-top: env(safe-area-inset-top);
  transition: all 0.4s var(--ease);
}

.nav-inner {
  pointer-events: all;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-radius: 0;
  background: transparent;
  border: 1px solid transparent;
  transition: all .4s var(--ease);
}

.nav-shell.docked {
  padding-top: 10px;
}

.nav-shell.docked .nav-inner {
  max-width: 900px !important;
  padding: 10px 28px 10px 32px !important;
  border-radius: 999px;
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 12px 40px rgba(var(--shadow-rgb), 0.25), 0 0 0 1px rgba(var(--ember-rgb), 0.05) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

html[data-theme="light"] .nav-shell.docked .nav-inner {
  background: var(--nav-bg) !important;
  border: 1px solid var(--nav-border) !important;
  box-shadow: 0 12px 40px rgba(16, 23, 42, 0.10), 0 0 0 1px rgba(26, 91, 191, 0.06) !important;
}

html[data-theme="dark"] .nav-shell.docked .nav-inner {
  background: rgba(6, 11, 20, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 106, 61, 0.08) !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: center;
}

.nav-shell.docked .nav-links {
  gap: 32px;
}

.nav-links a {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
  transition: all 0.4s var(--ease);
  letter-spacing: 0.01em;
  text-decoration: none;
}

html[data-theme="light"] .nav-links a {
  color: #0a0a0a;
}

html[data-theme="light"] .nav-links a:hover {
  background: linear-gradient(135deg, #1A5BBF, #4A7FFF, #0E8B9E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateY(-1px) scale(1.04);
}

html[data-theme="dark"] .nav-links a {
  color: #d0d8e8;
}

html[data-theme="dark"] .nav-links a:hover {
  color: #FF6A3D;
  transform: translateY(-1px) scale(1.04);
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -12px;
  right: -12px;
  bottom: -4px;
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.35s var(--ease);
  z-index: -1;
  pointer-events: none;
}

html[data-theme="light"] .nav-links a::before {
  background: rgba(26, 91, 191, 0.08);
}

html[data-theme="dark"] .nav-links a::before {
  background: rgba(255, 106, 61, 0.10);
}

.nav-links a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-shell.docked .nav-links a {
  font-size: 17px;
  padding: 5px 0;
}

.nav-shell.docked .nav-links a::before {
  left: -8px;
  right: -8px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: 12px;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.theme-toggle:hover {
  background: var(--surface-2);
  transform: translateY(-1px) rotate(-8deg);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-dim);
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--ember), var(--ember-2));
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(var(--ember-rgb), 0.28);
  transition: all 0.3s var(--ease);
}

html[data-theme="dark"] .nav-cta {
  color: #14100b;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(var(--ember-rgb), 0.4);
}

.nav-shell.docked .nav-cta {
  font-size: 13px;
  padding: 8px 20px;
}

.nav-shell.docked .theme-toggle {
  width: 34px;
  height: 34px;
}

.nav-shell.docked .theme-toggle svg {
  width: 16px;
  height: 16px;
}

/* ===== RESPONSIVE BRAND SIZES ===== */
@media (min-width: 1031px) {
  .brand-mark { width: 72px; height: 72px; }
  .brand .brand-text { font-size: 26px; }
}

@media (max-width: 1030px) and (min-width: 836px) {
  .brand-mark { width: 56px; height: 56px; }
  .brand-mark img {width: 42px; height: 42px;}
  .brand .brand-text { font-size: 22px; }
  .nav-links a { font-size: 17px; }
  .nav-links { gap: 32px; }
}

@media (max-width: 835px) and (min-width: 561px) {
  .brand-mark { width: 42px; height: 42px; }
  .brand-mark img {width: 38px; height: 38px;}
  .brand .brand-text { font-size: 20px; }
}

@media (max-width: 560px) and (min-width: 446px) {
  .brand-mark { width: 34px; height: 34px; }
  .brand-mark img {width: 30px; height: 30px;}
  .brand .brand-text { font-size: 18px; }
}

@media (max-width: 445px) {
  .brand-mark { width: 28px; height: 28px; }
  .brand-mark img {width: 24px; height: 24px;}
  .brand .brand-text { font-size: 16px; }
}

.nav-shell.docked .brand-mark {
  width: 42px !important;
  height: 42px !important;
  border-radius: 8px;
}

.nav-shell.docked .brand .brand-text {
  font-size: 19px !important;
}

@media (max-width: 445px) {
  .nav-shell.docked .brand-mark {
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px;
  }
  .nav-shell.docked .brand .brand-text {
    font-size: 16px !important;
  }
}

@media (max-width: 380px) {
  .nav-shell.docked .brand-mark {
    width: 28px !important;
    height: 28px !important;
  }
  .nav-shell.docked .brand .brand-text {
    font-size: 14px !important;
  }
  .brand { gap: 6px; }
}

@media (max-width: 420px) {
  .nav-shell.docked .brand .brand-text {
    display: none;
  }
  .nav-shell.docked .brand { gap: 0; }
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.menu-toggle span {
  width: 16px;
  height: 1.5px;
  background: var(--text);
  display: block;
}

@media (max-width: 1030px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-shell.docked .nav-links { display: none; }
  .nav-shell.docked .nav-right { gap: 10px; }
  .nav-shell.docked .nav-cta {
    font-size: 11px;
    padding: 6px 14px;
  }
  .nav-shell.docked .theme-toggle {
    width: 30px;
    height: 30px;
  }
  .nav-shell.docked .theme-toggle svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 768px) {
  .nav-shell {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .nav-inner {
    padding: 10px 16px !important;
    border-radius: 16px;
  }
  
  .nav-shell.docked .nav-inner {
    max-width: 95% !important;
    padding: 8px 12px !important;
    border-radius: 999px;
  }
  
  .nav-cta {
    font-size: 12px !important;
    padding: 6px 14px !important;
  }
  
  .theme-toggle {
    width: 32px !important;
    height: 32px !important;
  }
  
  .theme-toggle svg {
    width: 16px !important;
    height: 16px !important;
  }
  
  .mobile-menu {
    top: calc(env(safe-area-inset-top) + 65px);
    left: 12px;
    right: 12px;
  }
}

@media (max-width: 560px) {
  .theme-toggle { display: none !important; }
  .nav-shell.docked .theme-toggle { display: none !important; }
  
  .nav-shell {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .nav-inner {
    padding: 8px 12px !important;
    border-radius: 14px;
  }
  
  .nav-shell.docked .nav-inner {
    padding: 6px 10px !important;
  }
  
  .nav-cta {
    font-size: 10px !important;
    padding: 5px 12px !important;
  }
  
  .menu-toggle {
    width: 32px;
    height: 32px;
  }
  
  .menu-toggle span {
    width: 14px;
    height: 1.5px;
  }
  
  .mobile-menu {
    top: calc(env(safe-area-inset-top) + 58px);
    left: 10px;
    right: 10px;
  }
}

@media (max-width: 380px) {
  .nav-cta {
    font-size: 9px !important;
    padding: 4px 10px !important;
  }
  
  .nav-shell.docked .nav-cta {
    font-size: 9px !important;
    padding: 4px 10px !important;
  }
  
  .mobile-menu {
    top: calc(env(safe-area-inset-top) + 50px);
  }
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  z-index: 99;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s var(--ease), opacity .3s;
}

.mobile-menu.open {
  max-height: 460px;
  opacity: 1;
  padding: 14px;
}

.mobile-menu a {
  padding: 12px 10px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dim);
  transition: all 0.3s var(--ease);
}

.mobile-menu a:hover {
  background: var(--surface-2);
  color: var(--text);
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: transparent;
  display: none;
  pointer-events: none;
}

.mobile-backdrop.active {
  display: block;
  pointer-events: all;
}

.mobile-theme-row {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px 4px;
  margin-top: 8px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--text-faint);
}

@media (max-width: 560px) {
  .mobile-theme-row {
    display: flex;
  }
}

.theme-seg {
  display: flex;
  gap: 6px;
  background: var(--surface-2);
  padding: 4px;
  border-radius: 10px;
}

.theme-seg button {
  padding: 6px 11px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  color: var(--text-dim);
}

.theme-seg button.active {
  background: linear-gradient(120deg, var(--ember), var(--ember-2));
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 110px 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.08;
  margin-bottom: 16px;
  color: var(--text);
}

.hero h1 .accent {
  background: linear-gradient(100deg, var(--ember) 10%, var(--ember-2) 35%, var(--frost) 65%, var(--frost-2) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lede {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 100%;
  margin-bottom: 24px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  line-height: 1.7;
  word-spacing: normal;
  letter-spacing: 0.01em;
  padding-right: 4px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--ember), var(--ember-2));
  color: #fff;
  box-shadow: 0 10px 26px rgba(var(--ember-rgb), 0.28);
}

html[data-theme="dark"] .btn-primary {
  color: #14100b;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(var(--ember-rgb), 0.4);
}

.btn-glass {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: var(--shadow-card);
}

.btn-glass:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-faint);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background: linear-gradient(135deg, var(--frost), var(--frost-2));
}

.trust-avatars span:first-child {
  margin-left: 0;
}

/* ============================================================
   HERO VISUAL
   ============================================================ */
.hero-visual {
  position: relative;
  height: 440px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-rotate {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 3px dotted rgba(var(--frost-rgb), 0.4);
  z-index: 2;
  animation: spin 20s linear infinite;
  pointer-events: none;
  box-shadow: 0 0 60px rgba(var(--frost-rgb), 0.06), inset 0 0 60px rgba(var(--frost-rgb), 0.03);
}

html[data-theme="dark"] .ring-rotate {
  border-color: rgba(255, 106, 61, 0.5);
  box-shadow: 0 0 80px rgba(255, 106, 61, 0.08), inset 0 0 80px rgba(56, 189, 248, 0.04);
  border-style: dotted;
  animation: spinDark 20s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinDark {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.ring-expand {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid rgba(var(--frost-rgb), 0.15);
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  animation: ringExpand 6s ease-in-out infinite;
  will-change: transform, opacity;
}

.ring-expand:nth-child(1) {
  width: 260px;
  height: 260px;
  animation-delay: 0.2s;
  border-color: rgba(var(--ember-rgb), 0.20);
}

.ring-expand:nth-child(2) {
  width: 320px;
  height: 320px;
  animation-delay: 2.2s;
  border-color: rgba(var(--frost-rgb), 0.18);
}

.ring-expand:nth-child(3) {
  width: 380px;
  height: 380px;
  animation-delay: 4.2s;
  border-color: rgba(var(--ember-2), 0.15);
}

.ring-expand:nth-child(4) {
  width: 440px;
  height: 440px;
  animation-delay: 6.2s;
  border-color: rgba(var(--frost-2), 0.12);
}

.ring-expand:nth-child(5) {
  width: 290px;
  height: 290px;
  animation-delay: 1.5s;
  border-color: rgba(var(--frost-rgb), 0.15);
  border-style: dashed;
}

.ring-expand:nth-child(6) {
  width: 360px;
  height: 360px;
  animation-delay: 3.8s;
  border-color: rgba(var(--ember-rgb), 0.12);
  border-style: dashed;
}

html[data-theme="dark"] .ring-expand:nth-child(1) {
  border-color: rgba(255, 106, 61, 0.35);
}

html[data-theme="dark"] .ring-expand:nth-child(2) {
  border-color: rgba(56, 189, 248, 0.30);
}

html[data-theme="dark"] .ring-expand:nth-child(3) {
  border-color: rgba(255, 182, 92, 0.25);
}

html[data-theme="dark"] .ring-expand:nth-child(4) {
  border-color: rgba(99, 102, 241, 0.20);
}

html[data-theme="dark"] .ring-expand:nth-child(5) {
  border-color: rgba(56, 189, 248, 0.25);
}

html[data-theme="dark"] .ring-expand:nth-child(6) {
  border-color: rgba(255, 106, 61, 0.20);
}

@keyframes ringExpand {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0; }
  15% { opacity: 0.8; }
  50% { opacity: 1; }
  85% { opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.forge-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--ember-2), var(--ember) 40%, var(--frost-2) 78%, transparent 100%);
  filter: blur(0px);
  box-shadow: 0 0 90px rgba(var(--ember-rgb), 0.35), 0 0 140px rgba(var(--frost-rgb), 0.2);
  animation: pulse 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.forge-core .core-icon {
  width: 52%;
  height: 52%;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.25));
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.06); }
}

.orbit-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  animation: bob 5s ease-in-out infinite;
  z-index: 10;
  text-align: center;
  padding: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.orbit-item .orbit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: var(--surface);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease);
  position: relative;
}

.orbit-item .orbit-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.orbit-item .orbit-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), var(--frost));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: -1;
}

.orbit-item .orbit-label {
  font-size: 11px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.03em;
  background: transparent;
  padding: 2px 0;
}

.orbit-item:hover .orbit-icon {
  transform: translateY(-3px) scale(1.08);
  border-color: var(--ember);
}

.orbit-item:hover .orbit-icon::after {
  opacity: 1;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.oi-1 { top: -2%; left: 46%; animation-delay: 0s; transform: translateX(-50%); }
.oi-2 { top: 10%; left: 2%; animation-delay: .6s; }
.oi-3 { top: 45%; left: -6%; animation-delay: 1.2s; }
.oi-4 { top: 80%; left: 4%; animation-delay: 1.8s; }
.oi-5 { top: 4%; left: 82%; animation-delay: 2.4s; }
.oi-6 { top: 38%; left: 94%; animation-delay: 3s; }

.oi-1 .orbit-icon { border-color: rgba(56,189,248,0.4); color: var(--frost); }
.oi-2 .orbit-icon { border-color: rgba(255,106,61,0.4); color: var(--ember); }
.oi-3 .orbit-icon { border-color: rgba(99,102,241,0.4); color: var(--frost-2); }
.oi-4 .orbit-icon { border-color: rgba(74,222,128,0.4); color: var(--success); }
.oi-5 .orbit-icon { border-color: rgba(255,182,92,0.4); color: var(--ember-2); }
.oi-6 .orbit-icon { border-color: rgba(56,189,248,0.4); color: var(--frost); }

/* ============================================================
   DASH CARD
   ============================================================ */
.dash-card {
  position: absolute;
  bottom: 2%;
  right: 0%;
  width: 230px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-card);
  z-index: 10;
  display: block;
}

.dash-card .dash-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 10px;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
}

.dash-bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--frost), var(--frost-2));
  opacity: .85;
}

.dash-stat {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Space Grotesk';
  color: var(--text);
}

.dash-stat small {
  display: block;
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 400;
  margin-top: 2px;
}

.mobile-health-indicator {
  display: none;
  position: absolute;
  bottom: 2%;
  right: 0%;
  z-index: 10;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  box-shadow: var(--shadow-card);
  align-items: center;
  gap: 10px;
}

.mobile-health-indicator .health-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(74,222,128,0.4);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.mobile-health-indicator .health-text {
  font-size: 10px;
  color: var(--text-dim);
  font-weight: 500;
}

.mobile-health-indicator .health-text strong {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 560px) {
  .dash-card { display: none !important; }
  .mobile-health-indicator { display: flex !important; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.stats-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 22px 14px;
  border-right: 1px solid var(--border-soft);
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}

.stat:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
}

.stat:last-child { border-right: none; }

.stat b {
  display: block;
  font-family: 'Space Grotesk';
  font-size: 26px;
  line-height: 1.1;
  background: linear-gradient(100deg, var(--ember-2), var(--frost));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span {
  font-size: 12.5px;
  color: var(--text-faint);
  font-weight: 500;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.about-visual {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(var(--ember-rgb),0.16), rgba(var(--frost-rgb),0.14)),
    repeating-linear-gradient(115deg, rgba(var(--ink-rgb),0.03) 0 2px, transparent 2px 26px), var(--surface);
  position: relative;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-copy {
  width: 100%;
}

.about-copy h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 14px;
  color: var(--text);
}

.about-copy p {
  color: var(--text-dim);
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  font-size: 15px;
  line-height: 1.7;
  word-spacing: normal;
  letter-spacing: 0.01em;
}

html[data-theme="dark"] .about-copy p {
  color: #c0c8d8;
}

html[data-theme="light"] .about-copy p {
  color: #1f334a;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pillar {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.pillar > * { position: relative; z-index: 1; }

.pillar:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--ember) !important;
  background: var(--surface-2) !important;
}

.pillar b {
  display: block;
  font-size: 14.5px;
  margin-bottom: 4px;
  color: var(--text);
}

.pillar span {
  font-size: 13px;
  color: var(--text-faint);
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  word-spacing: normal;
  letter-spacing: 0.01em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: translateY(0) scale(1);
  will-change: transform;
  isolation: isolate;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.service-card > * { position: relative; z-index: 1; }

.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-card-hover);
  z-index: 2;
  border-color: var(--ember) !important;
  background: var(--surface-2) !important;
}

.service-card p {
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  color: var(--text-faint);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.service-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text);
}

.service-card p {
  font-size: 13px;
  line-height: 1.55;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  word-spacing: normal;
  letter-spacing: 0.01em;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  background: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding-top: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.why-item {
  text-align: center;
  padding: 10px 12px;
  border-right: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}

.why-item:hover {
  background: var(--surface-2);
  transform: translateY(-3px);
}

.why-item:last-child { border-right: none; }

.why-item .n {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}

.why-item .n svg {
  width: 20px;
  height: 20px;
  stroke: var(--ember-2);
}

.why-item b {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text);
}

.why-item span {
  font-size: 12px;
  color: var(--text-faint);
}

/* ============================================================
   WHY CARDS
   ============================================================ */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 26px 20px 22px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transform: translateY(0) scale(1);
  will-change: transform;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.why-card > * { position: relative; z-index: 1; }

.why-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-card-hover);
  z-index: 2;
  border-color: var(--ember) !important;
  background: var(--surface-2) !important;
}

.why-card .why-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.why-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text);
}

.why-card p {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.55;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  word-spacing: normal;
  letter-spacing: 0.01em;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  padding: 36px 0;
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-family: 'JetBrains Mono';
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.marquee-viewport {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: scrollLeft 34s linear infinite;
}

.marquee-track.reverse {
  animation: scrollRight 40s linear infinite;
}

.marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.chip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text);
}

.chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--frost);
  box-shadow: 0 0 8px var(--frost);
}

.chip.industry i {
  background: var(--ember);
  box-shadow: 0 0 8px var(--ember);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, var(--ember), var(--frost-2));
  opacity: .4;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step .num {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono';
  font-size: 14px;
  color: var(--frost);
  position: relative;
  z-index: 1;
}

.process-step:nth-child(odd) .num {
  color: var(--ember-2);
}

.process-step b {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text);
}

.process-step p {
  font-size: 12.5px;
  color: var(--text-faint);
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   CONTACT / CTA SECTION - UPDATED WITH JUSTIFIED TEXT
   ============================================================ */
.cta-banner {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: radial-gradient(circle at 15% 30%, rgba(var(--ember-rgb),0.16), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(var(--frost-rgb),0.14), transparent 55%),
    var(--surface);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease);
}

.cta-banner:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--ember);
}

.cta-banner .cta-content {
  flex: 1;
  min-width: 730px;
}

.cta-banner h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  max-width: 730px;
  color: var(--text);
  text-align: left;
}

.cta-banner p {
  color: var(--text-dim);
  margin-top: 6px;
  font-size: 14px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  word-spacing: normal;
  letter-spacing: 0.01em;
  max-width: 730px;
  line-height: 1.7;
}

.cta-banner .cta-button-wrapper {
  flex-shrink: 0;
}

.cta-banner .btn-primary {
  white-space: nowrap;
  padding: 14px 28px;
  font-size: 14px;
}

/* ===== CTA BANNER - TABLET RESPONSIVE ===== */
@media (max-width: 1030px) {
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 28px;
    gap: 24px;
  }
  
  .cta-banner .cta-content {
    min-width: unset;
    width: 100%;
  }
  
  .cta-banner h2 {
    text-align: center;
    max-width: 100%;
    font-size: clamp(20px, 3vw, 26px);
  }
  
  .cta-banner p {
    text-align: center;
    text-align-last: center;
    max-width: 100%;
    font-size: 14px;
  }
  
  .cta-banner .cta-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .cta-banner .btn-primary {
    padding: 12px 28px;
    font-size: 14px;
    width: auto;
    min-width: 200px;
  }
}

/* ===== CTA BANNER - MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .cta-banner {
    padding: 28px 20px;
    gap: 20px;
    border-radius: var(--radius-md);
  }
  
  .cta-banner h2 {
    font-size: clamp(18px, 4.5vw, 22px);
    line-height: 1.3;
  }
  
  .cta-banner p {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 4px;
  }
  
  .cta-banner .btn-primary {
    padding: 10px 24px;
    font-size: 13px;
    min-width: 180px;
  }
}

@media (max-width: 560px) {
  .cta-banner {
    padding: 24px 16px;
    gap: 16px;
    border-radius: var(--radius-sm);
  }
  
  .cta-banner h2 {
    font-size: clamp(16px, 4vw, 20px);
  }
  
  .cta-banner p {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .cta-banner .btn-primary {
    padding: 10px 20px;
    font-size: 12px;
    min-width: 160px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .cta-banner {
    padding: 20px 14px;
    gap: 14px;
  }
  
  .cta-banner h2 {
    font-size: 16px;
  }
  
  .cta-banner p {
    font-size: 11px;
  }
  
  .cta-banner .btn-primary {
    padding: 8px 16px;
    font-size: 11px;
    min-width: 140px;
  }
}

/* ============================================================
   COOKIE BANNER - UPDATED WITH JUSTIFIED TEXT
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  padding: 18px 26px;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.cookie-banner.hidden {
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner .cookie-text {
  flex: 1;
  min-width: 0;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  word-spacing: normal;
  letter-spacing: 0.01em;
}

.cookie-banner p a {
  color: var(--frost);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}

.cookie-banner p a:hover {
  color: var(--ember);
}

.cookie-actions-banner {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions-banner .btn-cookie {
  padding: 9px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.cookie-actions-banner .btn-cookie-accept {
  background: linear-gradient(120deg, var(--frost), var(--success));
  color: #0a0d14;
  box-shadow: 0 6px 18px rgba(var(--frost-rgb),0.25);
}

.cookie-actions-banner .btn-cookie-accept:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 26px rgba(var(--frost-rgb),0.35);
}

.cookie-actions-banner .btn-cookie-reject {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
}

.cookie-actions-banner .btn-cookie-reject:hover {
  background: var(--border-soft);
  transform: translateY(-2px) scale(1.03);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--border-soft);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr 1.3fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-grid > div { min-width: 0; }

.footer-brand p {
  color: var(--text-faint);
  font-size: 13px;
  margin: 12px 0 16px;
  max-width: 260px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  word-spacing: normal;
  letter-spacing: 0.01em;
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.social-row a svg {
  width: 17px;
  height: 17px;
  stroke: var(--text-dim);
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 1;
}

html[data-theme="light"] .social-row a:hover {
  transform: translateY(-4px) scale(1.08);
  border-color: var(--ember);
  box-shadow: 0 8px 24px rgba(26,91,191,0.20);
  background: linear-gradient(145deg, #ffffff, #e2eaf5);
}

html[data-theme="light"] .social-row a:hover svg {
  stroke: var(--ember);
  transform: scale(1.1);
}

html[data-theme="dark"] .social-row a:hover {
  transform: translateY(-4px) scale(1.08);
  border-color: var(--ember);
  box-shadow: 0 8px 24px rgba(255,106,61,0.25);
  background: linear-gradient(145deg, #1e2638, #141a28);
}

html[data-theme="dark"] .social-row a:hover svg {
  stroke: var(--ember-2);
  transform: scale(1.1);
}

.social-row a::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ember), var(--frost));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: 0;
}

.social-row a:hover::after {
  opacity: 0.15;
}

footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-faint);
  margin-bottom: 14px;
  font-family: 'JetBrains Mono';
  font-weight: 400;
}

footer ul li { margin-bottom: 10px; }
footer ul a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.25s var(--ease);
}
footer ul a:hover { color: var(--text); }

.foot-contact li {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  font-size: 12px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}

.foot-bottom a {
  color: var(--text-faint);
  margin-left: 16px;
  transition: color 0.25s var(--ease);
  cursor: pointer;
}

.foot-bottom a:hover { color: var(--text-dim); }

.footer-why-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-why-links a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.25s var(--ease);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  display: block;
}

.footer-why-links a:hover { color: var(--text); }

.email-icon {
  width: 17px;
  height: 17px;
  margin-right: 1px;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6,7,11,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 60px rgba(var(--shadow-rgb),0.28);
  padding: 32px 32px 28px;
  transform: translateY(18px) scale(.97);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .35s var(--ease);
  position: relative;
  max-height: 88vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lead-modal .modal-card { max-width: 600px; }

.lead-head { text-align: left; }
.lead-head .eyebrow { margin-bottom: 8px; }
.lead-head h3 {
  font-size: 22px;
  margin-bottom: 6px;
  padding-right: 30px;
  line-height: 1.3;
  text-align: left;
  color: var(--text);
}
.lead-head p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: left;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 12.5px;
  color: var(--text-faint);
  font-family: 'JetBrains Mono';
  letter-spacing: .02em;
  text-align: left;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  resize: vertical;
  text-align: left;
}

.field select { appearance: none; cursor: pointer; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--frost); }

.field-hint {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 2px;
  text-align: left;
}

.lead-submit {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(120deg, var(--ember), var(--ember-2));
  box-shadow: 0 10px 24px rgba(var(--ember-rgb),0.25);
}

html[data-theme="dark"] .lead-submit { color: #14100b; }
.lead-submit:hover { transform: translateY(-2px); }
.lead-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

.lead-fineprint {
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.lead-success {
  display: none;
  text-align: center;
  padding: 20px 0 6px;
}

.lead-success.show { display: block; }

.lead-success .check-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--frost), var(--success));
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-success .check-circle svg {
  width: 26px;
  height: 26px;
  stroke: #0a0d14;
  stroke-width: 2.4;
}

.lead-success h3 {
  font-size: 20px;
  margin-bottom: 6px;
  text-align: center;
  color: var(--text);
}

.lead-success p {
  font-size: 14px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}

.lead-form.hide { display: none; }

.lead-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 10;
  cursor: pointer;
}

.lead-modal .modal-close:hover {
  background: var(--border-soft);
  transform: rotate(90deg);
}

.lead-modal .modal-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-dim);
}

/* ============================================================
   LEGAL MODAL
   ============================================================ */
.legal-modal .modal-card {
  max-width: 820px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px 40px 30px;
}

.legal-modal .modal-card h2 {
  font-size: 24px;
  margin-bottom: 4px;
  color: var(--text);
}

.legal-modal .modal-card .legal-meta {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 18px;
}

.legal-modal .modal-card .legal-content {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
  text-align: left;
}

.legal-modal .modal-card .legal-content h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: var(--text);
}

.legal-modal .modal-card .legal-content h4 {
  font-size: 15px;
  margin: 14px 0 8px;
  color: var(--text);
}

.legal-modal .modal-card .legal-content p { margin-bottom: 10px; }
.legal-modal .modal-card .legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}
.legal-modal .modal-card .legal-content ul li {
  margin-bottom: 6px;
  color: var(--text-dim);
}

.legal-modal .modal-card .legal-content .highlight-box {
  background: var(--surface-2);
  border-left: 3px solid var(--frost);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 14px 0;
}

.legal-modal .modal-card .legal-content .highlight-box p { margin-bottom: 0; }

.legal-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 10;
}

.legal-modal .modal-close:hover {
  background: var(--border-soft);
  transform: rotate(90deg);
}

.legal-modal .modal-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-dim);
}

.legal-modal .modal-footer-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}

.legal-modal .modal-footer-actions .btn-legal {
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.legal-modal .modal-footer-actions .btn-legal-primary {
  background: linear-gradient(120deg, var(--ember), var(--ember-2));
  color: #fff;
}

html[data-theme="dark"] .legal-modal .modal-footer-actions .btn-legal-primary {
  color: #14100b;
}

.legal-modal .modal-footer-actions .btn-legal-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--ember-rgb),0.3);
}

.legal-modal .modal-footer-actions .btn-legal-secondary {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
}

.legal-modal .modal-footer-actions .btn-legal-secondary:hover {
  background: var(--border-soft);
  transform: translateY(-2px);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE - ALL SCREENS
   ============================================================ */
@media (max-width: 1030px) {
  .wrap { padding: 0 28px; }
  
  .nav-shell {
    padding-top: calc(env(safe-area-inset-top) + 10px);
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .nav-inner {
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    padding: 10px 14px;
  }
  
  .nav-shell.docked { padding-top: calc(env(safe-area-inset-top) + 8px); }
  .nav-shell.docked .nav-inner {
    max-width: 560px !important;
    border-radius: 999px;
    padding: 8px 8px 8px 18px !important;
  }
  
  .mobile-menu {
    top: calc(env(safe-area-inset-top) + 72px);
    left: 20px;
    right: 20px;
  }
  
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 0 30px;
    gap: 30px;
    text-align: center;
  }
  
  .hero h1 {
    text-align: center;
  }
  
  .hero p.lede {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
  }
  
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .trust-row { justify-content: center; }
  
  .hero-visual {
    order: -1;
    height: 360px;
    max-width: 380px;
    margin: 0 auto 16px;
  }
  
  .ring-rotate { width: 320px; height: 320px; }
  .forge-core { width: 160px; height: 160px; }
  
  .ring-expand:nth-child(1) { width: 220px; height: 220px; }
  .ring-expand:nth-child(2) { width: 270px; height: 270px; }
  .ring-expand:nth-child(3) { width: 320px; height: 320px; }
  .ring-expand:nth-child(4) { width: 370px; height: 370px; }
  .ring-expand:nth-child(5) { width: 240px; height: 240px; }
  .ring-expand:nth-child(6) { width: 300px; height: 300px; }
  
  .orbit-item .orbit-icon { width: 48px; height: 48px; font-size: 22px; }
  .orbit-item .orbit-icon img { width: 26px; height: 26px; }
  .orbit-item .orbit-label { font-size: 10px; }
  
  .oi-1 { top: -2%; left: 46%; }
  .oi-2 { top: 10%; left: 2%; }
  .oi-3 { top: 45%; left: -3%; }
  .oi-4 { top: 80%; left: 4%; }
  .oi-5 { top: 4%; left: 80%; }
  .oi-6 { top: 38%; left: 90%; }
  
  .dash-card {
    bottom: 4%;
    right: 2%;
    width: 190px;
    padding: 12px;
    transform: scale(0.9);
    transform-origin: bottom right;
  }
  
  .dash-card .dash-stat { font-size: 16px; }
  .dash-card .dash-stat small { font-size: 10px; }
  .dash-card .dash-bars { height: 38px; }
  
  .stats-panel { grid-template-columns: repeat(3, 1fr); }
  .stat {
    padding: 18px 12px;
    border-bottom: 1px solid var(--border-soft);
  }
  .stat:nth-child(3n) { border-right: none; }
  .stat:last-child { border-right: none; }
  .stat:nth-child(n+4) { border-bottom: none; }
  
  .about {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .about-copy p { 
    max-width: 100%; 
    margin-left: auto; 
    margin-right: auto;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
  }
  .about-copy .eyebrow { justify-content: center; }
  
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  
  .why-grid { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .why-item:nth-child(3) { border-right: none; }
  .why-item:nth-child(4) { border-right: 1px solid var(--border-soft); }
  .why-item:nth-child(6) { border-right: none; }
  
  .why-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-card { padding: 22px 16px; }
  
  .process-track { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .process-track::before { display: none; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  section.section-pad { padding: 48px 0; }
  .service-card { padding: 18px 16px; width: 90% !important; height: auto; margin-left: auto; margin-right: auto; }
  .pillar-grid { gap: 10px; justify-content: center; }
  .pillar { padding: 14px 16px; }
  .section-head { max-width: 100%; }
  
  .hero h1, .hero p.lede { margin-left: auto; margin-right: auto; }
  .about-copy { text-align: center; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  
  .about-visual { width: 95% !important; margin-left: auto; margin-right: auto; }
  .about-copy { text-align: center; width: 95% !important; margin-left: auto; margin-right: auto; }
  .wrap { width: 95% !important; margin-left: auto; margin-right: auto; }
  
  .brand-mark { width: 28px; height: 28px; border-radius: 7px; }
  .brand { font-size: 18px; gap: 8px; }
  
  .legal-modal .modal-card { padding: 28px 26px 22px; }
}

@media (max-width: 835px) {
  .wrap { padding: 0 20px; }
  .nav-shell { padding-left: 16px; padding-right: 16px; }
  .mobile-menu { left: 16px; right: 16px; }
  .hero { padding-top: 110px; }
  .hero-visual { height: 320px; max-width: 320px; margin: 0 auto 12px; }
  .ring-rotate { width: 270px; height: 270px; }
  .forge-core { width: 140px; height: 140px; }
  
  .hero p.lede {
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
  }
  
  .ring-expand:nth-child(1) { width: 180px; height: 180px; }
  .ring-expand:nth-child(2) { width: 230px; height: 230px; }
  .ring-expand:nth-child(3) { width: 280px; height: 280px; }
  .ring-expand:nth-child(4) { width: 320px; height: 320px; }
  .ring-expand:nth-child(5) { width: 200px; height: 200px; }
  .ring-expand:nth-child(6) { width: 250px; height: 250px; }
  
  .orbit-item .orbit-icon { width: 42px; height: 42px; font-size: 20px; }
  .orbit-item .orbit-icon img { width: 22px; height: 22px; }
  .orbit-item .orbit-label { font-size: 9px; }
  
  .dash-card {
    bottom: 4%;
    right: 2%;
    width: 165px;
    padding: 10px;
    transform: scale(0.85);
    transform-origin: bottom right;
  }
  .dash-card .dash-stat { font-size: 14px; }
  .dash-card .dash-stat small { font-size: 9px; }
  .dash-card .dash-bars { height: 32px; gap: 4px; }
  
  .stats-panel { grid-template-columns: repeat(2, 1fr); }
  .stat {
    padding: 16px 10px;
    border-bottom: 1px solid var(--border-soft);
  }
  .stat:nth-child(2n) { border-right: none; }
  .stat:last-child { border-bottom: none; }
  .stat:nth-child(3) { border-right: 1px solid var(--border-soft); }
  
  section.section-pad { padding: 40px 0; }
  .about { gap: 24px; }
  .service-grid { gap: 12px; }
  .stat { padding: 16px 10px; }
  .why-grid { gap: 10px; }
  .why-item { padding: 10px 8px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(3) { border-right: 1px solid var(--border-soft); }
  .why-item:nth-child(2n) { border-right: none; }
  .why-item:nth-child(4) { border-right: 1px solid var(--border-soft); }
  .service-card { padding: 16px 14px; }
  .section-head { margin-bottom: 26px; }
  .section-head h2 { font-size: clamp(22px, 3.2vw, 30px); }
  .about-copy h2 { font-size: clamp(22px, 4vw, 28px); }
  .about-copy p { font-size: 14px; }
  .pillar-grid { gap: 8px; }
  .pillar { padding: 10px 12px; }
  .pillar b { font-size: 13px; }
  .pillar span { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  
  .why-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-card { padding: 18px 14px; }
  .why-card .why-icon { width: 42px; height: 42px; font-size: 20px; }
  .why-card h3 { font-size: 15px; }
  .why-card p { font-size: 12px; }
  
  .about-visual { aspect-ratio: 16/9; width: 90% !important; margin-left: auto; margin-right: auto; }
  .about-copy { text-align: center; width: 95% !important; margin-left: auto; margin-right: auto; }
  .wrap { width: 95% !important; margin-left: auto; margin-right: auto; }
  
  .brand-mark { width: 26px; height: 26px; border-radius: 6px; }
  .brand { font-size: 17px; gap: 8px; }
  
  .legal-modal .modal-card { padding: 22px 20px 18px; }
  .legal-modal .modal-card h2 { font-size: 20px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .nav-shell { padding-left: 12px; padding-right: 12px; }
  .nav-inner { padding: 8px 10px; }
  .mobile-menu { left: 12px; right: 12px; }
  .hero { 
    padding-top: 100px; 
    padding-bottom: 24px;
  }
  
  .hero h1 {
    text-align: center;
    font-size: clamp(24px, 5vw, 30px);
  }
  
  .hero p.lede {
    font-size: 14px;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
    margin-bottom: 18px;
  }
  
  .hero-visual { 
    height: 270px; 
    max-width: 270px; 
    margin: 0 auto 10px; 
  }
  .ring-rotate { width: 230px; height: 230px; }
  .forge-core { width: 110px; height: 110px; }
  
  .ring-expand:nth-child(1) { width: 150px; height: 150px; }
  .ring-expand:nth-child(2) { width: 190px; height: 190px; }
  .ring-expand:nth-child(3) { width: 230px; height: 230px; }
  .ring-expand:nth-child(4) { width: 270px; height: 270px; }
  .ring-expand:nth-child(5) { width: 170px; height: 170px; }
  .ring-expand:nth-child(6) { width: 210px; height: 210px; }
  
  .orbit-item .orbit-icon { width: 36px; height: 36px; font-size: 16px; }
  .orbit-item .orbit-icon img { width: 18px; height: 18px; }
  .orbit-item .orbit-label { font-size: 8px; }
  
  .dash-card { display: none !important; }
  .mobile-health-indicator { display: flex !important; }
  
  .stats-panel { grid-template-columns: repeat(2, 1fr); }
  .stat {
    padding: 14px 8px;
    border-bottom: 1px solid var(--border-soft);
  }
  .stat:nth-child(2n) { border-right: none; }
  .stat:last-child { border-right: none; border-bottom: none; grid-column: 1 / -1; }
  .stat b { font-size: 20px; }
  .stat span { font-size: 10px; }
  
  .service-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { padding: 16px 14px; }
  
  .why-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .why-item:nth-child(3) { border-right: 1px solid var(--border-soft); }
  .why-item:nth-child(2n) { border-right: none; }
  .why-item { padding: 8px 6px; }
  .why-item .n { width: 36px; height: 36px; }
  .why-item .n svg { width: 16px; height: 16px; }
  .why-item b { font-size: 12px; }
  .why-item span { font-size: 10px; }
  
  .why-cards-grid { grid-template-columns: 1fr; gap: 12px; max-width: 400px; margin: 0 auto; }
  .why-card { padding: 18px 16px; }
  .why-card .why-icon { width: 44px; height: 44px; font-size: 20px; }
  .why-card h3 { font-size: 15px; }
  .why-card p { font-size: 12.5px; }
  
  .process-track { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  
  section.section-pad { padding: 32px 0; }
  .about { gap: 20px; }
  .about-copy h2 { font-size: clamp(20px, 4vw, 26px); }
  .about-copy p { font-size: 13px; }
  .pillar-grid { grid-template-columns: 1fr; gap: 8px; }
  .pillar { padding: 10px 12px; }
  
  .section-head { margin-bottom: 20px; }
  .section-head h2 { font-size: clamp(20px, 4.5vw, 26px); }
  .section-head p { font-size: 13px; }
  
  .eyebrow { font-size: 10px; }
  .hero h1 { font-size: clamp(22px, 5vw, 28px); }
  .hero p.lede { font-size: 13px; }
  
  .about-visual { aspect-ratio: 16/9; }
  .about-visual { margin-bottom: 6px; }
  .hero-visual { margin-bottom: 6px; }
  .stats-strip { margin-bottom: 4px; }
  .service-card p { font-size: 12px; }
  
  .hero h1, .hero p.lede { text-align: center; }
  .about-copy { text-align: center; }
  .about-copy .eyebrow { justify-content: center; }
  
  .brand-mark { width: 22px; height: 22px; border-radius: 5px; }
  .brand { font-size: 15px; gap: 6px; }
  
  .legal-modal .modal-card { padding: 18px 16px 14px; }
  .legal-modal .modal-card h2 { font-size: 18px; }
  .legal-modal .modal-card .legal-content { font-size: 13px; }
  .legal-modal .modal-card .legal-content h3 { font-size: 15px; }
  .legal-modal .modal-footer-actions .btn-legal { padding: 8px 16px; font-size: 12px; }
}

@media (max-width: 445px) {
  .wrap { padding: 0 14px; }
  .nav-shell { padding-left: 10px; padding-right: 10px; }
  .mobile-menu { left: 10px; right: 10px; }
  .hero { padding-top: 90px; }
  .hero-visual { height: 230px; max-width: 230px; margin: 0 auto 8px; }
  .ring-rotate { width: 200px; height: 200px; }
  .forge-core { width: 90px; height: 90px; }
  
  .ring-expand:nth-child(1) { width: 130px; height: 130px; }
  .ring-expand:nth-child(2) { width: 165px; height: 165px; }
  .ring-expand:nth-child(3) { width: 200px; height: 200px; }
  .ring-expand:nth-child(4) { width: 230px; height: 230px; }
  .ring-expand:nth-child(5) { width: 145px; height: 145px; }
  .ring-expand:nth-child(6) { width: 180px; height: 180px; }
  
  .orbit-item .orbit-icon { width: 32px; height: 32px; font-size: 14px; }
  .orbit-item .orbit-icon img { width: 16px; height: 16px; }
  .orbit-item .orbit-label { font-size: 7px; }
  
  .mobile-health-indicator { padding: 6px 10px; }
  .mobile-health-indicator .health-text { font-size: 9px; }
  .mobile-health-indicator .health-dot { width: 8px; height: 8px; }
  
  section.section-pad { padding: 28px 0; }
  
  .service-card { padding: 14px 12px; }
  .stat { padding: 10px 6px; }
  .stat b { font-size: 16px; }
  .stat span { font-size: 9px; }
  .hero h1 { font-size: clamp(18px, 4vw, 22px); }
  .hero p.lede { font-size: 12px; }
  .btn { padding: 8px 14px; font-size: 11px; }
  .about-copy h2 { font-size: 18px; }
  .about-copy p { font-size: 12px; }
  .pillar { padding: 8px 10px; width: 90% !important; margin-left: auto; margin-right: auto; }
  .pillar b { font-size: 12px; }
  .pillar span { font-size: 11px; }
  
  .about-visual { aspect-ratio: 16/9; width: 90% !important; margin-left: auto; margin-right: auto; }
  .about-copy { text-align: center; width: 95% !important; margin-left: auto; margin-right: auto; }
  .wrap { width: 95% !important; margin-left: auto; margin-right: auto; }
  
  .brand-mark { width: 18px; height: 18px; border-radius: 4px; }
  .brand { font-size: 13px; gap: 4px; }
  
  .lead-grid { grid-template-columns: 1fr; }
  .modal-card { padding: 22px 18px 20px; }
}

/* ============================================================
   1440PX AND ABOVE
   ============================================================ */
@media (min-width: 1440px) {
  .wrap {
    max-width: 92% !important;
    padding: 0 20px !important;
    margin: 0 auto;
    width: 92%;
  }
  
  .nav-shell {
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px !important;
  }
  
  .nav-inner {
    max-width: 94% !important;
    padding: 14px 32px !important;
    margin: 0 auto !important;
    border-radius: 16px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.4s var(--ease);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 94%;
  }
  
  .nav-shell.docked .nav-inner {
    max-width: 1200px !important;
    padding: 12px 36px 12px 40px !important;
    border-radius: 999px;
    margin: 0 auto !important;
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 12px 48px rgba(var(--shadow-rgb), 0.25), 0 0 0 1px rgba(var(--ember-rgb), 0.06) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    width: auto;
  }
  
  html[data-theme="light"] .nav-shell.docked .nav-inner {
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    box-shadow: 0 12px 48px rgba(16, 23, 42, 0.12), 0 0 0 1px rgba(26, 91, 191, 0.06) !important;
  }
  
  html[data-theme="dark"] .nav-shell.docked .nav-inner {
    background: rgba(6, 11, 20, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 106, 61, 0.08) !important;
  }
  
  .nav-inner .theme-toggle {
    width: 40px;
    height: 40px;
    margin-right: 17px;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 26px;
    flex-shrink: 0;
    margin-right: 0;
  }
  
  .brand-mark {
    width: 56px !important;
    height: 56px !important;
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .brand .brand-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  
  .nav-links {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex: 1;
    margin: 0 20px;
  }
  
  .nav-links a {
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    padding: 6px 0;
    transition: all 0.4s var(--ease);
    letter-spacing: 0.01em;
    text-decoration: none;
  }
  
  html[data-theme="light"] .nav-links a {
    color: #0a0a0a;
  }
  
  html[data-theme="light"] .nav-links a:hover {
    background: linear-gradient(135deg, #1A5BBF, #4A7FFF, #0E8B9E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: translateY(-1px) scale(1.04);
  }
  
  html[data-theme="dark"] .nav-links a {
    color: #d0d8e8;
  }
  
  html[data-theme="dark"] .nav-links a:hover {
    color: #FF6A3D;
    transform: translateY(-1px) scale(1.04);
  }
  
  .nav-links a::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -12px;
    right: -12px;
    bottom: -4px;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.35s var(--ease);
    z-index: -1;
    pointer-events: none;
  }
  
  html[data-theme="light"] .nav-links a::before {
    background: rgba(26, 91, 191, 0.08);
  }
  
  html[data-theme="dark"] .nav-links a::before {
    background: rgba(255, 106, 61, 0.10);
  }
  
  .nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
  }
  
  .nav-shell.docked .nav-links {
    gap: 38px;
    margin: 0 18px;
  }
  
  .nav-shell.docked .nav-links a {
    font-size: 18px;
    padding: 5px 0;
  }
  
  .nav-shell.docked .nav-links a::before {
    left: -8px;
    right: -8px;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    margin-left: 16px;
  }
  
  .theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
  }
  
  .theme-toggle:hover {
    background: var(--surface-2);
    transform: translateY(-1px) rotate(-8deg);
  }
  
  .theme-toggle svg {
    width: 19px;
    height: 19px;
    stroke: var(--text-dim);
  }
  
  .nav-cta {
    font-size: 15px;
    font-weight: 600;
    padding: 11px 26px;
    white-space: nowrap;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--ember), var(--ember-2));
    color: #fff;
    box-shadow: 0 6px 20px rgba(var(--ember-rgb), 0.28);
    transition: all 0.3s var(--ease);
  }
  
  html[data-theme="dark"] .nav-cta {
    color: #14100b;
  }
  
  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(var(--ember-rgb), 0.4);
  }
  
  .nav-shell.docked .nav-right {
    gap: 16px !important;
    margin-left: 12px;
  }
  
  .nav-shell.docked .theme-toggle {
    width: 36px;
    height: 36px;
  }
  
  .nav-shell.docked .theme-toggle svg {
    width: 17px;
    height: 17px;
  }
  
  .nav-shell.docked .nav-cta {
    font-size: 13px;
    padding: 8px 20px;
  }
  
  .nav-shell.docked .brand-mark {
    width: 42px !important;
    height: 42px !important;
  }
  
  .nav-shell.docked .brand .brand-text {
    font-size: 20px !important;
  }
  
  .hero {
    padding: 130px 0 44px !important;
    gap: 48px;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: clamp(32px, 4.6vw, 50px);
    line-height: 1.08;
    margin-bottom: 14px;
    max-width: 600px;
  }
  
  .hero p.lede {
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 20px;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: left;
  }
  
  .hero-actions { margin-bottom: 18px; }
  .trust-row { margin-bottom: 0; }
  
  .hero-visual {
    height: 440px;
    max-width: 460px;
    margin: 0 auto;
    position: relative;
  }
  
  .ring-rotate {
    width: 380px;
    height: 380px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .forge-core {
    width: 180px;
    height: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .ring-expand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
  }
  
  .ring-expand:nth-child(1) { width: 260px; height: 260px; }
  .ring-expand:nth-child(2) { width: 320px; height: 320px; }
  .ring-expand:nth-child(3) { width: 380px; height: 380px; }
  .ring-expand:nth-child(4) { width: 440px; height: 440px; }
  .ring-expand:nth-child(5) { width: 290px; height: 290px; }
  .ring-expand:nth-child(6) { width: 360px; height: 360px; }
  
  .orbit-item { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 4px; background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; }
  .orbit-item .orbit-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; background: var(--surface); border: 2px solid var(--border); box-shadow: var(--shadow-card); transition: all 0.3s var(--ease); }
  .orbit-item .orbit-icon img { width: 32px; height: 32px; object-fit: contain; }
  .orbit-item .orbit-label { font-size: 11px; color: var(--text); font-weight: 700; letter-spacing: 0.03em; background: transparent; padding: 2px 0; white-space: nowrap; }
  
  .oi-1 { top: -2%; left: 46%; transform: translateX(-50%); }
  .oi-2 { top: 10%; left: 2%; }
  .oi-3 { top: 45%; left: -6%; }
  .oi-4 { top: 80%; left: 4%; }
  .oi-5 { top: 4%; left: 82%; }
  .oi-6 { top: 38%; left: 94%; }
  
  .dash-card {
    position: absolute;
    bottom: 2%;
    right: 0%;
    width: 230px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: var(--shadow-card);
    z-index: 10;
    display: block !important;
  }
  
  .dash-card .dash-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-faint); margin-bottom: 10px; }
  .dash-card .dash-bars { display: flex; align-items: flex-end; gap: 6px; height: 48px; }
  .dash-card .dash-bars i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--frost), var(--frost-2)); opacity: .85; }
  .dash-card .dash-stat { margin-top: 10px; font-size: 18px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
  .dash-card .dash-stat small { display: block; font-size: 11px; color: var(--text-faint); font-weight: 400; margin-top: 2px; }
  
  .mobile-health-indicator { display: none !important; }
  
  .stats-strip { margin-top: 8px !important; padding: 0 20px; }
  .stats-panel { grid-template-columns: repeat(5, 1fr); border-radius: var(--radius-lg); overflow: hidden; }
  .stat { padding: 20px 14px; border-right: 1px solid var(--border-soft); border-bottom: none; }
  .stat:last-child { border-right: none; }
  .stat b { font-size: 26px; }
  .stat span { font-size: 12.5px; }
  
  .service-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .service-card { padding: 22px 20px; }
  
  .why-grid { grid-template-columns: repeat(6, 1fr); gap: 0; }
  .why-item { padding: 12px 12px; border-right: 1px solid var(--border-soft); }
  .why-item:last-child { border-right: none; }
  
  .why-cards-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  
  .process-track { grid-template-columns: repeat(6, 1fr); gap: 14px; }
  .process-track::before { content: ''; position: absolute; top: 22px; left: 5%; right: 5%; height: 1px; background: linear-gradient(90deg, var(--ember), var(--frost-2)); opacity: .4; }
  
  .footer-grid { grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr 1.3fr; gap: 32px; }
  section.section-pad { padding: 60px 0 !important; }
  
  .about { gap: 44px; padding: 0; }
  .about-copy h2 { font-size: 32px; margin-bottom: 14px; }
  .about-copy p { 
    font-size: 15px; 
    margin-bottom: 20px; 
    line-height: 1.7; 
    text-align: justify; 
    text-justify: inter-word; 
    text-align-last: left;
    max-width: 100%;
    width: 100%;
  }
  .pillar-grid { gap: 12px; }
  .pillar { padding: 14px 16px; }
  .pillar b { font-size: 14px; margin-bottom: 4px; }
  .pillar span { font-size: 12px; }
  
  .section-head { max-width: 640px; margin: 0 auto 34px !important; }
  .section-head h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 8px; }
  .section-head p { font-size: 15px; margin-top: 6px; }
  .eyebrow { margin-bottom: 12px; }
  
  .marquee-section { padding: 32px 0; }
  .marquee-label { margin-bottom: 16px; }
  
  .menu-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
  .mobile-theme-row { display: none !important; }
  .mobile-health-indicator { display: none !important; }
  
  .legal-modal .modal-card { max-width: 820px; padding: 36px 40px 30px; }
  .lead-modal .modal-card { max-width: 580px; padding: 30px 32px 26px; }
  
  ::-webkit-scrollbar { width: 8px; height: 8px; }
  ::-webkit-scrollbar-thumb { border-width: 2px; }
}

@media (min-width: 1440px) and (max-width: 1920px) {
  .wrap { max-width: 94% !important; padding: 0 24px !important; }
  .nav-shell { padding-top: 12px !important; }
  .nav-inner { max-width: 94% !important; padding: 14px 36px !important; margin: 0 auto !important; width: 94%; }
  
  .nav-shell.docked .nav-inner {
    max-width: 1200px !important;
    padding: 12px 38px 12px 42px !important;
  }
  
  .nav-links { gap: 48px; margin: 0 16px; }
  .nav-links a { font-size: 21px; }
  .nav-right { gap: 24px !important; margin-left: 16px !important; }
  .nav-cta { font-size: 16px; padding: 11px 28px; }
  
  .hero { padding: 140px 0 48px !important; gap: 56px; }
  .hero h1 { font-size: 54px; max-width: 620px; }
  .hero p.lede { font-size: 18px; max-width: 540px; }
  .hero-visual { height: 480px; max-width: 500px; }
  .ring-rotate { width: 420px; height: 420px; }
  .forge-core { width: 200px; height: 200px; }
  
  .ring-expand:nth-child(1) { width: 290px; height: 290px; }
  .ring-expand:nth-child(2) { width: 350px; height: 350px; }
  .ring-expand:nth-child(3) { width: 410px; height: 410px; }
  .ring-expand:nth-child(4) { width: 470px; height: 470px; }
  .ring-expand:nth-child(5) { width: 310px; height: 310px; }
  .ring-expand:nth-child(6) { width: 390px; height: 390px; }
  
  .orbit-item .orbit-icon { width: 66px; height: 66px; font-size: 30px; }
  .orbit-item .orbit-icon img { width: 34px; height: 34px; }
  .orbit-item .orbit-label { font-size: 12px; }
  .dash-card { width: 250px; padding: 16px; }
  .dash-card .dash-stat { font-size: 20px; }
  .stat b { font-size: 28px; }
  .stat span { font-size: 13px; }
  .service-grid { gap: 20px; }
  .service-card { padding: 24px 22px; }
  .why-item { padding: 14px 14px; }
  .why-cards-grid { gap: 20px; }
  .why-card { padding: 26px 22px 24px; }
  
  .footer-grid { gap: 36px; }
  .marquee-section { padding: 36px 0; }
  section.section-pad { padding: 68px 0 !important; }
  .section-head { margin: 0 auto 36px !important; }
  .section-head h2 { font-size: 38px; }
  .brand-mark { width: 64px !important; height: 64px !important; }
  .brand { font-size: 28px; }
  .brand .brand-text { font-size: 28px; }
}

@media (min-width: 1921px) {
  .wrap { max-width: 1440px !important; padding: 0 60px !important; }
  .nav-shell { padding-top: 16px !important; }
  .nav-inner { max-width: 94% !important; padding: 16px 40px !important; margin: 0 auto !important; width: 94%; }
  
  .nav-shell.docked .nav-inner {
    max-width: 1300px !important;
    padding: 14px 44px 14px 48px !important;
  }
  
  .nav-links { gap: 52px; margin: 0 20px; }
  .nav-links a { font-size: 23px; }
  .nav-right { gap: 28px !important; margin-left: 20px !important; }
  .nav-cta { font-size: 17px; padding: 12px 32px; }
  
  .hero { padding: 150px 0 56px !important; gap: 64px; }
  .hero h1 { font-size: 60px; max-width: 680px; }
  .hero p.lede { font-size: 20px; max-width: 580px; }
  .hero-visual { height: 520px; max-width: 540px; }
  .ring-rotate { width: 460px; height: 460px; }
  .forge-core { width: 220px; height: 220px; }
  
  .ring-expand:nth-child(1) { width: 320px; height: 320px; }
  .ring-expand:nth-child(2) { width: 380px; height: 380px; }
  .ring-expand:nth-child(3) { width: 440px; height: 440px; }
  .ring-expand:nth-child(4) { width: 500px; height: 500px; }
  .ring-expand:nth-child(5) { width: 340px; height: 340px; }
  .ring-expand:nth-child(6) { width: 420px; height: 420px; }
  
  .orbit-item .orbit-icon { width: 72px; height: 72px; font-size: 32px; }
  .orbit-item .orbit-icon img { width: 36px; height: 36px; }
  .orbit-item .orbit-label { font-size: 13px; }
  .dash-card { width: 270px; padding: 18px; }
  .dash-card .dash-stat { font-size: 22px; }
  .stat b { font-size: 32px; }
  .service-grid { gap: 24px; }
  .why-cards-grid { gap: 24px; }
  
  .marquee-section { padding: 36px 0; }
  section.section-pad { padding: 76px 0 !important; }
  .section-head { margin: 0 auto 42px !important; }
  .section-head h2 { font-size: 42px; }
  .brand-mark { width: 72px !important; height: 72px !important; }
  .brand { font-size: 30px; }
  .brand .brand-text { font-size: 30px; }
}

/* =========================================================
   TRUST ROW → STATS SPACING
   ========================================================= */

.trust-row {
  margin-bottom: 22px;
}

/* =========================================================
   24/7 — CENTERED FULL-WIDTH ROW
   ========================================================= */

.stats-panel .stat:nth-child(5) {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Tablet + Mobile */
@media (max-width: 900px) {
  .stats-panel .stat:nth-child(5) {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 560px) {
  .trust-row {
    margin-bottom: 18px;
  }

  .stats-panel .stat:nth-child(5) {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}

/* Keep border below 6+ Years at every screen size */
.stats-panel .stat:nth-child(4) {
  border-bottom: 1px solid var(--border-soft) !important;
}