/* Dark-only design, modelled on a black / magenta agency look. */
:root {
  --bg: #000000;
  --panel: #0d0d0f;
  --panel-2: #151518;
  --text: #ffffff;
  --muted: #a3a1a6;
  --line: #2a2a2f;
  --pink: #e80c96;
  --pink-hover: #f061bb;
  --cyan: #24c9fc;
  --teal: #1fc8a9;
  --error: #ff6b8a;
  --success: #1fc8a9;

  --font-body: "Quicksand", "Avenir Next", "Segoe UI", sans-serif;
  --font-num: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-kicker: "Urbanist", "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, Menlo, Consolas, monospace;

  --gutter: clamp(16px, 4vw, 48px);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1200px) { body { font-size: 20px; } }

h1, h2, h3, p { margin: 0; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }
.accent { color: var(--pink); }
.mono { font-family: var(--mono); font-size: 0.85em; }

.container { max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }

/* Kicker: small gradient label above each title */
.kicker {
  display: block;
  font-family: var(--font-kicker);
  font-weight: 600;
  font-size: clamp(0.8rem, 1.4vw, 1.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(40deg, var(--cyan) 1%, var(--teal) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

/* Header */
.header {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1800px; margin-inline: auto; padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  font-family: var(--font-num); font-weight: 800; font-size: 1.5rem;
  letter-spacing: -0.03em; text-decoration: none; color: var(--text);
}
.brand span { color: var(--pink); }
.nav { display: flex; align-items: center; gap: clamp(20px, 4vw, 64px); }
.nav a {
  text-decoration: none; text-transform: uppercase; font-weight: 500;
  font-size: 0.85rem; letter-spacing: 0.08em; color: var(--text);
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--pink); }
.nav .nav-cta {
  color: var(--text); border: 1px solid var(--pink); border-radius: 999px; padding: 8px 20px;
}
.nav .nav-cta:hover { background: var(--pink); color: var(--text); }
.menu-btn {
  display: none; background: none; border: 1px solid var(--line); color: var(--text);
  font: 500 0.85rem var(--font-body); text-transform: uppercase; letter-spacing: 0.08em;
  padding: 8px 16px; border-radius: 999px; cursor: pointer;
}
@media (max-width: 820px) {
  .menu-btn { display: inline-block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 22px;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 24px var(--gutter) 32px;
  }
  .nav:not(.is-open) { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font: 600 0.95rem/1 var(--font-body); text-transform: uppercase; letter-spacing: 0.06em;
  padding: 17px 34px; border-radius: 999px; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--pink-hover); }
.btn-outline { border-color: #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: #000; }
.btn-sm { padding: 13px 24px; font-size: 0.82rem; }
.btn[disabled] { opacity: 0.6; cursor: progress; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(80px, 13vw, 180px) clamp(72px, 10vw, 140px);
  text-align: center;
}
.hero-content { position: relative; z-index: 1; display: grid; justify-items: center; gap: 26px; }
.hero-content .kicker { margin-bottom: 0; }
.hero-title {
  font-family: var(--font-body); font-weight: 300;
  font-size: clamp(2.6rem, 8vw, 7rem); line-height: 0.95; letter-spacing: -0.03em;
  text-transform: uppercase; text-wrap: balance;
}
.hero-title .accent { font-weight: 600; }
.hero-text { color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.4rem); max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 10px; }
@media (max-width: 700px) { .br-wide { display: none; } }

.hero-orbit {
  position: absolute; left: 50%; top: 50%;
  width: min(900px, 130vw); aspect-ratio: 1; max-width: none;
  transform: translate(-50%, -50%); pointer-events: none;
}
.ring { position: absolute; inset: 0; border-radius: 50%; }
.ring-dashed { border: 1.5px dashed rgba(232, 12, 150, 0.45); animation: spin 90s linear infinite; }
.ring-solid {
  inset: 18%;
  background: radial-gradient(circle, rgba(232, 12, 150, 0.28) 0%, rgba(232, 12, 150, 0.08) 45%, transparent 70%);
}
.dot {
  position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--pink);
  top: 14.6%; left: 14.6%; box-shadow: 0 0 24px var(--pink);
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .ring-dashed { animation: none; } }

/* Sections */
.section { padding-block: clamp(72px, 10vw, 140px); text-align: center; }
.section-band { background: var(--panel); border-block: 1px solid var(--line); }
.section-title {
  color: var(--pink); font-weight: 300; text-transform: uppercase;
  font-size: clamp(2.2rem, 5.5vw, 4.7rem); line-height: 1.02; letter-spacing: -0.02em; text-wrap: balance;
}
.section-lede { color: var(--muted); max-width: 62ch; margin: 24px auto 0; }

/* Value cards */
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: clamp(48px, 7vw, 88px); text-align: left;
}
.card {
  background: var(--panel-2); border-radius: 18px; overflow: hidden;
  display: grid; grid-template-rows: auto auto 1fr; gap: 14px; padding-bottom: 28px;
  transition: transform 0.25s ease;
}
.card:hover { transform: translateY(-4px); }
.card h3, .card p { padding-inline: 24px; }
.card h3 {
  font-weight: 500; font-size: 1.35rem; line-height: 1.15; text-transform: uppercase; letter-spacing: 0.01em;
  margin-top: 8px;
}
.card p { color: var(--muted); font-size: 0.95rem; }
.card-visual {
  aspect-ratio: 4 / 3; max-width: 100%; position: relative;
  display: flex; align-items: flex-end; padding: 20px 24px;
}
.card-visual span { font-family: var(--font-num); font-weight: 800; font-size: 3.2rem; line-height: 1; color: rgba(255, 255, 255, 0.92); }
.v1 { background: radial-gradient(120% 90% at 85% 10%, #e80c96 0%, #6b0646 55%, #1a0412 100%); }
.v2 { background: radial-gradient(120% 90% at 15% 15%, #24c9fc 0%, #0b4d73 55%, #06131d 100%); }
.v3 { background: radial-gradient(120% 90% at 80% 85%, #1fc8a9 0%, #0b5446 55%, #04140f 100%); }
.v4 { background: radial-gradient(120% 90% at 20% 80%, #f061bb 0%, #3b1064 55%, #0f0619 100%); }
@media (prefers-reduced-motion: reduce) { .card { transition: none; } .card:hover { transform: none; } }
@media (max-width: 1000px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* Open role */
.role {
  max-width: 760px; margin: clamp(40px, 6vw, 72px) auto 0;
  display: grid; gap: 20px; justify-items: center;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(32px, 5vw, 56px) clamp(20px, 5vw, 56px);
}
.role-title { font-weight: 400; font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.1; text-transform: uppercase; letter-spacing: -0.01em; }
.role-text { color: var(--muted); max-width: 52ch; }
.tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.tags li {
  border: 1px solid var(--pink); color: var(--text); border-radius: 999px;
  padding: 5px 14px; font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em;
}

/* Apply */
.section-apply {
  text-align: left;
  background: radial-gradient(60% 70% at 10% 30%, rgba(232, 12, 150, 0.22), transparent 70%), var(--bg);
  border-top: 1px solid var(--line);
}
.apply { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.apply-intro { display: grid; gap: 24px; position: sticky; top: 110px; }
.apply-title {
  font-weight: 300; text-transform: uppercase; line-height: 0.95; letter-spacing: -0.03em;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}
.apply-title .accent { font-weight: 600; }
.apply-text { font-size: 1.15rem; color: var(--muted); max-width: 44ch; }
.fine { font-size: 0.82rem; color: var(--muted); max-width: 52ch; }
@media (max-width: 900px) { .apply { grid-template-columns: 1fr; } .apply-intro { position: static; } }

.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; min-width: 0; }
label, .label { font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

input[type="text"], input[type="email"], input[type="tel"], select {
  width: 100%; font: 400 1.05rem var(--font-body); color: var(--text);
  background: transparent; border: 0; border-bottom: 1px solid #5c5c5c; border-radius: 0;
  padding: 10px 0 12px;
  transition: border-color 0.15s ease;
}
select { cursor: pointer; }
select option { background: var(--panel-2); color: var(--text); }
input::placeholder { color: #5d5d5d; }
input:focus, select:focus { outline: none; border-bottom-color: var(--pink); }
[aria-invalid="true"] { border-bottom-color: var(--error) !important; }

.drop {
  position: relative; display: grid; gap: 4px; justify-items: center; text-align: center;
  padding: 28px 16px; border: 1.5px dashed #5c5c5c; border-radius: 14px;
  cursor: pointer; text-transform: none; letter-spacing: 0; font-size: 1rem; color: var(--text);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.drop:hover, .drop.is-over, .drop:focus-within { border-color: var(--pink); background: rgba(232, 12, 150, 0.06); }
.drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.drop-text { overflow-wrap: anywhere; }
.drop-text strong { color: var(--pink); font-weight: 600; }
.drop-hint { font-size: 0.8rem; color: var(--muted); }
.drop.has-file { border-style: solid; border-color: var(--success); }

.check {
  display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
  text-transform: none; letter-spacing: 0; font-size: 0.9rem; font-weight: 300;
}
.check input { margin-top: 4px; width: 17px; height: 17px; accent-color: var(--pink); flex: none; }

.error { color: var(--error); font-size: 0.85rem; }
.error:empty { display: none; }
.form > .error { margin-top: -14px; }

.btn-submit { width: 100%; padding-block: 20px; margin-top: 6px; }
.form-status { font-size: 1rem; }
.form-status:empty { display: none; }
.form-status.ok { color: var(--success); }
.form-status.fail { color: var(--error); }

/* Footer */
.footer { border-top: 1px solid var(--line); padding-block: 56px 40px; text-align: center; }
.footer-inner { display: grid; gap: 10px; justify-items: center; color: var(--muted); font-size: 0.95rem; }
.footer-inner .brand { margin-bottom: 8px; }
.footer-inner .fine { margin-top: 18px; }

/* Spam trap: hidden from people, bots fill it in */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
