@import url("https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,600;1,700;1,800&family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --blue: #4b68f0;
  --pink: #f05898;
  --black: #0a0a0a;
  --paper: #f9f7f4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--black);
  color: #fff;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 56px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  color: #fff;
  border-bottom: 1px solid #2a2a2a;
}

.logo-mark {
  display: flex;
  gap: 4px;
  align-items: center;
}

.logo-mark span {
  width: 13px;
  height: 13px;
  border: 2.5px solid currentColor;
  border-radius: 50%;
}

.top-nav {
  display: flex;
  gap: 22px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.top-nav .is-active {
  outline: 1px solid #fff;
  padding: 4px 6px;
}

.cta {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  border: 1px solid #fff;
}

.car-label {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Hero */
.car-hero {
  padding: 120px clamp(22px, 4vw, 56px) 48px;
  max-width: 920px;
}

.car-hero h1 {
  margin: 0 0 28px;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.12;
}

.car-hero h1 em {
  font-style: italic;
}

.car-hero-lead {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.3;
}

.car-team-shot {
  padding: 0 clamp(22px, 4vw, 48px);
}

.car-team-shot img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.car-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 6vw, 80px);
  padding: 56px clamp(22px, 4vw, 56px) 72px;
}

.car-intro p {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.45;
  font-weight: 500;
  max-width: 36ch;
}

/* Pink bands */
.car-band {
  padding: clamp(64px, 10vh, 120px) clamp(22px, 8vw, 120px);
  text-align: center;
}

.car-band.is-pink {
  background: var(--pink);
  color: #111;
}

.car-band p {
  margin: 0 auto;
  max-width: 28ch;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
}

.car-band-kicker {
  margin: 0 0 18px !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em;
}

.car-band.is-serif p:last-child {
  max-width: 32ch;
}

/* Join */
.car-join {
  padding: 72px clamp(22px, 4vw, 56px);
}

.car-join h2 {
  margin: 0 0 36px;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.car-join-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 28px;
  align-items: center;
}

.car-join-row p {
  margin: 0;
  max-width: 42ch;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
}

.car-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.car-btn:hover {
  transform: translateY(-2px);
}

.car-btn.is-blue {
  background: var(--blue);
  color: #111;
}

.car-btn.is-outline {
  border: 1.5px solid currentColor;
  margin-top: 18px;
}

/* Values */
.car-values {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: 40px clamp(22px, 4vw, 56px) 88px;
}

.car-values-he h2 {
  margin: 0;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 12ch;
}

.car-values-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.car-values-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.car-values-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.car-nb {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.car-values-list h3 {
  margin: 0 0 6px;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
}

.car-values-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #c8c8ce;
}

/* Support */
.car-support {
  background: var(--paper);
  color: #111;
  padding: 72px clamp(22px, 4vw, 56px) 80px;
}

.car-support-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 56px;
}

.car-support h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.05;
}

.car-support h2 em {
  font-style: italic;
}

.car-support-aside {
  margin: 0;
  max-width: 34ch;
  justify-self: end;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.car-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.7fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.car-support-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 36px;
}

.car-support-list h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: var(--blue);
}

.car-support-list h3 span {
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.car-support-list h3 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.car-support-list p {
  margin: 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.6;
  color: #2c2c30;
}

.car-support-visuals {
  position: sticky;
  top: 72px;
  display: grid;
  gap: 12px;
}

.car-support-visuals img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Impact */
.car-impact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 5vw, 64px);
  padding: 72px clamp(22px, 4vw, 56px);
  background: var(--black);
  color: #fff;
}

.car-impact-copy p:last-child,
.car-impact-side p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #d8d8dc;
  max-width: 42ch;
}

.car-impact-copy .car-label {
  margin-bottom: 18px;
}

.car-seal {
  width: 120px;
  height: 120px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  margin-bottom: 22px;
}

.car-seal span {
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.car-seal small {
  font-size: 10px;
  letter-spacing: 0.16em;
  margin-top: 4px;
}

/* Opportunities */
.car-opps {
  padding: 40px clamp(22px, 4vw, 48px) 72px;
}

.car-opps-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
}

.car-opps h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  max-width: 18ch;
}

.car-offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.car-offices figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.car-offices img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.car-offices figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  margin: 0;
  padding: 5px 10px;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Talent */
.car-talent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 24px clamp(22px, 4vw, 56px) 80px;
  border-top: 1px solid #2a2a2a;
}

.car-talent h2 {
  margin: 0 0 14px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
}

.car-talent h3 {
  margin: 0 0 12px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 32px);
}

.car-talent p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #cfcfd4;
  max-width: 40ch;
}

/* Talk */
.talk-section {
  background: var(--paper);
  color: #111;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: min(70vh, 620px);
  align-items: stretch;
}

.talk-main {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 48px 40px;
}

.talk-title {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
}

.talk-arrow {
  width: 48px;
  height: 48px;
  border: 1.5px solid #111;
  display: grid;
  place-items: center;
  font-size: 22px;
  transition: background 0.2s ease, color 0.2s ease;
}

.talk-arrow:hover {
  background: #111;
  color: #fff;
}

.talk-visual {
  position: relative;
  overflow: hidden;
  min-height: min(70vh, 620px);
  height: 100%;
  background: #111;
}

.talk-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Footer */
.site-footer {
  background: #111;
  color: #fff;
  padding: 56px clamp(22px, 4vw, 48px) 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 0.7fr;
  gap: 28px;
}

.footer-brand h6,
.newsletter-title {
  margin: 0;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.03em;
}

.footer-tag {
  margin: 0 0 14px !important;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 18px !important;
  color: #bbb !important;
}

.footer-brand p {
  margin: 0;
  max-width: 32ch;
  color: #cfcfd4;
  font-size: 14px;
  line-height: 1.5;
}

.newsletter-title {
  margin-top: 34px !important;
  font-size: clamp(28px, 3vw, 40px) !important;
}

.newsletter-input {
  margin-top: 16px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid #4a4a4f;
}

.footer-grid > div:not(.footer-brand) h6 {
  margin: 0 0 14px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.footer-grid a,
.footer-grid > div:not(.footer-brand) p {
  margin: 0;
  display: block;
  color: #d0d0d5;
  font-size: 14px;
  line-height: 1.55;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid #2c2c30;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #9f9fa5;
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 14px;
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .car-intro,
  .car-join-row,
  .car-values,
  .car-support-top,
  .car-support-grid,
  .car-impact,
  .car-opps-row,
  .car-offices,
  .car-talent,
  .talk-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .car-support-aside {
    justify-self: start;
  }

  .car-support-visuals {
    position: relative;
    top: 0;
    grid-template-columns: 1fr 1fr;
  }

  .car-team-shot img {
    aspect-ratio: 16 / 10;
  }

  .car-btn {
    justify-self: start;
  }
}
