/* ============================================
   RESET & VARIABLES
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #09090B;
  --bg2: #111113;
  --bg3: #18181B;
  --white: #EDEDED;
  --gray: #8A8A8A;
  --dark: #4A4A4A;
  --orange: #F07B1C;
  --orange-light: #FF9F45;
  --orange-dim: rgba(240, 123, 28, 0.08);
  --orange-glow: rgba(240, 123, 28, 0.35);
  --cyan: #00D9FF;
  --cyan-dim: rgba(0, 217, 255, 0.08);
  --success: #22C55E;
  --danger: #EF4444;
  --font-en: 'Outfit', sans-serif;
  --font-kr: 'Noto Sans KR', sans-serif;
  --font-mono: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);

  /* Glass Design System */
  --glass-bg: rgba(255, 255, 255, 0.015);
  --glass-bg-hover: rgba(255, 255, 255, 0.035);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(240, 123, 28, 0.25);
  --glass-border-subtle: rgba(255, 255, 255, 0.04);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  --glass-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(240, 123, 28, 0.1);
  --glass-shadow-glow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 24px rgba(240, 123, 28, 0.06);
  --glass-radius: 20px;
  --glass-radius-sm: 12px;
  --glass-radius-lg: 24px;
  --glass-blur: 12px;
}

html {
  overflow-x: hidden;
  scroll-behavior: auto;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-kr);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--orange);
  color: var(--bg);
}

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

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

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

/* ============================================
   LIGHT MODE
   ============================================ */
[data-theme="light"] {
  --bg: #F5F5F5;
  --bg2: #FFFFFF;
  --bg3: #EBEBEB;
  --white: #1A1A1A;
  --gray: #6B6B6B;
  --dark: #999999;
  --orange-dim: rgba(240, 123, 28, 0.06);
  --orange-glow: rgba(240, 123, 28, 0.2);
}

[data-theme="light"] .noise-overlay {
  opacity: 0.015;
}

[data-theme="light"] .noise {
  opacity: 0.015;
}

[data-theme="light"] .nav {
  mix-blend-mode: normal;
}

[data-theme="light"] .nav-logo img {
  filter: none;
}

[data-theme="light"] .hero-bg-text {
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .system-card {
  background: var(--bg2);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .vehicle-card {
  background: var(--bg2);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .vehicle-card::before {
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

[data-theme="light"] .trust-card {
  background: var(--bg2);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .calc-shell {
  background: var(--bg2);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .calc-dash {
  background: linear-gradient(135deg, #1A1A1A, #2A2A2A);
}

[data-theme="light"] .chart-panel {
  background: var(--bg2);
  border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .chart-bar-bg {
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .footer {
  background: #1A1A1A;
  color: #EDEDED;
}

[data-theme="light"] .footer .footer-copy,
[data-theme="light"] .footer .footer-brand-text {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .footer .footer-col-title {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .footer .footer-link-list a {
  color: rgba(255, 255, 255, 0.4);
}

[data-theme="light"] .footer img {
  filter: brightness(0) invert(1) !important;
}

[data-theme="light"] .cta-section {
  background: linear-gradient(135deg, #1A1A1A, #2A2A2A);
  color: #EDEDED;
}

[data-theme="light"] .cta-heading {
  color: #EDEDED;
}

[data-theme="light"] .cta-desc {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .marquee-section {
  border-color: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .marquee-text {
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .marquee-text.filled {
  color: rgba(0, 0, 0, 0.04);
  -webkit-text-stroke-color: transparent;
}

[data-theme="light"] .visual-break {
  background: linear-gradient(135deg, var(--orange), #FF9F45);
}

[data-theme="light"] .visual-break-text {
  color: #fff;
}

[data-theme="light"] .visual-break-sub {
  color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .savings-box {
  background: rgba(240, 123, 28, 0.06);
  border-color: rgba(240, 123, 28, 0.12);
}

[data-theme="light"] .hero-orb {
  opacity: 0.15;
}

[data-theme="light"] .comparison-bar-track {
  background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .section-dots .section-dot::before {
  background: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .section-dots .section-dot.active::before {
  background: var(--orange);
}

[data-theme="light"] .calc-ctrl {
  background: var(--bg3);
}

[data-theme="light"] .brand-btn {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--gray);
}

[data-theme="light"] .eyebrow-line {
  background: var(--orange);
}

[data-theme="light"] ::selection {
  background: var(--orange);
  color: #fff;
}

body {
  transition: background-color 0.5s ease, color 0.5s ease;
}

.system-card,
.vehicle-card,
.trust-card,
.calc-shell,
.chart-panel {
  transition: all 0.5s var(--ease);
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px);
}

.theme-toggle.visible {
  opacity: 1;
  transform: translateY(0);
}

[data-theme="light"] .theme-toggle {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.theme-toggle:hover {
  transform: scale(1.1);
  border-color: var(--orange);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
  transition: transform 0.4s var(--ease);
}

.theme-toggle:hover svg {
  transform: rotate(30deg);
}

.theme-toggle .icon-sun {
  display: none;
}

.theme-toggle .icon-moon {
  display: block;
}

[data-theme="light"] .theme-toggle .icon-sun {
  display: block;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: none;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 9999;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9800;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav-links a {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
  display: block;
  transform: translateY(30px);
  opacity: 0;
}

.mobile-nav-overlay.active .mobile-nav-links a {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease), color 0.3s;
}

.mobile-nav-links a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav-links a:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-nav-links a:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-nav-links a:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-nav-links a:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-nav-links a:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-nav-links a:nth-child(7) {
  transition-delay: 0.4s;
}

.mobile-nav-links a:nth-child(8) {
  transition-delay: 0.45s;
}

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

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
}

/* ============================================
   NOISE OVERLAY
   ============================================ */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  mix-blend-mode: difference;
  will-change: transform;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s var(--ease);
}

.custom-cursor.is-hover {
  width: 64px;
  height: 64px;
  background: rgba(240, 123, 28, 0.12);
  mix-blend-mode: normal;
  border: 1px solid rgba(240, 123, 28, 0.25);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  transition: transform 0.1s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(240, 123, 28, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--orange);
}

@media (max-width: 768px) {
  .custom-cursor {
    display: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 24px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: difference;
}

.nav-logo img {
  height: 26px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.5s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

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

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  z-index: 10002;
  width: 0;
  transition: width 0.1s;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 18vh 5vw;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--orange);
}

.section-heading {
  font-family: var(--font-en);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 72px 5vw 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.035);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand-text {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
  font-weight: 300;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-list a {
  font-size: 13px;
  color: var(--dark);
  font-weight: 300;
  transition: color 0.3s;
}

.footer-link-list a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.035);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--dark);
  letter-spacing: 0.05em;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}

.social-link:hover {
  border-color: var(--orange);
  background: var(--orange-dim);
  transform: translateY(-2px);
}

.social-link svg {
  width: 14px;
  height: 14px;
  fill: var(--dark);
  transition: fill 0.3s;
}

.social-link:hover svg {
  fill: var(--orange);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-orb,
  .confetti-piece,
  .firework-dot,
  .click-burst,
  .ripple-wave,
  .cursor-trail-dot,
  #js-particles,
  #js-cursor,
  .speedometer,
  #js-spotlight,
  .cursor-dot,
  .cursor-ring,
  .scroll-indicator,
  .scroll-progress,
  #heroCanvas,
  .progress-bar {
    display: none !important;
  }

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

  .fleet-hero .line-inner {
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.rocket-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  font-size: 18px;
}
.rocket-btn.visible {
  opacity: 1;
  transform: translateY(0);
}
.rocket-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-4px) scale(1.1);
}
[data-theme="light"] .rocket-btn {
  background: #fff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ============================================
   GLASS DESIGN SYSTEM
   ============================================ */

/* Base glass card — subtle frosted panel */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: all 0.4s var(--ease);
}
.glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
  transform: translateY(-4px);
}

/* Glass subtle — less prominent, no hover lift */
.glass-subtle {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-subtle);
  border-radius: var(--glass-radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
}
.glass-subtle:hover {
  border-color: var(--glass-border);
  background: var(--glass-bg-hover);
}

/* Glass elevated — stronger presence with shadow */
.glass-elevated {
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-shadow);
  transition: all 0.4s var(--ease);
}
.glass-elevated:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-glow);
  transform: translateY(-4px);
}

/* Glass accent — orange glow emphasis */
.glass-accent {
  background: linear-gradient(135deg, rgba(240, 123, 28, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(240, 123, 28, 0.1);
  border-radius: var(--glass-radius);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.glass-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 30% 20%, rgba(240, 123, 28, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.glass-accent:hover {
  border-color: rgba(240, 123, 28, 0.25);
  box-shadow: var(--glass-shadow-glow);
  transform: translateY(-4px);
}
.glass-accent:hover::before {
  opacity: 1;
}

/* Glass hero — large featured panels */
.glass-hero {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.5s var(--ease);
}
.glass-hero:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 32px rgba(240, 123, 28, 0.05);
}

/* Glass inset — recessed/inner panel look */
.glass-inset {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--glass-radius-sm);
  transition: all 0.3s var(--ease);
}

/* Animated border shimmer on hover */
.glass-shimmer {
  position: relative;
  overflow: hidden;
}
.glass-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(240, 123, 28, 0.08) 10%,
    transparent 20%
  );
  animation: glassShimmer 6s linear infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.glass-shimmer:hover::after {
  opacity: 1;
}
@keyframes glassShimmer {
  to { transform: rotate(360deg); }
}

/* Glass icon container */
.glass-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-dim);
  border-radius: var(--glass-radius-sm);
  transition: all 0.4s var(--ease);
}
.glass-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  transition: all 0.4s var(--ease);
}

/* Light theme overrides for glass */
[data-theme="light"] .glass,
[data-theme="light"] .glass-subtle {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}
[data-theme="light"] .glass:hover,
[data-theme="light"] .glass-subtle:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .glass-elevated {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .glass-elevated:hover {
  border-color: rgba(240, 123, 28, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .glass-accent {
  background: linear-gradient(135deg, rgba(240, 123, 28, 0.04), rgba(255, 255, 255, 0.5));
  border-color: rgba(240, 123, 28, 0.12);
}
[data-theme="light"] .glass-accent:hover {
  border-color: rgba(240, 123, 28, 0.2);
  box-shadow: 0 8px 32px rgba(240, 123, 28, 0.08);
}
[data-theme="light"] .glass-hero {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .glass-inset {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.04);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
/* Layout */
.text-center { text-align: center; }
.text-right { text-align: right; }
.eyebrow-center { justify-content: center; display: inline-flex; }
.flex-center { justify-content: center; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Colors */
.text-orange { color: var(--orange); }
.text-cyan { color: #45D0FF; }
.text-success { color: var(--success); }

/* Spacing */
.pb-0 { padding-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-40 { margin-top: 40px; }

/* Logo / Partner image invert */
.logo-invert { filter: brightness(0) invert(1); }
.logo-invert-sm { height: 22px; filter: brightness(0) invert(1); }
.logo-invert-md { height: 24px; filter: brightness(0) invert(1); }
.logo-invert-lg { height: 26px; filter: brightness(0) invert(1); }
.logo-invert-xl { height: 28px; filter: brightness(0) invert(1); }

/* Text utilities */
.text-gray-link { color: var(--gray); transition: color .3s; }
.text-gray-link:hover { color: var(--orange); }
.fw-bold { font-weight: 700; }

/* CTA button variants */
.cta-btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btn-primary { background: var(--orange); color: #fff; }
.cta-btn-outline { background: transparent; border: 1px solid var(--orange); color: var(--orange); }

/* (Subpage footer classes removed — unified footer across all pages) */
