

:root {
  --bg: #0E0F1A;
  --bg-1: #12131f;
  --bg-2: #191b2b;
  --panel: #161826;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.05);
  --text: #F7F7F4;
  --muted: #8a8f9a;
  --muted-2: #6a6f7a;

  --accent: #4F6BFF;          
  --accent-dim: #2742F5;
  --accent-ink: #F7F7F4;      
  --cool: #8B93FF;            

  --radius: 14px;
  --radius-sm: 8px;
  --container: 1200px;
  --space: clamp(72px, 9vw, 130px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'Space Grotesk', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  margin: 0 0 0.4em;
  letter-spacing: -0.025em;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 44px);
}

.section { padding-block: var(--space); border-top: 1px solid var(--line-2); }

.accent { color: var(--accent); }
.mono-tick { font-family: var(--font-mono); color: var(--accent); margin-right: 8px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: var(--accent-ink);
  padding: 12px 18px; border-radius: 0 0 8px 0; z-index: 1000; font-weight: 600;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

.cards > .reveal:nth-child(2), .bento > .reveal:nth-child(2),
.why-grid > .reveal:nth-child(2), .jobs > .reveal:nth-child(2),
.careers-perks > .reveal:nth-child(2) { transition-delay: 0.08s; }
.cards > .reveal:nth-child(3), .bento > .reveal:nth-child(3),
.why-grid > .reveal:nth-child(3), .jobs > .reveal:nth-child(3),
.careers-perks > .reveal:nth-child(3) { transition-delay: 0.16s; }
.bento > .reveal:nth-child(4), .why-grid > .reveal:nth-child(4),
.jobs > .reveal:nth-child(4), .careers-perks > .reveal:nth-child(4) { transition-delay: 0.24s; }
.jobs > .reveal:nth-child(5), .careers-perks > .reveal:nth-child(5) { transition-delay: 0.32s; }
.jobs > .reveal:nth-child(6), .careers-perks > .reveal:nth-child(6) { transition-delay: 0.40s; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--accent); z-index: 200; pointer-events: none;
  box-shadow: 0 0 10px rgba(79, 107, 255, 0.6);
  transition: width 0.1s linear;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 11, 13, 0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }

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

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em; }
.brand-ai { color: var(--cool); font-weight: 500; }
.brand-mark {
  width: 32px; height: 32px; display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 8px; font-weight: 700;
}

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 28px); }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 0.93rem; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent); color: var(--accent-ink) !important;
  padding: 9px 18px; border-radius: 999px; font-weight: 600 !important;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); filter: brightness(1.08); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.97rem; cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn span { transition: transform 0.2s var(--ease); }
.btn:hover span { transform: translateX(4px); }

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-block { width: 100%; justify-content: center; }

.hero { position: relative; padding-block: clamp(56px, 9vw, 104px); border-top: 0; overflow: hidden; }
.blueprint {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 30% 0%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 0%, #000 30%, transparent 85%);
}
.hero > .container { position: relative; z-index: 1; }

.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero-main { max-width: 640px; }

.eyebrow {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.02em;
  color: var(--muted); text-transform: uppercase;
  padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg-1); margin-bottom: 26px;
}
.hero h1 { margin-bottom: 22px; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 8px; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.hero-tags li {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted);
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg-1);
}
.hero-tags li::before { content: "› "; color: var(--accent); }

.hero-panel {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-1), var(--bg));
  overflow: hidden; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8);
}
.panel-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--bg-2);
}
.panel-bar span[class^="dot-"] { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.panel-title { margin-left: 8px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted-2); }
.panel-body {
  margin: 0; padding: 20px 18px 24px; font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1.1vw, 0.92rem); line-height: 1.9; color: var(--text);
  white-space: pre-wrap; word-break: break-word;
}
.c-com { color: var(--muted-2); }
.c-key { color: var(--cool); }
.c-ok { color: var(--accent); }
.c-num { color: var(--accent); }
.caret { color: var(--accent); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: clamp(40px, 6vw, 72px) 0 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.hero-stats > div { padding: 24px 26px; border-right: 1px solid var(--line); background: var(--bg-1); }
.hero-stats > div:last-child { border-right: 0; }
.hero-stats dt { font-family: var(--font-mono); font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 600; color: var(--text); }
.hero-stats dd { margin: 6px 0 0; color: var(--muted); font-size: 0.85rem; }

.trust { padding-block: 36px; border-top: 1px solid var(--line-2); background: var(--bg-1); }
.trust-label { text-align: center; color: var(--muted-2); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scroll 24s linear infinite; }
.marquee-track span { font-family: var(--font-head); font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 600; color: rgba(244,245,247,0.32); white-space: nowrap; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }

.section-head { max-width: 760px; margin-bottom: 54px; }
.kicker { font-family: var(--font-mono); color: var(--muted); font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.section-lead { color: var(--muted); font-size: 1.06rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0;
  background: var(--accent); transition: width 0.4s var(--ease);
}
.card:hover, .card:focus-within { transform: translateY(-6px); border-color: rgba(79,107,255,0.4); background: var(--bg-2); }
.card:hover::after, .card:focus-within::after { width: 100%; }
.card-icon { font-size: 1.9rem; margin-bottom: 16px; filter: grayscale(0.1); }
.card h3 { margin-bottom: 10px; }
.card > p { color: var(--muted); }
.card-list { margin-top: 18px; display: grid; gap: 10px; }
.card-list li { position: relative; padding-left: 24px; color: var(--text); font-size: 0.93rem; }
.card-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-family: var(--font-mono); }

.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bento-cell {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; position: relative; overflow: hidden; grid-column: span 2;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.bento-lg { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 4; }
.bento-cell:hover { transform: translateY(-5px); border-color: rgba(79,107,255,0.4); background: var(--bg-2); }
.bento-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--accent); border: 1px solid rgba(79,107,255,0.3);
  padding: 4px 10px; border-radius: 6px; margin-bottom: 18px; background: rgba(79,107,255,0.05);
}
.bento-cell h3 { margin-bottom: 8px; }
.bento-cell p { color: var(--muted); margin: 0; }
.bento-stack { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.bento-stack span { font-family: var(--font-mono); font-size: 0.76rem; color: var(--muted); padding: 5px 11px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg); }
.bento-lg h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

.reach { background: var(--bg-1); }
.reach-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.reach .section-head { margin-bottom: 0; }
.map-wrap {
  background:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px),
    var(--bg);
  background-size: 40px 40px, 40px 40px, auto;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.world-map { width: 100%; height: clamp(300px, 42vw, 460px); }
.world-map svg { width: 100%; height: 100%; }
.jvm-region { transition: fill 0.25s var(--ease); }
.jvm-marker { filter: drop-shadow(0 0 6px rgba(110,168,255,0.7)); }
.jvm-marker-label {
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  padding: 3px 8px; border-radius: 6px; white-space: nowrap;
}
.jvm-line { stroke-dasharray: 8 7; animation: dash 1.6s linear infinite; filter: drop-shadow(0 0 5px rgba(110,168,255,0.6)); }
@keyframes dash { to { stroke-dashoffset: -120; } }
@media (prefers-reduced-motion: reduce) { .jvm-line { animation: none; } }

.reach-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.reach-legend li { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cool); }
.dot-na { background: var(--accent); }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-item {
  padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-1);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.why-item:hover { transform: translateY(-4px); border-color: rgba(79,107,255,0.35); }
.why-num { font-family: var(--font-mono); font-size: 0.95rem; font-weight: 600; color: var(--accent); display: block; margin-bottom: 12px; }
.why-item p { color: var(--muted); margin: 0; }

.slider { max-width: 860px; margin-inline: auto; }
.slides { position: relative; min-height: 220px; }
.slide {
  position: absolute; inset: 0; margin: 0; opacity: 0; transform: translateX(26px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); pointer-events: none;
  text-align: center; padding: 8px;
}
.slide.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.slide p { font-family: var(--font-head); font-size: clamp(1.2rem, 2.6vw, 1.7rem); line-height: 1.45; color: var(--text); letter-spacing: -0.015em; }
.slide footer { margin-top: 22px; display: flex; flex-direction: column; gap: 4px; }
.slide footer strong { color: var(--accent); font-family: var(--font-mono); font-size: 0.95rem; }
.slide footer span { color: var(--muted); font-size: 0.88rem; }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--bg-1); color: var(--text); font-size: 1.4rem; cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); transform: scale(1.06); }
.dots { display: flex; gap: 9px; }
.dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.2); cursor: pointer; transition: background 0.2s var(--ease), transform 0.2s var(--ease); }
.dots button.active { background: var(--accent); transform: scale(1.4); }

.careers-teaser { padding-block: clamp(44px, 6vw, 72px); }
.teaser-card {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  padding: clamp(28px, 4vw, 44px); border: 1px solid var(--line); border-radius: var(--radius);
  background:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px),
    var(--bg-1);
  background-size: 40px 40px, 40px 40px, auto;
}
.teaser-copy { max-width: 640px; }
.teaser-copy h2 { margin-bottom: 8px; }
.teaser-copy .section-lead { margin: 0; }
.teaser-card .btn { white-space: nowrap; }

.careers { background: var(--bg-1); }
.culture .careers-perks { margin-top: 0; }
.jobs { display: grid; gap: 14px; }
.job {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 24px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.job:hover { transform: translateX(5px); border-color: rgba(79,107,255,0.4); }
.job-main h3 { margin: 0 0 4px; }
.job-main p { margin: 0; color: var(--muted); font-family: var(--font-mono); font-size: 0.85rem; }
.job-meta { display: flex; align-items: center; gap: 18px; }
.tag { font-family: var(--font-mono); font-size: 0.74rem; color: var(--accent); border: 1px solid rgba(79,107,255,0.3); padding: 5px 11px; border-radius: 6px; background: rgba(79,107,255,0.05); }
.job-apply { font-weight: 600; color: var(--accent); }
.job-apply:hover { color: var(--text); }

.careers-perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.perk { display: flex; align-items: center; gap: 10px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-1); font-size: 0.9rem; }
.perk span { font-size: 1.25rem; }

.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-points { margin-top: 26px; display: grid; gap: 14px; }
.contact-points li { display: flex; align-items: center; gap: 12px; color: var(--muted); font-family: var(--font-mono); font-size: 0.9rem; }

.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.03em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-sm); color: var(--text); font-family: inherit; font-size: 0.97rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,107,255,0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field .error { color: #ff7a85; font-size: 0.8rem; min-height: 1em; }
.field.invalid input, .field.invalid textarea { border-color: #ff7a85; }
.contact-form .btn-block { grid-column: 1 / -1; margin-top: 4px; }
.form-success { grid-column: 1 / -1; color: var(--accent); font-weight: 500; text-align: center; margin: 0; }
.form-success.is-error { color: #ff7a85; }

.site-footer { background: var(--bg-1); border-top: 1px solid var(--line); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand p { color: var(--muted); margin-top: 16px; max-width: 320px; font-size: 0.93rem; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 16px; font-weight: 500; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 0.92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-block: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-family: var(--font-mono); font-size: 0.8rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { order: 2; }
  .cards { grid-template-columns: 1fr 1fr; }
  .bento-cell, .bento-lg, .bento-wide { grid-column: span 2; grid-row: auto; }
  .reach-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .careers-perks { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-1); border-bottom: 1px solid var(--line); padding: 12px 24px 24px;
    transform: translateY(-130%); transition: transform 0.4s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line-2); }
  .nav-cta { text-align: center; margin-top: 12px; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }

  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats > div:nth-child(2) { border-right: 0; }
  .hero-stats > div:nth-child(1), .hero-stats > div:nth-child(2) { border-bottom: 1px solid var(--line); }
  .cards { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-cell, .bento-lg, .bento-wide { grid-column: 1; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; }
  .field-full, .contact-form .btn-block { grid-column: 1; }
  .job { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .careers-perks, .footer-inner { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
}
