/* ============================================================
   Careerly marketing site — bold, colorful, interactive system
   Heading font: Space Grotesk Bold (stand-in for brand face "Moliga" — swap once licensed)
   Body/UI font: Manrope
   No box-shadows anywhere — depth comes from color, layering, motion.
   ============================================================ */

:root {
  --navy: #16324F;
  --teal: #227894;
  --teal-deep: #185667;
  --sky: #78B7D0;
  --lagoon: #0FBFA6;
  --lagoon-deep: #0A9484;
  --ink: #0F2942;
  --paper: #FFFFFF;
  --mist: #EDF3F6;
  --line: #D7E2E8;
  --risk: #D64545;
  --muted: #5C7484;

  --sky-tint: #E4F1F6;
  --lagoon-tint: #E1F9F4;
  --navy-tint: #E9EEF3;

  --radius-hero: 28px;
  --radius-card: 22px;
  --radius-chip: 14px;
  --radius-pill: 999px;

  --border: 1.5px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}

:focus-visible {
  outline: 2.5px solid var(--teal-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
.band-blue :focus-visible, .footer :focus-visible, .download-panel :focus-visible {
  outline-color: var(--paper);
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
svg { display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

section { position: relative; overflow: hidden; }
section[id] { scroll-margin-top: 84px; }

.band-mist { background: var(--mist); }
.band-white { background: var(--paper); }
.band-blue {
  background: var(--teal);
}
.band-blue .eyebrow { background: rgba(255,255,255,0.16); color: var(--paper); }
.band-blue .section-head h2 { color: var(--paper); }
.band-blue .section-head p { color: #D9EEF3; }
.band-blue .muted { color: #CFE9EF; }
.band-blue .pricing-note { color: #D9EEF3; }
.band-blue .price-card .price-note { color: var(--muted); }

.section-pad { padding: 96px 0; }
@media (max-width: 900px) { .section-pad { padding: 68px 0; } }

/* ---------- decorative color-patch blobs ---------- */
.blob {
  --px: 0px; --py: 0px;
  position: absolute;
  border-radius: 62% 38% 55% 45% / 48% 42% 58% 52%;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
  opacity: 0.9;
  will-change: transform;
  animation: blobDrift 14s ease-in-out infinite alternate;
}
.blob.lagoon { background: var(--lagoon); }
.blob.sky { background: var(--sky); }
.blob.teal { background: var(--teal); opacity: 0.85; }
.blob.soft-lagoon { background: var(--lagoon-tint); }
.blob.soft-sky { background: var(--sky-tint); }
.blob.navy-tint { background: var(--navy); }
.blob.on-blue { background: var(--paper); }

@keyframes blobDrift {
  0%   { transform: translate(var(--px), var(--py)) rotate(0deg) scale(1); }
  50%  { transform: translate(calc(var(--px) + 14px), calc(var(--py) - 18px)) rotate(8deg) scale(1.04); }
  100% { transform: translate(calc(var(--px) - 10px), calc(var(--py) + 10px)) rotate(-6deg) scale(0.98); }
}
@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--lagoon-tint);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  margin-bottom: 20px;
}

.section-head { max-width: 720px; margin-bottom: 52px; position: relative; z-index: 1; }
.section-head h2 { font-size: clamp(28px, 4vw + 1rem, 42px); }
.section-head p { margin-top: 14px; color: var(--muted); font-size: clamp(16px, 1vw + 0.85rem, 18px); text-wrap: pretty; }

.muted { color: var(--muted); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- wave dividers (organic, non-blocky section seams) ---------- */
.wave-divider {
  position: absolute; top: 0; left: 0; right: 0; height: 72px;
  transform: translateY(-60%); z-index: 0; pointer-events: none;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }
@media (max-width: 640px) { .wave-divider { height: 40px; } }

/* ---------- buttons (no offset/shadow trick — motion + color only) ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  border: var(--border) solid transparent;
  min-height: 44px;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 220ms var(--spring), background-color 200ms var(--ease), color 200ms var(--ease);
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.97); }

.btn-primary { background: var(--navy); color: var(--paper); }
.btn-primary:hover { background: color-mix(in oklch, var(--navy) 80%, white 20%); }

.btn-secondary { background: var(--sky-tint); border-color: transparent; color: var(--teal-deep); }
.btn-secondary:hover { background: var(--sky); color: var(--navy); }

.btn-highlight { background: var(--lagoon); color: var(--navy); font-size: 18px; padding: 19px 34px; }
.btn-highlight:hover { background: color-mix(in oklch, var(--lagoon) 85%, white 15%); }

.btn-ghost {
  background: transparent; border: none; color: var(--teal); font-weight: 800;
  padding: 12px 6px; text-decoration: underline; text-underline-offset: 4px;
  border-radius: 8px;
}
.btn-ghost:hover { transform: translateX(3px); color: var(--teal-deep); }
.btn-ghost:active { transform: translateX(3px) scale(0.97); }

.btn-block { width: 100%; }

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transform: scale(0);
  animation: rippleOut 600ms ease-out forwards;
  pointer-events: none;
}
.btn-secondary .ripple, .btn-ghost .ripple { background: rgba(34,120,148,0.25); }
@keyframes rippleOut {
  to { transform: scale(3.2); opacity: 0; }
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: var(--border) solid transparent;
  transition: border-color 250ms var(--ease), background-color 250ms var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,0.86); }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: var(--paper); }
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; transition: transform 200ms var(--spring); }
.brand:hover { transform: scale(1.03); }
.brand img { height: 30px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-weight: 700; color: var(--ink);
}
.nav-links a { position: relative; padding: 8px 2px; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2.5px;
  background: var(--lagoon); border-radius: 2px; transition: right 220ms var(--ease);
}
.nav-links a:hover { color: var(--teal-deep); }
.nav-links a:hover::after { right: 0; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none; background: var(--sky-tint); border: none;
  border-radius: 12px; width: 44px; height: 44px; align-items: center; justify-content: center;
  transition: background-color 200ms var(--ease);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2.5px; background: var(--navy); border-radius: 2px;
  position: relative; transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: 76px; left: 0; right: 0; background: var(--paper);
    border-bottom: var(--border) solid var(--line); padding: 8px 24px 20px;
  }
  .nav.menu-open .nav-links a { width: 100%; padding: 12px 0; }
  .nav.menu-open .nav-links a::after { display: none; }
}

/* ---------- hero ---------- */
.hero { padding-top: 8px; }
.hero .blob.b1 { width: 420px; height: 420px; top: -120px; right: -100px; opacity: 0.5; }
.hero .blob.b2 { width: 260px; height: 260px; bottom: -60px; left: -80px; opacity: 0.45; }

.hero .container {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding-top: 64px; padding-bottom: 96px;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 56px; }
}
.hero h1 { font-size: clamp(32px, 5.5vw + 1rem, 66px); margin-top: 18px; }
.hero-sub { margin-top: 22px; font-size: clamp(16px, 1vw + 0.85rem, 19px); color: var(--muted); max-width: 52ch; text-wrap: pretty; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.stat-chip {
  background: var(--mist); border-radius: var(--radius-pill); padding: 11px 18px;
  font-weight: 700; font-size: 14px; color: var(--ink);
  transition: transform 200ms var(--spring), background-color 200ms var(--ease);
}
.stat-chip:hover { transform: translateY(-2px); background: var(--sky-tint); }
.stat-chip b { color: var(--navy); }

/* hero graphic — real app-screen cards replacing the placeholder screenshot */
.hero-graphic {
  position: relative; height: 460px; perspective: 1200px;
}
@media (max-width: 900px) { .hero-graphic { height: 380px; margin-top: 8px; } }
.float-card {
  --tx: 0px; --ty: 0px;
  position: absolute;
  animation: bob 6s ease-in-out infinite;
}
.float-card img { display: block; width: 100%; height: auto; border-radius: var(--radius-card); }
.float-card.stat-badge {
  border-radius: var(--radius-card); padding: 20px 22px;
  background: var(--navy); color: var(--paper);
}
.float-card .fc-tag { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.8; }
.float-card .fc-val { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 26px; margin-top: 8px; }
.float-card .fc-sub { font-size: 13px; margin-top: 6px; opacity: 0.75; font-weight: 600; }

.fc-1 { width: 250px; top: 10%; left: 2%; animation-delay: 0s; }
.fc-2 { width: 230px; top: 56%; left: 26%; animation-delay: 1.4s; }
.fc-3 { width: 190px; top: 2%; left: 58%; animation-delay: 0.7s; }
.fc-4 { width: 168px; top: 70%; left: 64%; animation-delay: 2.1s; }
@media (max-width: 900px) {
  .fc-1 { width: 58%; left: 0; top: 4%; }
  .fc-2 { width: 52%; left: 22%; top: 46%; }
  .fc-3 { width: 44%; left: 48%; top: 0%; }
  .fc-4 { width: 40%; left: 52%; top: 68%; }
}
@keyframes bob {
  0%, 100% { transform: translate(var(--tx), var(--ty)); }
  50% { transform: translate(var(--tx), calc(var(--ty) - 14px)); }
}
@media (prefers-reduced-motion: reduce) {
  .float-card { animation: none; }
}

/* ---------- moving marquee banner ---------- */
.marquee {
  background: var(--navy);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  clip-path: polygon(0 14%, 100% 0%, 100% 86%, 0% 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 52px;
  animation: marqueeScroll 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; color: var(--paper);
  white-space: nowrap;
}
.marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lagoon); flex-shrink: 0; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- interactive showcase & mockup ---------- */
.showcase-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.showcase-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.showcase-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid transparent;
  border-radius: var(--radius-card);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  color: rgba(255, 255, 255, 0.6);
  transition: all 250ms var(--ease);
  cursor: pointer;
  width: 100%;
}

.showcase-tab:hover {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(4px);
}

.showcase-tab.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: var(--lagoon);
  color: var(--paper);
}

.showcase-tab-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--paper);
  flex-shrink: 0;
  transition: background-color 250ms var(--ease);
}

.showcase-tab.active .showcase-tab-num {
  background: var(--lagoon);
  color: var(--navy);
}

.showcase-tab-content h3 {
  font-size: 18px;
  color: inherit;
  margin-bottom: 4px;
  font-family: 'Space Grotesk', sans-serif;
}

.showcase-tab-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.showcase-tab.active .showcase-tab-content p {
  color: var(--paper);
}

.showcase-device-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* realistic smartphone mockup */
.device-mockup {
  width: 280px;
  height: 570px;
  background: #000;
  border: 11px solid #1c2738;
  border-radius: 38px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* dynamic island */
.device-mockup::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #000;
  border-radius: 10px;
  z-index: 10;
}

.device-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #050a12;
  border-radius: 26px;
  overflow: hidden;
}

.showcase-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.showcase-screen.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

@media (max-width: 900px) {
  .showcase-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .showcase-device-container {
    order: -1;
  }
  .device-mockup {
    width: 250px;
    height: 510px;
  }
}


/* ---------- stat cards (problem section) ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
@media (max-width: 900px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card {
  border-radius: var(--radius-card);
  background: var(--paper); padding: 30px 24px;
  transition: transform 220ms var(--spring), background-color 220ms var(--ease);
}
.stat-card:hover { transform: translateY(-6px); background: color-mix(in oklch, var(--lagoon) 14%, white); }
.stat-card .num { font-family: 'Space Grotesk', sans-serif; font-size: 38px; font-weight: 700; color: var(--navy); }
.stat-card .label { margin-top: 10px; color: var(--muted); font-size: 15px; font-weight: 600; }

/* ---------- steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch;
  position: relative; z-index: 1;
}
@media (max-width: 1000px) { .steps { grid-template-columns: 1fr; } }
.step-card {
  border-radius: var(--radius-card);
  background: var(--mist); padding: 26px 22px; display: flex; flex-direction: column; gap: 10px;
  position: relative; transition: transform 220ms var(--spring), background-color 220ms var(--ease);
}
.step-card:hover { transform: translateY(-6px) scale(1.015); background: var(--sky-tint); }
.step-card .step-num {
  width: 34px; height: 34px; border-radius: var(--radius-pill); background: var(--navy);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Space Grotesk', sans-serif; color: var(--paper);
}
.step-card h3 { font-size: 18px; }
.step-card p { color: var(--muted); font-size: 14.5px; }
.step-card.highlight {
  background: var(--lagoon);
  transform: scale(1.05);
}
.step-card.highlight:hover { transform: scale(1.07) translateY(-6px); background: #1fd0b4; }
.step-card.highlight .step-num { background: var(--navy); color: var(--lagoon); }
.step-card.highlight p { color: var(--navy); opacity: 0.85; }
@media (max-width: 1000px) { .step-card.highlight, .step-card.highlight:hover { transform: none; } }
.step-arrow {
  display: flex; align-items: center; justify-content: center; color: var(--sky);
}
@media (max-width: 1000px) { .step-arrow { transform: rotate(90deg); margin: -6px 0; } }

/* ---------- features grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card { display: block; color: inherit; text-decoration: none; cursor: pointer;
  background: var(--paper); border-radius: var(--radius-card); padding: 28px 26px;
  transition: transform 220ms var(--spring), background-color 220ms var(--ease);
}
.feature-card:hover { transform: translateY(-6px); background: var(--lagoon-tint); }
.feature-icon {
  width: 46px; height: 46px; border-radius: 14px; background: var(--sky-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--teal-deep);
  transition: background-color 220ms var(--ease), transform 220ms var(--spring);
}
.feature-card:hover .feature-icon { background: var(--lagoon); color: var(--navy); transform: rotate(-6deg) scale(1.08); }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- schools split ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.chip-list { display: flex; flex-direction: column; gap: 12px; margin: 26px 0 30px; }
.chip-row {
  display: flex; align-items: center; gap: 12px; background: var(--mist);
  border-radius: var(--radius-chip);
  padding: 15px 18px; font-weight: 700; font-size: 15px;
  transition: transform 200ms var(--spring), background-color 200ms var(--ease);
}
.chip-row:hover { transform: translateX(6px); background: var(--sky-tint); }
.chip-row svg { flex-shrink: 0; color: var(--teal); }

.schools-graphic { position: relative; height: 420px; }
@media (max-width: 900px) { .schools-graphic { height: 340px; } }
.sc-1 { width: 56%; top: 4%; left: 4%; }
.sc-2 { width: 50%; top: 40%; left: 34%; animation-delay: 1s; }
.sc-3 { width: 44%; top: 70%; left: 6%; animation-delay: 1.8s; }
@media (max-width: 900px) {
  .sc-1 { width: 52%; left: 0; top: 2%; }
  .sc-2 { width: 46%; left: 30%; top: 38%; }
  .sc-3 { width: 40%; left: 4%; top: 72%; }
}

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; position: relative; z-index: 1; }
@media (max-width: 1000px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .price-card:nth-child(1) { order: 1; }
  .pricing-grid .price-card:nth-child(3) { order: 2; }
  .pricing-grid .price-card:nth-child(2) { order: 3; }
  .pricing-grid .price-card:nth-child(4) { order: 4; }
}
.price-card {
  background: var(--paper); border-radius: var(--radius-hero); padding: 30px 26px; display: flex; flex-direction: column;
  position: relative; transition: transform 220ms var(--spring);
}
.price-card:hover { transform: translateY(-8px); }
.price-card h3 { font-size: 18px; }
.price-card .price { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700; margin: 12px 0 4px; }
.price-card .price-note { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.price-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.price-card li { display: flex; gap: 10px; font-size: 14px; font-weight: 600; align-items: flex-start; }
.price-card li svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }
.price-card.highlight { background: var(--lagoon); animation: pulseGlow 3.4s ease-in-out infinite; }
.price-card.highlight:hover { transform: translateY(-8px) scale(1.02); }
.price-card.highlight .price-note,
.price-card.highlight li { color: var(--navy); }
.price-card.highlight li svg { color: var(--navy); }
@keyframes pulseGlow {
  0%, 100% { background: var(--lagoon); }
  50% { background: #29d3b7; }
}
@media (prefers-reduced-motion: reduce) { .price-card.highlight { animation: none; } }
.badge-pin {
  position: absolute; top: -16px; left: 26px; background: var(--navy); color: var(--paper);
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--radius-pill);
}
.pricing-note { margin-top: 32px; font-size: 13.5px; color: var(--muted); position: relative; z-index: 1; }

/* ---------- download ---------- */
.download-panel {
  background: var(--navy); border-radius: var(--radius-hero); padding: 60px 40px; text-align: center;
  max-width: 780px; margin: 0 auto; position: relative; overflow: hidden; z-index: 1;
}
.download-panel h2 { font-size: 34px; color: var(--paper); }
.download-panel p { margin-top: 12px; color: var(--sky); font-size: 17px; position: relative; }
.download-actions { margin-top: 30px; display: flex; flex-direction: column; align-items: center; gap: 10px; position: relative; }
.download-caption { font-size: 13px; color: var(--sky); font-weight: 600; }
.download-soon { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; position: relative; }
.soon-chip {
  background: rgba(255,255,255,0.08); color: var(--sky);
  border-radius: var(--radius-pill); padding: 9px 18px; font-weight: 700; font-size: 13.5px;
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; position: relative; z-index: 1; }
.faq-item {
  background: var(--paper); border-radius: var(--radius-card); overflow: hidden;
  transition: background-color 200ms var(--ease);
}
.faq-item.open { background: var(--lagoon-tint); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy);
}
.faq-icon { flex-shrink: 0; position: relative; width: 22px; height: 22px; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--navy); border-radius: 2px;
  transition: transform 200ms var(--ease);
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 2.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; height: 100%; width: 2.5px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg) scale(0); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 280ms var(--ease);
}
.faq-a p { padding: 0 24px 24px; color: var(--muted); font-size: 15px; max-width: 68ch; }
.faq-item.open .faq-a { max-height: 220px; }

/* ---------- footer ---------- */
.footer { background: var(--navy); color: var(--paper); padding: 68px 0 32px; position: relative; overflow: hidden; }
.footer .container { display: grid; grid-template-columns: 1.3fr 2fr 0.8fr; gap: 48px; position: relative; z-index: 1; }
@media (max-width: 800px) { .footer .container { grid-template-columns: 1fr; gap: 36px; } }
.footer-brand img { height: 28px; filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 14px; color: var(--sky); font-size: 14.5px; max-width: 32ch; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { color: var(--paper); font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--sky); font-size: 14.5px; font-weight: 600; transition: color 180ms var(--ease); }
.footer-col a:hover { color: var(--lagoon); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: var(--paper);
  transition: background-color 200ms var(--ease), transform 200ms var(--spring);
}
.footer-social a:hover { background: var(--lagoon); color: var(--navy); transform: translateY(-3px); }
.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 32px; padding-top: 24px; border-top: 1.5px solid rgba(255,255,255,0.15);
  font-size: 13px; color: var(--sky); position: relative; z-index: 1;
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- count-up numbers ---------- */
.countup { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .stat-chip, .stat-card, .step-card, .feature-card, .chip-row, .price-card, .footer-social a { transition: none; }
}

/* ============================================================
   SPLASH LOADER: logo + loading bar, shown on page load
   ============================================================ */

.splash-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              visibility 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.splash-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: splashPulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(15, 191, 166, 0.4));
}

.splash-title {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--paper);
  margin: 0;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(15, 191, 166, 0.15);
}

@keyframes splashPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.88; }
}

.splash-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.splash-fill {
  height: 100%;
  width: 0%;
  background: var(--lagoon);
  border-radius: 999px;
  transition: width 200ms ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .splash-logo { animation: none; }
  .splash-loader { transition: none; }
}

/* ============================================================
   ENTRANCE ANIMATION: staggered reveal after splash screen
   Triggered by adding .intro-ready to <body>
   ============================================================ */

/* --- all animated elements start hidden --- */
body:not(.intro-ready) .nav,
body:not(.intro-ready) .hero-copy .eyebrow,
body:not(.intro-ready) .hero-copy h1,
body:not(.intro-ready) .hero-sub,
body:not(.intro-ready) .hero-ctas,
body:not(.intro-ready) .hero-stats .stat-chip,
body:not(.intro-ready) .hero-visual .float-card,
body:not(.intro-ready) .marquee {
  opacity: 0;
}

/* --- nav: slide down from top --- */
body.intro-ready .nav {
  animation: introSlideDown 700ms cubic-bezier(0.16, 1, 0.3, 1) 0ms both;
}

/* --- hero eyebrow: fade in + scale --- */
body.intro-ready .hero-copy .eyebrow {
  animation: introFadeUp 600ms cubic-bezier(0.16, 1, 0.3, 1) 150ms both;
}

/* --- hero h1: big slide up --- */
body.intro-ready .hero-copy h1 {
  animation: introSlideUpBig 800ms cubic-bezier(0.16, 1, 0.3, 1) 300ms both;
}

/* --- hero subtitle --- */
body.intro-ready .hero-sub {
  animation: introFadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 500ms both;
}

/* --- hero CTAs --- */
body.intro-ready .hero-ctas {
  animation: introFadeUp 600ms cubic-bezier(0.16, 1, 0.3, 1) 650ms both;
}

/* --- stat chips: staggered cascade --- */
body.intro-ready .hero-stats .stat-chip:nth-child(1) {
  animation: introPopIn 500ms cubic-bezier(0.34, 1.56, 0.64, 1) 800ms both;
}
body.intro-ready .hero-stats .stat-chip:nth-child(2) {
  animation: introPopIn 500ms cubic-bezier(0.34, 1.56, 0.64, 1) 900ms both;
}
body.intro-ready .hero-stats .stat-chip:nth-child(3) {
  animation: introPopIn 500ms cubic-bezier(0.34, 1.56, 0.64, 1) 1000ms both;
}

/* --- hero visual: float-cards fly in from different sides --- */
body.intro-ready .hero-visual .float-card.fc-1 {
  animation: introFlyLeft 800ms cubic-bezier(0.16, 1, 0.3, 1) 500ms both;
}
body.intro-ready .hero-visual .float-card.fc-2 {
  animation: introFlyRight 800ms cubic-bezier(0.16, 1, 0.3, 1) 700ms both;
}
body.intro-ready .hero-visual .float-card.fc-3 {
  animation: introFlyLeft 800ms cubic-bezier(0.16, 1, 0.3, 1) 850ms both;
}
body.intro-ready .hero-visual .float-card.fc-4 {
  animation: introPopIn 600ms cubic-bezier(0.34, 1.56, 0.64, 1) 1000ms both;
}

/* --- marquee: fade in --- */
body.intro-ready .marquee {
  animation: introFadeIn 800ms cubic-bezier(0.16, 1, 0.3, 1) 1100ms both;
}

/* --- keyframes --- */
@keyframes introSlideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes introFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes introSlideUpBig {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes introPopIn {
  from { opacity: 0; transform: scale(0.8) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes introFlyLeft {
  from { opacity: 0; transform: translateX(-60px) translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateX(var(--tx, 0px)) translateY(var(--ty, 0px)) scale(1); }
}

@keyframes introFlyRight {
  from { opacity: 0; transform: translateX(60px) translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateX(var(--tx, 0px)) translateY(var(--ty, 0px)) scale(1); }
}

@keyframes introFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  body.intro-ready .nav,
  body.intro-ready .hero-copy .eyebrow,
  body.intro-ready .hero-copy h1,
  body.intro-ready .hero-sub,
  body.intro-ready .hero-ctas,
  body.intro-ready .hero-stats .stat-chip,
  body.intro-ready .hero-visual .float-card,
  body.intro-ready .marquee {
    animation: none !important;
    opacity: 1 !important;
  }
}



.feature-more { display: inline-block; margin-top: 12px; font-weight: 800; font-size: 13px; color: var(--teal, #227894); }
.feature-card:hover .feature-more { text-decoration: underline; }
