/* ============================================
   Conduit Dynamics — Premium Design System
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0b;
  --bg-2:      #0f0f11;
  --bg-3:      #141416;
  --bg-card:   #111113;
  --accent:    #ff5a5a;
  --accent-2:  #ff8c69;
  --blue:      #7b8fe8;
  --white:     #ffffff;
  --grey-1:    #c8c8cc;
  --grey-2:    #7a7a82;
  --grey-3:    #3a3a42;
  --border:    rgba(255,255,255,0.06);
  --border-h:  rgba(255,255,255,0.12);
  --max:       1280px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

html { font-size: 16px; scroll-behavior: auto; }

body {
  background-color: var(--bg);
  /* Global subtle grid lines */
  background-image:
    linear-gradient(rgba(255,255,255,0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.038) 1px, transparent 1px);
  background-size: 72px 72px;
  background-attachment: fixed;
  color: var(--white);
  font-family: 'Inter', 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

/* ── GLOW ORBS ────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
}
.orb-coral { background: radial-gradient(circle, rgba(255,90,90,0.18) 0%, transparent 70%); }
.orb-blue  { background: radial-gradient(circle, rgba(123,143,232,0.12) 0%, transparent 70%); }
.orb-white { background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%); }

/* ── SECTION SEPARATOR ────────────────────── */
.section-sep {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.06) 20%,
    rgba(255,90,90,0.25) 50%,
    rgba(255,255,255,0.06) 80%,
    transparent 100%
  );
  position: relative;
}
.section-sep::before {
  content: '';
  position: absolute;
  top: -2px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px 3px rgba(255,90,90,0.5);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: none; }

/* ── CUSTOM CURSOR ─────────────────────────── */
#cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s ease;
  mix-blend-mode: normal;
}
#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,90,90,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease), height 0.5s var(--ease), border-color 0.3s ease;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width: 6px; height: 6px; }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 60px; height: 60px; border-color: rgba(255,90,90,0.6); }

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

/* ── TYPOGRAPHY ───────────────────────────── */
.t-display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.t-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.t-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.t-body { font-size: 17px; color: var(--grey-1); line-height: 1.75; }
.t-small { font-size: 14px; color: var(--grey-2); line-height: 1.65; }

/* ── LAYOUT ───────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section { padding: 128px 0; }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { box-shadow: 0 16px 48px rgba(255,90,90,0.3); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-h);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

.btn .arrow {
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.btn:hover .arrow { transform: translate(4px, -4px); }

/* ── HEADER ───────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  transition: background 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img { height: 36px; width: auto; }
.logo-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links li a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-2);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links li a:hover { color: var(--white); }
.nav-links li a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 28px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(10,10,11,0.4) 55%, rgba(10,10,11,0.1) 100%),
    linear-gradient(to right, rgba(10,10,11,0.75) 0%, transparent 65%);
}

/* Hero ambient glows — show even if bg image fails to load */
.hero-glow-1 {
  position: absolute;
  width: 700px; height: 700px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(255,90,90,0.13) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  top: 0; right: 0;
  background: radial-gradient(circle, rgba(123,143,232,0.09) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-3 {
  position: absolute;
  width: 300px; height: 300px;
  bottom: 30%; right: 20%;
  background: radial-gradient(circle, rgba(255,140,105,0.06) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(56px, 8vw, 120px);
  margin-bottom: 40px;
  overflow: hidden;
}
.hero-title .line { display: block; }
.hero-title .word { display: inline-block; overflow: hidden; margin-right: 0.18em; }
.hero-title .word .inner { display: inline-block; }
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: flex-end;
  margin-top: 40px;
}
.hero-sub {
  font-size: 18px;
  color: var(--grey-1);
  max-width: 440px;
  line-height: 1.7;
  opacity: 0;
}
.hero-cta {
  display: flex;
  gap: 12px;
  opacity: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--grey-2);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 48px; height: 1px;
  background: var(--grey-3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ── MARQUEE ──────────────────────────────── */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-3);
  white-space: nowrap;
}
.marquee-item span { color: var(--accent); font-size: 16px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── STATS ────────────────────────────────── */
.stats-section {
  padding: 100px 0;
  position: relative;
  /* Diagonal stripe overlay */
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 41px
    );
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(123,143,232,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stat-item {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,90,90,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.stat-item:hover { background: var(--bg-2); }
.stat-item:hover::before { opacity: 1; }

.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--white);
}
.stat-num sup {
  font-size: 0.5em;
  color: var(--accent);
  vertical-align: super;
}
.stat-label {
  font-size: 13px;
  color: var(--grey-2);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* ── ABOUT / WHO WE ARE ───────────────────── */
.about-section {
  background: var(--bg-2);
  position: relative;
}
.about-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: 0; right: -100px;
  background: radial-gradient(circle, rgba(123,143,232,0.07) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}
.about-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  bottom: 0; left: -50px;
  background: radial-gradient(circle, rgba(255,90,90,0.05) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}

.about-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 96px;
}
.about-header-right {
  padding-bottom: 8px;
}
.about-title { font-size: clamp(40px, 5vw, 72px); }

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.capability {
  background: var(--bg-2);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  cursor: none;
}
.capability::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,90,90,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.capability:hover { background: var(--bg-3); }
.capability:hover::after { opacity: 1; }

.capability-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--grey-3);
  margin-bottom: 40px;
  display: block;
}
.capability-icon-wrap {
  width: 52px; height: 52px;
  margin-bottom: 28px;
  color: var(--blue);
  transition: color 0.3s ease, transform 0.4s var(--ease);
}
.capability:hover .capability-icon-wrap { color: var(--accent); transform: translateY(-4px); }
.capability-icon-wrap svg { width: 100%; height: 100%; }

.capability h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}
.capability p { font-size: 14px; color: var(--grey-2); line-height: 1.7; }

/* ── WHY SECTION ──────────────────────────── */
.why-section {}
.why-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 120px;
  align-items: start;
}
.why-left { position: sticky; top: 120px; }
.why-title { font-size: clamp(36px, 4vw, 60px); margin-bottom: 32px; }
.why-body { font-size: 17px; color: var(--grey-1); line-height: 1.8; margin-bottom: 40px; }

.why-points {
  display: flex;
  flex-direction: column;
}
.why-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease;
}
.why-point:first-child { border-top: 1px solid var(--border); }
.why-point:hover { border-color: var(--border-h); }
.why-point-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  padding-top: 4px;
}
.why-point h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.why-point:hover h4 { color: var(--accent); }
.why-point p { font-size: 14px; color: var(--grey-2); line-height: 1.7; }

/* ── PROCESS ──────────────────────────────── */
.process-section { background: var(--bg-2); }
.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}
.process-title { font-size: clamp(36px, 4vw, 60px); max-width: 500px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.process-step {
  background: var(--bg-2);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--bg-3);
  margin-bottom: 40px;
  transition: color 0.4s ease;
}
.process-step:hover .step-num { color: rgba(255,90,90,0.1); }
.step-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.process-step p { font-size: 14px; color: var(--grey-2); line-height: 1.7; }

/* ── CTA ──────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  /* Angled grid variant */
  background-image:
    linear-gradient(rgba(255,255,255,0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.038) 1px, transparent 1px);
  background-size: 72px 72px;
  background-attachment: fixed;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255,90,90,0.12) 0%, transparent 60%);
  pointer-events: none;
}
/* Top + bottom fade borders on CTA */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--bg) 0%, transparent 15%, transparent 85%, var(--bg) 100%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(36px, 6vw, 88px);
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub {
  font-size: 18px;
  color: var(--grey-1);
  margin-bottom: 48px;
}
.cta-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  margin: 0 auto 48px;
}

/* ── FOOTER ───────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--grey-2);
  line-height: 1.8;
  margin: 20px 0 28px;
  max-width: 280px;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list a,
.footer-contact-list span {
  font-size: 14px;
  color: var(--grey-2);
  transition: color 0.2s ease;
  line-height: 1.5;
}
.footer-contact-list a:hover { color: var(--white); }

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a {
  font-size: 15px;
  color: var(--grey-2);
  transition: color 0.2s ease;
  position: relative;
  padding-left: 0;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-socials { display: flex; gap: 12px; margin-top: 4px; }
.social-link {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--grey-2);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,90,90,0.05); }
.social-link svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--grey-3);
}
.footer-bottom a { color: var(--grey-3); transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--grey-2); }

/* ── REVEAL ANIMATIONS ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
}

/* ── MOBILE MENU ──────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--grey-3);
  transition: color 0.2s ease;
  padding: 12px 0;
  letter-spacing: -0.03em;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .btn {
  margin-top: 40px;
  font-size: 14px;
  align-self: flex-start;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1100px) {
  .about-header { grid-template-columns: 1fr; gap: 40px; }
  .why-inner { grid-template-columns: 1fr; gap: 64px; }
  .why-left { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .section { padding: 96px 0; }
  .nav-links, .header-btn { display: none; }
  .menu-toggle { display: flex; }
  .about-body { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-cta { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-title { font-size: 36px; }
}

/* Touch devices: restore cursor */
@media (hover: none) {
  body, button { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
}
