:root {
  --ink: #0c0c0c;
  --paper: #f3f1e9;
  --acid: #c9ff35;
  --muted: #64645f;
  --line: rgba(12, 12, 12, 0.16);
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.site-header {
  width: min(100% - 40px, var(--content));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand img { display: block; width: 176px; height: auto; }

.header-cta {
  display: inline-flex;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  padding: 46px 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
  gap: 48px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow i {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #57d64b;
}

.eyebrow i::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(87, 214, 75, 0.7);
  border-radius: 50%;
  animation: vacancy-pulse 1.8s ease-out infinite;
}

@keyframes vacancy-pulse {
  0% { transform: scale(0.65); opacity: 0.9; }
  75%, 100% { transform: scale(1.45); opacity: 0; }
}

.hero h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  font-size: clamp(54px, 7vw, 84px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.hero-intro {
  max-width: 650px;
  margin: 0;
  color: #393936;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.role-card {
  min-height: 410px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: white;
}

.campaign-visual {
  height: 150px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 12px;
}

.ad-preview,
.performance-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 255, 53, 0.46);
}

.ad-preview {
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ad-image {
  flex: 1;
  min-height: 54px;
  background:
    linear-gradient(135deg, transparent 51%, var(--acid) 52% 65%, transparent 66%),
    linear-gradient(25deg, rgba(201, 255, 53, 0.32) 0 48%, transparent 49%);
  border: 1px solid var(--acid);
}

.ad-line {
  width: 62%;
  height: 3px;
  background: rgba(255, 255, 255, 0.62);
}

.ad-line.wide { width: 86%; }
.ad-button { width: 44%; height: 9px; background: var(--acid); }

.performance-preview {
  padding: 15px 13px 12px;
  display: flex;
  align-items: flex-end;
}

.performance-dot {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(201, 255, 53, 0.14);
}

.performance-bars {
  width: 100%;
  height: 88px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.performance-bars i {
  flex: 1;
  background: var(--acid);
}

.performance-bars i:nth-child(1) { height: 24%; opacity: 0.42; }
.performance-bars i:nth-child(2) { height: 39%; opacity: 0.56; }
.performance-bars i:nth-child(3) { height: 54%; opacity: 0.7; }
.performance-bars i:nth-child(4) { height: 74%; opacity: 0.85; }
.performance-bars i:nth-child(5) { height: 96%; }

.cursor-mark {
  position: absolute;
  right: 22px;
  bottom: 38px;
  width: 17px;
  height: 22px;
  background: white;
  clip-path: polygon(0 0, 100% 72%, 56% 76%, 72% 100%, 58% 100%, 43% 77%, 13% 100%);
  transform: rotate(-10deg);
}

.role-card dl { margin: 0; }

.role-card dl div {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.role-card dt { color: #aaa9a4; font-size: 11px; }
.role-card dd { margin: 0; font-size: 13px; font-weight: 600; line-height: 1.35; }

.focus-strip {
  height: 52px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--acid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.focus-track {
  width: max-content;
  display: flex;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.focus-group {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-right: 42px;
}

.focus-group span { white-space: nowrap; }
.focus-group span::before { content: "+"; margin-right: 16px; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-title.light { color: white; }

.section-lead {
  max-width: 760px;
  margin: 18px 0 24px;
  color: #4b4b47;
  font-size: 16px;
  line-height: 1.55;
}

.section-lead.light-copy { color: #aaa9a4; }

.role-intro {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: minmax(210px, 0.4fr) minmax(0, 1.6fr);
  gap: 48px;
  align-items: start;
}

.role-intro div > p {
  max-width: 790px;
  margin: 0;
  color: #3d3d39;
  font-size: 16px;
  line-height: 1.6;
}

.role-intro div > p + p { margin-top: 14px; }
.role-intro strong { font-size: 19px; color: var(--ink); }

.responsibilities {
  padding: 52px max(20px, calc((100vw - var(--content)) / 2));
  background: var(--ink);
  color: white;
}

.responsibility-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 46px;
}

.responsibility-list article {
  min-height: 112px;
  padding: 19px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.responsibility-list h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.responsibility-list p {
  margin: 0;
  color: #b9b9b5;
  font-size: 14px;
  line-height: 1.55;
}

.profile-section {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  padding: 54px 0;
}

.profile-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.profile-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-content li {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.45;
}

.profile-content li span {
  color: #65a900;
  font-size: 18px;
  font-weight: 700;
}

.education-note {
  padding: 28px;
  background: white;
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: 8px 8px 0 var(--acid);
}

.note-label {
  margin: 0 0 18px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.education-note h3 {
  margin: 0 0 18px;
  font-size: clamp(23px, 2.5vw, 31px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.education-note > p:not(.note-label) {
  margin: 10px 0 0;
  color: #4f4f4a;
  font-size: 13px;
  line-height: 1.55;
}

.growth-section {
  padding: 52px max(20px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: minmax(210px, 0.4fr) minmax(0, 1.6fr);
  gap: 48px;
  align-items: start;
  background: var(--acid);
}

.growth-section div > p {
  max-width: 780px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.growth-section strong { font-size: 19px; }

.apply-section {
  padding: 54px max(20px, calc((100vw - var(--content)) / 2)) 60px;
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  gap: 50px;
  align-items: start;
}

.apply-intro {
  position: sticky;
  top: 28px;
}

.apply-intro > p {
  max-width: 430px;
  margin: 18px 0 0;
  color: #4a4a46;
  font-size: 15px;
  line-height: 1.6;
}

.apply-intro strong { color: var(--ink); }

.application-form {
  position: relative;
  background: white;
  border: 1px solid rgba(12, 12, 12, 0.09);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-section {
  padding: 30px;
  border-bottom: 1px solid #deddd7;
}

.form-section:last-child { border-bottom: 0; }

.form-section-heading { margin-bottom: 22px; }

.form-section-heading h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.form-section-heading p {
  margin: 5px 0 0;
  color: #6a6a64;
  font-size: 14px;
  line-height: 1.45;
}

.form-grid { display: grid; gap: 18px; }
.form-grid.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.form-grid label,
.platform-levels label,
.question-block { min-width: 0; }

.form-grid label > span,
.platform-levels label > span,
.question-label,
.option-group legend {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.platform-name {
  width: max-content;
  padding: 3px 8px;
  background: var(--acid);
  color: var(--ink);
}

input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #c9c8c1;
  border-radius: 0;
  outline: none;
  background: #faf9f5;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

textarea { resize: vertical; line-height: 1.5; }

input:focus, select:focus, textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(201, 255, 53, 0.65);
}

input::placeholder, textarea::placeholder { color: #93938e; }

.platform-levels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.option-group {
  margin: 0;
  padding: 17px;
  border: 1px solid #c9c8c1;
  background: #faf9f5;
}

.option-group legend {
  max-width: calc(100% - 12px);
  padding: 0 6px;
}

.option-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 18px;
}

.option-list label {
  min-height: 38px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.option-list input,
.consent input {
  width: 17px;
  min-height: 17px;
  height: 17px;
  flex: 0 0 17px;
  accent-color: var(--ink);
}

.option-list label > span { margin: 0; font-size: 14px; font-weight: 500; line-height: 1.35; }

.file-field input { padding: 8px; font-size: 11px; }

.file-field input::file-selector-button {
  margin-right: 10px;
  padding: 8px 10px;
  border: 0;
  background: var(--ink);
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.file-field small { display: block; margin-top: 7px; color: #777771; font-size: 10px; }

.consent {
  margin: 22px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}

.consent span { color: #555550; font-size: 11px; line-height: 1.5; }

.submit-button {
  width: 100%;
  min-height: 58px;
  padding: 15px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background: var(--ink);
  color: white;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.submit-button:hover { background: var(--acid); color: var(--ink); }
.submit-button:disabled { opacity: 0.6; cursor: wait; }

.form-message {
  margin: 14px 0 0;
  padding: 13px;
  font-size: 12px;
  line-height: 1.45;
}

.form-message.success { background: #ebffd1; }
.form-message.error { background: #ffe4df; color: #8f1d0c; }
.form-message:empty { display: none; }

footer {
  min-height: 132px;
  padding: 38px max(20px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: end;
  background: var(--ink);
  color: white;
}

footer img { width: min(220px, 100%); height: auto; }
footer a {
  margin: 0;
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.thank-you-page {
  min-height: 100vh;
  background: var(--paper);
}

.thank-you-header {
  width: min(100% - 40px, var(--content));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.thank-you-header img {
  display: block;
  width: 176px;
  height: auto;
}

.thank-you-content {
  width: min(100% - 40px, var(--content));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.thank-you-copy h1 {
  max-width: 700px;
  margin: 20px 0 18px;
  font-size: clamp(54px, 7vw, 86px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.thank-you-intro {
  max-width: 600px;
  margin: 0;
  color: #3d3d39;
  font-size: 18px;
  line-height: 1.55;
}

.back-link {
  width: max-content;
  margin-top: 24px;
  padding-bottom: 5px;
  display: inline-block;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.process-card {
  padding: 30px;
  background: var(--ink);
  color: white;
}

.process-card article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-card article > span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-card h2 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.process-card article p {
  margin: 0;
  color: #b9b9b5;
  font-size: 14px;
  line-height: 1.5;
}

.process-note {
  margin: 8px 0 0;
  padding: 18px;
  background: var(--acid);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.not-found-card {
  min-height: 360px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.not-found-card span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.not-found-card strong {
  font-size: clamp(110px, 15vw, 190px);
  font-weight: 600;
  line-height: 0.72;
  letter-spacing: -0.09em;
}

.not-found-card i {
  width: 100%;
  height: 8px;
  background: var(--acid);
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .role-intro,
  .profile-section { width: min(100% - 32px, var(--content)); }

  .site-header { height: 70px; }
  .brand img { width: 145px; }

  .hero {
    padding: 38px 0 42px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero h1 { font-size: clamp(44px, 11vw, 64px); }
  .hero-intro { max-width: 570px; }
  .role-card { min-height: 355px; }

  .role-intro,
  .growth-section,
  .apply-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .responsibility-list { grid-template-columns: 1fr; }
  .profile-content { gap: 30px; }
  .apply-intro { position: static; }

  .thank-you-header,
  .thank-you-content { width: min(100% - 32px, var(--content)); }
  .thank-you-header { height: 70px; }
  .thank-you-header img { width: 145px; }
  .thank-you-content {
    min-height: 0;
    padding: 44px 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 540px) {
  .site-header,
  .hero,
  .role-intro,
  .profile-section { width: calc(100% - 28px); }

  .header-cta { font-size: 9px; }
  .hero { padding: 32px 0 36px; }
  .hero h1 { margin: 17px 0 16px; font-size: 43px; line-height: 0.98; }
  .hero-intro { font-size: 16px; }
  .role-card { min-height: 330px; padding: 22px; }
  .campaign-visual { height: 125px; }

  .focus-strip { height: 48px; }
  .focus-track { animation-duration: 17s; }

  .role-intro,
  .profile-section { padding: 44px 0; }

  .responsibilities,
  .growth-section,
  .apply-section { padding: 44px 14px; }

  .section-title { font-size: 31px; }
  .section-lead { margin: 15px 0 20px; font-size: 14px; }
  .role-intro div > p,
  .growth-section div > p { font-size: 14px; }
  .role-intro strong,
  .growth-section strong { font-size: 16px; }

  .responsibility-list article {
    min-height: 0;
    padding: 16px 0;
    grid-template-columns: 96px 1fr;
    gap: 14px;
  }

  .responsibility-list h3 { font-size: 17px; }
  .responsibility-list p { font-size: 13px; }
  .profile-content { grid-template-columns: 1fr; gap: 24px; }
  .education-note { padding: 23px; }

  .apply-section { gap: 24px; }
  .apply-intro > p { margin-top: 15px; font-size: 14px; }
  .form-section { padding: 24px 20px; }
  .form-section-heading { margin-bottom: 18px; }
  .form-grid { gap: 16px; }
  .form-grid.two-cols,
  .platform-levels,
  .option-list { grid-template-columns: 1fr; }

  footer {
    min-height: 0;
    padding: 32px 14px;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .thank-you-header,
  .thank-you-content { width: calc(100% - 28px); }
  .thank-you-content { padding: 38px 0; gap: 30px; }
  .thank-you-copy h1 { margin: 17px 0 15px; font-size: 44px; }
  .thank-you-intro { font-size: 16px; }
  .process-card { padding: 22px; }
  .process-card article { padding: 18px 0; grid-template-columns: 36px 1fr; gap: 12px; }
  .process-card h2 { font-size: 17px; }
  .not-found-card { min-height: 280px; padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .eyebrow i::after,
  .focus-track { animation: none; }
  .focus-strip { overflow-x: auto; }
}
