/* =========================================================
   CoBoarding website — styles
   Palette taken from the pitch deck (2026-03-09)
   ========================================================= */

:root {
  --navy-900: #07223D;
  --navy-800: #0E2E50;
  --navy-700: #15406A;
  --navy-600: #1B5683;
  --teal-500: #3DA1B3;
  --teal-400: #5BB8C7;
  --teal-300: #84D0DC;
  --yellow:   #F5C518;
  --yellow-2: #FFD84A;
  --coral:    #E84759;
  --coral-2:  #FF6E7B;
  --white:    #ffffff;
  --ink:      #E9F4F8;
  --ink-soft: #B6CDDA;
  --ink-mute: #7E97A8;

  --pricing-bg: rgba(15, 64, 96, 0.4);

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 60px rgba(0,0,0,.35);
  --shadow-glow: 0 0 60px rgba(91,184,199,.25);

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;

  --max: 1200px;
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 40px;
}

.pricing-card {
    background: rgba(15, 64, 96, 0.4);
    border: 1px solid rgba(132, 208, 220, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex: 1 1 240px;
    max-width: 280px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--teal-400);
    transform: translateY(-5px);
    background: rgba(15, 64, 96, 0.6);
}

.pricing-card.featured {
    border: 1px solid var(--yellow);
    background: linear-gradient(180deg, rgba(15, 64, 96, 0.6) 0%, rgba(4, 22, 42, 0.8) 100%);
}

.price-kicker {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--teal-400);
    margin-bottom: 20px;
}

.featured .price-kicker { color: var(--yellow); }

.price-indicator {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--white);
}

.price-label {
    font-size: 12px;
    color: var(--ink-soft);
    margin-bottom: 30px;
}

.pricing-card .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

.pricing-card .feature-item svg {
    flex-shrink: 0;
    color: var(--teal-400) !important;
    margin-top: 2px;
}

.pricing-card.featured .feature-item svg { color: var(--yellow) !important; }

@media (max-width: 800px) {
    .pricing-grid { flex-direction: column; align-items: center; }
    .pricing-card { max-width: 100%; width: 100%; }
}

.feature-item svg {
    flex-shrink: 0;
    color: var(--teal-400);
    margin-top: 2px;
}

.featured .feature-item svg { color: var(--yellow); }

@media (max-width: 800px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(120% 80% at 80% 0%, #0F4060 0%, #08233E 45%, #04162A 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ========= JS HELPERS ========= */
.reveal { opacity: 0; transform: translateY(30px); transition: all .8s cubic-bezier(.2,.7,.2,1); }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 880px) {
  .hero-cta { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .btn { width: 100%; justify-content: center; }
}

@supports (-ms-ime-align:auto) or (-webkit-mask-repeat:none) {
  .hero-title .word {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-sub, .hero-cta, .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
a  { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-300);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(132, 208, 220, .3);
  background: rgba(132, 208, 220, .06);
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 64ch;
}

.grad-yellow {
  background: linear-gradient(120deg, #FFD84A 0%, #F5C518 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.grad-coral {
  background: linear-gradient(120deg, #FF8A95 0%, #E84759 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.grad-cyan {
  background: linear-gradient(120deg, #84D0DC 0%, #3DA1B3 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* --------- film grain & cursor glow --------- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}

.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(91, 184, 199, .25) 0%,
    rgba(91, 184, 199, .12) 30%,
    transparent 60%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  filter: blur(8px);
  transition: opacity .3s ease;
  opacity: 0;
  mix-blend-mode: screen;
}
@media (hover: hover) { .cursor-glow.show { opacity: 1; } }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: var(--max);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  border-radius: 18px;
  background: rgba(7, 34, 61, .6);
  border: 1px solid rgba(132, 208, 220, .14);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  z-index: 50;
  transition: padding .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  padding: 8px 18px;
  background: rgba(7, 34, 61, .85);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 18px;
}
.brand-logo { width: 30px; height: 30px; display: block; }
.brand-logo .brand-arc {
  stroke-dasharray: 140;
  stroke-dashoffset: 0;
  transform-origin: 32px 32px;
  animation: arcSpin 12s linear infinite;
}
.brand-logo .brand-dot {
  transform-origin: 32px 32px;
  animation: dotPulse 3s ease-in-out infinite;
}
@keyframes arcSpin { to { transform: rotate(360deg); } }
@keyframes dotPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.18); opacity: .85; }
}
.brand-text { letter-spacing: -.01em; }
.brand-dot-text { color: var(--yellow); }

.nav-links {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color .25s, background .25s, transform .25s;
}
.nav-links a:hover { color: var(--white); background: rgba(132, 208, 220, .08); }
.nav-links .nav-team { color: var(--yellow); }
.nav-links .nav-demo { color: var(--teal-300); }
.nav-links .nav-team:hover { background: rgba(245, 197, 24, .12); }
.nav-links .nav-demo:hover { background: rgba(132, 208, 220, .12); }
.nav-links .nav-cta {
  background: linear-gradient(120deg, var(--yellow), var(--yellow-2));
  color: var(--navy-900);
  font-weight: 700;
  margin-left: 6px;
}
.nav-links .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(245, 197, 24, .35); }

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: blobFloat 18s ease-in-out infinite;
}
.blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #5BB8C7 0%, transparent 70%);
  top: -60px; left: -120px;
  animation-delay: 0s;
}
.blob-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #F5C518 0%, transparent 70%);
  top: 40%; right: -120px;
  opacity: .35;
  animation-delay: -6s;
}
.blob-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #E84759 0%, transparent 70%);
  bottom: -100px; left: 40%;
  opacity: .35;
  animation-delay: -12s;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px, -30px) scale(1.07); }
}

#netCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .55;
}

.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1080px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(132, 208, 220, .08);
  border: 1px solid rgba(132, 208, 220, .25);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-300);
  letter-spacing: .04em;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
  animation: dotPulse 2.5s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(40px, 7.4vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 0 0 28px;
}
.hero-title .word {
  display: inline-block;
  margin: 0 .12em .04em 0;
  opacity: 0;
  transform: translateY(40px);
  animation: wordIn .9s cubic-bezier(.2,.7,.2,1) forwards;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero-title .word:nth-child(1) { animation-delay: .05s; }
.hero-title .word:nth-child(2) { animation-delay: .15s; }
.hero-title .word:nth-child(3) { animation-delay: .25s; }
.hero-title .word:nth-child(4) { animation-delay: .38s; }
.hero-title .word:nth-child(5) { animation-delay: .48s; }
.hero-title .word:nth-child(6) { animation-delay: .58s; }
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp .8s ease .8s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s ease 1s forwards;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, background .25s, color .25s, border-color .25s;
  border: 1px solid transparent;
  position: relative;
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(120deg, var(--yellow) 0%, var(--yellow-2) 100%);
  color: var(--navy-900);
  box-shadow: 0 14px 40px rgba(245, 197, 24, .35);
}
.btn-primary:hover { box-shadow: 0 20px 50px rgba(245, 197, 24, .55); }
.btn-ghost {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.18);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.4); }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: fadeUp .8s ease 1.6s forwards;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--teal-300));
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: ""; position: absolute; left: 0; top: -10px;
  width: 100%; height: 10px;
  background: var(--yellow);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: -10px; opacity: 0; }
  20%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section { padding: 130px 24px; position: relative; }
.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.1;
  margin: 8px 0 18px;
}
.section-head p.lead { margin: 0 auto; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   PROBLEM
   ========================================================= */
.problem .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  position: relative;
  padding: 36px 28px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid rgba(132, 208, 220, .14);
  text-align: left;
  overflow: hidden;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.stat-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 70% at 80% 0%, var(--accent, transparent), transparent 60%);
  opacity: .25;
  pointer-events: none;
}
.stat-yellow { --accent: rgba(245, 197, 24, .9); }
.stat-coral  { --accent: rgba(232, 71, 89, .9); }
.stat-cyan   { --accent: rgba(91, 184, 199, .9); }

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(132, 208, 220, .35);
  box-shadow: var(--shadow-glow);
}
.stat-card h3 {
  font-size: 22px;
  margin: 22px 0 10px;
}
.stat-card p { font-size: 15.5px; color: var(--ink-soft); }
.stat-card p strong { color: var(--white); }

.ring {
  position: relative;
  width: 110px; height: 110px;
}
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring .ring-bg {
  fill: none;
  stroke: rgba(255,255,255,.08);
  stroke-width: 8;
}
.ring .ring-fg {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1.6s cubic-bezier(.2,.7,.2,1);
}
.stat-yellow .ring-fg { stroke: var(--yellow); }
.stat-coral  .ring-fg { stroke: var(--coral); }
.stat-cyan   .ring-fg { stroke: var(--teal-400); }

.ring-num {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--white);
}

@media (max-width: 880px) {
  .problem .stats { grid-template-columns: 1fr; }
}

/* =========================================================
   PURPOSE
   ========================================================= */
.purpose-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.purpose-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 8px 0 22px;
}
.purpose-points {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: flex; flex-direction: column; gap: 16px;
}
.purpose-points li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(132, 208, 220, .12);
  transition: background .3s, border-color .3s, transform .3s;
}
.purpose-points li:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(132, 208, 220, .3);
  transform: translateX(4px);
}
.purpose-points span {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: .15em;
  margin-top: 2px;
}
.purpose-points strong { color: var(--white); font-weight: 700; }

/* orbit visual */
.purpose-visual { position: relative; min-height: 480px; display: grid; place-items: center; }
.orbit {
  position: relative;
  width: 100%; max-width: 460px;
  aspect-ratio: 1;
}
.orbit-core {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--coral) 100%);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  box-shadow: 0 0 60px rgba(245, 197, 24, .4),
              0 0 120px rgba(232, 71, 89, .25);
  z-index: 5;
}
.orbit-ring {
  position: absolute; left: 50%; top: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(132, 208, 220, .25);
  transform: translate(-50%, -50%);
  animation: orbitSpin linear infinite;
}
.orbit-ring.r1 { width: 56%;  height: 56%;  animation-duration: 14s;  animation-direction: normal;  }
.orbit-ring.r2 { width: 76%;  height: 76%;  animation-duration: 22s;  animation-direction: reverse; }
.orbit-ring.r3 { width: 92%;  height: 92%;  animation-duration: 30s;  animation-direction: normal;  }
.orbit-ring.r4 { width: 100%; height: 100%; animation-duration: 40s;  animation-direction: reverse; border-color: rgba(132,208,220,.15); }
@keyframes orbitSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.orbit-dot {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  top: -9px; left: 50%; transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 0 24px rgba(255,255,255,.6);
}
.orbit-dot::after {
  content: attr(data-label);
  position: absolute;
  top: -28px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  background: rgba(7, 34, 61, .85);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(132,208,220,.3);
  /* counter-rotate so labels stay readable */
  animation: counterSpin linear infinite;
}
.orbit-ring.r1 .orbit-dot { background: var(--yellow); box-shadow: 0 0 24px var(--yellow); }
.orbit-ring.r2 .orbit-dot { background: var(--coral); box-shadow: 0 0 24px var(--coral); }
.orbit-ring.r3 .orbit-dot { background: var(--teal-400); box-shadow: 0 0 24px var(--teal-400); }
.orbit-ring.r4 .orbit-dot { background: var(--white); }
.orbit-ring.r1 .orbit-dot::after { animation-duration: 14s; animation-direction: reverse; }
.orbit-ring.r2 .orbit-dot::after { animation-duration: 22s; animation-direction: normal; }
.orbit-ring.r3 .orbit-dot::after { animation-duration: 30s; animation-direction: reverse; }
.orbit-ring.r4 .orbit-dot::after { animation-duration: 40s; animation-direction: normal; }
@keyframes counterSpin { to { transform: translateX(-50%) rotate(-360deg); } }

@media (max-width: 960px) {
  .purpose-grid { grid-template-columns: 1fr; gap: 40px; }
  .purpose-visual { min-height: 380px; }
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.steps-line {
  position: absolute;
  top: 38px; left: 6%; right: 6%;
  width: 88%; height: 6px;
  z-index: 0;
}
.step {
  position: relative;
  padding: 32px 26px 30px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(132, 208, 220, .14);
  text-align: left;
  z-index: 1;
  transition: transform .4s, border-color .4s, box-shadow .4s, background .4s;
}
.step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.05);
  border-color: rgba(132, 208, 220, .35);
  box-shadow: var(--shadow-glow);
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  background: var(--navy-700);
  border: 2px solid var(--yellow);
  margin: -56px 0 22px;
  box-shadow: 0 0 0 6px var(--navy-900);
}
.step[data-step="2"] .step-num { border-color: var(--coral); }
.step[data-step="3"] .step-num { border-color: var(--teal-400); }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { font-size: 15.5px; }
.opt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal-300);
  background: rgba(91, 184, 199, .12);
  padding: 3px 9px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 8px;
}
.step em { color: var(--white); font-style: normal; font-weight: 600; }

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .steps-line { display: none; }
}

/* =========================================================
   TEAM
   ========================================================= */
.team { position: relative; }
.team .team-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 20% 20%, rgba(245,197,24,.10), transparent 60%),
    radial-gradient(60% 50% at 80% 80%, rgba(232,71,89,.10), transparent 60%);
  pointer-events: none;
}
.team .container { position: relative; z-index: 1; }

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

.team-card {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.015) 100%);
  border: 1px solid rgba(132, 208, 220, .18);
  text-align: left;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s, box-shadow .4s;
  will-change: transform;
}
.team-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 80% at 50% 0%, var(--accent-color, transparent), transparent 60%);
  opacity: .3;
  pointer-events: none;
  transition: opacity .4s;
}
.team-card[data-accent="yellow"] { --accent-color: rgba(245,197,24,.55); }
.team-card[data-accent="coral"]  { --accent-color: rgba(232,71,89,.55); }
.team-card[data-accent="cyan"]   { --accent-color: rgba(91,184,199,.55); }

.team-card:hover {
  border-color: rgba(132, 208, 220, .45);
  box-shadow: var(--shadow-glow);
}
.team-card:hover::before { opacity: .6; }

.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(7, 34, 61, .8);
  border: 1px solid rgba(132, 208, 220, .35);
  margin-bottom: 18px;
  transform: translateZ(40px);
}
.team-card[data-accent="yellow"] .team-avatar { color: var(--yellow); }
.team-card[data-accent="coral"]  .team-avatar { color: var(--coral); }
.team-card[data-accent="cyan"]   .team-avatar { color: var(--teal-400); }
.team-avatar svg { width: 42px; height: 42px; }
.team-avatar .avatar-bg { fill: rgba(255,255,255,.04); }

.team-discipline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
  transform: translateZ(20px);
}
.team-card[data-accent="yellow"] .team-discipline { color: var(--yellow); }
.team-card[data-accent="coral"]  .team-discipline { color: var(--coral-2); }
.team-card[data-accent="cyan"]   .team-discipline { color: var(--teal-300); }

.team-name {
  font-size: 24px;
  margin: 4px 0 4px;
  transform: translateZ(30px);
}
.team-role {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.team-bio {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.team-tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.team-tags li {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--ink-soft);
}

.team-quote {
  margin-top: 70px;
  text-align: center;
  color: var(--teal-300);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.team-quote svg { opacity: .5; }
.team-quote blockquote {
  margin: 0; padding: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  color: var(--white);
}

@media (max-width: 1080px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .team-grid { grid-template-columns: 1fr; } }

/* availability bar */
.availability {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(132, 208, 220, .14);
  transform: translateZ(15px);
}
.avail-label {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 8px;
}
.avail-label span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.avail-label strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -.01em;
}
.avail-label small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-mute);
  margin-left: 2px;
}
.avail-bar {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}
.avail-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fill-from, var(--teal-400)) 0%, var(--fill-to, var(--white)) 100%);
  transition: width 1.4s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 0 14px var(--fill-glow, rgba(91,184,199,.5));
}
.team-card[data-accent="yellow"] .avail-fill {
  --fill-from: var(--yellow);
  --fill-to:   var(--yellow-2);
  --fill-glow: rgba(245,197,24,.5);
}
.team-card[data-accent="coral"] .avail-fill {
  --fill-from: var(--coral);
  --fill-to:   var(--coral-2);
  --fill-glow: rgba(232,71,89,.5);
}
.team-card[data-accent="cyan"] .avail-fill {
  --fill-from: var(--teal-400);
  --fill-to:   var(--teal-300);
  --fill-glow: rgba(91,184,199,.5);
}
.avail-note {
  margin-top: 10px;
  font-size: 12.5px;
  font-style: italic;
  color: var(--ink-mute);
  line-height: 1.45;
}

/* =========================================================
   PRICING
   ========================================================= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.price-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid rgba(132, 208, 220, .18);
  text-align: left;
  position: relative;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.price-card[data-accent="yellow"] { border-color: rgba(245, 197, 24, .55); }
.price-card[data-accent="coral"]  { border-color: rgba(232, 71, 89, .55); }
.price-card[data-accent="cyan"]   { border-color: rgba(91, 184, 199, .55); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }

.price-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}
.price-size {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 22px;
  letter-spacing: .04em;
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.price-amount span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-mute);
  margin-left: 4px;
}
.price-alt { font-size: 13.5px; color: var(--ink-soft); }

.price-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-mute);
  font-style: italic;
}

@media (max-width: 980px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .price-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-card {
  padding: 56px 56px 52px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 64, 96, .8) 0%, rgba(8, 35, 62, .8) 100%);
  border: 1px solid rgba(132, 208, 220, .25);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(245,197,24,.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.contact-card::after {
  content: "";
  position: absolute;
  bottom: -50%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(232,71,89,.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.contact-text { position: relative; z-index: 1; flex: 1; min-width: 0; }
.contact-text h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 8px 0 12px;
}
.contact-text p { color: var(--ink-soft); max-width: 50ch; }
.contact-actions { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .contact-card { flex-direction: column; align-items: stretch; padding: 36px 24px; text-align: center; }
  .contact-text p { margin: 0 auto; }
  .contact-actions { flex-direction: column; width: 100%; }
  .contact-actions .btn { width: 100%; justify-content: center; }
  .contact-actions .btn span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* =========================================================
   FOOTER
   ========================================================= */
}
.contact-text p { color: var(--ink-soft); max-width: 50ch; }
.contact-actions { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .contact-card { flex-direction: column; align-items: flex-start; padding: 36px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 50px 24px 40px;
  border-top: 1px solid rgba(132, 208, 220, .12);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.footer-brand .brand-text { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--white); }
.footer-brand p { font-size: 13px; color: var(--ink-mute); margin-top: 4px; }
.footer-meta p { font-size: 12.5px; color: var(--ink-mute); }

@media (max-width: 720px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
