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

:root {
  --bg:       #080808;
  --surface:  #0f0f0f;
  --card:     #141414;
  --text:     #EEEBE3;
  --muted:    #787068;
  --dim:      #3a3530;
  --mint:     #00C9A7;
  --mint-20:  rgba(0, 201, 167, 0.20);
  --mint-08:  rgba(0, 201, 167, 0.08);
  --border:   rgba(238,235,227,0.08);
  --radius:   14px;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) {
  body { cursor: auto; }
}

a, button { cursor: none; }

@media (hover: none) {
  a, button { cursor: auto; }
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

em { font-family: 'DM Serif Display', serif; font-style: italic; }

.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--mint);
  width: 0%;
  z-index: 9999;
  transform-origin: left;

  animation: scroll-prog linear;
  animation-timeline: scroll(root);
}

@keyframes scroll-prog {
  from { width: 0%; }
  to   { width: 100%; }
}

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), opacity 0.2s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,201,167,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
  mix-blend-mode: difference;
}

body.cursor-big .cursor          { width: 14px; height: 14px; }
body.cursor-big .cursor-follower { width: 60px; height: 60px; border-color: var(--mint); }

@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
}

::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--dim);
  border-radius: 6px;
  transition: background 0.2s;
}

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

* {
  scrollbar-width: thin;
  scrollbar-color: var(--dim) var(--bg);
}

@supports (animation-timeline: view()) {
  .sdrive {
    animation: sdrive-in linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 28%;
  }

  .sdrive--delay {
    animation-delay: 0.08s;
    animation-range: entry 2% entry 30%;
  }
}

@keyframes sdrive-in {
  from {
    opacity: 0;
    transform: translateY(48px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports not (animation-timeline: view()) {
  .sdrive {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .sdrive.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .sdrive--delay.in-view {
    transition-delay: 0.14s;
  }
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 28px;
}

.section-label.light { color: #000; opacity: 0.5; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 24px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 0;
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
}

.wordmark span { color: var(--mint); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nl {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 50px;
  transition: color 0.2s, background 0.2s;
}

.nl:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nl--cta {
  background: var(--mint);
  color: #000;
  font-weight: 600;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.nl--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--mint-20);
  background: var(--mint);
  color: #000;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 120px;
  position: relative;
}

.hero::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -3px;
  margin-bottom: 64px;
}

.line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}

.line-inner {
  display: block;
  animation: line-up 1s var(--ease) both;
}

.line-wrap:nth-child(2) .line-inner { animation-delay: 0.12s; }

@keyframes line-up {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.hero-title em {
  font-size: clamp(52px, 9vw, 110px);
  line-height: 1.0;
  color: var(--mint);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 80px;
  animation: fade-up 0.9s 0.3s var(--ease) both;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 380px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 16px 28px 16px 32px;
  border-radius: 50px;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s var(--ease);
  flex-shrink: 0;
}

.btn-arrow svg { width: 18px; transition: transform 0.25s var(--ease); }
.btn-arrow:hover {
  background: var(--mint);
  color: #000;
  border-color: var(--mint);
  transform: translateY(-2px);
}
.btn-arrow:hover svg { transform: translateX(4px); }

.hero-stat-strip {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fade-up 1s 0.5s var(--ease) both;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 2px;
  padding-right: 48px;
  flex-direction: row;
  position: relative;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 1px;
  background: var(--border);
}

.hs-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hs-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--mint);
  align-self: flex-start;
  margin-top: 4px;
}

.hs-label {
  flex-basis: 100%;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 4px;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ticker {
  background: var(--mint);
  color: #000;
  padding: 18px 0;
  overflow: hidden;
  transform: skewY(-1.5deg);
  margin: 0 -10px;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.ticker-dot {
  font-size: 10px;
  opacity: 0.6;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.mission {
  padding: 140px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.mission-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.3;
  color: var(--text);
  font-weight: 400;
  quotes: none;
}

.mission-intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.mission-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  transition: color 0.2s;
}

.mission-list li:hover { color: var(--text); }

.ml-num {
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  color: var(--mint);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.services {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.services-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 64px;
}

.services-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 640px;
}

.services-title em {
  font-size: inherit;
}

.service-list {
  border-top: 1px solid var(--border);
}

.service-item {
  border-bottom: 1px solid var(--border);
  max-width: 100%;
}

.service-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 40px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  text-align: left;
  transition: background 0.2s;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  left: 0; right: 0;
}

.service-item .service-toggle {
  width: 100%;
  max-width: none;
}

.service-toggle:hover { background: rgba(255,255,255,0.02); }
.service-item.open .service-toggle { background: rgba(0,201,167,0.04); }

.si-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: 1px;
  flex-shrink: 0;
  width: 28px;
}

.si-name {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: -0.3px;
  flex: 1;
}

.si-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), border-color 0.2s, background 0.2s;
}

.si-icon svg { width: 16px; height: 16px; }

.service-item.open .si-icon {
  transform: rotate(180deg);
  border-color: var(--mint);
  background: var(--mint-08);
}

.service-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-item.open .service-body {
  grid-template-rows: 1fr;
}

.service-body-inner {
  overflow: hidden;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s 0.1s var(--ease), transform 0.35s 0.1s var(--ease);
}

.service-item.open .service-body-inner {
  opacity: 1;
  transform: translateY(0);
}

.service-body-inner p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 620px;
}

.service-body-inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  row-gap: 12px;
}

.service-body-inner li {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  padding: 0 32px 0 14px;
  position: relative;
  flex-shrink: 0;
}

.service-body-inner li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 1px;
  background: var(--mint);
  transform: translateY(-50%);
}

.impact {
  background: var(--mint);
  color: #000;
  padding: 120px 40px;
  overflow: hidden;
  position: relative;
}

@supports (animation-timeline: scroll()) {
  .impact::after {
    content: '';
    position: absolute;
    inset: -30%;
    background: radial-gradient(ellipse at 70% 50%, rgba(0,0,0,0.08) 0%, transparent 60%);
    animation: parallax-shift linear;
    animation-timeline: view();
    animation-range: contain;
  }
  @keyframes parallax-shift {
    from { transform: translateY(-20px); }
    to   { transform: translateY(20px); }
  }
}

.impact-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 48px 0 64px;
}

.impact-num {
  padding: 40px 32px 40px 0;
  border-right: 1px solid rgba(0,0,0,0.12);
}

.impact-num:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.impact-num:first-child { padding-left: 0; }
.impact-num:not(:first-child):not(:last-child) { padding: 40px 32px; }

.in-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  color: #000;
  font-variant-numeric: tabular-nums;
}

.in-suffix {
  font-size: 36px;
  font-weight: 800;
  color: rgba(0,0,0,0.6);
  letter-spacing: -1px;
}

.in-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
  margin-top: 8px;
  line-height: 1.4;
}

.impact-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  color: rgba(0,0,0,0.45);
  font-weight: 400;
  letter-spacing: -0.5px;
}

/* ──────────────────────────────────────────
   PLATFORMS
────────────────────────────────────────── */
.platforms {
  padding: 80px 40px;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.platforms-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.platforms-row {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.pf {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dim);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.pf svg { width: 22px; height: 22px; }
.pf:hover { color: var(--muted); }

/* ──────────────────────────────────────────
   HIRING
────────────────────────────────────────── */
.hiring {
  padding: 140px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.hiring-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.hiring-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hiring-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 340px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: 50px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}

.btn-outline:hover {
  border-color: var(--mint);
  background: var(--mint-08);
  transform: translateY(-2px);
}

.hiring-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.role-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.role-card:hover {
  border-color: rgba(0,201,167,0.3);
  transform: translateX(6px);
}

.role-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint);
  background: var(--mint-08);
  border: 1px solid rgba(0,201,167,0.2);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.role-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.role-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.role-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.role-card li {
  font-size: 12px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ──────────────────────────────────────────
   CONTACT
────────────────────────────────────────── */
.contact {
  padding: 140px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.0;
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 48px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cm-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cm-item:last-child { border-bottom: none; }

.cm-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.cm-val {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

/* Form */
.cform {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--muted);
  text-transform: uppercase;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
  width: 100%;
}

.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23787068' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--mint);
  background: rgba(0,201,167,0.05);
  box-shadow: 0 0 0 3px rgba(0,201,167,0.1);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--dim); }
.cf-field select option { background: #141414; color: var(--text); }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--mint);
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 18px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--mint-20);
}

.bs-icon { width: 20px; transition: transform 0.25s var(--ease); }
.btn-submit:hover .bs-icon { transform: translateX(4px); }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  color: var(--mint);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 20px;
  background: var(--mint-08);
  border: 1px solid rgba(0,201,167,0.2);
  border-radius: 10px;
}

.form-success svg { width: 22px; flex-shrink: 0; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 40px 40px;
  position: relative;
  overflow: hidden;
}

/* Giant background wordmark */
.footer-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 800;
  letter-spacing: -6px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238,235,227,0.05);
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: 0;
  margin-bottom: -0.2em;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 13px;
  color: var(--dim);
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--text); }

.footer-socials {
  display: flex;
  gap: 10px;
}

.fs-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.fs-link svg { width: 16px; }
.fs-link:hover { color: var(--mint); border-color: rgba(0,201,167,0.3); background: var(--mint-08); }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-num:nth-child(2) { border-right: none; }
  .impact-num:nth-child(3) { border-right: 1px solid rgba(0,0,0,0.12); }
  .impact-num:nth-child(3), .impact-num:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.12); }
  .impact-num:last-child { padding-left: 0; }

  .mission-inner { gap: 48px; }
  .hiring-inner  { gap: 48px; }
  .contact-inner { gap: 56px; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 800;
  }

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

  .nl {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    padding: 12px 28px;
  }

  .nl--cta { font-size: 18px; }

  .burger {
    display: flex;
    z-index: 950;
    position: relative;
  }

  /* Hero */
  .hero {
    padding: 100px 24px 48px;
    min-height: auto;
    justify-content: flex-start;
  }
  .hero-title { margin-bottom: 36px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 48px; }
  .hero-sub { font-size: 16px; }
  .hero-stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding-top: 28px; }
  .hero-stat { padding-right: 0; padding: 0 12px 0 0; flex-direction: column; align-items: flex-start; }
  .hero-stat:not(:first-child) { padding-left: 16px; border-left: 1px solid var(--border); }
  .hero-stat::after { display: none; }
  .hs-num { font-size: 28px; }
  .hs-suffix { font-size: 18px; margin-top: 2px; }
  .hs-label { font-size: 11px; }

  /* Ticker */
  .ticker { margin: 0; }

  /* Mission */
  .mission { padding: 80px 24px; }
  .mission-inner { grid-template-columns: 1fr; gap: 48px; }

  /* Services */
  .services-head { padding: 0 24px; }
  .service-toggle { padding: 24px; }
  .service-body   { padding: 0 24px; }
  .service-body-inner { gap: 16px; }

  /* Impact */
  .impact { padding: 80px 24px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }

  /* Platforms */
  .platforms { padding: 60px 24px; }
  .platforms-row { gap: 28px; }

  /* Hiring */
  .hiring { padding: 80px 24px; }
  .hiring-inner { grid-template-columns: 1fr; gap: 48px; }

  /* Contact */
  .contact { padding: 80px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .cf-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -2px; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-num { border-right: none !important; border-top: 1px solid rgba(0,0,0,0.12); }
  .impact-num:first-child { border-top: none; }
  .impact-num { padding: 24px 0 !important; }
}
