/* ═══════════════════════════════════════════════════════
   DEGREE2DESK — style.css
   Theme: Deep Navy · Teal · Copper/Gold
   Fonts: Outfit (display) + Fraunces (accent quotes)
   ═══════════════════════════════════════════════════════ */

:root {
  /* BRAND COLORS — extracted from logo */
  --navy-deep:   #020d18;
  --navy:        #04152a;
  --navy-mid:    #071e38;
  --navy-light:  #0c2d4e;
  --teal:        #1ec8cc;
  --teal-dim:    rgba(30,200,204,.15);
  --teal-glow:   rgba(30,200,204,.25);
  --copper:      #c97d2e;
  --copper-light:#e8a04d;
  --copper-dim:  rgba(201,125,46,.15);
  --copper-glow: rgba(201,125,46,.3);
  --white:       #f0f6fb;
  --muted:       rgba(180,210,230,.6);
  --border:      rgba(30,200,204,.12);
  --border-soft: rgba(255,255,255,.06);

  /* SHADOWS */
  --shadow-card: 0 20px 60px rgba(2,13,24,.6);
  --shadow-sm:   0 8px 28px rgba(2,13,24,.4);
  --shadow-teal: 0 0 40px rgba(30,200,204,.15);

  /* LAYOUT */
  --max: 1220px;
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.22,.61,.36,1);

  /* FONTS */
  --ff-head: 'Outfit', sans-serif;
  --ff-accent: 'Fraunces', serif;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-head);
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
button, input, select, textarea { font:inherit; cursor:pointer; border:none; outline:none; }
ul { list-style:none; }

/* NOISE TEXTURE */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: .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 200px;
}

/* CONTAINER */
.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ── LOADER ─────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--navy-deep);
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
#loader.out { opacity:0; visibility:hidden; pointer-events:none; }
.loader-ring {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  border-top-color: var(--teal);
  animation: spin 1.4s linear infinite;
}
.loader-ring::after {
  content:'';
  position:absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid var(--border);
  border-bottom-color: var(--copper);
  animation: spin 2.2s linear infinite reverse;
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
}
.loader-logo {
  width: 80px;
  border-radius: 50%;
  animation: logoFloat 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 16px var(--teal-glow));
}
.loader-tagline {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--white);
}
.loader-tagline span { color: var(--teal); }

/* ── HEADER ─────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(2,13,24,.8);
  border-bottom: 1px solid var(--border);
  transition: background .4s ease, box-shadow .4s ease;
}
#header.scrolled {
  background: rgba(2,13,24,.96);
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.header-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: .85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  transition: opacity .25s ease;
}
.brand:hover { opacity: .85; }
.brand-img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.brand-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.brand-label strong { color: var(--teal); font-weight: 800; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
}
.desktop-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(180,210,230,.7);
  padding: .55rem .9rem;
  border-radius: 999px;
  transition: all .3s var(--ease);
}
.desktop-nav a:hover { color: var(--white); background: var(--border-soft); }
.desktop-nav a.nav-cta {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  color: #fff;
  font-weight: 700;
  padding: .6rem 1.2rem;
  box-shadow: 0 8px 20px var(--copper-glow);
  transition: all .3s var(--ease);
}
.desktop-nav a.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 28px var(--copper-glow); }
.desktop-nav a.active-nav { color: var(--teal); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 10px;
  background: transparent;
  transition: background .25s ease;
}
.hamburger:hover { background: var(--border-soft); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .35s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: .5rem 1.25rem 1rem;
  border-top: 1px solid var(--border);
  gap: .2rem;
  background: rgba(2,13,24,.98);
}
.mobile-nav.open { display: flex; animation: slideDown .35s var(--ease); }
.mobile-nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
  padding: .7rem .9rem;
  border-radius: 10px;
  transition: all .25s ease;
}
.mobile-nav a:hover { color: var(--white); background: var(--border-soft); }
.mobile-nav a.nav-cta {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-top: .4rem;
}

/* ── SECTIONS ───────────────────────────────────────── */
section {
  padding: 110px 0;
  position: relative;
  scroll-margin-top: 72px;
}
.section-dark { background: var(--navy-mid); }
section:not(.section-dark) { background: var(--navy-deep); }

/* SECTION HEAD */
.section-head { margin-bottom: 3rem; max-width: 750px; }
.section-head h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem,4.5vw,3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: .9rem;
}
.section-head p { font-size: 1.08rem; color: var(--muted); line-height: 1.8; max-width: 640px; }

.kicker {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(30,200,204,.2);
  border-radius: 999px;
  padding: .38rem 1rem;
  margin-bottom: 1rem;
}

/* ── REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible { opacity:1; transform:none; }

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .9s var(--ease) forwards;
  animation-play-state: paused;
}
body.loaded .fade-up { animation-play-state: running; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: 999px;
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  box-shadow: 0 12px 28px var(--copper-glow);
  transition: all .35s var(--ease);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px var(--copper-glow); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(30,200,204,.3);
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-outline:hover { transform: translateY(-3px); background: rgba(30,200,204,.2); border-color: var(--teal); }

/* ── HERO ───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,200,204,.12), transparent 70%);
  top: -100px; left: -120px;
  animation: orbFloat1 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,125,46,.1), transparent 70%);
  bottom: -80px; right: -80px;
  animation: orbFloat2 11s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(30,200,204,.07), transparent 70%);
  top: 40%; left: 50%;
  animation: orbFloat1 7s ease-in-out infinite reverse;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--border-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  opacity: .6;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pilot-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(30,200,204,.22);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  margin-bottom: 1.8rem;
}
.badge-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--copper-light);
  box-shadow: 0 0 10px var(--copper-light);
  animation: pulseAnim 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-h1 em {
  font-style: normal;
  color: var(--teal);
  display: block;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 570px;
  margin-bottom: 2.2rem;
}
.hero-sub strong { color: var(--copper-light); font-weight: 600; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* DASHBOARD */
.dash-card {
  background: rgba(7,30,56,.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}
.dash-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent 60%);
}
.dash-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:1.4rem; }
.dash-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
}
.live-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: var(--muted);
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3dffa0;
  box-shadow: 0 0 8px #3dffa0;
  animation: pulseAnim 1.8s ease-in-out infinite;
}
.dash-metrics { display:grid; gap:.95rem; }
.metric { display:grid; gap:.4rem; }
.metric-top { display:flex; justify-content:space-between; font-size:.86rem; }
.metric-top span:first-child { color: var(--muted); }
.mv { font-weight: 700; font-family: var(--ff-head); }
.mv.teal { color: var(--teal); }
.mv.copper { color: var(--copper-light); }
.track {
  height: 5px;
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  overflow: hidden;
}
.bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--c);
  box-shadow: 0 0 8px var(--c);
  transition: width 1.4s var(--ease);
}
.dash-foot { display:flex; gap:.6rem; flex-wrap:wrap; margin-top:1.3rem; }
.chip {
  padding: .38rem .85rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 600;
}
.chip-warn {
  background: rgba(201,125,46,.12);
  border: 1px solid rgba(201,125,46,.28);
  color: var(--copper-light);
}
.chip-go {
  background: var(--teal-dim);
  border: 1px solid rgba(30,200,204,.2);
  color: var(--teal);
}

/* STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  margin-top: 3rem;
  background: rgba(7,30,56,.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}
.stat-box { padding: 2rem 1.5rem; text-align: center; }
.stat-num {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem,4vw,3.2rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.03em;
}
.stat-num.teal { color: var(--teal); text-shadow: 0 0 30px rgba(30,200,204,.4); }
.stat-num.copper { color: var(--copper-light); text-shadow: 0 0 30px rgba(232,160,77,.4); }
.stat-box p { font-size: .9rem; color: var(--muted); line-height: 1.5; }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ── ABOUT ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr;
  gap: 3rem;
  align-items: center;
}
.about-text .kicker { margin-bottom: 1.2rem; }
.about-text h2 {
  font-family: var(--ff-accent);
  font-size: clamp(1.6rem,3.2vw,2.4rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 1rem;
}
.about-sub {
  font-family: var(--ff-accent);
  font-size: 1.22rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.8rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--copper);
}
.about-body { margin-bottom: 2rem; }
.about-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: .6rem;
}
.about-body p { color: var(--muted); line-height: 1.8; font-size: 1.02rem; }

.glow-card {
  background: rgba(7,30,56,.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition: border-color .4s ease, box-shadow .4s ease, transform .4s var(--ease);
}
.glow-card:hover {
  border-color: rgba(30,200,204,.28);
  box-shadow: var(--shadow-card), var(--shadow-teal);
  transform: translateY(-4px);
}

.about-cta-card {
  padding: 2.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta-card::before {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 20%, rgba(30,200,204,.08), transparent 60%);
  pointer-events:none;
}
.infinity-icon {
  font-size: 4rem;
  color: var(--teal);
  text-shadow: 0 0 30px var(--teal-glow);
  margin-bottom: .8rem;
  display: block;
  line-height: 1;
}
.about-cta-card h3 {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .9rem;
  letter-spacing: -.02em;
}
.about-cta-card p { color: var(--muted); font-size: .95rem; margin-bottom: 1.6rem; line-height: 1.7; }
.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  box-shadow: 0 10px 24px var(--copper-glow);
  transition: all .3s var(--ease);
}
.cta-pill:hover { transform: translateY(-2px); box-shadow: 0 16px 36px var(--copper-glow); }

/* ── WHY D2D ────────────────────────────────────────── */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.2rem;
}
.why-card {
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.card-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--copper));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.why-card:hover .card-accent { transform: scaleX(1); }
.why-num {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 1rem;
}
.why-card h3 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .8rem;
  line-height: 1.3;
}
.why-card p { font-size: .95rem; color: var(--muted); line-height: 1.78; }

.big-quote {
  margin-top: 3rem;
  text-align: center;
  font-family: var(--ff-accent);
  font-size: clamp(1.25rem,2.5vw,1.8rem);
  font-style: italic;
  color: rgba(180,210,230,.75);
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  background: rgba(30,200,204,.04);
  border: 1px solid rgba(30,200,204,.12);
  position: relative;
}
.big-quote em { color: var(--teal); font-style: normal; }
.quote-mark {
  font-family: var(--ff-accent);
  font-size: 4rem;
  line-height: 0;
  color: var(--teal);
  opacity: .25;
  vertical-align: -.5em;
  font-style: normal;
}
.quote-mark.closing { margin-left: .2rem; }

/* ── OFFER ──────────────────────────────────────────── */
.offer-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.offer-card {
  background: rgba(7,30,56,.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity:0;
  transition: opacity .4s ease;
}
.offer-card-hero::before {
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  opacity: 1;
}
.offer-card:hover { transform:translateY(-6px); border-color:rgba(30,200,204,.25); box-shadow:var(--shadow-card), var(--shadow-teal); }
.offer-card:hover::before { opacity:1; }
.offer-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.teal-bg { background: var(--teal-dim); border: 1px solid rgba(30,200,204,.18); }
.copper-bg { background: var(--copper-dim); border: 1px solid rgba(201,125,46,.18); }
.offer-card h3 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .8rem;
}
.offer-card p { font-size: .93rem; color: var(--muted); line-height: 1.78; margin-bottom: 1.2rem; }
.offer-tags { display:flex; flex-wrap:wrap; gap:.45rem; }
.offer-tags span {
  padding: .3rem .75rem;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 600;
  background: var(--teal-dim);
  border: 1px solid rgba(30,200,204,.18);
  color: var(--teal);
}
.offer-tags span.c {
  background: var(--copper-dim);
  border-color: rgba(201,125,46,.18);
  color: var(--copper-light);
}

/* TIMELINE */
.timeline-wrap {
  background: rgba(7,30,56,.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.timeline-heading {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -.02em;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
  position: relative;
}
.tl-connector {
  position: absolute;
  top: 27px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), #4de0e3, #a8d96f, var(--copper));
  z-index: 0;
  border-radius: 999px;
}
.tl-step { text-align:center; position:relative; z-index:1; padding-top:4px; }
.tl-dot {
  width: 54px; height: 54px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 800;
  color: var(--white);
  background: var(--navy);
  border: 2px solid;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tl-step:hover .tl-dot { transform: scale(1.12); }
.td-1 { border-color: var(--teal); box-shadow: 0 0 20px var(--teal-glow); }
.td-2 { border-color: #4de0e3; box-shadow: 0 0 20px rgba(77,224,227,.2); }
.td-3 { border-color: #a8d96f; box-shadow: 0 0 20px rgba(168,217,111,.15); }
.td-4 { border-color: var(--copper-light); box-shadow: 0 0 20px var(--copper-glow); }
.tl-step h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.tl-step p { font-size: .83rem; color: var(--muted); line-height: 1.5; }

/* ── BENEFIT ────────────────────────────────────────── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: rgba(4,21,42,.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  backdrop-filter: blur(10px);
  transition: all .4s var(--ease);
}
.benefit-card:hover { border-color: rgba(30,200,204,.25); transform: translateY(-4px); }
.benefit-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.benefit-icon { font-size: 2rem; flex-shrink: 0; margin-top: .1rem; }
.benefit-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
}
.benefit-tagline { font-size: .9rem; color: var(--muted); font-style: italic; }
.benefit-list { display:grid; gap:.75rem; }
.benefit-list li {
  font-size: .95rem;
  color: var(--muted);
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.65;
}
.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.copper-checks li::before { color: var(--copper-light); }
.benefit-note {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--ff-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  padding: 1.4rem 2rem;
  border-radius: var(--radius);
  background: rgba(30,200,204,.04);
  border: 1px solid rgba(30,200,204,.1);
}
.benefit-note strong { color: var(--teal); font-style: normal; }

/* ── APPROACH ───────────────────────────────────────── */
.approach-steps { display:grid; gap:1.2rem; }
.approach-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  align-items: stretch;
  background: rgba(7,30,56,.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  backdrop-filter: blur(10px);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.approach-item:hover { border-color:rgba(30,200,204,.25); transform:translateX(6px); }
.step-accent {
  position:absolute;
  left:0; top:0; bottom:0;
  width:3px;
  background: linear-gradient(180deg, var(--teal), var(--copper));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}
.approach-item:hover .step-accent { transform:scaleY(1); }
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(30,200,204,.18);
  border-radius: var(--radius-sm);
  min-height: 80px;
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.step-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}
.step-body p { font-size: .97rem; color: var(--muted); line-height: 1.78; }
.approach-quote {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--ff-accent);
  font-size: clamp(1.1rem,2vw,1.5rem);
  font-style: italic;
  color: rgba(180,210,230,.7);
  padding: 1.4rem 2rem;
  border-radius: var(--radius);
  background: rgba(201,125,46,.04);
  border: 1px solid rgba(201,125,46,.14);
}
.approach-quote em { color: var(--copper-light); font-style: normal; }

/* ── COMMITMENT ─────────────────────────────────────── */
.commit-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.2rem;
}
.commit-card {
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.commit-card::after {
  content:'';
  position:absolute;
  bottom:0; right:0;
  width:120px; height:120px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(30,200,204,.06), transparent 70%);
  pointer-events:none;
}
.commit-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 1rem;
}
.commit-card h3 {
  font-family: var(--ff-accent);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .8rem;
  line-height: 1.45;
}
.commit-card p { font-size: .93rem; color: var(--muted); line-height: 1.78; }
.commit-final {
  margin-top: 2.8rem;
  text-align: center;
  font-family: var(--ff-accent);
  font-size: clamp(1.1rem,2vw,1.55rem);
  font-style: italic;
  color: rgba(180,210,230,.8);
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  background: rgba(30,200,204,.04);
  border: 1px solid rgba(30,200,204,.12);
}
.commit-final em { color: var(--teal); font-style: normal; }

/* ── ENROLL ─────────────────────────────────────────── */
.enroll-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: start;
}

.form-wrap {
  background: rgba(7,30,56,.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.form-wrap::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:2px;
  background: linear-gradient(90deg, var(--teal), var(--copper));
}
.pilot-form-title {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -.02em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.field { display:grid; gap:.45rem; }
.field label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(180,210,230,.65);
}
.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(30,200,204,.15);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  color: var(--white);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(180,210,230,.3); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(30,200,204,.5);
  box-shadow: 0 0 0 3px rgba(30,200,204,.1);
  background: rgba(255,255,255,.06);
}
.field select option { background: var(--navy-mid); }
.field textarea { resize:vertical; min-height:110px; margin-bottom:.2rem; }
.field { margin-bottom:.2rem; }

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-top: 1.2rem;
  border-radius: 999px;
  font-family: var(--ff-head);
  font-size: .98rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  box-shadow: 0 14px 30px var(--copper-glow);
  transition: all .35s var(--ease);
  border: none;
  cursor: pointer;
}
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 22px 44px var(--copper-glow); }
.submit-btn.done {
  background: linear-gradient(135deg, #0bb87a 0%, #09a36b 100%);
  box-shadow: 0 14px 30px rgba(11,184,122,.28);
}

/* INFO SIDE */
.info-side { display:grid; gap:1rem; align-content:start; }
.info-highlight {
  background: linear-gradient(135deg, rgba(201,125,46,.15), rgba(201,125,46,.06));
  border: 1px solid rgba(201,125,46,.28);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.info-highlight::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:2px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light), transparent);
}
.info-hl-icon { font-size: 2rem; margin-bottom: .9rem; }
.info-highlight h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .7rem;
}
.info-highlight p { font-size: .93rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.3rem; }
.info-email-btn {
  display: inline-flex;
  align-items: center;
  padding: .75rem 1.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  transition: all .3s ease;
  border: 1px solid rgba(255,255,255,.12);
}
.info-email-btn:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

.info-cards { display:grid; gap:.8rem; }
.info-card {
  background: rgba(7,30,56,.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  display: grid;
  gap: .25rem;
  backdrop-filter: blur(10px);
  transition: all .3s var(--ease);
}
.info-card:hover { border-color: rgba(30,200,204,.25); }
.info-lbl {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
}
.info-card strong { font-size: 1rem; color: var(--white); font-weight: 700; }
.info-card span { font-size: .85rem; color: var(--muted); }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}
.footer-logo {
  width: 48px; height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .92rem; color: var(--muted); line-height: 1.75; margin-bottom: .8rem; }
.footer-brand a { color: var(--teal); font-size: .92rem; display: inline-flex; align-items: center; gap: .4rem; transition: opacity .25s ease; }
.footer-brand a:hover { opacity: .75; }
.footer-col h5 {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 1.1rem;
}
.footer-col ul { display:grid; gap:.65rem; }
.footer-col li a, .footer-col li button {
  font-size: .9rem;
  color: var(--muted);
  background:none; border:none; padding:0; text-align:left; cursor:pointer;
  transition: color .25s ease;
  font-family: var(--ff-head);
}
.footer-col li a:hover, .footer-col li button:hover { color: var(--white); }
.social-icons { display:flex; gap:.65rem; margin-top:1.4rem; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .85rem;
  transition: all .3s ease;
}
.social-icons a:hover { background: var(--teal-dim); border-color: rgba(30,200,204,.3); color: var(--teal); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-inner p { font-size: .84rem; color: rgba(180,210,230,.45); }
.footer-chips { display:flex; gap:.5rem; flex-wrap:wrap; }
.footer-chips span {
  padding: .32rem .8rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  background: var(--teal-dim);
  border: 1px solid rgba(30,200,204,.14);
  color: var(--teal);
}

/* ── KEYFRAMES ──────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes logoFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-10px) scale(1.03); }
}
@keyframes fadeUp {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity:0; transform: translateY(-12px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(30px,-30px) scale(1.06); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-20px,20px) scale(1.05); }
}
@keyframes pulseAnim {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:.55; transform:scale(1.4); }
}
@keyframes barFill {
  from { width:0; }
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .desktop-nav { display:none; }
  .hamburger { display:flex; }
  .hero-layout { grid-template-columns:1fr; }
  .hero-right { max-width: 520px; }
  .about-grid { grid-template-columns:1fr; }
  .why-cards, .offer-cards { grid-template-columns:1fr; }
  .timeline { grid-template-columns:repeat(2,1fr); }
  .tl-connector { display:none; }
  .benefit-grid, .commit-grid { grid-template-columns:1fr; }
  .enroll-layout { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1 / -1; }
  .stats-row { grid-template-columns:1fr; }
  .stat-divider { width:auto; height:1px; }
}
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .container { width: calc(100% - 2rem); }
  .form-row { grid-template-columns:1fr; }
  .hero-h1 { font-size: 2.2rem; }
  .section-head h2 { font-size: 2rem; }
  .approach-item { grid-template-columns:1fr; gap:1rem; }
  .step-num { min-height:56px; font-size:1.8rem; border-radius:var(--radius-sm); }
  .footer-inner { grid-template-columns:1fr; gap:2rem; }
  .about-side { display:none; }
  .timeline { grid-template-columns:1fr 1fr; }
  .timeline-wrap { padding:1.6rem; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction:column; }
  .btn-primary, .btn-outline { width:100%; justify-content:center; }
  .timeline { grid-template-columns:1fr; }
  .tl-connector { display:none; }
  .brand-label { display:none; }
  .header-wrap { padding:.75rem 1rem; }
}