/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(assets/fonts/montserrat-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(assets/fonts/montserrat-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(assets/fonts/montserrat-vietnamese.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin */
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url(assets/fonts/roboto-mono-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url(assets/fonts/roboto-mono-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url(assets/fonts/roboto-mono-vietnamese.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

:root {
  --deep-900: #04303f;
  --deep-800: #052c3e;
  --deep-700: #07405a;
  --deep-500: #0a5a78;
  --amber: #fccd1b;
  --amber-soft: #fce39a;
  --amber-dark: #a9760a;
  --teal: #3fd6c8;
  --orange: #ff8a3d;
  --ink: #111;
  --ink-700: #22222a;
  --ink-500: #3d3d47;
  --ink-400: #4a4a55;
  --muted: #7b7b86;
  --tint: #e9f1f5;
  --tint-soft: #f4f8fa;
  --line: #dbe6ec;
  --field-line: #a9c2cf;
  --on-deep: #cfe1e9;
  --on-deep-dim: #8fb2c2;
  --shadow-sm: 0 4px 18px rgba(20, 20, 40, .08);
  --shadow-md: 0 6px 26px rgba(20, 20, 40, .13);
  --shadow-lg: 0 12px 32px rgba(20, 20, 40, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --wrap: 1440px;
  --gutter: 16px;
}

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

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  color: #1c1c1c;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; text-wrap: pretty; }
p { margin: 0; }
img, svg { max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: var(--deep-700); transition: color .18s ease; }
a:hover { color: var(--deep-800); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-narrow { max-width: 1280px; }

.section { padding: 76px 0; }

/* ---------- reveal ---------- */

/* gated on .js so content stays visible if scripting is off or the observer never runs */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: none;
  border-radius: 6px;
  padding: 17px 30px;
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.arw { flex-shrink: 0; width: 16px; height: 16px; }
.btn-primary { background: var(--deep-700); color: #fff; }
.btn-primary:hover { background: var(--deep-800); color: #fff; transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.1px;
  color: var(--muted);
  text-transform: uppercase;
}
.eyebrow-light { color: #9dc0cf; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.brand img { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; }
.brand-text { display: block; line-height: 1; }
.brand-name {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.3px;
  color: #141b34;
}
.brand-tag {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2px;
  color: #141b34;
}
.brand-lg img { width: 52px; height: 52px; }
.brand-lg .brand-name { font-size: 27px; letter-spacing: -.4px; }
.brand-lg .brand-tag { margin-top: 3px; font-size: 11px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  font-size: 16.5px;
  font-weight: 500;
}
.site-nav a {
  color: #26262b;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--deep-700); }
.nav-cta { padding: 13px 24px; font-size: 15.5px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #141b34;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  background: linear-gradient(135deg, var(--deep-900) 0%, var(--deep-700) 55%, var(--deep-500) 100%);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 64px var(--gutter) 0;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.hero-copy { padding-bottom: 88px; }
.hero h1 {
  margin: 22px 0 0;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -2px;
  color: #fff;
}
.hero-lede {
  margin-top: 30px;
  font-size: clamp(19px, 2.3vw, 30px);
  line-height: 1.4;
  color: var(--on-deep);
  max-width: 560px;
}

/* stop compositing the hero's infinite animations once it scrolls away */
.hero.is-idle .ring,
.hero.is-idle .ring-glow,
.hero.is-idle .orbit,
.hero.is-idle .twinkle,
.hero.is-idle .stat-chip,
.hero.is-idle .hero-logo { animation-play-state: paused; }

.hero-stage {
  --hero-scale: 1.18;
  height: calc(600px * var(--hero-scale));
  display: flex;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.hero-visual {
  position: relative;
  width: 600px;
  height: 600px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(var(--hero-scale));
  transform-origin: top center;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(195, 191, 246, .55) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
  opacity: .5;
}

@keyframes p7spin { to { transform: rotate(360deg); } }
@keyframes p7pulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.12); opacity: 1; }
}
@keyframes p7twinkle {
  0%, 100% { transform: scale(1); opacity: .3; }
  50% { transform: scale(1.5); opacity: .9; }
}
@keyframes p7float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.twinkle {
  position: absolute;
  border-radius: 50%;
  animation-name: p7twinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--amber);
}
.ring-outer { width: 520px; height: 520px; opacity: .6; animation: p7spin 34s linear infinite; }
.ring-inner { width: 400px; height: 400px; border-style: dashed; animation: p7spin 24s linear infinite reverse; }
.ring-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 205, 27, .3) 0%, rgba(252, 205, 27, 0) 70%);
  animation: p7pulse 6s ease-in-out infinite;
}

.orbit { position: absolute; }
.orbit-outer { width: 518px; height: 518px; animation: p7spin 34s linear infinite; }
.orbit-inner { width: 398px; height: 398px; animation: p7spin 24s linear infinite reverse; }
.orbit-dot {
  position: absolute;
  width: var(--size);
  height: var(--size);
  margin-left: calc(var(--size) / -2);
  margin-top: calc(var(--size) / -2);
  border-radius: 50%;
  background: var(--dot);
  box-shadow: 0 0 0 var(--ring) var(--halo);
}

.hero-logo {
  position: relative;
  width: 290px;
  height: 290px;
  object-fit: contain;
  animation: p7float 7s ease-in-out infinite;
}

.stat-chip {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 13px 17px;
  box-shadow: 0 8px 24px rgba(20, 20, 40, .13);
  animation: p7float 8s ease-in-out infinite;
}
.stat-chip-num {
  display: block;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1;
}
.stat-chip-label {
  display: block;
  margin-top: 5px;
  font-family: 'Roboto Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .5px;
  color: #33333d;
  text-transform: uppercase;
}

/* ---------- panels ---------- */

.panel {
  background: var(--tint);
  padding: 64px;
  border-radius: 4px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
}
.services-panel { align-items: center; }

.services-intro { max-width: 560px; }
.services-intro h2 {
  font-size: clamp(32px, 3.9vw, 50px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -1.4px;
  color: #1c1c22;
}
.services-intro > p {
  margin-top: 16px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-700);
}

.stat-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.stat-num {
  display: block;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--deep-700);
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-family: 'Roboto Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .4px;
  line-height: 1.45;
  color: var(--ink-700);
  text-transform: uppercase;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 200px;
  padding: 28px 38px;
  color: #fff;
}
.service-card-ads { background: var(--deep-900); border-radius: 10px 10px 0 0; }
.service-card-yt { background: var(--deep-700); border-radius: 0 0 10px 10px; }
.service-icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 { font-size: 31px; font-weight: 800; letter-spacing: -.6px; }
.service-card p { margin-top: 10px; font-size: 16.5px; line-height: 1.5; color: #dcdcf2; }

/* ---------- team ---------- */

.section-team { padding: 40px 0 96px; }
.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.team-copy { max-width: 560px; }
.team-copy .brand { margin-bottom: 26px; }
.team-copy h2 {
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.4px;
  color: var(--ink);
}
.team-lede {
  margin-top: 16px;
  font-size: clamp(21px, 2.6vw, 32px);
  line-height: 1.3;
  color: var(--ink-500);
}
.team-copy .btn { margin-top: 34px; }

.quote-col { border-left: 2px solid #dcdce4; padding-left: 34px; }
.quote-card {
  margin: 0;
  max-width: 560px;
  background: #fff;
  box-shadow: var(--shadow-md);
  border-radius: 10px;
  overflow: hidden;
}
.quote-head { background: var(--deep-700); height: 124px; position: relative; }
.quote-avatar {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  box-shadow: var(--shadow-sm);
}
.quote-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}
.quote-card blockquote {
  margin: 0;
  padding: 118px 52px 0;
  text-align: center;
  font-size: 21.5px;
  line-height: 1.55;
  color: #1c1c22;
}
.quote-card figcaption { padding: 32px 52px 46px; text-align: center; }
.quote-name { display: block; font-size: 22px; font-weight: 700; color: var(--ink); }
.quote-role {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 1.1px;
  color: var(--ink-500);
  text-transform: uppercase;
}
.quote-dots {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
  max-width: 560px;
}
.quote-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c9c9d2;
}
.quote-dots .is-active { background: var(--deep-900); }

/* ---------- values ---------- */

.section-values {
  position: relative;
  background: #e7e7e8;
  padding: 84px 0 96px;
  overflow: hidden;
}
.values-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #f2f2f3 0%, #e6e6e7 55%, #dededf 100%);
}
.values-bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
}
.values-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(231, 231, 232, .55) 0%, rgba(231, 231, 232, .2) 45%, rgba(231, 231, 232, .7) 100%);
}
.section-values .wrap { position: relative; }
.values-title {
  margin-bottom: 48px;
  font-size: clamp(36px, 4.9vw, 62px);
  font-weight: 800;
  letter-spacing: -1.6px;
  color: var(--ink);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 40px;
}
.value-card {
  grid-column: span 2;
  background: var(--deep-900);
  border-radius: 8px;
  padding: 40px 34px 44px;
  text-align: center;
  color: #fff;
  transition: transform .22s ease, box-shadow .22s ease;
}
.values-grid > .value-card:nth-child(4) { grid-column: 2 / span 2; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon {
  height: 62px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card h3 { font-size: 24.5px; font-weight: 700; }
.value-card p {
  margin-top: 16px;
  font-size: 16.5px;
  line-height: 1.62;
  font-weight: 600;
  color: #f2f3f8;
}

/* ---------- jobs ---------- */

.section-jobs { background: var(--tint-soft); padding: 78px 0 96px; }
.jobs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}
.jobs-copy { max-width: 580px; }
.jobs-copy h2 {
  margin-top: 18px;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.4px;
  color: var(--ink);
}
.jobs-region {
  margin-top: 16px;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--deep-700);
}
.jobs-copy > p:not(.jobs-region):not(.eyebrow) {
  margin-top: 22px;
  font-size: 18.5px;
  line-height: 1.62;
  color: var(--ink-700);
}

.job-list { display: flex; flex-direction: column; gap: 20px; }
.job-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 30px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.job-card h3 { font-size: 22.5px; font-weight: 700; color: var(--ink); }
.job-meta {
  margin-top: 8px;
  font-family: 'Roboto Mono', monospace;
  font-size: 13.5px;
  letter-spacing: .4px;
  color: #33333d;
  text-transform: uppercase;
}
.job-card > div { flex: 1; }
.job-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--deep-700);
  text-decoration: none;
  white-space: nowrap;
}

/* ---------- contact ---------- */

.section-contact { padding: 84px 0 96px; }
.contact-panel { align-items: start; }
.contact-copy { max-width: 560px; }
.contact-title {
  font-size: clamp(30px, 3.7vw, 48px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -1px;
  color: #1c1c22;
}
.contact-copy > p {
  margin-top: 22px;
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--ink-700);
}
.contact-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-list li {
  background: #fff;
  border-radius: 8px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.contact-list svg { flex-shrink: 0; width: 26px; height: 26px; }
.contact-label {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .8px;
  color: var(--ink-400);
  text-transform: uppercase;
}
.contact-value {
  display: block;
  margin-top: 6px;
  font-size: 19.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
a.contact-value:hover { color: var(--deep-700); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.mode-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mode-tab {
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 14px;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  border: 1px solid var(--field-line);
  background: #fff;
  color: var(--ink-700);
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.mode-tab.is-active { border-color: var(--deep-700); background: var(--deep-700); color: #fff; }

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .6px;
  color: var(--ink-700);
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 17px;
  color: #1c1c22;
  background: #fff;
  border: 1px solid var(--field-line);
  border-radius: 6px;
  padding: 16px 18px;
  outline: none;
  width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--deep-700);
  box-shadow: 0 0 0 3px rgba(7, 64, 90, .14);
}
.contact-form :invalid:not(:placeholder-shown) { border-color: #c0392b; }

.select-wrap { position: relative; display: block; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 46px; }
.select-wrap svg {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-submit { margin-top: 6px; align-self: flex-start; }
.form-sent { font-size: 16.5px; color: #1f7a3d; font-weight: 600; }

/* ---------- start ---------- */

.section-start { background: var(--tint-soft); padding: 78px 0 96px; text-align: center; }
.section-start .eyebrow { font-weight: 500; letter-spacing: 1.2px; color: var(--ink-400); font-size: 15px; }
.start-title {
  margin-top: 24px;
  font-size: clamp(36px, 5.7vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  color: #0b0b10;
}
.start-lede {
  margin-top: 24px;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.4;
  color: var(--ink-700);
}
.start-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
}
.start-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pill {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .8px;
  padding: 9px 18px;
  border-radius: 999px;
  text-transform: uppercase;
}
.pill-amber { background: var(--amber-soft); color: var(--deep-900); }
.pill-deep { background: var(--deep-900); color: #fff; }
.start-card h3 {
  margin-top: 38px;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
}
.start-card p {
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-700);
  max-width: 460px;
}
.start-card .btn { margin-top: auto; }
.start-card p + .btn { margin-top: 44px; }

/* ---------- footer ---------- */

.site-footer { background: var(--deep-900); color: #fff; padding: 80px 0 0; }
.site-footer .brand-name,
.site-footer .brand-tag { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
}
.footer-blurb {
  margin-top: 24px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--on-deep);
  max-width: 360px;
}
.social { margin-top: 24px; display: flex; gap: 12px; }
.social a {
  width: 42px;
  height: 42px;
  border: 1px solid #33406e;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: border-color .18s ease, color .18s ease;
}
.social a:hover { border-color: var(--amber); color: var(--amber); }

.site-footer h4 {
  font-family: 'Roboto Mono', monospace;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .8px;
  color: var(--on-deep-dim);
  text-transform: uppercase;
}
.footer-links,
.footer-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 16.5px;
}
.footer-links a { color: #fff; text-decoration: none; }
.footer-links a:hover { color: var(--amber); }
.footer-contact { color: var(--on-deep); }

.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid #24325f;
  padding: 24px 0 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 15.5px;
  color: var(--on-deep-dim);
}
.footer-legal { margin-left: auto; display: flex; gap: 24px; }
.footer-legal a { color: var(--on-deep-dim); text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding-bottom: 24px; }
  .hero-lede { max-width: 640px; }
  .hero-stage { --hero-scale: .92; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .site-nav a {
    padding: 16px 24px;
    border-top: 1px solid var(--line);
    font-size: 17px;
  }
  .nav-cta { margin: 16px 24px 20px; justify-content: center; }

  .panel { grid-template-columns: 1fr; gap: 44px; padding: 40px 30px; }
  .services-intro, .contact-copy { max-width: none; }
  .team-grid, .jobs-grid { grid-template-columns: 1fr; gap: 44px; }
  .team-copy { max-width: none; }
  .quote-col { border-left: none; padding-left: 0; }
  .quote-card, .quote-dots { max-width: none; }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .value-card, .values-grid > .value-card:nth-child(4) { grid-column: auto; }
  .start-grid { gap: 44px; }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-values, .section-jobs, .section-contact, .section-start { padding: 56px 0 64px; }
  .section-team { padding: 32px 0 56px; }

  .hero-inner { padding: 40px var(--gutter) 0; }
  .hero-stage { --hero-scale: .66; }

  .stat-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { flex-direction: column; align-items: flex-start; padding: 28px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { grid-column: auto; }
  .start-grid { grid-template-columns: 1fr; }
  .start-card p { max-width: none; }
  .start-card .btn, .start-card p + .btn { margin-top: 28px; }
  .job-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-blurb { max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-legal { margin-left: 0; }
  .quote-card blockquote { padding: 104px 26px 0; font-size: 18.5px; }
  .quote-card figcaption { padding: 24px 26px 32px; }
}

@media (max-width: 460px) {
  .hero-stage { --hero-scale: .54; }
}
