/* =========================================================
   PlasmaDtect — Design System
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #0B1B2B;
  --ink-2: #0F2438;
  --navy: #071521;
  --slate: #475569;
  --slate-2: #64748b;
  --mist: #f5f9fb;
  --mist-2: #eef4f8;
  --line: #e2ecf2;
  --white: #ffffff;

  --teal: #14B8A6;
  --teal-bright: #2DD4BF;
  --sky: #38BDF8;
  --indigo: #6366F1;
  --rose: #FF4D7D;
  --rose-deep: #e11d63;

  --grad-brand: linear-gradient(120deg, #2DD4BF 0%, #38BDF8 45%, #6366F1 100%);
  --grad-plasma: linear-gradient(120deg, #FF4D7D 0%, #6366F1 100%);
  --grad-text: linear-gradient(120deg, #2DD4BF 0%, #38BDF8 50%, #818cf8 100%);

  --shadow-sm: 0 2px 8px rgba(11,27,43,.06);
  --shadow: 0 14px 40px rgba(11,27,43,.10);
  --shadow-lg: 0 30px 70px rgba(11,27,43,.16);
  --shadow-glow: 0 20px 60px rgba(56,189,248,.28);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--slate); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.text-grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section { padding: 96px 0; }
.section--tight { padding: 70px 0; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.lede { font-size: 1.18rem; color: var(--slate); max-width: 720px; }

/* Eyebrow / pill */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal); padding: 7px 15px; border-radius: 100px;
  background: rgba(20,184,166,.09); border: 1px solid rgba(20,184,166,.2);
}
.eyebrow--light { color: #7ff0e2; background: rgba(45,212,191,.12); border-color: rgba(45,212,191,.28); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(20,184,166,.18); }
.eyebrow--light .dot { background: var(--teal-bright); box-shadow: 0 0 0 4px rgba(45,212,191,.22); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 100px; cursor: pointer; border: 0;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-brand); color: #04222b; box-shadow: var(--shadow-glow); background-size: 160% 160%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 70px rgba(56,189,248,.4); background-position: 100% 50%; }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--white); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-3px); }

/* =================== Header =================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all .35s var(--ease);
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(11,27,43,.07), var(--shadow-sm);
  padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 42px; height: 42px; transition: transform .4s var(--ease); }
.brand:hover svg { transform: rotate(-8deg) scale(1.06); }
.brand-name { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-name .d { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.site-header:not(.scrolled).on-dark .brand-name { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: 'Sora', sans-serif; font-weight: 500; font-size: .95rem;
  padding: 9px 14px; border-radius: 100px; color: var(--ink-2);
  transition: all .25s var(--ease); position: relative; white-space: nowrap;
}
.site-header:not(.scrolled).on-dark .nav-links a { color: rgba(255,255,255,.82); }
.nav-links a:hover { color: var(--teal); background: rgba(20,184,166,.08); }
.site-header:not(.scrolled).on-dark .nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-links a.active { color: var(--teal); }
.site-header:not(.scrolled).on-dark .nav-links a.active { color: var(--teal-bright); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 22px; font-size: .92rem; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.site-header:not(.scrolled).on-dark .burger span { background: #fff; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================== Hero =================== */
.hero {
  position: relative; padding: 190px 0 120px; overflow: hidden;
  background: radial-gradient(1200px 700px at 75% -10%, #10243a 0%, transparent 60%), linear-gradient(160deg, #071521 0%, #0B1B2B 55%, #0d2238 100%);
  color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 38px 38px; opacity: .6; pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; pointer-events: none; }
.orb-1 { width: 460px; height: 460px; background: radial-gradient(circle, #2DD4BF, transparent 70%); top: -120px; right: -80px; }
.orb-2 { width: 420px; height: 420px; background: radial-gradient(circle, #6366F1, transparent 70%); bottom: -160px; left: -120px; opacity: .4; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #FF4D7D, transparent 70%); top: 40%; right: 28%; opacity: .22; }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; margin: 22px 0 0; }
.hero h1 .text-grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { color: rgba(255,255,255,.74); font-size: 1.22rem; max-width: 560px; margin: 22px 0 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 46px; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2.1rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat .lbl { font-size: .86rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* Hero visual — DNA / molecule card */
.hero-visual { position: relative; display: flex; justify-content: center; }
.glass-card {
  position: relative; width: 100%; max-width: 420px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl); padding: 30px; backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}
.float-badge {
  position: absolute; background: rgba(255,255,255,.96); color: var(--ink);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 600;
  font-family: 'Sora', sans-serif;
}
.float-badge .fb-icon { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; flex: none; }
.fb-1 { top: 28px; left: -28px; animation: floaty 5s ease-in-out infinite; }
.fb-2 { bottom: 40px; right: -26px; animation: floaty 5s ease-in-out infinite 1.4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* DNA animation */
.dna { width: 100%; height: 320px; }
.dna .rung { animation: pulseRung 3s ease-in-out infinite; }

/* marquee logos / trust */
.trust { padding: 34px 0; border-top: 1px solid rgba(255,255,255,.08); margin-top: 60px; }
.trust .wrap { position: relative; z-index: 2; }
.trust-label { text-align: center; color: rgba(255,255,255,.5); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-family: 'Sora', sans-serif; margin-bottom: 20px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px 24px; justify-content: center; align-items: center; }
.trust-row span { color: rgba(255,255,255,.7); font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem; }
.logo-chip {
  height: 82px; background: #fff; border-radius: 16px; padding: 14px 26px;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.logo-chip:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,.26); }
.logo-chip img { max-height: 52px; max-width: 196px; width: auto; height: auto; display: block; }
@media (max-width: 760px) {
  .logo-chip { height: 64px; padding: 10px 16px; border-radius: 12px; }
  .logo-chip img { max-height: 42px; max-width: 132px; }
}

/* =================== Section heading =================== */
.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; }
.sec-head h2 { margin: 16px 0 14px; }

/* =================== Cards grid =================== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(20,184,166,.35); }
.card .ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-brand); color: #04222b; margin-bottom: 18px; box-shadow: 0 10px 26px rgba(56,189,248,.28);
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .98rem; }

.card--soft { background: var(--mist); border-color: transparent; }
.card--plasma .ic { background: var(--grad-plasma); color: #fff; box-shadow: 0 10px 26px rgba(255,77,125,.3); }

/* feature list with check */
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.02rem; color: var(--ink-2); }
.checklist .ck { flex: none; width: 26px; height: 26px; border-radius: 8px; background: rgba(20,184,166,.12); color: var(--teal); display: grid; place-items: center; margin-top: 2px; }
.checklist .ck svg { width: 15px; height: 15px; }

/* =================== Cancers =================== */
.cancer-card { padding: 30px; border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff; transition: all .4s var(--ease); position: relative; overflow: hidden; }
.cancer-card::after { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.cancer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cancer-card:hover::after { transform: scaleX(1); }
.cancer-card .tag { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--teal); font-size: .8rem; letter-spacing: .08em; }
.cancer-card h3 { margin: 6px 0 10px; }

/* =================== Workflow =================== */
.flow { display: grid; gap: 0; max-width: 860px; margin: 0 auto; }
.flow-step {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px; position: relative; padding-bottom: 36px;
}
.flow-step:last-child { padding-bottom: 0; }
.flow-step::before {
  content: ''; position: absolute; left: 31px; top: 64px; bottom: -4px; width: 2px;
  background: linear-gradient(var(--teal), var(--indigo)); opacity: .35;
}
.flow-step:last-child::before { display: none; }
.flow-num {
  width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.4rem; color: #fff;
  background: var(--grad-brand); box-shadow: var(--shadow-glow); position: relative; z-index: 2;
}
.flow-body { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 26px; box-shadow: var(--shadow-sm); transition: all .4s var(--ease); }
.flow-body:hover { transform: translateX(6px); box-shadow: var(--shadow); border-color: rgba(20,184,166,.3); }
.flow-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.flow-endpoint {
  display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap;
  background: var(--grad-brand); color: #04222b; border-radius: var(--r-lg); padding: 26px 32px; margin: 8px auto 0; max-width: 860px;
  font-family: 'Sora', sans-serif; font-weight: 700; box-shadow: var(--shadow-glow);
}
.flow-endpoint .big { font-size: 1.3rem; }

/* =================== Dark band =================== */
.band-dark { background: linear-gradient(160deg, #071521, #0d2238); color: #fff; position: relative; overflow: hidden; }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark p { color: rgba(255,255,255,.72); }
.band-dark .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); }
.band-dark .card:hover { border-color: rgba(45,212,191,.4); background: rgba(255,255,255,.06); }
.band-dark .card p { color: rgba(255,255,255,.7); }
.band-dark .mesh { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; pointer-events: none; }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--r-xl); overflow: hidden; position: relative; min-height: 380px;
  background: linear-gradient(150deg, #0d2238, #123150); box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.media-illu { width: 100%; height: 100%; }

/* stat band */
.stat-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-band .item { text-align: center; padding: 18px; }
.stat-band .num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(2rem,4vw,2.8rem); background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-band .lbl { color: rgba(255,255,255,.66); font-size: .92rem; margin-top: 4px; }

/* =================== Team =================== */
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: all .4s var(--ease); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-photo { padding: 20px; position: relative; background: linear-gradient(155deg, #eff5f8 0%, #e3edf3 100%); }
.team-frame {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 18px; overflow: hidden;
  border: 4px solid #fff; box-shadow: 0 16px 36px rgba(11,27,43,.18);
  position: relative; background: #0d2238;
}
.team-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; transition: transform .6s var(--ease); }
.team-card:hover .team-frame img { transform: scale(1.06); }
.team-frame .initials {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 3.2rem; color: rgba(255,255,255,.95); letter-spacing: .02em;
}
.team-info { padding: 22px 24px 26px; }
.team-info .role { color: var(--teal); font-family: 'Sora', sans-serif; font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.team-info h3 { font-size: 1.25rem; margin: 6px 0 10px; }
.team-info p { font-size: .94rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.team-tags span { font-size: .74rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; background: var(--mist-2); color: var(--slate); font-family: 'Sora', sans-serif; }

/* =================== Page hero (inner pages) =================== */
.page-hero {
  position: relative; padding: 170px 0 84px; overflow: hidden;
  background: radial-gradient(900px 500px at 80% -20%, #10243a 0%, transparent 60%), linear-gradient(160deg, #071521, #0d2238);
  color: #fff;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0); background-size: 38px 38px; opacity: .6; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin: 18px 0 16px; max-width: 880px; }
.page-hero p { color: rgba(255,255,255,.74); max-width: 680px; font-size: 1.15rem; }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.55); font-family: 'Sora', sans-serif; }
.crumbs a:hover { color: var(--teal-bright); }

/* =================== CTA band =================== */
.cta-band { position: relative; overflow: hidden; }
.cta-box {
  background: var(--grad-brand); border-radius: var(--r-xl); padding: 64px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.18) 1px, transparent 0); background-size: 32px 32px; opacity: .5; }
.cta-box h2 { color: #04222b; position: relative; }
.cta-box p { color: rgba(4,34,43,.78); position: relative; max-width: 620px; margin: 14px auto 28px; font-weight: 500; }
.cta-box .btn-dark { position: relative; }

/* =================== Footer =================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,.66); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin: 18px 0 0; font-size: .95rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-family: 'Sora', sans-serif; }
.footer-col a { display: block; padding: 6px 0; font-size: .95rem; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--teal-bright); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 54px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }
.footer-disclaimer { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 10px; max-width: 640px; }

/* =================== Forms =================== */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: 'Sora', sans-serif; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--ink-2); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--ink); background: var(--mist); transition: all .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(20,184,166,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-info-item .ci { width: 48px; height: 48px; border-radius: 14px; background: rgba(20,184,166,.1); color: var(--teal); display: grid; place-items: center; flex: none; }
.contact-info-item h4 { font-size: 1.02rem; margin-bottom: 2px; }
.contact-info-item p { font-size: .95rem; }

/* email CTA */
.email-cta { text-align: center; }
.email-pill {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  color: #04222b; background: var(--grad-brand); background-size: 160% 160%;
  padding: 16px 30px; border-radius: 100px; box-shadow: var(--shadow-glow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-position .4s var(--ease);
}
.email-pill:hover { transform: translateY(-3px); box-shadow: 0 26px 70px rgba(56,189,248,.4); background-position: 100% 50%; }
.email-pill .ep-ic { display: grid; place-items: center; }
.email-loc { color: rgba(255,255,255,.6); font-size: .95rem; margin-top: 18px; font-family: 'Sora', sans-serif; }

/* job cards */
.job-card { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 28px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; transition: all .35s var(--ease); flex-wrap: wrap; }
.job-card:hover { border-color: rgba(20,184,166,.4); box-shadow: var(--shadow); transform: translateX(4px); }
.job-card .meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.job-card .meta span { font-size: .8rem; font-weight: 600; padding: 4px 11px; border-radius: 100px; background: var(--mist-2); color: var(--slate); font-family: 'Sora', sans-serif; }

/* =================== Reveal animation =================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* =================== Responsive =================== */
@media (max-width: 980px) {
  .hero-grid, .split, .split--reverse .split-media { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-band { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 16px; right: 16px;
    background: #fff; border-radius: var(--r); padding: 14px; box-shadow: var(--shadow-lg); gap: 4px; margin-top: 10px;
    border: 1px solid var(--line);
  }
  .site-header.on-dark .nav-links.mobile-open a,
  .nav-links.mobile-open a { color: var(--ink-2); padding: 12px 16px; white-space: normal; }
  .site-header.on-dark .nav-links.mobile-open a:hover,
  .nav-links.mobile-open a:hover { color: var(--teal); background: rgba(20,184,166,.08); }
  .site-header.on-dark .nav-links.mobile-open a.active,
  .nav-links.mobile-open a.active { color: var(--teal); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .grid-2, .grid-3, .grid-4, .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .cta-box { padding: 40px 24px; }
  .flow-step { grid-template-columns: 52px 1fr; gap: 16px; }
  .flow-num { width: 52px; height: 52px; border-radius: 16px; font-size: 1.2rem; }
  .flow-step::before { left: 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
