/* Euphoria careers — brand tokens sampled from Figma art + production site */
@font-face {
  font-family: 'Integral';
  src: url('fonts/Integral-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Diatype Mono';
  src: url('fonts/ABCDiatypeRoundedMono-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #280b1a;
  --bg-raised: #331023;
  --ink: #f9edf4;
  --pink-light: #ffbae0;
  --pink: #fc419d;
  --yellow: #dde938;
  --muted: #b98ba5;
  --line: #43182f;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

/* Header */
header { padding: 24px 0; }
header .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 26px; width: auto; display: block; }
.logo:hover { text-decoration: none; }
header nav a {
  font-family: 'Diatype Mono', monospace;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--pink-light);
  margin-left: 22px;
  text-transform: uppercase;
}
header nav a:hover { color: var(--pink); text-decoration: none; }

/* Hero art */
.hero-art { width: 100%; display: block; }
.hero-art img { width: 100%; height: auto; display: block; }

/* Headline */
.hero { padding: 56px 0 8px; }
h1 {
  font-family: 'Integral', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 6vw, 54px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--pink-light);
}
h1 .hot { color: var(--pink); }
.hero .sub { margin-top: 20px; font-size: 18px; color: var(--muted); max-width: 580px; }

/* Sections */
section { padding: 44px 0; }
section + section { border-top: 1px solid var(--line); }
h2 {
  font-family: 'Diatype Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}
.intro p + p { margin-top: 16px; }
.intro strong { font-weight: 600; color: var(--ink); }

/* Role cards */
.role {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
a.role:hover { border-color: var(--pink); transform: translateY(-2px); text-decoration: none; }
.role + .role { margin-top: 14px; }
.role h3 { font-family: 'Montserrat', sans-serif; font-size: 19px; font-weight: 600; }
.role .meta { margin-top: 4px; font-size: 13.5px; color: var(--muted); }

/* Chip button — mirrors the yellow multiplier chips in the brand art */
.chip {
  flex-shrink: 0;
  font-family: 'Diatype Mono', monospace;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  background: var(--yellow);
  color: #241f03;
  padding: 11px 20px;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(221, 233, 56, 0.35);
  white-space: nowrap;
  text-transform: uppercase;
}
.chip:hover { text-decoration: none; box-shadow: 0 0 26px rgba(221, 233, 56, 0.55); }
.catchall { margin-top: 22px; font-size: 15px; color: var(--muted); }

/* Values list */
.values { list-style: none; }
.values li { padding-left: 26px; position: relative; }
.values li + li { margin-top: 16px; }
.values li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 10px; height: 10px; border-radius: 3px; background: var(--pink);
}
.values strong { font-weight: 600; color: var(--ink); }
.values span { color: var(--muted); }

/* Role detail page */
.eyebrow {
  font-family: 'Diatype Mono', monospace; font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow);
}
.role-hero { padding: 48px 0 12px; }
.role-hero h1 { margin-top: 14px; }
.role-hero .meta { margin-top: 16px; font-size: 15px; color: var(--muted); }
.jd h2 { margin-top: 0; }
.jd ul { list-style: none; }
.jd ul li { padding-left: 24px; position: relative; }
.jd ul li + li { margin-top: 12px; }
.jd ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--pink);
}
.jd p + p, .jd p + ul, .jd ul + p { margin-top: 16px; }
.apply-block { text-align: left; }
.apply-block .chip { display: inline-block; }
.apply-block p { margin-top: 16px; font-size: 14.5px; color: var(--muted); }

footer { border-top: 1px solid var(--line); padding: 32px 0 56px; font-size: 13.5px; color: var(--muted); }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer a { color: var(--muted); }

@media (max-width: 560px) {
  .role { flex-direction: column; align-items: flex-start; }
}
