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

:root {
  --bg-deep: #04020c;
  --bg-card: #0a0516;
  --bg-card2: #0f0720;
  --purple-dark: #1a0a30;
  --purple-mid: #7c4dff;
  --purple-light: #a78bfa;
  --purple-pale: #ede9fe;
  --text-main: #ede9fe;
  --text-muted: #8b7aab;
  --green: #4ade80;
  --border: rgba(124, 77, 255, 0.22);
  --border-hover: rgba(124, 77, 255, 0.55);
  --glow: 0 0 28px rgba(124, 77, 255, 0.16);
  --glow-strong: 0 0 48px rgba(124, 77, 255, 0.28);
  --radius: 14px;
  --radius-sm: 9px;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-serif: "Georgia", "Times New Roman", serif;
}

/* ===========================
   LIGHT THEME VARIABLES
=========================== */
html[data-theme="light"] {
  --bg-deep: #f0edf8;
  --bg-card: #ffffff;
  --bg-card2: #f8f6ff;
  --purple-dark: #ede9fe;
  --purple-mid: #7c4dff;
  --purple-light: #7c3aed;
  --purple-pale: #f5f3ff;
  --text-main: #1a0a30;
  --text-muted: #6b5d8a;
  --green: #15803d;
  --border: rgba(124, 77, 255, 0.16);
  --border-hover: rgba(124, 77, 255, 0.45);
  --glow: 0 4px 20px rgba(124, 77, 255, 0.1);
  --glow-strong: 0 8px 36px rgba(124, 77, 255, 0.2);
}

/* Hard-coded dark overrides */
html[data-theme="light"] nav {
  background: rgba(248, 246, 255, 0.92);
  border-bottom-color: rgba(124, 77, 255, 0.15);
}

html[data-theme="light"] .mobile-menu {
  background: rgba(248, 246, 255, 0.98);
}

/* Light mode: swap videos */
#hero-video-light {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  display: none;
}

#hero-video-light::-webkit-media-controls,
#hero-video-light::-webkit-media-controls-enclosure,
#hero-video-light::-webkit-media-controls-panel,
#hero-video-light::-webkit-media-controls-overlay-play-button,
#hero-video-light::-webkit-media-controls-play-button,
#hero-video-light::-webkit-media-controls-timeline,
#hero-video-light::-webkit-media-controls-current-time-display,
#hero-video-light::-webkit-media-controls-time-remaining-display,
#hero-video-light::-internal-media-controls-overflow-button {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html[data-theme="light"] #hero-video {
  display: none;
}

html[data-theme="light"] #hero-video-light {
  display: block;
}

html[data-theme="light"] .hero-video-overlay {
  background: rgba(240, 237, 248, 0.18);
}

/* Cursor glow above the light video, stronger on white */
html[data-theme="light"] #cursor-glow {
  z-index: 2;
  background: radial-gradient(
    circle,
    rgba(124, 77, 255, 0.18) 0%,
    rgba(100, 60, 220, 0.09) 40%,
    transparent 70%
  );
  mix-blend-mode: multiply;
}

html[data-theme="light"] .ticker-wrap {
  background: rgba(245, 242, 255, 0.88);
}

html[data-theme="light"] .ticker-wrap::before {
  background: linear-gradient(
    90deg,
    rgba(240, 237, 248, 1) 0%,
    transparent 100%
  );
}

html[data-theme="light"] .ticker-wrap::after {
  background: linear-gradient(
    270deg,
    rgba(240, 237, 248, 1) 0%,
    transparent 100%
  );
}

/* Hero pills */
html[data-theme="light"] .pill {
  background: rgba(124, 77, 255, 0.07);
  backdrop-filter: none;
}

/* Team/Operating Model cards */
html[data-theme="light"] .team-card {
  background: #ffffff;
  backdrop-filter: none;
}

/* Results CTA card */
html[data-theme="light"] .rcta-wrap {
  background: linear-gradient(135deg, #ede8ff 0%, #e4dcff 50%, #ede8ff 100%);
  border-color: rgba(124, 77, 255, 0.5);
  box-shadow:
    0 16px 64px rgba(124, 77, 255, 0.22),
    0 4px 16px rgba(124, 77, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Execution: eng-cards lift off the lavender bg */
html[data-theme="light"] .eng-card {
  box-shadow:
    0 2px 16px rgba(124, 77, 255, 0.09),
    0 1px 4px rgba(0, 0, 0, 0.04);
}

/* Channel cards: white bg + shadow to pop */
html[data-theme="light"] .eng-channel {
  background: #ffffff;
  box-shadow:
    0 4px 24px rgba(124, 77, 255, 0.1),
    0 1px 6px rgba(0, 0, 0, 0.05);
}

/* Cold Outbound — teal/cyan theme */
html[data-theme="light"] .eng-channel--cold {
  border-color: rgba(8, 145, 178, 0.4);
}
html[data-theme="light"] .eng-channel--cold .eng-channel-hdr {
  background: rgba(8, 145, 178, 0.1);
  color: #0e7490;
  border-bottom-color: rgba(8, 145, 178, 0.2);
}
html[data-theme="light"] .eng-channel--cold .eng-channel-hdr svg {
  color: #0e7490;
}
html[data-theme="light"] .eng-step-dot {
  background: #0891b2;
}

/* Warm Inbound — purple theme */
html[data-theme="light"] .eng-channel--warm {
  border-color: rgba(124, 77, 255, 0.35);
}
html[data-theme="light"] .eng-channel--warm .eng-channel-hdr {
  background: rgba(124, 77, 255, 0.09);
  color: #6d28d9;
  border-bottom-color: rgba(124, 77, 255, 0.18);
}
html[data-theme="light"] .eng-channel--warm .eng-channel-hdr svg {
  color: #6d28d9;
}

/* Row dividers inside steps — lighter */
html[data-theme="light"] .eng-steps li {
  border-bottom-color: rgba(124, 77, 255, 0.06);
}

/* Video stop/play button in light mode */
html[data-theme="light"] .video-toggle {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(124, 77, 255, 0.3);
  color: var(--purple-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
html[data-theme="light"] .video-toggle:hover {
  background: rgba(124, 77, 255, 0.1);
  border-color: var(--purple-mid);
}

/* Phase separator lines — slightly more visible */
html[data-theme="light"] .eng-phase {
  border-top-color: rgba(124, 77, 255, 0.2);
}
html[data-theme="light"] .eng-phase:last-child {
  border-bottom-color: rgba(124, 77, 255, 0.2);
}

/* Kill dark ambient orbs in light mode */
html[data-theme="light"] body::after,
html[data-theme="light"] body::before {
  opacity: 0;
}
html[data-theme="light"] .glow-orb-bl {
  opacity: 0;
}
html[data-theme="light"] .section-glow {
  opacity: 0.3;
}
html[data-theme="light"] footer::before {
  opacity: 0.3;
}

/* Smooth transition on theme switch */
body,
nav,
.mobile-menu {
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

html {
  scroll-behavior: auto;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===========================
   CURSOR SPOTLIGHT GLOW
=========================== */
#cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 77, 255, 0.13) 0%,
    rgba(100, 60, 220, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: opacity 0.4s ease;
  opacity: 0;
}

/* ===========================
   AMBIENT GLOW ORBS
=========================== */

/* Fixed side ambient orbs — left and right only */
body::after {
  content: "";
  position: fixed;
  top: 30vh;
  right: -180px;
  width: 420px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(124, 77, 255, 0.11) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.glow-orb-bl {
  position: fixed;
  top: 40vh;
  left: -180px;
  width: 420px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(100, 50, 220, 0.09) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* Per-section glow accents */
.section-glow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 280px;
  background: radial-gradient(
    ellipse at center,
    rgba(124, 77, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.section-glow.top {
  top: -60px;
}
.section-glow.bottom {
  bottom: -60px;
}
.section-glow.right {
  left: auto;
  right: -200px;
  transform: none;
}
.section-glow.left {
  left: -200px;
  transform: none;
}

/* Footer divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(124, 77, 255, 0.4) 30%,
    rgba(167, 139, 250, 0.6) 50%,
    rgba(124, 77, 255, 0.4) 70%,
    transparent 100%
  );
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

section {
  padding: 88px 0;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
}
h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}
h3 {
  font-size: 1.15rem;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--purple-light);
}

.label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--purple-light);
}

/* ===========================
   NAV
=========================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  padding: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(4, 2, 12, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
  height: 100%;
  overflow: hidden;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  line-height: 1;
}

.nav-logo-accent {
  color: var(--purple-light);
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo .nav-logo-img {
  height: 72px;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 7px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--purple-light);
  background: rgba(124, 77, 255, 0.1);
}

.nav-links a.active {
  color: var(--purple-light);
  background: rgba(124, 77, 255, 0.12);
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--purple-mid);
  border-radius: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(74, 222, 128, 0.07);
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 99px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green);
  white-space: nowrap;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.nav-cta {
  background: var(--purple-mid);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #9333ea;
  box-shadow: 0 0 24px rgba(124, 77, 255, 0.4);
}

/* Theme toggle — iOS pill switch */
.theme-toggle {
  width: 46px;
  height: 26px;
  border-radius: 99px;
  border: none;
  background: #2a2a35;
  cursor: pointer;
  padding: 3px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
  position: relative;
}

.theme-toggle-knob {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #6b6b7a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease;
  transform: translateX(20px);
}

.toggle-icon-sun,
.toggle-icon-moon {
  flex-shrink: 0;
}

/* Dark mode: show moon (white on dark knob) */
.toggle-icon-sun {
  display: none;
}
.toggle-icon-moon {
  display: block;
  color: #c4b5fd;
}

/* Light mode: track light gray, knob white, knob on left, show sun */
html[data-theme="light"] .theme-toggle {
  background: #dcdce8;
}
html[data-theme="light"] .theme-toggle-knob {
  background: #ffffff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
  transform: translateX(0);
}
html[data-theme="light"] .toggle-icon-moon {
  display: none;
}
html[data-theme="light"] .toggle-icon-sun {
  display: block;
  color: #f59e0b;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(4, 2, 12, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 20px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
}

.mobile-menu a:hover {
  color: var(--purple-light);
  background: rgba(124, 77, 255, 0.1);
}

.mobile-menu .btn-primary {
  margin-top: 8px;
  text-align: center;
  padding: 12px;
}

/* ===========================
   HERO
=========================== */
#hero {
  padding-top: 100px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background video */
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
}

/* Suppress all browser-native video controls */
#hero-video::-webkit-media-controls,
#hero-video::-webkit-media-controls-enclosure,
#hero-video::-webkit-media-controls-panel,
#hero-video::-webkit-media-controls-overlay-play-button,
#hero-video::-webkit-media-controls-play-button,
#hero-video::-webkit-media-controls-timeline,
#hero-video::-webkit-media-controls-volume-slider,
#hero-video::-webkit-media-controls-mute-button,
#hero-video::-webkit-media-controls-fullscreen-button,
#hero-video::-webkit-media-controls-current-time-display,
#hero-video::-webkit-media-controls-time-remaining-display,
#hero-video::-internal-media-controls-overflow-button,
#hero-video::-internal-media-controls-download-button {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  -webkit-appearance: none;
} /* Dark overlay so text stays readable */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 2, 12, 0.55) 0%,
    rgba(4, 2, 12, 0.35) 50%,
    rgba(4, 2, 12, 0.75) 100%
  );
  z-index: 1;
}

/* Stop / Play button */
.video-toggle {
  position: absolute;
  bottom: 72px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(10, 5, 22, 0.75);
  border: 1px solid var(--border-hover);
  border-radius: 99px;
  padding: 7px 16px 7px 12px;
  color: var(--purple-light);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background 0.2s,
    border-color 0.2s;
  font-family: var(--font-sans);
}

.video-toggle:hover {
  background: rgba(124, 77, 255, 0.18);
  border-color: var(--purple-mid);
}

/* Hero container sits above video layers */
#hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.pill {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 13px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(10, 5, 22, 0.7);
  backdrop-filter: blur(8px);
}

.pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.hero-rating-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.hero-rating-score {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.hero-rating-sep {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.hero-rating-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.btn-primary {
  background: var(--purple-mid);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 13px 26px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: #9333ea;
  box-shadow: 0 0 30px rgba(124, 77, 255, 0.42);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--purple-light);
  border: 1px solid var(--border-hover);
  border-radius: 9px;
  padding: 13px 26px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(124, 77, 255, 0.1);
  box-shadow: var(--glow);
  transform: translateY(-1px);
}

/* ===========================
   TICKER
=========================== */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background: rgba(4, 2, 12, 0.75);
  border-top: 1px solid var(--border);
  padding: 18px 0;
  z-index: 3;
  backdrop-filter: blur(8px);
}

/* Fade edges */
.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(4, 2, 12, 1) 0%, transparent 100%);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(4, 2, 12, 1) 0%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0 34px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}

.ticker-item:hover {
  color: var(--purple-light);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-mid);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ===========================
   METRICS STRIP
=========================== */
#metrics {
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.metric-card {
  background: var(--bg-card);
  padding: 28px 20px;
  text-align: center;
}

.metric-number {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--purple-light);
  display: block;
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===========================
   SECTION HEADER
=========================== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.97rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===========================
   SERVICES
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.service-card--featured {
  border-color: rgba(124, 77, 255, 0.5);
  background: linear-gradient(
    160deg,
    rgba(124, 77, 255, 0.07) 0%,
    var(--bg-card) 60%
  );
  position: relative;
  overflow: visible;
  padding-top: 36px;
}

.service-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: linear-gradient(90deg, #7c4dff, #a87dff);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 5px 16px;
  box-shadow:
    0 0 16px rgba(124, 77, 255, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-volume {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 77, 255, 0.12);
  border: 1px solid rgba(124, 77, 255, 0.3);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-light);
  margin-bottom: 18px;
}

.service-number {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 10px;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 9px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.65;
}

.service-path {
  font-size: 0.75rem;
  color: var(--purple-mid);
  font-weight: 500;
  margin-bottom: 16px;
  font-family: monospace;
  letter-spacing: 0.04em;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feature-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-mid);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ===========================
   HOW IT WORKS — TIMELINE
=========================== */
#how-it-works {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(26, 10, 48, 0.2) 50%,
    transparent 100%
  );
}

.timeline-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: start;
}

/* Left nav */
.timeline-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  user-select: none;
}

.timeline-nav-item:hover {
  border-color: var(--border-hover);
}

.timeline-nav-item.active {
  background: var(--purple-dark);
  border-color: var(--purple-mid);
  box-shadow: var(--glow);
}

.tn-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  width: 28px;
  flex-shrink: 0;
  transition: color 0.2s;
}

.timeline-nav-item.active .tn-num {
  color: var(--purple-light);
}

.tn-period {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 3px;
}

.tn-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.2s;
}

.timeline-nav-item.active .tn-title {
  color: var(--text-main);
}

/* Right panel */
.timeline-panel {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.timeline-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    ellipse,
    rgba(124, 77, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.timeline-content {
  display: none;
  animation: tp-fade 0.35s ease;
}

.timeline-content.active {
  display: block;
}

@keyframes tp-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tp-period {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 12px;
}

.tp-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.2;
}

.tp-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 540px;
}

.tp-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tp-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-main);
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-bottom: none;
  background: rgba(124, 77, 255, 0.03);
  transition: background 0.2s;
}

.tp-checklist li:first-child {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.tp-checklist li:last-child {
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.tp-checklist li:hover {
  background: rgba(124, 77, 255, 0.07);
}

.tp-checklist li::before {
  content: "✓";
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple-mid);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 800px) {
  .timeline-wrap {
    grid-template-columns: 1fr;
  }
  .timeline-panel {
    padding: 28px 20px;
  }
}

/* ===========================
   ENGINE — 3-PHASE DESIGN
=========================== */
#engine {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(18, 6, 38, 0.3),
    transparent
  );
}

.eng-phases {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Phase row */
.eng-phase {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.eng-phase:last-child {
  border-bottom: 1px solid var(--border);
}

/* Phase label */
.eng-phase-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.eng-phase-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-mid);
}

.eng-phase-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Arrow between phases */
.eng-arrow {
  display: flex;
  justify-content: center;
  padding: 4px 0;
  color: rgba(124, 77, 255, 0.45);
  margin-left: 172px;
}

/* Phase 01 — three feature cards in a row */
.eng-phase-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.eng-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.eng-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow);
}

.eng-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(124, 77, 255, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--purple-light);
}

.eng-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.eng-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Phase 02 — two channel columns */
.eng-phase-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.eng-channel {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.eng-channel-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.eng-channel--cold .eng-channel-hdr {
  background: rgba(103, 232, 249, 0.06);
  color: #67e8f9;
}

.eng-channel--cold .eng-channel-hdr svg {
  color: #67e8f9;
}
.eng-channel--cold {
  border-color: rgba(103, 232, 249, 0.22);
}

.eng-channel--warm .eng-channel-hdr {
  background: rgba(167, 139, 250, 0.08);
  color: var(--purple-light);
  border-color: var(--border);
}

.eng-channel--warm .eng-channel-hdr svg {
  color: var(--purple-light);
}

.eng-steps {
  list-style: none;
  padding: 6px 0;
}

.eng-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.83rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(124, 77, 255, 0.07);
  transition:
    background 0.15s,
    color 0.15s;
}

.eng-steps li:last-child {
  border-bottom: none;
}
.eng-steps li:hover {
  background: rgba(124, 77, 255, 0.05);
  color: var(--text-main);
}

.eng-step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(103, 232, 249, 0.7);
  flex-shrink: 0;
}

.eng-step-dot--warm {
  background: var(--purple-mid);
}

/* Channel divider */
.eng-channel-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(124, 77, 255, 0.4);
  padding-top: 18px;
}

/* Phase 03 — result stats */
.eng-phase-cards--results {
  grid-template-columns: repeat(4, 1fr);
}

.eng-result {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 18px;
  text-align: center;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.eng-result:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow);
}

.eng-result--highlight {
  background: rgba(124, 77, 255, 0.1);
  border-color: var(--purple-mid);
  box-shadow: var(--glow);
}

.eng-result-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple-light);
  margin-bottom: 6px;
  line-height: 1;
}

.eng-result--highlight .eng-result-num {
  color: var(--text-main);
}

.eng-result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .eng-phase {
    grid-template-columns: 100px 1fr;
    gap: 20px;
  }
  .eng-phase-cards {
    grid-template-columns: 1fr;
  }
  .eng-phase-cards--results {
    grid-template-columns: repeat(2, 1fr);
  }
  .eng-phase-cols {
    grid-template-columns: 1fr;
  }
  .eng-channel-divider {
    width: 100%;
    padding: 10px 0;
  }
  .eng-arrow {
    margin-left: 120px;
  }
}

@media (max-width: 600px) {
  .eng-phase {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }
  .eng-phase-label {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .eng-phase-name {
    font-size: 0.95rem;
  }
  .eng-phase-cards--results {
    grid-template-columns: repeat(2, 1fr);
  }
  .eng-arrow {
    margin-left: 0;
  }
}

/* ===========================
   INDUSTRIES
=========================== */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.industry-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition:
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  cursor: default;
}

.industry-tag:hover {
  border-color: var(--border-hover);
  color: var(--purple-light);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.industry-tag--more {
  border-color: rgba(124, 77, 255, 0.35);
  color: var(--purple-light);
  background: rgba(124, 77, 255, 0.07);
}

/* ===========================
   TOOL STACK
=========================== */
.stack-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  cursor: default;
}

.tool-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.tool-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
}

.tool-card span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-main);
}

.tool-card.more-card {
  border-color: rgba(124, 77, 255, 0.35);
  background: rgba(124, 77, 255, 0.07);
  justify-content: center;
}

.tool-card.more-card .more-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-light);
  line-height: 1;
}

.tool-card.more-card span {
  color: var(--text-muted);
  font-weight: 500;
}

.stack-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.stack-stat {
  background: rgba(124, 77, 255, 0.07);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.76rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===========================
   DEDICATED TEAM
=========================== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.team-card {
  background: rgba(10, 5, 22, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.team-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow);
}

.team-card-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 10px;
  display: block;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.team-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(124, 77, 255, 0.08);
}

.team-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.team-list li::before {
  content: "▸";
  color: var(--purple-mid);
  flex-shrink: 0;
}

.account-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.account-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.account-feature .label {
  margin-bottom: 7px;
  display: block;
}

.account-feature h4 {
  font-size: 0.88rem;
  margin-bottom: 5px;
}

.account-feature p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===========================
   TESTIMONIALS
=========================== */
#proof {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(26, 10, 48, 0.18) 50%,
    transparent 100%
  );
}

.trusted-label {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.client-logo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow);
}

.quote-mark {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--purple-mid);
  font-family: var(--font-serif);
  margin-bottom: 10px;
  display: block;
}

.testimonial-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.testimonial-card p em {
  color: var(--purple-light);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-dark);
  border: 2px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.83rem;
  color: var(--purple-light);
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 700;
}

.author-role {
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===========================
   FINAL CTA
=========================== */
.cta-box {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(26, 10, 48, 0.9) 100%
  );
  border: 1px solid var(--border-hover);
  border-radius: 20px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(124, 77, 255, 0.1),
    0 0 80px rgba(124, 77, 255, 0.14),
    inset 0 0 80px rgba(124, 77, 255, 0.04);
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 280px;
  background: radial-gradient(
    ellipse at center,
    rgba(124, 77, 255, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-box h2 {
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 0.97rem;
  max-width: 500px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.cta-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(10, 5, 22, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  backdrop-filter: blur(8px);
}

.contact-link:hover {
  border-color: var(--border-hover);
  color: var(--text-main);
  background: rgba(124, 77, 255, 0.08);
}

.contact-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ===========================
   FAQ
=========================== */
#faq {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(26, 10, 48, 0.2) 50%,
    transparent 100%
  );
}

/* ===========================
   RESULTS CTA
=========================== */
#results-cta {
  padding: 80px 0;
}

.rcta-wrap {
  background: linear-gradient(135deg, #0f0720 0%, #1a0a30 60%, #0a0516 100%);
  border: 1px solid rgba(124, 77, 255, 0.35);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(124, 77, 255, 0.1);
}

.rcta-wrap::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(124, 77, 255, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.rcta-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(124, 77, 255, 0.12);
  border: 1px solid rgba(124, 77, 255, 0.3);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.rcta-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-main);
}

.rcta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.rcta-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 32px;
}

.rcta-bullet {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.rcta-bullet svg {
  color: var(--purple-light);
  flex-shrink: 0;
}

.rcta-btn {
  font-size: 1rem;
  padding: 15px 36px;
}

.rcta-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 96px;
}

.faq-left .label {
  margin-bottom: 12px;
  display: block;
}

.faq-left h2 {
  margin-bottom: 14px;
}

.faq-left p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--border-hover);
  box-shadow: var(--glow);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  transition:
    color 0.2s,
    background 0.2s;
}

.faq-question:hover {
  color: var(--purple-light);
  background: rgba(124, 77, 255, 0.04);
}

.faq-question[aria-expanded="true"] {
  color: var(--purple-light);
  background: rgba(124, 77, 255, 0.06);
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  background: rgba(124, 77, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  color: var(--purple-light);
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.25s;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--purple-mid);
  border-color: var(--purple-mid);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer > p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
}

/* ===========================
   CONTACT
=========================== */
#contact {
  padding-bottom: 96px;
}

.contact-person-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-person-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(124, 77, 255, 0.45);
  flex-shrink: 0;
}

.contact-person-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  cursor: pointer;
}

.contact-card:hover {
  border-color: var(--border-hover);
  box-shadow:
    var(--glow),
    0 12px 32px rgba(124, 77, 255, 0.18);
  transform: translateY(-6px);
}

.contact-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(124, 77, 255, 0.15);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}

.contact-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}

.contact-card:hover .contact-card-arrow {
  background: #9333ea;
  transform: translate(2px, -2px);
}

.contact-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
}

.contact-card-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  word-break: break-word;
}

/* ===========================
   FOOTER
=========================== */
footer {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

footer::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(124, 77, 255, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 20px 28px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  margin-bottom: 32px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  display: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
}

.footer-headline {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 28px;
}

.footer-accent {
  color: var(--purple-light);
  font-style: normal;
  font-weight: 700;
}

.footer-emails {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
  margin-bottom: 28px;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--purple-light);
}
.footer-email svg {
  flex-shrink: 0;
  color: var(--purple-mid);
}

.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 2px;
  justify-content: center;
  margin-bottom: 32px;
}

.footer-nav a {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--purple-light);
}

.footer-dot {
  color: rgba(124, 77, 255, 0.35);
  font-size: 1rem;
  user-select: none;
  padding: 0 2px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 77, 255, 0.35) 30%,
    rgba(167, 139, 250, 0.5) 50%,
    rgba(124, 77, 255, 0.35) 70%,
    transparent
  );
  margin-bottom: 20px;
}

.footer-bottom-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(124, 77, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.footer-social a:hover {
  border-color: var(--border-hover);
  color: var(--purple-light);
  background: rgba(124, 77, 255, 0.15);
  box-shadow: var(--glow);
}

.footer-brand {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
/* ===========================
   FADE-IN ANIMATION
=========================== */
/* ===========================
   HERO ENTRANCE ANIMATION
=========================== */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

#hero h1 {
  animation: heroFadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

#hero .hero-sub {
  animation: heroFadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

#hero .hero-cta-row {
  animation: heroFadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s both;
}

#hero .hero-rating {
  animation: heroFadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s both;
}

#hero .hero-pill-row {
  animation: heroFadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.65s both;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition:
    opacity 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-card.fade-in.visible {
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

/* ===========================
   RESPONSIVE — TABLET
=========================== */
/* ===========================
   RESPONSIVE — LARGE (≤1200px)
=========================== */
@media (max-width: 1200px) {
  .services-grid {
    gap: 18px;
  }
  .eng-phase {
    grid-template-columns: 120px 1fr;
  }
  .eng-arrow {
    margin-left: 152px;
  }
  .timeline-wrap {
    grid-template-columns: 280px 1fr;
  }
}

/* ===========================
   RESPONSIVE — TABLET (≤960px)
=========================== */
@media (max-width: 960px) {
  /* Nav */
  .nav-links {
    display: none !important;
  }
  .nav-hamburger {
    display: flex !important;
  }
  .nav-status {
    display: none !important;
  }
  .nav-logo-img {
    height: 38px;
  }

  /* Base */
  section {
    padding: 80px 0;
  }
  h1 {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
  }
  h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }

  /* Hero */
  #hero {
    padding-top: 120px;
    padding-bottom: 90px;
  }

  /* Metrics */
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Timeline */
  .timeline-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .timeline-panel {
    padding: 28px 24px;
    min-height: auto;
  }

  /* Engine */
  .eng-phase {
    grid-template-columns: 100px 1fr;
    gap: 20px;
  }
  .eng-phase-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .eng-phase-cards--results {
    grid-template-columns: repeat(2, 1fr);
  }
  .eng-phase-cols {
    grid-template-columns: 1fr;
  }
  .eng-channel-divider {
    width: 100%;
    padding: 8px 0;
    font-size: 0.85rem;
  }
  .eng-arrow {
    margin-left: 120px;
  }

  /* Industries */
  .industries-grid {
    gap: 8px;
  }

  /* Stack */
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .tool-card img {
    width: 56px;
    height: 56px;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
  }
  .account-features {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* FAQ */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-left {
    position: static;
  }

  /* Contact */
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* CTA */
  .cta-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Footer */
  .footer-bottom-inner {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ===========================
   RESPONSIVE — TABLET SMALL (≤768px)
=========================== */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  section {
    padding: 70px 0;
  }
  h1 {
    font-size: clamp(2.4rem, 8vw, 3.4rem);
  }

  /* Nav */
  .nav-links {
    display: none !important;
  }
  .nav-hamburger {
    display: flex !important;
  }

  /* Hero */
  #hero {
    padding-top: 110px;
  }
  .hero-sub {
    font-size: 1rem;
    max-width: 90%;
  }
  .hero-pill-row {
    gap: 6px;
  }
  .pill {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  /* Metrics */
  .metric-number {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  /* Services */
  .service-card {
    padding: 26px 20px;
  }

  /* Timeline */
  .timeline-nav-item {
    padding: 12px 16px;
  }
  .tp-title {
    font-size: 1.5rem;
  }

  /* Engine */
  .eng-phase {
    grid-template-columns: 90px 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .eng-phase-name {
    font-size: 0.95rem;
  }
  .eng-phase-cards--results {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .eng-result-num {
    font-size: 1.35rem;
  }
  .eng-card {
    padding: 18px 14px;
  }

  /* Industries */
  .industry-tag {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  /* Stack */
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .tool-card {
    padding: 18px 10px;
  }
  .tool-card img {
    width: 50px;
    height: 50px;
  }

  /* Team */
  .team-card {
    padding: 24px 18px;
  }
  .account-features {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials */
  .testimonial-card {
    padding: 22px 18px;
  }

  /* FAQ */
  .faq-question {
    padding: 16px 18px;
    font-size: 0.9rem;
  }

  /* Contact */
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .contact-card {
    padding: 20px 16px;
  }
  .contact-card-icon {
    width: 52px;
    height: 52px;
  }
  .footer-emails {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  /* Footer */
  .footer-headline {
    font-size: clamp(1.4rem, 4vw, 2rem);
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 6px 12px;
    justify-content: center;
  }
}

/* ===========================
   RESPONSIVE — MOBILE (≤600px)
=========================== */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  section {
    padding: 60px 0;
  }

  /* Nav */
  .nav-links {
    display: none !important;
  }
  .nav-hamburger {
    display: flex !important;
  }
  .nav-cta {
    display: none !important;
  }
  .nav-logo-img {
    height: 28px;
  }
  .nav-logo-text {
    font-size: 1rem;
  }

  /* Hero */
  #hero {
    padding-top: 90px;
    padding-bottom: 70px;
    height: 100svh;
    min-height: 580px;
  }
  #hero-video {
    object-position: center;
  }
  #hero-video::-webkit-media-controls-current-time-display,
  #hero-video::-webkit-media-controls-time-remaining-display,
  #hero-video::-webkit-media-controls-timeline {
    display: none !important;
  }
  h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.1;
  }
  h2 {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
  }
  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 24px;
    padding: 0 4px;
  }
  .hero-pill-row {
    gap: 5px;
    margin-top: 20px;
  }
  .pill {
    font-size: 0.68rem;
    padding: 4px 10px;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .video-toggle {
    bottom: 68px;
    right: 14px;
    font-size: 0.7rem;
    padding: 6px 14px 6px 10px;
  }

  /* Ticker */
  .ticker-item {
    font-size: 0.78rem;
    padding: 0 18px;
  }
  .ticker-wrap {
    padding: 14px 0;
  }

  /* Metrics */
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .metric-card {
    padding: 16px 8px;
  }
  .metric-number {
    font-size: 1.6rem;
  }
  .metric-label {
    font-size: 0.72rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 22px 16px;
  }
  .service-volume {
    font-size: 0.72rem;
  }

  /* Timeline */
  .timeline-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .timeline-nav-item {
    padding: 11px 14px;
    gap: 10px;
  }
  .tn-num {
    font-size: 0.8rem;
    width: 20px;
  }
  .tn-title {
    font-size: 0.8rem;
  }
  .tn-period {
    font-size: 0.62rem;
  }
  .timeline-panel {
    padding: 22px 14px;
  }
  .tp-title {
    font-size: 1.3rem;
  }
  .tp-desc {
    font-size: 0.82rem;
  }
  .tp-checklist li {
    font-size: 0.8rem;
    padding: 10px 12px;
  }

  /* Engine */
  .eng-phase {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }
  .eng-phase-label {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .eng-phase-num {
    font-size: 0.6rem;
  }
  .eng-phase-name {
    font-size: 0.9rem;
  }
  .eng-phase-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .eng-phase-cards--results {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .eng-card {
    padding: 16px 12px;
  }
  .eng-card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }
  .eng-card strong {
    font-size: 0.82rem;
  }
  .eng-card p {
    font-size: 0.75rem;
  }
  .eng-channel-hdr {
    font-size: 0.72rem;
    padding: 12px 14px;
  }
  .eng-steps li {
    font-size: 0.78rem;
    padding: 9px 14px;
  }
  .eng-result {
    padding: 18px 10px;
  }
  .eng-result-num {
    font-size: 1.2rem;
  }
  .eng-result-label {
    font-size: 0.7rem;
  }
  .eng-arrow {
    margin-left: 0;
  }

  /* Industries */
  .industries-grid {
    gap: 6px;
  }
  .industry-tag {
    font-size: 0.74rem;
    padding: 7px 12px;
  }

  /* Stack */
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .tool-card {
    padding: 16px 10px;
    gap: 8px;
  }
  .tool-card img {
    width: 44px;
    height: 44px;
  }
  .tool-card span {
    font-size: 0.75rem;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    padding: 20px 14px;
  }
  .account-features {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .testimonial-card {
    padding: 20px 16px;
  }

  /* FAQ */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-left {
    position: static;
  }
  .faq-question {
    padding: 14px 14px;
    font-size: 0.85rem;
  }
  .faq-item {
    border-radius: 8px;
  }

  /* Contact */
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .contact-card {
    padding: 16px 14px;
  }
  .contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .contact-person-label {
    font-size: 0.7rem;
  }
  .footer-emails {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  .footer-email {
    font-size: 0.82rem;
  }

  /* CTA */
  .cta-box {
    padding: 32px 16px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .cta-contact-links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .contact-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Footer */
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-headline {
    font-size: 1.4rem;
  }
  .footer-nav {
    gap: 5px 8px;
    justify-content: center;
  }
  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
}

/* ===========================
   RESPONSIVE — SMALL PHONE (≤380px)
=========================== */
@media (max-width: 380px) {
  .container {
    padding: 0 12px;
  }
  h1 {
    font-size: 1.9rem;
  }
  h2 {
    font-size: 1.3rem;
  }

  /* Hero */
  #hero {
    padding-top: 80px;
  }
  .hero-sub {
    font-size: 0.85rem;
  }
  .pill {
    font-size: 0.64rem;
    padding: 3px 8px;
  }

  /* Metrics */
  .metric-number {
    font-size: 1.4rem;
  }
  .metric-label {
    font-size: 0.68rem;
  }

  /* Engine results 1 col on tiny screens */
  .eng-phase-cards--results {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact full-width cards */
  .contact-card-value {
    font-size: 0.78rem;
    word-break: break-all;
  }

  /* Ticker */
  .ticker-item {
    font-size: 0.72rem;
    padding: 0 14px;
  }

  /* Nav logo */
  .nav-logo-img {
    height: 30px;
  }
  .nav-logo-text {
    font-size: 0.8rem;
  }
}

/* Disable cursor glow on touch devices */
@media (hover: none) {
  #cursor-glow {
    display: none;
  }
}

.footer-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-privacy:hover {
  color: var(--purple-light);
}
