/* ============================================
   ClassFindr × Modern Campus – Pitch Deck CSS
   ============================================ */

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

:root {
  --cf-navy: #002D40;
  --cf-blue: #0086B3;
  --cf-cyan: #47CFFF;
  --cf-light: #E8F8FF;
  --mc-green: #00B894;
  --mc-teal: #009B7A;
  --mc-light: #E6FAF5;
  --white: #FFFFFF;
  --off-white: #F7FAFC;
  --text-main: #0A1E2E;
  --text-mid: #3A5268;
  --text-soft: #7A95A8;
  --border: rgba(0, 134, 179, 0.15);
  --shadow-sm: 0 2px 12px rgba(0, 45, 64, 0.08);
  --shadow-md: 0 8px 40px rgba(0, 45, 64, 0.14);
  --shadow-lg: 0 20px 80px rgba(0, 45, 64, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ============== UTILITY ============== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cf-blue);
  background: var(--cf-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section>.container {
  text-align: center;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.nav-x {
  font-weight: 300;
  color: var(--text-soft);
  font-size: 18px;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cf-navy);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--cf-blue);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--cf-navy);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.nav-btn-secondary:hover {
  background: var(--off-white);
  border-color: rgba(0, 134, 179, 0.4);
  transform: translateY(-1px);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  background: var(--cf-navy);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(0, 25, 36, 0.7) 0%, 
    rgba(0, 45, 64, 0.8) 50%, 
    rgba(0, 25, 36, 0.9) 100%);
  z-index: 1;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(71, 207, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 207, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.glow-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(71, 207, 255, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 184, 148, 0.12) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
}

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

.partnership-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(71, 207, 255, 0.12);
  border: 1px solid rgba(71, 207, 255, 0.3);
  color: var(--cf-cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--cf-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.07;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.title-accent {
  display: block;
  background: linear-gradient(90deg, var(--cf-cyan), var(--mc-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto 52px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(71, 207, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  margin-bottom: 44px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
}

.stat-pill {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--cf-cyan);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(71, 207, 255, 0.25);
  margin: 0 24px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cf-cyan), var(--cf-blue));
  color: var(--cf-navy);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(71, 207, 255, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ============== SCROLL HINT ============== */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: rotate(45deg) translateY(6px);
    opacity: 1;
  }
}

/* ============== PROBLEM ============== */
.problem-section {
  background: var(--off-white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
  opacity: 0;
  transform: translateY(30px);
}

.problem-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.problem-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============== SOLUTION ============== */
.solution-section {
  background: var(--white);
}

.solution-section .container {
  text-align: center;
}

.platform-split {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.platform-card {
  flex: 1;
  min-width: 300px;
  max-width: 440px;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
}

.cf-card {
  background: linear-gradient(160deg, var(--cf-navy), #003D58);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.mc-card {
  background: linear-gradient(160deg, #004D3A, #006650);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.platform-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.mc-logo-img {
  filter: brightness(0) invert(1);
}

.platform-tagline {
  font-size: 13px;
  opacity: 0.65;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.platform-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.platform-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.check {
  color: var(--cf-cyan);
  font-weight: 700;
  flex-shrink: 0;
}

.mc-check {
  color: var(--mc-green);
}

.platform-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cf-cyan);
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.platform-link:hover {
  opacity: 1;
}

.mc-link {
  color: var(--mc-green);
}

.platform-connector {
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.connector-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cf-blue), var(--mc-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 0 8px rgba(0, 134, 179, 0.1), 0 0 0 16px rgba(0, 134, 179, 0.05);
  animation: glow-ring 3s ease-in-out infinite;
}

@keyframes glow-ring {

  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(0, 134, 179, 0.1), 0 0 0 16px rgba(0, 134, 179, 0.05);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(71, 207, 255, 0.18), 0 0 0 24px rgba(71, 207, 255, 0.07);
  }
}

.connector-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-align: center;
}

/* ============== HOW IT WORKS ============== */
.how-section {
  background: var(--off-white);
}

.how-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.how-intro p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.how-intro p:last-child {
  margin-bottom: 0;
}

/* Visual Flow Diagram */
.flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 900px) {
  .flow-diagram {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}

.flow-step {
  flex: 1;
  min-width: 220px;
  background: var(--mc-light);
  border: 1px solid rgba(0, 184, 148, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.flow-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cf-flow-step {
  background: var(--cf-light);
  border-color: rgba(71, 207, 255, 0.3);
}

.combo-flow-step {
  background: linear-gradient(135deg, rgba(71, 207, 255, 0.1), rgba(0, 184, 148, 0.1));
  border-color: var(--border);
}

.flow-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.flow-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  font-weight: 500;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 24px;
  font-weight: 300;
}

@media (min-width: 900px) {
  .flow-arrow {
    transform: rotate(-90deg);
  }
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.new-step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.new-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.new-step-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.step-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--cf-blue);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.new-step-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-list-title {
  font-weight: 600;
  font-size: 14px !important;
  color: var(--text-main) !important;
  margin-bottom: 12px !important;
}

.step-list {
  list-style: none;
  margin-bottom: 24px;
}

.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.5;
  text-align: left;
}

.combo-check {
  background: linear-gradient(135deg, var(--cf-cyan), var(--mc-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-result {
  font-size: 14px !important;
  font-style: italic;
  font-weight: 500;
  color: var(--cf-navy) !important;
  background: var(--cf-light);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 0 !important;
  border-left: 3px solid var(--cf-blue);
}

.how-conclusion {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.how-conclusion h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
}

.how-conclusion p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.how-conclusion p:last-child {
  margin-bottom: 0;
}

/* ============== BENEFITS TIMELINE ============== */
.benefits-section {
  position: relative;
  background-image: url('CollegeCampusDrawn.png');
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 20, 35, 0.82) 0%,
      rgba(0, 30, 50, 0.78) 50%,
      rgba(0, 20, 35, 0.85) 100%);
  pointer-events: none;
  z-index: 0;
}

.benefits-section>* {
  position: relative;
  z-index: 1;
}

.benefits-section .container {
  text-align: center;
}

/* Override label/title colors for dark parallax bg */
.benefits-section .section-label {
  background: rgba(71, 207, 255, 0.18);
  color: var(--cf-cyan);
  border: 1px solid rgba(71, 207, 255, 0.35);
}

.benefits-section .section-title {
  color: var(--white);
}

.benefits-section .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.benefits-timeline {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.timeline-track {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cf-blue), var(--mc-teal));
  opacity: 0.25;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: none !important;
}

.timeline-item[data-side="left"] {
  flex-direction: row;
  transform: translateX(-30px);
}

.timeline-item[data-side="right"] {
  flex-direction: row-reverse;
  transform: translateX(30px);
}

.timeline-item[data-side="left"] .timeline-card {
  text-align: right;
  margin-right: 48px;
}

.timeline-item[data-side="right"] .timeline-card {
  text-align: left;
  margin-left: 48px;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--white);
  flex-shrink: 0;
  z-index: 2;
}

.cf-dot {
  background: var(--cf-cyan);
  box-shadow: 0 0 12px rgba(71, 207, 255, 0.6);
}

.mc-dot {
  background: var(--mc-green);
  box-shadow: 0 0 12px rgba(0, 184, 148, 0.6);
}

.timeline-card {
  flex: 1;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.timeline-card:hover {
  box-shadow: var(--shadow-md);
}

.timeline-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cf-blue);
  background: var(--cf-light);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.mc-tag {
  color: var(--mc-teal);
  background: var(--mc-light);
}

.timeline-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.timeline-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}

.timeline-metric {
  font-size: 13px;
  color: var(--cf-blue);
  background: var(--cf-light);
  padding: 8px 12px;
  border-radius: 8px;
}

.mc-metric {
  color: var(--mc-teal);
  background: var(--mc-light);
}

/* ============== PROOF ============== */
.proof-section {
  background: var(--white);
  text-align: center;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.proof-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  transition: transform 0.2s;
}

.proof-card:hover {
  transform: translateY(-4px);
}

.highlight-card {
  background: linear-gradient(135deg, var(--cf-navy), #003D58);
  border-color: transparent;
}

.highlight-card .proof-number {
  color: var(--cf-cyan);
}

.highlight-card .proof-label {
  color: rgba(255, 255, 255, 0.7);
}

.proof-number {
  font-size: 52px;
  font-weight: 900;
  color: var(--cf-blue);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}

.proof-label {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

.testimonial {
  background: var(--off-white);
  border-left: 4px solid var(--cf-blue);
  border-radius: var(--radius-sm);
  padding: 28px 36px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.testimonial p {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.testimonial cite {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--text-soft);
}

/* ============== HOW ============== */
.how-section {
  background: var(--off-white);
  text-align: center;
}

.steps-row {
  display: flex;
  gap: 0;
  align-items: flex-start;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cf-blue);
  background: var(--cf-light);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.step-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

.step-arrow {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--text-soft);
  margin-top: 48px;
  padding: 0 12px;
}

/* ============== CTA ============== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--cf-navy) 0%, #003D58 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(71, 207, 255, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

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

.cta-section .section-label {
  margin-bottom: 20px;
}

.light-label {
  color: var(--cf-cyan);
  background: rgba(71, 207, 255, 0.15);
  border: 1px solid rgba(71, 207, 255, 0.3);
}

.cta-title {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============== GLANCE GALLERY ============== */
.glance-section {
  background: var(--cf-navy);
  padding-bottom: 80px;
}

.glance-section .section-label {
  background: rgba(71, 207, 255, 0.15);
  color: var(--cf-cyan);
  border: 1px solid rgba(71, 207, 255, 0.3);
}

.glance-section .section-title {
  color: var(--white);
}

.glance-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.glance-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

/* Wide items (desktop screenshots) span 2 cols, 1–2 rows */
.glance-wide {
  grid-column: span 2;
  grid-row: span 1;
}

/* Mobile items span 1 col, 2 rows (portrait ratio) */
.glance-mobile {
  grid-column: span 1;
  grid-row: span 2;
}

.glance-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #0a2236;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}

.glance-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.glance-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.glance-item:hover img {
  transform: scale(1.04);
}

/* Hover caption overlay */
.glance-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 20, 35, 0.92) 0%, rgba(0, 20, 35, 0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glance-item:hover .glance-caption {
  opacity: 1;
}

.glance-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cf-cyan);
  background: rgba(71, 207, 255, 0.18);
  border: 1px solid rgba(71, 207, 255, 0.35);
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 6px;
  width: fit-content;
}

.glance-caption p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin: 0;
}

/* Zoom-in click hint icon */
.glance-item::after {
  content: '⤢';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.25s;
  backdrop-filter: blur(4px);
  pointer-events: none;
  line-height: 32px;
  text-align: center;
}

.glance-item:hover::after {
  opacity: 1;
}

/* ============== LIGHTBOX ============== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 10, 20, 0.96);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
  animation: lbFadeIn 0.25s ease;
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: lbImgIn 0.22s ease;
}

@keyframes lbImgIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  max-width: 600px;
  line-height: 1.6;
  padding: 0 16px;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 36px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1001;
  line-height: 1;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lb-prev {
  left: 20px;
}

.lb-next {
  right: 20px;
}

/* Responsive grid */
@media (max-width: 900px) {
  .glance-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .glance-wide {
    grid-column: span 2;
  }

  .glance-mobile {
    grid-column: span 1;
    grid-row: span 2;
  }
}

@media (max-width: 560px) {
  .glance-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .glance-wide,
  .glance-mobile {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============== FOOTER ============== */

.footer {
  background: #04151F;
  padding: 48px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-cf {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-x {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer-logo-mc {
  height: 22px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cf-cyan);
}

.footer-links span {
  color: rgba(255, 255, 255, 0.25);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ============== ANIMATIONS / AOS ============== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }

  .stat-divider {
    width: 80px;
    height: 1px;
  }

  .platform-split {
    flex-direction: column;
    gap: 40px;
  }

  .platform-connector {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .timeline-track {
    display: none;
  }

  .timeline-item,
  .timeline-item[data-side="left"],
  .timeline-item[data-side="right"] {
    flex-direction: column;
    transform: none;
  }

  .timeline-item[data-side="left"] .timeline-card,
  .timeline-item[data-side="right"] .timeline-card {
    text-align: left;
    margin: 0;
    max-width: 100%;
  }

  .timeline-dot {
    display: none;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }
}

/* ============== WAITLIST MODAL ============== */
.waitlist-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 45, 64, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.waitlist-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.waitlist-modal {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.waitlist-modal-overlay.active .waitlist-modal {
  transform: translateY(0) scale(1);
}

.waitlist-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s;
}

.waitlist-modal-close:hover {
  opacity: 0.7;
}

.waitlist-modal-header {
  background: linear-gradient(135deg, var(--cf-navy), #003D58);
  padding: 40px 32px 32px;
  text-align: center;
  color: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.waitlist-modal-header .modal-logo {
  height: 32px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.waitlist-modal-header h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.waitlist-modal-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.waitlist-modal-body {
  padding: 32px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.form-group label .required {
  color: #E53E3E;
  margin-left: 2px;
}

.form-group input {
  padding: 12px 14px;
  border: 1px solid rgba(0, 134, 179, 0.2);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-main);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--cf-blue);
  box-shadow: 0 0 0 3px rgba(71, 207, 255, 0.2);
}

.form-group input::placeholder {
  color: var(--text-soft);
}

.btn-submit {
  margin-top: 10px;
  width: 100%;
}

.waitlist-success {
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}

.waitlist-success .success-icon {
  width: 64px;
  height: 64px;
  background: var(--mc-light);
  color: var(--mc-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 8px;
}

.waitlist-success h3 {
  font-size: 22px;
  color: var(--text-main);
}

.waitlist-success p {
  color: var(--text-mid);
  margin-bottom: 8px;
}
/* ============== PASSCODE OVERLAY ============== */
.passcode-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 45, 64, 0.82);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.8s;
  padding: 20px;
}

.passcode-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.passcode-container {
  background: var(--white);
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
  text-align: center;
  max-width: 460px;
  width: 100%;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.passcode-overlay.hidden .passcode-container {
  transform: translateY(40px) scale(0.95);
}

.passcode-logo {
  height: 48px;
  width: auto;
  margin-bottom: 32px;
}

.passcode-container h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--cf-navy);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.passcode-container p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.6;
}

.passcode-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#passcodeField {
  width: 100%;
  padding: 20px;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.6em;
  border: 2px solid var(--border);
  background: var(--off-white);
  border-radius: var(--radius-md);
  color: var(--cf-navy);
  font-family: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

#passcodeField::placeholder {
  letter-spacing: 0.2em;
  color: var(--text-soft);
  opacity: 0.4;
}

#passcodeField:focus {
  border-color: var(--cf-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 134, 179, 0.1);
}

#passcodeBtn {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.passcode-error {
  color: #EB4D4B;
  font-size: 14px;
  margin-top: 24px;
  font-weight: 600;
  display: none;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

body.locked {
  overflow: hidden;
  height: 100vh;
}
