/* ============================================================
   JOBSNIPS — Global CSS
   Brand variables, resets, typography, shared utilities
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@1,600;1,700&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Colors */
  --bg:          #0B1320;
  --bg2:         #0F1C2E;
  --bg3:         #142238;
  --cyan:        #29ABE2;
  --cyan-deep:   #0D6DA8;
  --cream:       #EBE8E1;
  --white:       #FFFFFF;
  --muted:       rgba(255, 255, 255, 0.4);
  --border:      rgba(41, 171, 226, 0.18);
  --border-sub:  rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad: clamp(64px, 8vw, 120px);
  --container:   1200px;
  --gutter:      clamp(20px, 5vw, 72px);

  /* Transitions */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ── TYPOGRAPHY SCALE ──────────────────────────────────────── */

/* Display — hero headlines */
.display-xl {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -4px;
}

.display-lg {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -3px;
}

.display-md {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -2px;
}

/* Script accent — Playfair italic, one word only */
.script {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--cyan);
}

/* Cyan dot — brand punctuation */
.dot {
  color: var(--cyan);
}

/* Section label — eyebrow above headings */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--cyan);
  text-transform: uppercase;
}

.label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--cyan);
  flex-shrink: 0;
}

/* Body text */
.body-lg {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.body-md {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.body-sm {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), opacity 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg);
}

.btn-primary:hover {
  background: #3dbef5;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(41, 171, 226, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(41, 171, 226, 0.4);
}

.btn-outline:hover {
  background: rgba(41, 171, 226, 0.08);
  border-color: var(--cyan);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-sub);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── LAYOUT UTILITIES ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border-sub);
}

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.card:hover {
  border-color: rgba(41, 171, 226, 0.4);
  transform: translateY(-2px);
}

/* ── CYAN GLOW EFFECT ──────────────────────────────────────── */
.glow {
  box-shadow: 0 0 40px rgba(41, 171, 226, 0.12);
}

.glow-strong {
  box-shadow: 0 0 60px rgba(41, 171, 226, 0.2), 0 0 120px rgba(41, 171, 226, 0.08);
}

/* ── GHOST WATERMARK ───────────────────────────────────────── */
.watermark {
  position: absolute;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 900;
  color: rgba(41, 171, 226, 0.035);
  letter-spacing: -10px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── BADGE / PILL ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(41, 171, 226, 0.1);
  border: 1px solid rgba(41, 171, 226, 0.25);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── PRICE TAG ─────────────────────────────────────────────── */
.price {
  font-size: 42px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -2px;
  line-height: 1;
}

.price-sm {
  font-size: 28px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -1px;
}

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(41, 171, 226, 0.3);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}

/* ── SELECTION ─────────────────────────────────────────────── */
::selection {
  background: rgba(41, 171, 226, 0.25);
  color: var(--white);
}

/* ── ANIMATIONS (base) ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(41, 171, 226, 0.1); }
  50%       { box-shadow: 0 0 40px rgba(41, 171, 226, 0.25); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotateY(-6deg) rotateX(3deg); }
  50%       { transform: translateY(-12px) rotateY(-6deg) rotateX(3deg); }
}

.animate-fade-up {
  animation: fadeUp 0.8s var(--ease) both;
}

.animate-fade-in {
  animation: fadeIn 0.6s var(--ease) both;
}

/* ── RESPONSIVE HELPERS ────────────────────────────────────── */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }

  .display-xl { letter-spacing: -2px; }
  .display-lg { letter-spacing: -1.5px; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* ============================================================
   JOBSNIPS — Navigation CSS
   Sticky, transparent → dark on scroll, mobile hamburger
   ============================================================ */

/* ── NAV WRAPPER ───────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              border-color 0.4s var(--ease);
  /* backdrop-filter excluded from transition — causes iOS Safari rendering bugs */
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(11, 19, 32, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── LOGO ──────────────────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-icon {
  flex-shrink: 0;
  display: block;
}

/* ── Logo icon ────────────────────────────────────────────── */
/* Transparent bg; white strokes always visible on dark nav   */
.nav-logo-icon .logo-bg        { fill: transparent; }
.nav-logo-icon .logo-w-stroke  { stroke: #ffffff; transition: stroke 0.35s ease; }
.nav-logo-icon .logo-w-fill    { fill:   #ffffff;  transition: fill   0.35s ease; }

/* ── Logo text + tagline ───────────────────────────────────── */
/* ── Cream-hero pages: all branding goes dark on load ─────── */
/* Applied automatically by nav.js luminance detection,       */
/* and as a hardcoded fallback on contact + careers pages.    */
#nav.nav-light .nav-logo-icon .logo-w-stroke { stroke: #0B1320; }
#nav.nav-light .nav-logo-icon .logo-w-fill   { fill:   #0B1320; }
#nav.nav-light .nav-logo-text                { color: #0B1320;  }
#nav.nav-light .nav-logo-text span           { color: var(--cyan); } /* keep cyan on cream */
#nav.nav-light .nav-logo-tagline             { color: rgba(11, 19, 32, 0.5); }

/* ── On scroll: nav gains solid dark background → back to white ── */
#nav.nav-light.scrolled .nav-logo-icon .logo-w-stroke { stroke: #ffffff; }
#nav.nav-light.scrolled .nav-logo-icon .logo-w-fill   { fill:   #ffffff; }
#nav.nav-light.scrolled .nav-logo-text                { color: #ffffff;  }
#nav.nav-light.scrolled .nav-logo-text span           { color: var(--cyan); }
#nav.nav-light.scrolled .nav-logo-tagline             { color: var(--muted); }

.nav-logo-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: color 0.35s ease;
}

.nav-logo-text span {
  color: var(--cyan);
  transition: color 0.35s ease;
}

.nav-logo-tagline {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.5px;
  line-height: 1;
  margin-top: 1px;
  transition: color 0.35s ease;
}

/* ── DESKTOP LINKS ─────────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.1px;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--cyan);
}

/* ── NEW badge on nav links ─────────────────────────────────── */
.nav-new-badge {
  display: inline-flex;
  align-items: center;
  background: #f97316;
  color: #ffffff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 4px;
  margin-left: 5px;
  vertical-align: middle;
  line-height: 1.4;
  position: relative;
  top: -1px;
}

/* ── NAV ACTIONS ───────────────────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-score-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  padding: 8px 16px;
  border: 1px solid rgba(41, 171, 226, 0.3);
  border-radius: 8px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), opacity 0.25s var(--ease);
  letter-spacing: 0.2px;
}

.nav-score-btn:hover {
  background: rgba(41, 171, 226, 0.08);
  border-color: var(--cyan);
}

.nav-cta-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--bg);
  background: var(--cyan);
  padding: 9px 20px;
  border-radius: 8px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), opacity 0.25s var(--ease);
  letter-spacing: 0.2px;
}

.nav-cta-btn:hover {
  background: #3dbef5;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(41, 171, 226, 0.3);
}

/* ── HAMBURGER (mobile) ────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU DRAWER ────────────────────────────────────── */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px var(--gutter) 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  border-left: 1px solid var(--border);
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-link {
  font-size: 28px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-sub);
  letter-spacing: -1px;
  transition: color 0.2s;
}

.nav-mobile-link:hover {
  color: var(--white);
}

.nav-mobile-link span {
  color: var(--cyan);
}

.nav-mobile-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── NEWSLETTER POPUP (injected by nav.js) ──────────────────── */
.nl-ov {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.nl-ov.nl-visible { opacity: 1; }
.nl-ov[hidden]    { display: none !important; }

.nl-card {
  background: var(--bg2);
  border: 1px solid rgba(41,171,226,0.2);
  border-radius: 24px;
  padding: 48px 44px;
  max-width: 460px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55),
              0 0 0 1px rgba(41,171,226,0.08);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.28s var(--ease);
}
.nl-ov.nl-visible .nl-card { transform: translateY(0) scale(1); }

.nl-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  transition: background 0.15s, color 0.15s;
}
.nl-close:hover { background: rgba(255,255,255,0.1); color: var(--cream); }

.nl-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 12px 0 10px;
}
.nl-sub {
  font-size: 14px;
  color: rgba(235,232,225,0.5);
  margin-bottom: 28px;
  line-height: 1.6;
}
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nl-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.nl-input::placeholder { color: rgba(235,232,225,0.3); }
.nl-input:focus         { border-color: rgba(41,171,226,0.5); }
.nl-submit {
  background: var(--cyan);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nl-submit:hover {
  background: #3dbef5;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(41,171,226,0.3);
}
.nl-submit.nl-success { background: #22c55e; }
.nl-note {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(235,232,225,0.24);
}

/* ── ABOUT DROPDOWN ────────────────────────────────────────── */
.nav-dd-wrap {
  position: relative;
  display: inline-flex;
}

/* Trigger button — inherits all .nav-link visuals */
.nav-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.1px;
  transition: color 0.2s, background 0.2s;
}
.nav-dd-trigger:hover,
.nav-dd-wrap:hover .nav-dd-trigger {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-dd-trigger.active { color: var(--cyan); }

/* Chevron arrow */
.nav-dd-arrow {
  flex-shrink: 0;
  transition: transform 0.22s var(--ease);
  margin-top: 1px;
}
.nav-dd-wrap:hover .nav-dd-arrow,
.nav-dd-wrap.dd-open .nav-dd-arrow {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dd-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 196px;
  background: rgba(11,19,32,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), top 0.2s var(--ease);
}
/* Small caret pointer */
.nav-dd-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: rgba(11,19,32,0.97);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
/* Visible on hover OR open class */
.nav-dd-wrap:hover .nav-dd-menu,
.nav-dd-wrap.dd-open .nav-dd-menu {
  opacity: 1;
  pointer-events: auto;
  top: calc(100% + 6px);
}

/* ── Wide two-column dropdown ───────────────────────────────── */
.nav-dd-menu--wide {
  min-width: 410px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  padding: 10px;
}
.nav-dd-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 2px;
}
.nav-dd-vsep {
  background: rgba(255,255,255,0.07);
  width: 1px;
  margin: 0 4px;
  align-self: stretch;
}
.nav-dd-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 5px 8px;
}
/* "Soon" badge */
.nav-dd-soon {
  display: inline-flex;
  align-items: center;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.35);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}
/* Newsletter item button */
.nav-dd-nl-btn {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
}
.nav-dd-nl-badge {
  display: inline-flex;
  align-items: center;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: rgba(41,171,226,0.12);
  color: var(--cyan);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  border: 1px solid rgba(41,171,226,0.22);
  flex-shrink: 0;
}

/* Mobile newsletter button */
.nav-mobile-nl-btn {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

/* Dropdown items */
.nav-dd-item {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 10px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.nav-dd-item:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.nav-dd-item--active { color: var(--cyan); }
.nav-dd-item--active:hover { color: var(--cyan); }

/* ── MOBILE NAV — About group ───────────────────────────────── */
.nav-mobile-group {
  border-bottom: 1px solid var(--border-sub);
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.nav-mobile-group-lbl {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.28);
  padding: 14px 0 6px;
}
.nav-mobile-sub {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  padding: 9px 0 9px 12px;
  letter-spacing: -0.5px;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-mobile-sub:hover { color: var(--white); }
.nav-mobile-sub--active { color: var(--cyan); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-score-btn { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 480px) {
  .nav-logo-tagline { display: none; }
}
/* ============================================================
   JOBSNIPS — Hero Scroll Animation CSS
   5-stage scroll journey revolving around the resume document
   ============================================================ */

/* ── HERO WRAPPER ──────────────────────────────────────────── */
#hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

/* Pinned scroll container — JS sets height dynamically */
.hero-scroll-container {
  position: relative;
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── BACKGROUND LAYERS ─────────────────────────────────────── */
.hero-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(41, 171, 226, 0.08) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41, 171, 226, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 171, 226, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── PARTICLE CANVAS ───────────────────────────────────────── */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── WATERMARK ─────────────────────────────────────────────── */
.hero-watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 900;
  color: rgba(41, 171, 226, 0.03);
  letter-spacing: -12px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── CONTENT LAYOUT ────────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── LEFT: TEXT CONTENT ────────────────────────────────────── */
.hero-text {
  position: relative;
}

.hero-eyebrow {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-headline {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-headline .line-1 {
  display: block;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 900;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -4px;
}

.hero-headline .line-2 {
  display: block;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -3px;
  margin-top: 4px;
}

.hero-sub {
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-bnpl {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  opacity: 0;
}

.hero-bnpl-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

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

.bnpl-logo {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* ── RIGHT: RESUME DOCUMENT ────────────────────────────────── */
.hero-resume-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  perspective: 1200px;
  opacity: 0;
  /* pre-built glow layer — toggled via class, no per-frame filter cost */
  transition: box-shadow 0.8s ease;
}

.hero-resume-scene.hero-scene-glow {
  box-shadow: 0 0 60px rgba(41, 171, 226, 0.25);
}

.resume-wrapper {
  position: relative;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
}

/* Pause float animation while user is scrubbing scroll stages */
.resume-wrapper.float-paused {
  animation-play-state: paused;
}

/* The resume document itself */
.resume-doc {
  width: 280px;
  min-height: 380px;
  background: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow:
    0 20px 50px rgba(11, 19, 32, 0.18),
    0 4px 16px rgba(11, 19, 32, 0.10),
    0 0 0 1px rgba(11, 19, 32, 0.06);
  position: relative;
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(4deg);
  /* transition: transform removed — GSAP owns all transforms to prevent scrub jitter */
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Cyan glow border that pulses during animation */
.resume-doc::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(41, 171, 226, 0), rgba(41, 171, 226, 0.6), rgba(41, 171, 226, 0));
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
  z-index: -1;
}

.resume-doc.glowing::after {
  opacity: 1;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Resume internal sections */
.resume-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0B1320;
}

.resume-name {
  font-size: 13px;
  font-weight: 700;
  color: #0B1320;
  letter-spacing: -0.3px;
  margin-bottom: 3px;
}

.resume-contact {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.resume-contact-item {
  font-size: 7px;
  color: #666;
}

.resume-section {
  margin-bottom: 12px;
}

.resume-section-title {
  font-size: 7px;
  font-weight: 700;
  color: #29ABE2;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(41, 171, 226, 0.3);
}

.resume-line {
  height: 5px;
  background: #e8e8e8;
  border-radius: 3px;
  margin-bottom: 4px;
}

.resume-line.highlight {
  background: rgba(41, 171, 226, 0.5);
}

.resume-line.strong {
  background: rgba(41, 171, 226, 0.8);
}

/* Zoom highlight overlay */
.resume-zoom-highlight {
  position: absolute;
  border: 2px solid rgba(41, 171, 226, 0.7);
  border-radius: 4px;
  background: rgba(41, 171, 226, 0.04);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 10;
}

/* ── CALLOUT CARDS (appear during zoom stages) ─────────────── */
.hero-callout {
  position: absolute;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 180px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s var(--ease);
  pointer-events: none;
  z-index: 20;
}

.hero-callout.visible {
  opacity: 1;
  transform: translateX(0);
}

.hero-callout::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--cyan);
  border-radius: 0 2px 2px 0;
}

.callout-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.callout-stat {
  font-size: 22px;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -1px;
  line-height: 1;
}

.callout-stat span {
  color: var(--cyan);
}

.callout-text {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 3px;
}

/* Positioned callouts */
.callout-ats    { top: 20%; right: -220px; }
.callout-score  { bottom: 25%; right: -220px; }
.callout-kw     { top: 30%; left: -210px; }
.callout-done   { bottom: 20%; left: -210px; }

/* ── STAGE TEXT OVERLAY ────────────────────────────────────── */
/* Text that replaces headline copy during each scroll stage */
.hero-stage-copy {
  position: absolute;
  left: 0;
  right: 50%;
  top: 50%;
  transform: translateY(-50%);
  padding-left: var(--gutter);
  opacity: 0;
  pointer-events: none;
}

/* ── SCROLL INDICATOR ──────────────────────────────────────── */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transition: opacity 0.4s;
  z-index: 20;
}

.hero-scroll-hint.hidden {
  opacity: 0;
}

.scroll-hint-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.5; }
}

/* ── PROGRESS DOTS ─────────────────────────────────────────── */
.hero-progress {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.progress-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(41, 171, 226, 0.5);
  transform: scale(1.4);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-resume-scene {
    height: 320px;
  }

  .resume-doc {
    width: 200px;
    padding: 20px 16px;
  }

  .callout-ats, .callout-score, .callout-kw, .callout-done {
    display: none;
  }

  .hero-progress { display: none; }

  .hero-actions {
    justify-content: center;
  }

  .hero-bnpl {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-headline .line-1 { letter-spacing: -2px; }
  .hero-headline .line-2 { letter-spacing: -1.5px; }

  .resume-doc {
    width: 160px;
    min-height: 220px;
    padding: 14px 12px;
  }
}

/* ── CREAM HERO DESIGN ─────────────────────────────────────── */
/* Hero section uses cream/warm background — override dark defaults */

#hero,
.hero-stage {
  background: #F3EFE6;
}

/* Hide dark-bg atmospheric layers on cream */
.hero-bg-glow,
.hero-grid-lines,
#hero-particles {
  display: none;
}

/* Headline: dark navy on cream (overrides dark-design cream color) */
.hero-headline .line-1,
.hero-headline .line-2 {
  color: #0B1320;
}

/* Body copy: dark muted on cream */
.hero-sub {
  color: rgba(11, 19, 32, 0.62);
}

/* Progress dots: visible on cream bg */
.hero-progress .progress-dot {
  background: rgba(11, 19, 32, 0.15);
}

/* Scroll hint text: dark on cream */
.scroll-hint-text {
  color: rgba(11, 19, 32, 0.45);
}

/* BNPL logos: dark border/text on cream */
.bnpl-logo {
  color: rgba(11, 19, 32, 0.45);
  border-color: rgba(11, 19, 32, 0.12);
}

/* "JS" watermark: slightly visible dark navy on cream (default is 3% cyan, invisible) */
.hero-watermark {
  color: rgba(11, 19, 32, 0.07);
}

/* "Pay over time:" label: dark muted on cream (default is white/muted = invisible) */
.hero-bnpl-label {
  color: rgba(11, 19, 32, 0.45);
}

/* Stage copy headlines: dark navy on cream (display-lg defaults to var(--cream)) */
.hero-stage-copy .display-lg {
  color: #0B1320;
}

/* Stage copy body text: dark muted on cream (body-md defaults to white/55%) */
.hero-stage-copy .body-md {
  color: rgba(11, 19, 32, 0.62);
}

/* ── HIRED ghost watermark (cream bg: very faint navy) ── */
.hero-hired-ghost {
  position: absolute;
  bottom: -20px;
  right: -12px;
  font-size: clamp(140px, 20vw, 340px);
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  color: rgba(11, 19, 32, 0.06);
  letter-spacing: -8px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}


/* ── MOBILE (≤768px): disable scroll pin, show static hero ── */
@media (max-width: 768px) {
  /* Remove sticky pin — hero flows naturally in the page */
  .hero-stage {
    position: relative !important;
    height: auto !important;
    min-height: 100vh;
    padding: 70px 0 50px;
    overflow: visible !important;
  }

  /* Tighter gap between text and resume card */
  .hero-content {
    gap: 24px;
  }

  /* Shorter resume scene on mobile */
  .hero-resume-scene {
    height: 240px;
  }

  /* Hide scroll-animation stage overlays — not used on mobile */
  .hero-stage-copy {
    display: none !important;
  }

  /* Smaller HIRED ghost — clamp(140px) is too large at 375px */
  .hero-hired-ghost {
    font-size: clamp(70px, 22vw, 120px);
  }

  /* Hide scroll indicator — no scroll animation on mobile */
  .hero-scroll-hint {
    display: none;
  }

  /* Center-constrain body copy under centered headline */
  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Reduce headline line-height for tighter stack */
  .hero-headline .line-1 { line-height: 1; }
  .hero-headline .line-2 { line-height: 1; }

  /* Kill any JS-injected 600vh scroll height */
  .hero-scroll-container {
    height: auto !important;
  }
  /* Collapse GSAP pin-spacer to prevent giant blank dark sections */
  .hero-scroll-container .gsap-pin-spacer,
  .gsap-pin-spacer {
    height: auto !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
  }
}
/* ============================================================
   JOBSNIPS — Company Resume Section
   Full-viewport immersive scroll experience
   ============================================================ */

#company-resume {
  position: relative;
  background: var(--bg);
}

.cr-scroll-container { position: relative; }

.cr-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  /* GPU layer promotion via will-change — no transform here as it breaks sticky */
  will-change: contents;
}

/* ── INTRO COPY (left side, stage 0 only) ── */
.cr-intro-copy {
  position: absolute;
  left: 20vw;
  top: 50%;
  transform: translateY(-50%);
  max-width: 460px;
  z-index: 20;
  pointer-events: none;
}

/* Bigger text inside intro copy */
.cr-intro-copy .display-md {
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.07;
}

.cr-intro-copy .label {
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.cr-intro-copy .body-md {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(235,232,225,0.6);
  margin-top: 22px !important;
}

/* ── RESUME SCENE — starts right half, expands to fill viewport ── */
.cr-doc-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
}

/* Full-screen overlay that the resume expands into */
.cr-fullscreen-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 42%, #131f35 0%, #0a1220 55%, #07101c 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}

/* ── THE RESUME DOCUMENT ── */
.cr-doc {
  width: 600px;
  min-height: 848px; /* A4 ratio: 600 × 1.414 = 848px */
  background: #ffffff;
  border-radius: 3px;
  padding: 44px 48px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06), 0 0 60px rgba(41,171,226,0.07);
  overflow: visible;
  position: relative;
  transform-origin: center center;
  will-change: transform, opacity;
  backface-visibility: hidden;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #1a1a1a;
  /* Start as a visible white thumbnail — zooms on scroll */
  transform: scale(0.52);
}

/* ── WHITE COVER (thumbnail state: clean white paper card) ── */
.cr-doc-cover {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 3px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cr-cover-inner {
  text-align: center;
  user-select: none;
}

.cr-cover-logo {
  font-family: 'Inter', sans-serif;
  font-size: 58px;   /* renders ~30px at scale 0.52 */
  font-weight: 900;
  color: #0B1320;
  letter-spacing: -2px;
  line-height: 1;
}

.cr-cover-logo span { color: #29ABE2; }

.cr-cover-divider {
  width: 64px;
  height: 3px;
  background: rgba(41,171,226,0.5);
  margin: 18px auto;
}

.cr-cover-label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;   /* renders ~9px at scale 0.52, clearly readable */
  font-weight: 700;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: rgba(11,19,32,0.35);
}

/* Logo banner shown before resume content loads in */
.cr-doc-logo-banner {
  display: none;
}
.cr-doc-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #0B1320;
  letter-spacing: -0.8px;
}
.cr-doc-logo-text span { color: #29ABE2; }
.cr-doc-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: #999;
  margin-top: 3px;
  font-style: italic;
  letter-spacing: 0.5px;
}
/* Placeholder lines shown before sections reveal */
.cr-doc-placeholder {
  display: none;
}
.cr-placeholder-line {
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
}
.cr-placeholder-line.short { width: 60%; }
.cr-placeholder-line.med   { width: 80%; }
.cr-placeholder-line.full  { width: 100%; }

/* ── RESUME HEADER ── */
.cr-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2.5px solid #0B1320;
}

.cr-company-name {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #0B1320;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.cr-company-name span { color: #29ABE2; }

.cr-company-tagline {
  font-size: 11px;
  color: #666;
  font-style: italic;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.cr-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cr-contact-item {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.cr-contact-sep {
  width: 1px;
  height: 10px;
  background: #ccc;
}

/* ── SECTION STRUCTURE ── */
.cr-section {
  margin-bottom: 20px;
  opacity: 0;   /* GSAP reveals each section individually */
}
.cr-section.cr-visible { opacity: 1; }

.cr-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 800;
  color: #29ABE2;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-bottom: 1.5px solid rgba(41,171,226,0.35);
  padding-bottom: 5px;
  margin-bottom: 12px;
}

/* ── SUMMARY ── */
.cr-summary-text {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  color: #333;
  line-height: 1.85;
  text-align: justify;
}

/* ── COMPETENCIES ── */
.cr-competencies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px 12px;
}

.cr-competency {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 6px;
  background: rgba(41,171,226,0.06);
  border-left: 2px solid rgba(41,171,226,0.5);
  border-radius: 0 3px 3px 0;
  white-space: nowrap;
}

/* ── EXPERIENCE — bad version ── */
.cr-exp-bad {
  position: relative;
}

.cr-exp-job-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.cr-exp-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #0B1320;
}

.cr-exp-date {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  color: #888;
  font-style: italic;
}

.cr-exp-org {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  color: #555;
  margin-bottom: 8px;
  font-style: italic;
}

/* ── EXPERIENCE SWAP: bad+good occupy the same vertical space ── */
.cr-exp-swap {
  position: relative;
  /* height is set to whichever child is taller — bad bullets are absolute,
     so the container height = cr-exp-good height naturally */
  min-height: 72px; /* fallback floor */
}

/* Bad bullets — first-person, poorly written */
.cr-bad-bullets {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cr-bad-bullet {
  font-family: 'Courier New', monospace;
  font-size: 8.5px;
  color: #b44;
  line-height: 1.6;
  padding-left: 12px;
  position: relative;
}
.cr-bad-bullet::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #c66;
}

/* ── REWRITE BADGE ── */
.cr-rewrite-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0B1320;
  color: #29ABE2;
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(-4px);
  position: absolute;
  top: 0;
  right: 0;
  white-space: nowrap;
  z-index: 5;
}
.cr-rewrite-badge .scissors { color: #29ABE2; }

/* ── EXPERIENCE — good version (after rewrite) ── */
.cr-exp-good {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.cr-exp-good.cr-visible { opacity: 1; transform: translateY(0); }

.cr-good-summary {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 8px;
  font-style: italic;
  padding: 6px 8px;
  background: rgba(41,171,226,0.04);
  border-left: 2px solid rgba(41,171,226,0.4);
}

.cr-good-bullets {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cr-good-bullet {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: #222;
  line-height: 1.6;
  padding-left: 12px;
  position: relative;
}
.cr-good-bullet::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #29ABE2;
  font-size: 8px;
}

.cr-good-bullet strong {
  color: #0B1320;
  font-weight: 700;
}

/* ── CREDENTIALS / AWARDS ── */
.cr-credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.cr-credential {
  padding: 8px 10px;
  background: rgba(41,171,226,0.04);
  border: 1px solid rgba(41,171,226,0.15);
  border-radius: 4px;
  text-align: center;
}

.cr-credential-num {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #29ABE2;
  letter-spacing: -0.5px;
  line-height: 1;
}

.cr-credential-label {
  font-family: 'Inter', sans-serif;
  font-size: 7px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

/* ══════════════════════════════════════════════
   PROGRESS SIDEBAR
   ══════════════════════════════════════════════ */
.cr-progress {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.cr-progress.cr-prog-visible {
  opacity: 1;
  pointer-events: auto;
}

.cr-prog-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-direction: row-reverse;
}

.cr-prog-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1.5px solid rgba(41,171,226,0.4);
  background: transparent;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease), opacity 0.35s var(--ease);
  flex-shrink: 0;
}

.cr-prog-item.cr-prog-active .cr-prog-dot {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 8px rgba(41,171,226,0.5);
  transform: scale(1.3);
}

.cr-prog-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}

.cr-prog-item.cr-prog-active .cr-prog-label { color: var(--cyan); }

/* chatbot wrap + corner button → see chatbot-character.css */

/* ── Responsive ── */
@media (max-width: 900px) {
  .cr-doc { width: 90vw; min-height: 0; padding: 28px 24px; }
  .cr-progress { display: none; }
  .cr-intro-copy { display: none; }
  .cr-doc-scene { width: 100%; }
}

/* ── MOBILE (≤768px): no scroll pin — show outcome scene statically ── */
@media (max-width: 768px) {
  /* Remove sticky — stage flows in normal document flow */
  .cr-stage {
    position: relative !important;
    height: auto !important;
    padding: 0;
  }

  /* Hide the resume document animation entirely */
  .cr-doc-scene,
  .cr-fullscreen-bg {
    display: none !important;
  }

  /* ── Kill any JS-injected 460vh scroll height ── */
  .cr-scroll-container {
    height: auto !important;
  }

  /* Collapse GSAP pin-spacer to prevent giant blank dark sections */
  .cr-scroll-container .gsap-pin-spacer {
    height: auto !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
  }

  /* Chatbot wrap: switch from absolute overlay to block layout */
  .cr-chatbot-wrap {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    padding: 60px 20px 40px;
    background: var(--bg) !important;
    opacity: 1 !important;
    clip-path: none !important;
    pointer-events: auto !important;
  }

  .cr-outcome-headline,
  .cr-compare-wrap,
  .cr-ready-text {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .cr-hired-underline {
    width: 100% !important;
  }

  .cr-chat-option {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}
/* ============================================================
   JOBSNIPS — Baymax-style Advisor + Professional Chat UI
   ============================================================ */

/* ── CHATBOT WRAP (full overlay, appears after resume morphs) ── */
.cr-chatbot-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  background: var(--bg);
}

.cr-chatbot-wrap.cr-chat-visible {
  pointer-events: auto;
}

/* ── SCENE: vertical stack, centered ── */
.cr-chat-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 0 var(--gutter);
}

/* ══════════════════════════════════════════════
   BAYMAX CHARACTER
   ══════════════════════════════════════════════ */
.cr-char-wrap {
  position: relative;
  width: 260px;
  height: 340px;
  flex-shrink: 0;
  transform-origin: bottom center;
  overflow: visible;
}

.cr-bay-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* ── Genie exit (to corner button) ── */
.cr-char-wrap.genie-exit {
  animation: genieExit 0.85s cubic-bezier(0.4, 0, 0.8, 1) forwards;
}

@keyframes genieExit {
  0%   { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); transform: translate(0,0) scale(1); opacity: 1; }
  12%  { clip-path: polygon(0% 0%, 100% 0%, 93% 100%, 7% 100%);  transform: translate(3vw,4vh) scale(0.93); opacity: 1; }
  30%  { clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 20% 100%); transform: translate(14vw,14vh) scale(0.68); opacity: 0.95; }
  50%  { clip-path: polygon(5% 0%, 95% 0%, 65% 100%, 35% 100%);  transform: translate(28vw,26vh) scale(0.40); opacity: 0.75; }
  68%  { clip-path: polygon(18% 0%, 82% 0%, 54% 100%, 46% 100%); transform: translate(40vw,36vh) scale(0.18); opacity: 0.4; }
  85%  { clip-path: polygon(35% 0%, 65% 0%, 51.5% 100%, 48.5% 100%); transform: translate(45vw,42vh) scale(0.06); opacity: 0.12; }
  100% { clip-path: polygon(48% 0%, 52% 0%, 50.5% 100%, 49.5% 100%); transform: translate(46vw,44vh) scale(0); opacity: 0; }
}

/* ── Body float ── */
.char-float-group {
  animation: charFloat 3.8s ease-in-out infinite;
}

@keyframes charFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── Eye blink ── */
.char-eye-l,
.char-eye-r {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: bayBlink 5.2s ease-in-out infinite;
}
.char-eye-r { animation-delay: 0.12s; }

@keyframes bayBlink {
  0%, 86%, 100% { transform: scaleY(1); }
  91%           { transform: scaleY(0.06); }
}

/* ══════════════════════════════════════════════
   CHAT BUBBLE
   ══════════════════════════════════════════════ */
.cr-chat-bubble {
  background: rgba(15, 28, 46, 0.92);
  border: 1px solid rgba(41, 171, 226, 0.18);
  border-radius: 18px;
  padding: 22px 28px 20px;
  max-width: 480px;
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease) 0.2s, transform 0.5s var(--ease) 0.2s;
  backdrop-filter: blur(12px);
}

.cr-chatbot-wrap.cr-chat-visible .cr-chat-bubble {
  opacity: 1;
  transform: translateY(0);
}

/* Cyan top bar */
.cr-chat-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan) 30%, var(--cyan) 70%, transparent);
  border-radius: 2px 2px 0 0;
}

.cr-chat-name {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cr-chat-greeting {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════════
   ACTION CARDS — 3 horizontal cards
   ══════════════════════════════════════════════ */
.cr-chat-options {
  display: flex;
  gap: 10px;
  max-width: 480px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.cr-chat-option {
  flex: 1;
  min-width: 130px;
  max-width: 152px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease),
              transform 0.22s var(--ease);
  opacity: 0;
  transform: translateY(16px);
}

.cr-chat-option.opt-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease),
              background 0.22s var(--ease), border-color 0.22s var(--ease),
              transform 0.22s var(--ease);
}

.cr-chat-option:hover {
  background: rgba(41, 171, 226, 0.1);
  border-color: rgba(41, 171, 226, 0.35);
  transform: translateY(-3px);
}

.cr-opt-icon {
  font-size: 22px;
  line-height: 1;
}

.cr-opt-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cr-opt-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.cr-opt-sub {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.2px;
}

.cr-opt-arrow {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 700;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.cr-chat-option:hover .cr-opt-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* ══════════════════════════════════════════════
   CORNER CHATBOT BUTTON
   ══════════════════════════════════════════════ */
#corner-chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.4) translateY(20px);
  transform-origin: bottom right;
}

#corner-chatbot.corner-visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  transition: opacity 0.5s var(--ease), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Floating suggestions */
.corner-suggestions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  pointer-events: none;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.corner-suggestions.sugg-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.corner-suggestion {
  background: rgba(11, 19, 32, 0.95);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, opacity 0.2s;
  text-decoration: none;
  display: block;
}

.corner-suggestion:hover {
  background: rgba(41, 171, 226, 0.12);
  border-color: rgba(41, 171, 226, 0.4);
  color: var(--white);
}

/* Corner icon button */
.corner-icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(41, 171, 226, 0.4), 0 0 0 4px rgba(41, 171, 226, 0.1);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, opacity 0.25s;
  border: none;
  position: relative;
}

.corner-icon-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(41, 171, 226, 0.5);
}

.corner-icon-btn::after {
  content: '';
  position: absolute;
  top: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: pulse-glow 2s ease-in-out infinite;
}

.corner-icon-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--bg);
}

/* ══════════════════════════════════════════════
   OUTCOME REVEAL SCENE
   Replaces Baymax — confidence-first, no character
   ══════════════════════════════════════════════ */

/* Full-width column layout inside the chatbot wrap */
.cr-outcome-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: 600px;
  padding: 0 var(--gutter);
}

/* ── HIRED Headline ── */
.cr-outcome-headline {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.cr-hired-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 900;
  color: rgba(235, 232, 225, 0.92);
  letter-spacing: -4px;
  line-height: 1;
}

.cr-hired-underline {
  height: 3px;
  background: var(--cyan);
  border-radius: 2px;
  width: 0;
  margin: 12px auto 0;
}

.cr-hired-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 12px;
}

/* ── Before / After Comparison ── */
.cr-compare-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 520px;
  opacity: 0;
  transform: translateY(16px);
}

.cr-compare-panel {
  flex: 1;
  padding: 16px 18px;
  border-radius: 10px;
}

.cr-before-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(180, 60, 60, 0.22);
}

.cr-after-panel {
  background: rgba(41, 171, 226, 0.05);
  border: 1px solid rgba(41, 171, 226, 0.24);
}

.cr-panel-label {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cr-before-panel .cr-panel-label { color: rgba(200, 80, 80, 0.65); }
.cr-after-panel  .cr-panel-label { color: var(--cyan); }

.cr-panel-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cr-pline {
  height: 5px;
  border-radius: 3px;
}

.cr-pline-bad  { background: rgba(180, 60,  60, 0.22); }
.cr-pline-good { background: rgba(41, 171, 226, 0.30); }

.cr-compare-arrow {
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Panel score badge ── */
.cr-panel-score {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.cr-score-bad {
  color: rgba(210, 70, 70, 0.85);
  background: rgba(180, 60, 60, 0.10);
  border: 1px solid rgba(180, 60, 60, 0.20);
}
.cr-score-good {
  color: var(--cyan);
  background: rgba(41, 171, 226, 0.08);
  border: 1px solid rgba(41, 171, 226, 0.22);
}

/* ── Before / After bullet lists ── */
.cr-panel-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cr-panel-bullets li {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
}
.cr-bullet-bad {
  color: rgba(210, 70, 70, 0.80);
}
.cr-bullet-bad::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: rgba(200, 65, 65, 0.65);
  font-size: 8px;
  top: 1px;
}
.cr-bullet-good {
  color: rgba(235, 232, 225, 0.82);
}
.cr-bullet-good::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 8px;
  top: 1px;
}

/* ── "Ready for yours?" ── */
.cr-ready-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(235, 232, 225, 0.62);
  opacity: 0;
  transform: translateY(10px);
  text-align: center;
  margin: 0;
}

/* ── MOBILE (≤768px): outcome layout adjustments ── */
@media (max-width: 768px) {
  .cr-outcome-scene {
    max-width: 100%;
    padding: 0 20px;
    gap: 18px;
  }

  .cr-hired-text {
    font-size: clamp(44px, 13vw, 72px);
    letter-spacing: -2px;
  }

  /* Stack panels vertically with arrow pointing down */
  .cr-compare-wrap {
    flex-direction: column;
    max-width: 100%;
    gap: 8px;
    align-items: stretch;
  }

  .cr-compare-arrow {
    transform: rotate(90deg);
    display: block;
    text-align: center;
    font-size: 18px;
  }

  /* Full-width cards on mobile */
  .cr-chat-options {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .cr-chat-option {
    max-width: 300px;
    width: 100%;
  }

  /* Force all outcome elements visible (beat GSAP inline opacity:0) */
  .cr-outcome-headline {
    opacity: 1 !important;
    transform: none !important;
  }

  .cr-hired-underline {
    width: 100% !important;
  }

  .cr-compare-wrap {
    opacity: 1 !important;
    transform: none !important;
  }

  .cr-ready-text {
    opacity: 1 !important;
    transform: none !important;
  }

  .cr-chat-option {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}
/* ============================================================
   JOBSNIPS — Services Editorial List
   Clean dark rows, scroll-reveal, no slider
   ============================================================ */

#services {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.srv-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 40px;
}

.srv-header-left {}
.srv-header-left .label { margin-bottom: 14px; }

/* ── TABS WRAPPER (centered) ── */
.srv-tabs-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.srv-tabs-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.srv-tabs-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  margin: 0;
  letter-spacing: 0.2px;
}

/* ── TABS ── */
.srv-tabs {
  display: flex;
  gap: 0;
  background: var(--bg2);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.srv-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  padding: 14px 40px;
  border-radius: 11px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.srv-tab-icon {
  font-size: 16px;
  line-height: 1;
}

.srv-tab.active {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 2px 12px rgba(41,171,226,0.4);
}

.srv-tab:not(.active):hover {
  color: var(--cream);
  background: rgba(255,255,255,0.05);
}

/* ── EDITORIAL TABLE ── */
.srv-table {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Category divider */
.srv-category-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 0 20px;
  margin-bottom: 0;
}

.srv-category-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.srv-category-line {
  flex: 1;
  height: 1px;
  background: var(--border-sub);
}

/* ── SERVICE ROW ── */
.srv-row {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: 24px 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-sub);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease),
              border-color 0.3s, background 0.3s;
  cursor: default;
}

.srv-row.srv-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Left accent line on hover */
.srv-row::before {
  content: '';
  position: absolute;
  left: -var(--gutter);
  top: 0; bottom: 0;
  width: 2px;
  background: var(--cyan);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease);
  left: -24px;
}

.srv-row:hover {
  border-bottom-color: rgba(41,171,226,0.2);
}

.srv-row:hover::before { transform: scaleY(1); }

/* Number */
.srv-row-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(41,171,226,0.1);
  letter-spacing: -2px;
  line-height: 1;
  transition: color 0.3s;
}

.srv-row:hover .srv-row-num { color: rgba(41,171,226,0.22); }

/* Info */
.srv-row-info {}

.srv-row-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.srv-row:hover .srv-row-name { color: var(--white); }

.srv-row-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.srv-row-tags {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.srv-row-tag {
  font-size: 9px;
  font-weight: 600;
  color: rgba(41,171,226,0.6);
  background: rgba(41,171,226,0.06);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Price */
.srv-row-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -1.5px;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
  transition: color 0.2s;
}

.srv-row-price sup {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  vertical-align: super;
  letter-spacing: 0;
}

.srv-row:hover .srv-row-price { color: var(--white); }

/* CTA */
.srv-row-cta {
  min-width: 100px;
}

.srv-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--bg);
  background: var(--cyan);
  padding: 10px 18px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
  letter-spacing: 0.3px;
}

.srv-order-btn:hover {
  background: #3dbef5;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(41,171,226,0.3);
}

/* Bundle rows get slightly different treatment */
.srv-row.bundle-row .srv-row-num {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  letter-spacing: 0;
}

.srv-row.bundle-row .srv-row-name {
  font-size: 16px;
}

/* Hidden rows for tab switching */
.srv-row.srv-hidden {
  display: none;
}

/* ── TOTAL / COUNT FOOTER ── */
.srv-table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.srv-count {
  font-size: 12px;
  color: var(--muted);
}

.srv-count span {
  color: var(--cyan);
  font-weight: 700;
}

.srv-view-all {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s;
}
.srv-view-all:hover { opacity: 0.7; }


/* ══════════════════════════════════════════
   EXECUTIVE PACKAGE — two-column card layout
   ══════════════════════════════════════════ */
#executive {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.exec-wrap {
  position: relative;
  background: #080C14;
  border-top: 1px solid rgba(41,171,226,0.15);
  border-bottom: 1px solid rgba(41,171,226,0.15);
  overflow: hidden;
}

/* Subtle grid texture */
.exec-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41,171,226,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,171,226,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Two-column inner layout */
.exec-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

/* ── LEFT COLUMN ── */
.exec-left {}

.exec-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.exec-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-glow 2s ease-in-out infinite;
  flex-shrink: 0;
}

.exec-eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.exec-headline {
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -3px;
  line-height: 0.92;
  margin-bottom: 20px;
}

.exec-script {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: #29ABE2;
  letter-spacing: -2px;
}

.exec-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.38);
  font-style: italic;
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* 2×4 feature grid */
.exec-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.exec-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(41,171,226,0.04);
  border: 1px solid rgba(41,171,226,0.1);
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
  transition: background 0.22s, border-color 0.22s;
}

.exec-feat:hover {
  background: rgba(41,171,226,0.08);
  border-color: rgba(41,171,226,0.2);
}

.exec-feat-icon {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── RIGHT COLUMN: Price card ── */
.exec-right {
  position: sticky;
  top: 120px;
}

.exec-card {
  background: rgba(15,28,46,0.8);
  border: 1px solid rgba(41,171,226,0.2);
  border-radius: 16px;
  padding: 40px 36px 22px;   /* tightened bottom: removes empty space below footnote */
  position: relative;
  overflow: hidden;
}

/* Cyan top accent bar */
.exec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 30%, var(--cyan) 70%, transparent 100%);
  border-radius: 2px 2px 0 0;
}

.exec-card-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.exec-card-price {
  text-align: center;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.exec-card-price sup {
  font-size: 26px;
  font-weight: 900;
  color: var(--cyan);
  margin-top: 12px;
  letter-spacing: -1px;
}

.exec-card-price strong {
  font-size: 92px;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -8px;
  line-height: 1;
}

.exec-card-note {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  margin-bottom: 28px;
}

.exec-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 24px;
}

.exec-payment-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.exec-payment-chips {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.exec-payment-chip {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
}

.exec-claim-btn-card {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--bg);
  background: var(--cyan);
  padding: 17px;
  border-radius: 10px;
  letter-spacing: 0.3px;
  transition: all 0.3s var(--ease);
  margin-bottom: 14px;
  text-decoration: none;
}

.exec-claim-btn-card:hover {
  background: #3dbef5;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(41,171,226,0.35);
}

.exec-card-footnote {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .exec-inner { grid-template-columns: 1fr 340px; gap: 48px; }
}

@media (max-width: 860px) {
  .exec-inner { grid-template-columns: 1fr; gap: 40px; }
  .exec-right { position: static; }
  .exec-card-price strong { font-size: 72px; }
}

@media (max-width: 600px) {
  .exec-features-grid { grid-template-columns: 1fr; }
  .exec-inner { padding: 60px var(--gutter) 48px; }
}

/* ── MOBILE (≤640px): service table ────────────────────────── */
@media (max-width: 640px) {

  /* Tab toggle: scale down on small screens */
  .srv-tab {
    font-size: 13px;
    padding: 11px 20px;
    gap: 6px;
  }

  .srv-tab-icon { font-size: 14px; }
  .srv-tabs-hint { display: none; }

  /* Service row: collapse 4-column grid to 2-area layout
     Top row: info (left) + price (right)
     Bottom row: CTA button (full width) */
  .srv-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "info price"
      "cta  cta";
    gap: 8px 16px;
    padding: 18px 0;
  }
  .srv-row-num  { display: none; }
  .srv-row-info { grid-area: info; }
  .srv-row-price {
    grid-area: price;
    font-size: 22px;
    letter-spacing: -1px;
    align-self: start;
    padding-top: 4px;
    text-align: right;
  }
  .srv-row-cta {
    grid-area: cta;
    min-width: unset;
  }
  .srv-order-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  /* Executive section: tighten headline and price */
  .exec-headline { letter-spacing: -2px; }
  .exec-card-price strong { font-size: 64px; letter-spacing: -6px; }
}
/* ============================================================
   JOBSNIPS — Homepage Sections CSS
   Stats bar, services, process, testimonials, scorer CTA, footer
   ============================================================ */

/* ── STATS BAR ─────────────────────────────────────────────── */
#stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -2px;
  line-height: 1;
}

.stat-number .accent { color: var(--cyan); }

.stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SERVICES SECTION ──────────────────────────────────────── */
#services {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.services-intro {
  max-width: 600px;
  margin-bottom: 64px;
}

/* Individual service cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-deep));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(41, 171, 226, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 36px;
  height: 36px;
  background: rgba(41, 171, 226, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 16px;
}

.service-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.service-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.service-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -1px;
}

.service-btn {
  font-size: 11px;
  font-weight: 700;
  color: var(--bg);
  background: var(--cyan);
  padding: 7px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.service-btn:hover {
  background: #3dbef5;
}

/* ── BUNDLES SECTION ───────────────────────────────────────── */
.bundles-label {
  margin-bottom: 24px;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.bundle-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bundle-card:hover {
  border-color: rgba(41, 171, 226, 0.35);
  transform: translateY(-2px);
}

.bundle-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bundle-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.bundle-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.bundle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-sub);
  margin-top: auto;
}

/* ── EXECUTIVE PACKAGE ─────────────────────────────────────── */
.exec-package {
  background: var(--bg2);
  border: 1px solid rgba(41, 171, 226, 0.3);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.exec-package::before {
  content: 'EXECUTIVE';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  font-weight: 900;
  color: rgba(41, 171, 226, 0.04);
  letter-spacing: -4px;
  line-height: 1;
  pointer-events: none;
}

.exec-package::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-deep), var(--cyan));
}

.exec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41, 171, 226, 0.1);
  border: 1px solid rgba(41, 171, 226, 0.3);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.exec-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.exec-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
}

.exec-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.exec-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.exec-feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(41, 171, 226, 0.15);
  border: 1px solid rgba(41, 171, 226, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
  color: var(--cyan);
  margin-top: 1px;
}

.exec-right {
  text-align: center;
  min-width: 220px;
}

.exec-price-block {
  margin-bottom: 20px;
}

.exec-price-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.exec-price-num {
  font-size: 72px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -4px;
  line-height: 1;
}

.exec-price-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.exec-bnpl {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

/* ── BNPL LOGOS ────────────────────────────────────────────── */
.bnpl-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bnpl-chip {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.bnpl-divider {
  font-size: 11px;
  color: var(--muted);
}

/* ── PROCESS SECTION ───────────────────────────────────────── */
#process {
  padding: var(--section-pad) 0;
  background: var(--bg2);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
  margin-top: 48px;
}

/* Connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}

.process-step:hover .step-num {
  background: var(--cyan);
  color: var(--bg);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(41, 171, 226, 0.3);
}

.step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 180px;
}

/* ── RESUME SCORER CTA ─────────────────────────────────────── */
/* Cream — alternates with dark navy for visual rhythm */
#scorer-cta {
  padding: var(--section-pad) 0;
  background: #F3EFE6;
  position: relative;
  overflow: hidden;
}
#scorer-cta .display-md,
#scorer-cta h2 { color: #0B1320; }
#scorer-cta .body-md,
#scorer-cta p  { color: rgba(11, 19, 32, 0.58); }
#scorer-cta .label {
  color: rgba(11, 19, 32, 0.44);
  border-color: rgba(11, 19, 32, 0.14);
}
#scorer-cta .script { color: #29ABE2; }
#scorer-cta .btn-ghost {
  color: rgba(11, 19, 32, 0.65);
  border-color: rgba(11, 19, 32, 0.22);
}
#scorer-cta .btn-ghost:hover {
  background: rgba(11, 19, 32, 0.06);
}

.scorer-cta-inner {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(11, 19, 32, 0.08);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.scorer-cta-inner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(41, 171, 226, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.scorer-cta-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.scorer-score-preview {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(41, 171, 226, 0.06);
  border: 1px solid rgba(41, 171, 226, 0.2);
  border-radius: 12px;
  padding: 14px 24px;
  margin-bottom: 32px;
}

.score-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--cyan);
}

.score-breakdown {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.score-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}

/* On cream background, score items need dark text */
#scorer-cta .score-item {
  color: rgba(11, 19, 32, 0.6);
  font-weight: 500;
}

.score-item-bar {
  width: 80px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

#scorer-cta .score-item-bar {
  background: rgba(11, 19, 32, 0.12);
}

.score-item-fill {
  height: 100%;
  background: var(--cyan);
  border-radius: 2px;
}

/* ── TESTIMONIALS PREVIEW ──────────────────────────────────── */
#testimonials-preview {
  padding: var(--section-pad) 0;
  background: var(--bg2);
  border-top: 1px solid var(--border-sub);
  overflow: hidden;
}

.testimonials-ticker {
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
}

.testimonials-ticker::before,
.testimonials-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2), transparent);
}

.testimonials-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2), transparent);
}

.ticker-track {
  display: flex;
  /* gap replaced with margin-right on cards — iOS 14.4- doesn't support flex gap */
  -webkit-animation: ticker 40s linear infinite;
          animation: ticker 40s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes ticker {
  0%   { -webkit-transform: translateX(0);     transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%);  transform: translateX(-50%); }
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  position: relative;
  margin-right: 20px; /* gap fallback for iOS 14.4 and earlier */
}

@supports (gap: 20px) {
  .ticker-track { gap: 20px; }
  .testimonial-card { margin-right: 0; }
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 48px;
  font-style: italic;
  color: rgba(41, 171, 226, 0.15);
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 20px;
}

.testimonial-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
}

.testimonial-role {
  font-size: 11px;
  color: var(--muted);
}

.testimonial-stars {
  font-size: 10px;
  color: #f59e0b;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ── FOOTER ────────────────────────────────────────────────── */
#footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-col .footer-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.footer-brand-col .footer-logo span { color: var(--cyan); }

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.social-link:hover {
  background: rgba(41, 171, 226, 0.12);
  border-color: rgba(41, 171, 226, 0.35);
  color: var(--cyan);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact-icon {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-sub);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

.footer-copy span { color: var(--cyan); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-bottom-link:hover { color: var(--white); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .exec-package {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .exec-features {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .stats-inner {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-divider { display: none; }
  .stat-item { min-width: 40%; }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bundles-grid {
    grid-template-columns: 1fr;
  }

  .process-steps::before { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

/* ── SCROLL REVEAL UTILITY ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE (≤768px) ─────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Stats bar: 2×2 grid */
  .stats-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
  }
  .stat-item { min-width: calc(50% - 20px); }
  .stat-divider { display: none; }

  /* Process: 2-column on mobile (4 becomes 2×2) */
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
  .process-steps::before { display: none; }

  /* If there's an odd last step (e.g. step 5), center it across both columns */
  .process-step:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 220px;
  }

  /* Scorer CTA: tighter padding, stacked preview widget */
  .scorer-cta-inner {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .scorer-score-preview {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .score-breakdown {
    align-items: center;
    text-align: center;
  }
  .score-item { justify-content: center; }

  /* Footer: stack to single column */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}
