:root {
  --yellow: #ffd90d;
  --ink: #140111;
  --ink-2: #130b19;
  --muted: #5c5663;
  --nav: rgba(20, 17, 24, 0.72);
  --line: #e6e4e8;
  --bg: #ffffff;
  --soft: #f6f5f7;
  --radius: 32px;
  --radius-lg: 40px;
  --max: 1280px;
  --font: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.wrap-wide { width: min(1440px, calc(100% - 32px)); margin: 0 auto; }

/* Header */
.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 4px 4px 4px 18px;
  background: var(--nav);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 1000px;
  color: #fff;
  width: min(820px, calc(100% - 24px));
}
.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: #fff;
  margin-right: auto;
  padding-right: 8px;
}
.logo { align-items: flex-start; }
.logo span { line-height: 1; }
.logo svg { width: 22px; height: 16px; margin-top: -7px; margin-left: -4px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-btn {
  background: none;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
}
.nav-btn:hover { background: rgba(255,255,255,0.08); }
.chev {
  width: 8px; height: 8px;
  border-right: 1.6px solid #fff;
  border-bottom: 1.6px solid #fff;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.9;
}
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  display: none;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}
.dropdown a:hover { background: var(--soft); }
.dropdown .drop-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 8px 12px 4px;
}
.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--ink) !important;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}
.btn-yellow:hover { filter: brightness(0.97); }
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: #fff !important;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ink);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
}
.dot { width: 6px; height: 6px; background: currentColor; border-radius: 50%; display: inline-block; }
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent; color: #fff;
  border-radius: 999px;
  cursor: pointer;
}
.menu-toggle span {
  display: block; width: 18px; height: 1.5px; background: #fff; margin: 5px auto;
}

/* Hero / type */
.page { padding-top: 108px; }
.eyebrow {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  text-align: center;
  margin-bottom: 36px;
}
.split-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 36px;
}
.split-intro h2,
.h-display {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.split-intro p,
.lead { font-size: 16px; color: var(--ink-2); max-width: 420px; }
.hero-actions { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
}
.hero-media img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 21/9; background: #1a1520; }

.section-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 8px 0 28px;
}
.section-dot::before {
  content: "";
  width: 1px;
  height: 56px;
  background: #cfc8d4;
}
.section-dot span {
  width: 8px; height: 8px; background: var(--ink); border-radius: 50%;
}
.center-quote {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.2;
}
.full-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 24px auto 72px;
}
.full-photo img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }

.exec-title {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
}

.benefits { margin: 24px 0 80px; }
.benefits h3.section-label { font-size: 16px; font-weight: 500; margin-bottom: 28px; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.benefit-card { display: flex; flex-direction: column; gap: 16px; }
.benefit-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 24px;
}
.benefit-card h4 { font-size: 22px; font-weight: 500; letter-spacing: -0.03em; }
.benefit-card p { color: var(--muted); font-size: 15px; }

.culture { margin: 40px 0 72px; }
.culture-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 28px; }
.culture-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}
.culture-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 24px;
}
.culture-grid img:first-child { height: 320px; }

.quote-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  color: #fff;
  margin: 40px 0 80px;
}
.quote-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.quote-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
}
.quote-hero .quote-copy {
  position: relative; z-index: 1;
  max-width: 640px;
  padding: 80px 56px;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.quote-hero .quote-mark { font-size: 64px; line-height: 1; display: block; margin-bottom: 12px; }
.people-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 24px; }
.people-tabs button {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
}
.people-tabs button.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.intern-band { margin: 20px 0 80px; }
.intern-band .chip { margin: 0 auto 28px; display: flex; width: fit-content; }
.intern-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 28px;
}
.intern-media { border-radius: var(--radius); overflow: hidden; }
.intern-media img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }

.jobs { padding: 20px 0 80px; }
.jobs-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filters select {
  border: 1px solid #d9d6dc;
  border-radius: 12px;
  padding: 10px 14px;
  background: #fff;
  min-width: 180px;
}
.job-list { list-style: none; border-top: 1px solid var(--line); }
.job-list li { border-bottom: 1px solid var(--line); }
.job-list a {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 16px;
  padding: 22px 4px;
  align-items: center;
}
.job-list a:hover { background: #faf9fb; }
.job-title { font-size: 18px; font-weight: 500; }
.job-meta { color: var(--muted); font-size: 14px; }
.arrow { font-size: 20px; }

.media-cta {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  color: #fff;
  margin: 20px 0 72px;
}
.media-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-cta .copy { position: relative; z-index: 1; padding: 72px 48px; max-width: 560px; }
.media-cta h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 400; letter-spacing: -0.04em; margin-bottom: 12px; }
.news { margin: 20px 0 80px; }
.news-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.news-card time { color: var(--muted); font-size: 13px; display: block; margin-bottom: 8px; }
.news-card h4 { font-size: 18px; font-weight: 500; letter-spacing: -0.03em; line-height: 1.3; }

.footer-cta {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  color: #fff;
  margin: 20px auto 28px;
}
.footer-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.footer-cta .copy { position: relative; z-index: 1; padding: 64px 48px; max-width: 520px; }
.footer-cta h3 { font-size: clamp(28px, 3vw, 40px); font-weight: 400; letter-spacing: -0.03em; margin-bottom: 12px; }

.site-footer { padding: 28px 0 40px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
}
.socials a:hover { background: var(--soft); }
.socials svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 160px); gap: 24px; }
.footer-cols h5 { font-size: 14px; margin-bottom: 10px; }
.footer-cols a { display: block; font-size: 14px; color: var(--muted); padding: 4px 0; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 12px; padding-top: 18px;
}
.footer-legal { display: flex; gap: 14px; flex-wrap: wrap; }
.mobile-drawer { display: none; }

/* Generic pages */
.page-hero { padding: 12px 0 40px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 40px 0; }
.stat { padding: 28px; background: var(--soft); border-radius: 24px; }
.stat b { display: block; font-size: 42px; font-weight: 500; letter-spacing: -0.04em; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--soft); border-radius: 24px; padding: 24px; }
.card h3 { margin-bottom: 8px; font-weight: 500; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { padding: 8px 0 24px; }
.step .num { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq summary { cursor: pointer; font-size: 18px; font-weight: 500; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--muted); margin-top: 10px; }

/* Apply form */
.apply-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 80px;
}
.form {
  background: var(--soft);
  border-radius: 28px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.sr-only {
  position: absolute;
  left: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.form-row { margin-bottom: 14px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
}
.form textarea { min-height: 120px; resize: vertical; }
.form input[type="file"] {
  padding: 10px 12px;
  cursor: pointer;
  border-style: dashed;
  color: var(--muted);
}
.form input[type="file"]::file-selector-button {
  border: 0;
  border-radius: 8px;
  padding: 6px 12px;
  margin-right: 12px;
  background: #e9e5ec;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
}
.form input[type="file"]:hover::file-selector-button {
  background: #ded9e2;
}
.form .hint { font-size: 12px; color: var(--muted); margin-top: 6px; }
.alert { padding: 14px 16px; border-radius: 14px; margin-bottom: 16px; }
.alert.ok { background: #e9f8ea; }
.alert.err { background: #fdecec; }
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10,8,12,0.55); }
.modal-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  padding: 34px 32px 30px;
  width: min(92vw, 420px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(10,8,12,0.25);
}
.modal-card h2 { font-size: 24px; margin: 16px 0 8px; }
.modal-card p { color: var(--muted); margin-bottom: 22px; }
.modal-icon {
  width: 56px; height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  background: #e9f8ea;
  color: #2a7a2e;
  display: flex; align-items: center; justify-content: center;
}
.modal-icon svg { width: 28px; height: 28px; }
.file-box {
  border: 1px dashed #c8c4cc;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  text-align: center;
}
.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 20px;
  font-size: 14px;
  cursor: pointer;
}
.check-row input {
  width: auto;
  margin-top: 3px;
}

@media (max-width: 980px) {
  .split-intro, .intern-split, .apply-layout, .benefit-grid, .news-grid, .culture-grid, .stat-row, .card-grid, .steps, .footer-top {
    grid-template-columns: 1fr;
  }
  .job-list a { grid-template-columns: 1fr; gap: 4px; }
  .nav-links, .nav-pill .btn-yellow.hide-mobile { display: none; }
  .menu-toggle { display: block; }
  .nav-pill { width: calc(100% - 24px); }
  .eyebrow { font-size: 40px; }
  .culture-grid img, .culture-grid img:first-child { height: 220px; }
  .quote-hero .quote-copy { padding: 40px 24px; }
  .mobile-drawer.open {
    display: block;
    position: fixed; inset: 0; z-index: 120;
    background: rgba(10,8,12,0.94);
    color: #fff;
    padding: 88px 24px 32px;
    overflow: auto;
  }
  .mobile-drawer a, .mobile-drawer button { color: #fff; }
  .mobile-drawer a { display: block; padding: 12px 0; font-size: 22px; }
}
