/* =============================================================
   TechTemps — "Slate Signal" design system
   Slate-ink base · emerald accent · electric-blue secondary · clean modern sans
   ============================================================= */

/* ---------- tokens ---------- */
:root {
  /* ink / surfaces — slate ink */
  --ink-0:      #0b0e12;   /* page base */
  --ink-1:      #10141a;
  --ink-2:      #11151b;
  --surface-0:  #171c24;
  --surface-1:  #1d242e;
  --black-pure: #06080b;

  /* hairlines */
  --line-0:     #1e2530;
  --line-1:     #2a333f66;
  --line-plat:  rgba(166, 196, 184, 0.22);

  /* text — cool white */
  --white:      #f4f7fa;
  --text-0:     #eef2f6;
  --text-1:     #c2cbd6;
  --text-2:     #a6b0bd;
  --text-muted: #6b7585;

  /* cool-steel neutral highlight ("plat" role) */
  --plat:       #c6d2dd;
  --plat-bright:#e9eef4;
  --plat-deep:  #8c98a6;

  /* emerald signature accent (was --sky*) */
  --sky:        #27c98a;
  --sky-bright: #5fe0ab;
  --sky-deep:   #16a06c;
  --sky-glow:   rgba(39, 201, 138, 0.30);
  --sky-faint:  rgba(39, 201, 138, 0.09);

  /* electric-blue secondary */
  --blue:       #3f9fff;
  --blue-glow:  rgba(63, 159, 255, 0.28);

  /* a whisper of warm signal (used very sparingly) */
  --horizon:    #f0b85c;

  --font-display: 'Figtree', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --radius-0:   2px;
  --radius-1:   6px;
  --radius-2:   16px;

  --ease:       cubic-bezier(.22, .61, .36, 1);
  --ease-out:   cubic-bezier(.16, 1, .3, 1);
  --transition: 300ms var(--ease);

  --container:  1220px;
  --container-narrow: 880px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink-0);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--sky); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sky-bright); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.45em;
}
h1 { font-size: clamp(2.7rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); letter-spacing: -0.03em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }

.thin { font-weight: 300; }
.in-sky { color: var(--sky); }
.in-blue { color: var(--blue); }
.in-plat { color: var(--plat); }

p { margin: 0 0 1.1em; }
strong { color: var(--text-0); font-weight: 600; }
.muted { color: var(--text-muted); }
.lede { font-size: 1.2rem; line-height: 1.65; color: var(--text-1); font-weight: 400; }

::selection { background: var(--sky); color: var(--black-pure); }

/* ---------- mono readout (instrument-style data labels) ---------- */
.readout {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
}

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: var(--container-narrow); }

.section { padding: clamp(64px, 10vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(44px, 7vw, 84px) 0; }
.section--ink-1 { background: var(--ink-1); }
.section--ink-2 { background: var(--ink-2); }
.section--black { background: var(--black-pure); }

.section__header { max-width: 760px; margin-bottom: clamp(36px, 6vw, 60px); }
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__header h2 { margin-top: 14px; }
.section__header p { margin-top: 8px; color: var(--text-2); max-width: 60ch; }
.section__header--center p { margin-left: auto; margin-right: auto; }

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sky);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--sky)); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ''; width: 26px; height: 1px; background: linear-gradient(90deg, var(--sky), transparent); }

/* ---------- horizon divider ---------- */
.deco-rule { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--sky); margin: 0 auto; }
.deco-rule::before, .deco-rule::after { content: ''; height: 1px; width: clamp(40px, 12vw, 150px); background: linear-gradient(90deg, transparent, var(--line-plat), transparent); }
.deco-rule__mark { width: 8px; height: 8px; border: 1px solid var(--sky); border-radius: 50%; box-shadow: 0 0 0 3px var(--sky-faint); }

.visually-hidden, .skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus {
  position: fixed; left: 16px; top: 16px; z-index: 9999;
  background: var(--sky); color: var(--black-pure); padding: 10px 18px;
  letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.76rem; border-radius: var(--radius-1);
}

/* ---------- ambient ---------- */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ambient-glow { position: absolute; width: 70vw; height: 70vw; max-width: 1000px; max-height: 1000px; border-radius: 50%; filter: blur(140px); }
.ambient-glow--sky { top: -28vw; right: -16vw; background: radial-gradient(circle, rgba(39,201,138,0.16) 0%, transparent 62%); opacity: 0.55; }
.ambient-glow--horizon { bottom: -32vw; left: -18vw; background: radial-gradient(circle, rgba(63,159,255,0.12) 0%, transparent 62%); opacity: 0.5; }

body > main, body > footer, body > header { position: relative; z-index: 1; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(18px) saturate(1.1);
  background: rgba(8, 11, 18, 0.7);
  border-bottom: 1px solid var(--line-0);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; gap: 22px; }

.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--white); }
.brand:hover { color: var(--white); }
.brand__mark { display: inline-flex; filter: drop-shadow(0 1px 8px rgba(39,201,138,0.3)); }
.brand__word { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: 0; line-height: 1.05; white-space: nowrap; }
.brand__word .lv { color: var(--text-2); font-weight: 500; }
.brand__sub { display: block; font-family: var(--font-mono); font-size: 0.54rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--text-2); margin-top: 4px; }

.site-nav__list { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.site-nav__list > li > a {
  color: var(--text-1); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; padding: 6px 0; white-space: nowrap;
}
.site-nav__list > li > a:hover { color: var(--white); }
.site-nav__list > li > a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px; background: var(--sky); transition: right var(--transition); }
.site-nav__list > li > a:hover::after, .site-nav__list > li > a.is-active::after { right: 0; }
.site-nav__list > li > a.is-active { color: var(--white); }
.site-nav__cta { margin-left: 8px; }

.site-nav__toggle {
  display: none; width: 42px; height: 42px; background: transparent; border: 1px solid var(--line-0);
  border-radius: var(--radius-1); flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.site-nav__toggle-bar { display: block; width: 18px; height: 1px; background: var(--white); transition: var(--transition); }

@media (max-width: 940px) {
  .site-nav__toggle { display: inline-flex; }
  .site-nav__list {
    position: fixed; inset: 0; top: 0; background: rgba(5, 7, 12, 0.98); backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center; padding: 80px 24px; gap: 28px;
    transform: translateY(-100%); visibility: hidden; transition: transform 420ms var(--ease-out), visibility 420ms var(--ease-out);
  }
  .site-nav.is-open .site-nav__list { transform: translateY(0); visibility: visible; }
  .site-nav__list > li > a { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: -0.01em; text-transform: none; color: var(--white); }
  .site-nav.is-open .site-nav__toggle .site-nav__toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-nav.is-open .site-nav__toggle .site-nav__toggle-bar:nth-child(2) { opacity: 0; }
  .site-nav.is-open .site-nav__toggle .site-nav__toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* value strip */
.value-strip {
  border-top: 1px solid var(--line-0);
  background: linear-gradient(90deg, rgba(39,201,138,0.07), transparent 70%);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-2);
}
.value-strip__inner { display: flex; align-items: center; gap: 14px; padding: 9px 28px; }
.value-strip__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 8px var(--sky-glow); animation: pulse 2.6s ease-in-out infinite; flex: 0 0 auto; }
.value-strip__text { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.value-strip__cta { color: var(--sky); white-space: nowrap; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (max-width: 640px) { .value-strip { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 11px; padding: 15px 30px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  background: transparent; color: var(--white); border: 1px solid var(--line-1); border-radius: var(--radius-0);
  cursor: pointer; transition: all var(--transition); position: relative; overflow: hidden;
}
.btn .arrow { transition: transform var(--transition); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }
.btn--sky {
  background: linear-gradient(135deg, var(--sky-bright), var(--sky) 55%, var(--sky-deep));
  border-color: var(--sky); color: var(--black-pure); box-shadow: 0 8px 30px -12px var(--sky-glow);
}
.btn--sky:hover { color: var(--black-pure); box-shadow: 0 12px 40px -10px rgba(39,201,138,0.55); transform: translateY(-2px); }
.btn--blue {
  background: linear-gradient(135deg, #7ab8ff, var(--blue) 55%, #2b7fe0);
  border-color: var(--blue); color: var(--black-pure); box-shadow: 0 8px 30px -12px var(--blue-glow);
}
.btn--blue:hover { color: var(--black-pure); box-shadow: 0 12px 40px -10px rgba(63,159,255,0.55); transform: translateY(-2px); }
.btn--plat {
  background: linear-gradient(135deg, var(--plat-bright), var(--plat) 55%, var(--plat-deep));
  border-color: var(--plat); color: var(--black-pure); font-weight: 600;
}
.btn--plat:hover { color: var(--black-pure); transform: translateY(-2px); box-shadow: 0 12px 34px -14px rgba(196,208,224,0.5); }
.btn--outline { border-color: var(--line-1); color: var(--text-1); }
.btn--outline:hover { color: var(--white); border-color: var(--sky); box-shadow: inset 0 0 0 1px var(--sky); }
.btn--ghost { border-color: transparent; color: var(--text-1); padding-left: 0; padding-right: 0; }
.btn--ghost:hover { color: var(--sky); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 18px 38px; font-size: 0.86rem; }

/* ---------- cinematic hero ---------- */
.hero {
  position: relative; min-height: clamp(440px, 62vh, 660px);
  display: flex; align-items: center; overflow: hidden;
  border-bottom: 1px solid var(--line-0);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--ink-0) 2%, rgba(8,11,18,0.35) 45%, rgba(8,11,18,0.55) 100%),
    linear-gradient(to right, rgba(8,11,18,0.92) 0%, rgba(8,11,18,0.45) 50%, rgba(8,11,18,0.2) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: clamp(36px, 5vw, 64px) 0; width: 100%; }
.hero__content { max-width: 660px; }
.hero__eyebrow { margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.9rem, 7vw, 5.6rem); line-height: 0.98; margin-bottom: 0; }
.hero h1 .line { display: block; }
.hero__lede { margin-top: 28px; max-width: 540px; color: var(--text-0); }
.hero__actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 52px; display: flex; gap: 0; flex-wrap: wrap; border-top: 1px solid var(--line-1);
}
.hero__meta > div { padding: 22px 30px 0 0; margin-right: 30px; border-right: 1px solid var(--line-1); }
.hero__meta > div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__meta-k { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-2); }
.hero__meta-v { display: block; color: var(--white); font-size: 1.05rem; margin-top: 7px; font-weight: 500; font-family: var(--font-display); }
.hero__meta-v a { color: var(--white); }
.hero__meta-v a:hover { color: var(--sky); }
@media (max-width: 480px) { .hero__meta > div { border-right: 0; margin-right: 0; padding-right: 0; flex: 1 1 45%; } }

/* ---------- route ticker ---------- */
.ticker { border-top: 1px solid var(--line-0); border-bottom: 1px solid var(--line-0); background: var(--black-pure); overflow: hidden; padding: 18px 0; }
.ticker__track { display: flex; gap: 0; width: max-content; animation: ticker 40s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-2);
  display: inline-flex; align-items: center; gap: 14px; padding: 0 30px; white-space: nowrap;
}
.ticker__item b { color: var(--text-0); font-weight: 500; }
.ticker__item .t { color: var(--sky); }
.ticker__item::after { content: ''; width: 5px; height: 5px; border: 1px solid var(--plat-deep); border-radius: 50%; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- fleet lookbook ---------- */
.fleet { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 22px; }
.jet {
  position: relative; display: flex; flex-direction: column;
  background: var(--ink-2); border: 1px solid var(--line-0); overflow: hidden; transition: border-color var(--transition), transform var(--transition);
}
.jet:hover { border-color: var(--line-plat); transform: translateY(-4px); }
.jet__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--surface-0); }
.jet__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-out); }
.jet:hover .jet__media img { transform: scale(1.06); }
.jet__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,11,18,0.7), transparent 55%); }
.jet__tier { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--black-pure); background: var(--sky); padding: 5px 10px; font-weight: 600; }
.jet__body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.jet__name { font-family: var(--font-display); font-size: 1.45rem; color: var(--white); font-weight: 600; line-height: 1.1; }
.jet__eg { font-size: 0.86rem; color: var(--text-2); margin-top: 2px; }
.jet__specs { display: flex; gap: 0; border-top: 1px solid var(--line-0); margin-top: auto; }
.jet__spec { flex: 1; padding: 16px 6px 0; text-align: center; border-right: 1px solid var(--line-0); }
.jet__spec:last-child { border-right: 0; }
.jet__spec-v { font-family: var(--font-display); font-size: 1.2rem; color: var(--plat); font-weight: 600; line-height: 1; }
.jet__spec-k { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 7px; }
.jet__best { font-size: 0.9rem; color: var(--text-1); }
.jet__best b { color: var(--sky); font-weight: 600; }

/* filter chips */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-chip {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2);
  background: transparent; border: 1px solid var(--line-1); border-radius: 100px; padding: 9px 20px; cursor: pointer; transition: all var(--transition);
}
.filter-chip:hover { color: var(--white); border-color: var(--line-plat); }
.filter-chip.is-active { color: var(--black-pure); background: var(--sky); border-color: var(--sky); font-weight: 600; }
.jet.is-hidden { display: none; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1px; background: var(--line-0); border: 1px solid var(--line-0); }
.card { background: var(--ink-1); padding: 40px 32px; display: flex; flex-direction: column; gap: 14px; transition: background var(--transition); }
.card:hover { background: var(--surface-0); }
.card__icon { color: var(--sky); margin-bottom: 4px; }
.card__num { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.16em; color: var(--sky); }
.card h3 { font-size: 1.4rem; margin: 0; }
.card p { color: var(--text-2); font-size: 0.96rem; margin: 0; }
.card__link { margin-top: auto; padding-top: 12px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky); display: inline-flex; align-items: center; gap: 8px; }
.card__link::after { content: '→'; transition: transform var(--transition); }
.card:hover .card__link::after { transform: translateX(5px); }

/* steps */
.steps { display: grid; gap: 1px; background: var(--line-0); border: 1px solid var(--line-0); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.step { background: var(--ink-1); padding: 42px 38px; display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; transition: background var(--transition); }
.step:hover { background: var(--surface-0); }
.step__num { font-family: var(--font-display); font-size: 3rem; line-height: 0.8; color: transparent; -webkit-text-stroke: 1px var(--sky); font-weight: 700; }
.step h3 { font-size: 1.45rem; margin: 0 0 8px; }
.step p { color: var(--text-2); margin: 0; font-size: 0.98rem; }

/* ---------- feature row ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 78px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(56px, 9vw, 108px); }
.feature-row--reverse > :first-child { order: 2; }
@media (max-width: 880px) { .feature-row { grid-template-columns: 1fr; gap: 36px; } .feature-row--reverse > :first-child { order: 0; } }
.feature-visual { aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--line-0); position: relative; background: var(--surface-0); }
.feature-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.feature-row:hover .feature-visual img { transform: scale(1.04); }
.feature-visual--tall { aspect-ratio: 3 / 4; }
.feature-body h2 { margin-bottom: 18px; }
.feature-body > p { color: var(--text-1); }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.checklist li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.98rem; color: var(--text-1); }
.checklist li::before {
  content: ''; flex: 0 0 auto; margin-top: 8px; width: 8px; height: 8px;
  border: 1px solid var(--sky); border-radius: 50%; box-shadow: 0 0 0 3px var(--sky-faint);
}

/* ---------- stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1px; background: var(--line-0); border: 1px solid var(--line-0); }
.stat-cell { padding: 40px 28px; background: var(--ink-1); text-align: center; }
.stat-cell__num { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.6rem); font-weight: 700; color: var(--plat); line-height: 1; letter-spacing: -0.03em; }
.stat-cell__num em { color: var(--sky); font-style: normal; }
.stat-cell__label { margin-top: 14px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-2); }

/* ---------- routes ---------- */
.routes { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1px; background: var(--line-0); border: 1px solid var(--line-0); }
.route { background: var(--ink-1); padding: 26px 28px; display: flex; flex-direction: column; gap: 6px; transition: background var(--transition); position: relative; }
.route:hover { background: var(--surface-0); }
.route__od { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.05rem; color: var(--white); font-weight: 600; }
.route__od .iata { font-family: var(--font-mono); font-size: 0.92rem; color: var(--plat); letter-spacing: 0.05em; }
.route__arc { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--line-plat) 0 5px, transparent 5px 10px); position: relative; }
.route__arc::after { content: '✈'; position: absolute; right: -2px; top: -9px; font-size: 0.8rem; color: var(--sky); }
.route__city { color: var(--text-1); font-size: 0.96rem; }
.route__time { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; color: var(--text-2); margin-top: 4px; }
.route__time b { color: var(--sky); font-weight: 500; }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.quote { background: var(--ink-1); border: 1px solid var(--line-0); padding: 36px 34px; position: relative; }
.quote__stars { color: var(--sky); letter-spacing: 0.2em; margin-bottom: 14px; font-size: 0.86rem; }
.quote__text { font-family: var(--font-display); font-size: 1.28rem; line-height: 1.45; color: var(--text-0); font-weight: 400; margin: 0 0 22px; letter-spacing: -0.01em; }
.quote__by { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky); }

/* ---------- cta block ---------- */
.cta-block {
  position: relative; overflow: hidden; border: 1px solid var(--line-plat);
  background:
    radial-gradient(ellipse at 12% 0%, rgba(39,201,138,0.14), transparent 55%),
    radial-gradient(ellipse at 92% 100%, rgba(63,159,255,0.12), transparent 55%),
    var(--ink-1);
  padding: clamp(48px, 8vw, 86px) clamp(32px, 6vw, 72px); text-align: center;
}
.cta-block .eyebrow { margin-bottom: 18px; }
.cta-block h2 { margin-bottom: 16px; }
.cta-block p { max-width: 560px; margin: 0 auto 30px; color: var(--text-1); }
.cta-block__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- page head ---------- */
.page-head { padding: clamp(80px, 12vw, 152px) 0 clamp(44px, 6vw, 74px); border-bottom: 1px solid var(--line-0); position: relative; }
.page-head__inner { max-width: 880px; }
.page-head h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); margin-top: 16px; }
.page-head__lede { margin-top: 22px; max-width: 660px; }

/* breadcrumb */
.crumbs { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); display: flex; gap: 10px; align-items: center; }
.crumbs a { color: var(--text-2); }
.crumbs a:hover { color: var(--sky); }
.crumbs .sep { color: var(--line-1); }
.crumbs span[aria-current] { color: var(--text-0); }

/* panels / prose */
.panel { background: var(--ink-1); border: 1px solid var(--line-0); padding: 36px; }
.panel + .panel { margin-top: 20px; }
.prose { max-width: 720px; }
.prose h3 { margin-top: 1.5em; color: var(--plat); }
.prose p, .prose li { color: var(--text-1); }
:target { scroll-margin-top: 110px; }

/* detail grid */
.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--line-0); border: 1px solid var(--line-0); }
.detail { background: var(--ink-1); padding: 30px 26px; }
.detail__k { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky); }
.detail__v { color: var(--text-0); margin-top: 10px; font-size: 1.02rem; line-height: 1.6; }
.detail__v a { color: var(--text-0); }
.detail__v a:hover { color: var(--sky); }

/* ---------- forms ---------- */
.form { display: grid; gap: 22px; background: var(--ink-1); border: 1px solid var(--line-0); padding: clamp(28px, 4vw, 44px); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-2); }
.field label .req { color: var(--sky); }
.field input, .field textarea, .field select {
  background: var(--ink-2); border: 1px solid var(--line-1); color: var(--text-0);
  padding: 14px 16px; font-family: var(--font-body); font-size: 1rem; border-radius: var(--radius-0);
  transition: border-color var(--transition), box-shadow var(--transition); width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px var(--sky-faint); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2327c98a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }
.field__hint { font-size: 0.82rem; color: var(--text-muted); }
.form-disclaimer { font-size: 0.78rem; color: var(--text-muted); }
.hp-field { position: absolute; left: -9999px; }

/* trip-type segmented toggle */
.segmented { display: inline-flex; border: 1px solid var(--line-1); border-radius: var(--radius-0); overflow: hidden; }
.segmented label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); padding: 11px 20px; cursor: pointer; transition: all var(--transition); border-right: 1px solid var(--line-1); }
.segmented label:last-child { border-right: 0; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented input:checked + label, .segmented label:hover { color: var(--black-pure); background: var(--sky); }

.form-status { font-size: 0.92rem; padding: 14px 18px; border: 1px solid var(--line-1); border-radius: var(--radius-0); }
.form-status:empty { display: none; }
.form-status--ok { color: var(--sky-bright); border-color: var(--sky); background: var(--sky-faint); }
.form-status--err { color: #e8a0a0; border-color: #6e2530; background: rgba(110,37,48,0.18); }

/* ---------- footer ---------- */
.site-footer { background: var(--black-pure); border-top: 1px solid var(--line-0); padding-top: 72px; }
.site-footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 56px; }
@media (max-width: 880px) { .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .site-footer__inner { grid-template-columns: 1fr; } }
.site-footer .brand { margin-bottom: 16px; }
.site-footer__tag { color: var(--text-2); max-width: 34ch; font-size: 0.96rem; }
.site-footer__social { display: flex; gap: 14px; margin-top: 22px; }
.site-footer__social a { width: 38px; height: 38px; border: 1px solid var(--line-1); display: inline-flex; align-items: center; justify-content: center; color: var(--text-2); transition: all var(--transition); }
.site-footer__social a:hover { color: var(--sky); border-color: var(--sky); }
.site-footer h3 { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-2); margin-bottom: 18px; }
.site-footer address { font-style: normal; color: var(--text-1); font-size: 0.94rem; line-height: 1.8; }
.site-footer address a { color: var(--text-1); }
.site-footer address a:hover { color: var(--sky); }
.link-list { list-style: none; padding: 0; margin: 0; }
.link-list li { padding: 5px 0; }
.link-list a { color: var(--text-1); font-size: 0.94rem; }
.link-list a:hover { color: var(--sky); }
.site-footer__base { border-top: 1px solid var(--line-0); padding: 26px 0; }
.site-footer__base-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--text-muted); }
.site-footer__base p { margin: 0; }
.site-footer__base a { color: var(--text-muted); }
.site-footer__base a:hover { color: var(--sky); }

/* ---------- utility ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }
.center { text-align: center; }
.tag { display: inline-block; padding: 5px 12px; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid var(--line-1); color: var(--text-2); border-radius: 100px; }
.tag--sky { color: var(--sky); border-color: var(--line-plat); }
.tag--blue { color: var(--blue); border-color: rgba(63,159,255,0.3); }

/* ---------- dual employer/candidate split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }
.split-card {
  position: relative; background: var(--ink-1); border: 1px solid var(--line-0);
  padding: clamp(32px, 4vw, 48px); display: flex; flex-direction: column; gap: 16px;
  overflow: hidden; transition: border-color var(--transition), transform var(--transition);
}
.split-card:hover { transform: translateY(-4px); }
.split-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; }
.split-card--emp::before { background: linear-gradient(90deg, var(--sky), var(--sky-deep)); }
.split-card--emp:hover { border-color: var(--sky-deep); }
.split-card--cand::before { background: linear-gradient(90deg, var(--blue), #2b7fe0); }
.split-card--cand:hover { border-color: var(--blue); }
.split-card__role { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; }
.split-card--emp .split-card__role { color: var(--sky); }
.split-card--cand .split-card__role { color: var(--blue); }
.split-card h3 { font-size: 1.7rem; margin: 0; }
.split-card p { color: var(--text-2); margin: 0; }
.split-card .checklist { margin-top: 6px; }
.split-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- "available" status dot motif ---------- */
.status-dot { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-2); }
.status-dot::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 3px var(--sky-faint), 0 0 8px var(--sky-glow); animation: pulse 2.6s ease-in-out infinite; flex: 0 0 auto; }
.status-dot--blue::before { background: var(--blue); box-shadow: 0 0 0 3px rgba(63,159,255,0.1), 0 0 8px var(--blue-glow); }

/* ---------- location pin cards ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--line-0); border: 1px solid var(--line-0); }
.loc { background: var(--ink-1); padding: 32px 28px; display: flex; flex-direction: column; gap: 10px; transition: background var(--transition); }
.loc:hover { background: var(--surface-0); }
.loc__pin { color: var(--sky); }
.loc__city { font-family: var(--font-display); font-size: 1.35rem; color: var(--white); font-weight: 700; margin: 0; }
.loc__metro { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-2); }
.loc__note { color: var(--text-2); font-size: 0.94rem; margin: 4px 0 0; }
.loc__contact { font-size: 0.92rem; color: var(--text-1); margin-top: auto; padding-top: 8px; }
.loc__contact a { color: var(--text-1); }
.loc__contact a:hover { color: var(--sky); }

/* faq */
.faq { border-top: 1px solid var(--line-0); }
.faq__item { border-bottom: 1px solid var(--line-0); }
.faq__q { width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer; padding: 26px 44px 26px 0; position: relative; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--white); letter-spacing: -0.01em; }
.faq__q::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); color: var(--sky); font-size: 1.5rem; font-weight: 300; transition: transform var(--transition); }
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 420ms var(--ease); }
.faq__a-inner { padding: 0 44px 28px 0; color: var(--text-2); }
.faq__item.is-open .faq__a { max-height: 340px; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 750ms var(--ease-out), transform 750ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .ambient-glow { display: none; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
}
