:root {
  --cream: #f2f0e9;
  --red: #f16724;
  --red-deep: #d9551b;
  --black: #000000;
  --ink: #111111;
  --muted: #4a4a4a;
  --white: #ffffff;
  --line: #000000;
  --wrap: 1120px;
  --header-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, .logo, .section-title, .banner-text {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--black);
}
.btn-red:hover { background: var(--red-deep); }
.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-ghost:hover { background: var(--black); color: var(--white); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  mix-blend-mode: normal;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--white);
}
.nav-links a:hover { color: var(--red); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--white);
  border-radius: 99px;
}

/* Hero */
.hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}
.hero-inner { position: relative; max-width: 820px; }
.hiring-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 10px 14px;
  transform: rotate(8deg);
  z-index: 2;
}
.hero h1 {
  font-size: clamp(42px, 9vw, 88px);
  color: var(--black);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--red); }
.hero-copy {
  max-width: 520px;
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Marquee */
.marquee {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
  will-change: transform;
}
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 28px;
  padding: 18px 28px 18px 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.marquee-group i {
  width: 8px;
  height: 8px;
  background: var(--red);
  display: inline-block;
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* Roles */
.roles { padding: 72px 0 88px; }
.section-title {
  font-size: clamp(36px, 7vw, 64px);
  color: var(--black);
  margin-bottom: 40px;
}
.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.role-card {
  background: var(--white);
  border: 2px solid var(--black);
  padding: 28px 26px 24px;
  box-shadow: 6px 6px 0 var(--black);
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.role-tag {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.role-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--black);
}
.role-card p {
  color: var(--muted);
  font-size: 15px;
  flex: 1;
  margin-bottom: 22px;
}
.role-link {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--black);
  border: 0;
  border-top: 2px solid var(--black);
  padding-top: 14px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}
.role-link:hover { color: var(--red); }

/* Why */
.why { padding: 72px 0 88px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-num {
  font-family: "Archivo Black", sans-serif;
  font-size: 42px;
  color: var(--red);
  margin-bottom: 12px;
  line-height: 1;
}
.why-item h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.25;
}
.why-item p {
  font-size: 14.5px;
  color: var(--muted);
}

/* Banner */
.banner {
  background: var(--black);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.banner-text {
  font-size: clamp(28px, 5.5vw, 52px);
  max-width: 900px;
  margin: 0 auto;
}

/* How */
.how { padding: 72px 0 88px; }
.how-list { list-style: none; }
.how-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px 0;
  border-top: 2px solid var(--black);
}
.how-list li:last-child { border-bottom: 2px solid var(--black); }
.how-num {
  font-family: "Archivo Black", sans-serif;
  font-size: 42px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(10, 10, 10, 0.28);
  line-height: 1;
}
.how-list h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.how-list p { color: var(--muted); font-size: 15px; max-width: 560px; }

/* Final CTA / Apply form */
.apply-section {
  padding: 72px 0 96px;
  background: var(--cream);
  text-align: center;
}
.apply-headline {
  margin-bottom: 18px;
}
.apply-lede {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 16px;
}
.apply-form-shell {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  overflow: hidden;
  min-height: 640px;
  min-width: 320px;
  text-align: left;
}
.apply-form-shell iframe {
  width: 100%;
  min-width: 320px;
  height: 720px;
  border: 0;
  display: block;
  background: var(--white);
}

.final-cta {
  padding: 72px 0 96px;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(36px, 8vw, 72px);
  color: var(--black);
  margin-bottom: 32px;
}
.final-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  border-top: 0;
  padding: 18px 0 28px;
  background: var(--cream);
}
.foot-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.foot-left,
.foot-right {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #8a8a8a;
}

@media (max-width: 900px) {
  .roles-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .hiring-badge { right: 16px; top: 8px; }
  .apply-form-shell iframe { height: 680px; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }
  .wrap { padding: 0 18px; }
  .btn {
    min-height: 48px;
    width: 100%;
    max-width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }
  .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: auto;
    width: min(78vw, 280px);
    background: var(--cream);
    color: var(--black);
    border-left: 0;
    box-shadow: -12px 0 32px rgba(0, 0, 0, 0.18);
    padding: 12px 0 calc(20px + env(safe-area-inset-bottom));
    gap: 0;
    transform: translateX(105%);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0.28s;
    z-index: 125;
    overflow: auto;
  }
  .nav-links a {
    padding: 16px 22px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--black);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a:active,
  .nav-links a:hover { background: rgba(241, 103, 36, 0.08); color: var(--red); }
  .nav-links.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-toggle {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    position: relative;
    z-index: 140;
  }
  .site-header { z-index: 140; }
  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: "";
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.4);
    z-index: 120;
  }
  .logo-img { height: 36px; }
  .hero {
    padding: 48px 0 44px;
  }
  .hero-inner { max-width: 100%; }
  .hiring-badge {
    position: static;
    display: inline-block;
    transform: rotate(-3deg);
    margin-bottom: 18px;
  }
  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
    margin-bottom: 16px;
  }
  .hero-copy {
    font-size: 15px;
    margin-bottom: 22px;
  }
  .hero-cta .btn { width: 100%; }
  .marquee-group {
    gap: 18px;
    padding: 14px 18px 14px 0;
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .section-title {
    font-size: clamp(30px, 10vw, 42px);
    margin-bottom: 28px;
  }
  .roles, .why, .how { padding: 48px 0 56px; }
  .roles-grid { gap: 14px; }
  .role-card {
    padding: 22px 18px 18px;
    box-shadow: 4px 4px 0 var(--black);
    min-height: 0;
  }
  .role-card h3 { font-size: 20px; }
  .role-card p { font-size: 14.5px; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .why-num { font-size: 34px; }
  .why-item h3 { font-size: 17px; }
  .banner { padding: 40px 18px; }
  .banner-text { font-size: clamp(22px, 7vw, 32px); }
  .how-list li {
    grid-template-columns: 52px 1fr;
    gap: 12px;
    padding: 22px 0;
  }
  .how-num { font-size: 28px; }
  .how-list h3 { font-size: 18px; }
  .how-list p { font-size: 14.5px; }
  .final-cta { padding: 48px 0 calc(64px + env(safe-area-inset-bottom)); }
  .final-cta h2 {
    font-size: clamp(30px, 10vw, 44px);
    margin-bottom: 24px;
  }
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .final-actions .btn { width: 100%; }
  .apply-section { padding: 48px 0 calc(64px + env(safe-area-inset-bottom)); }
  .apply-lede { font-size: 15px; margin-bottom: 20px; }
  .apply-form-shell {
    min-height: 600px;
    box-shadow: 4px 4px 0 var(--black);
  }
  .apply-form-shell iframe { height: 640px; }
  .foot-wrap {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .site-footer {
    padding: 18px 0 calc(22px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: clamp(32px, 12vw, 40px); }
  .section-title { font-size: 30px; }
  .role-card h3 { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .nav-links { transition: none; }
  .marquee-track { animation-duration: 60s; }
}
