*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c: #1e9bd7;
  --m: #e10a7d;
  --y: #faeb19;
  --c-rgb: 30, 155, 215;
  --m-rgb: 225, 10, 125;
  --y-rgb: 250, 235, 25;
  --k: #060607;
  --ink: #0d0f12;
  --text: #f7f7f2;
  --muted: rgba(247, 247, 242, 0.62);
  --line: rgba(247, 247, 242, 0.14);
  --display: "Bebas Neue", sans-serif;
  --body: "Plus Jakarta Sans", sans-serif;
  --page-pad: clamp(22px, 5vw, 72px);
  --signal-line: linear-gradient(
    90deg,
    rgba(var(--c-rgb),0.96) 0%,
    rgba(var(--m-rgb),0.84) 38%,
    rgba(var(--y-rgb),0.9) 68%,
    rgba(255,255,255,0) 100%
  );
  --ink-strip-height: 5px;
  --nav-height: 104px;
  --mobile-nav-height: 88px;
}

html {
  scroll-behavior: smooth;
  background: var(--k);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--k);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

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

.phone-number {
  white-space: nowrap;
  letter-spacing: 0.045em;
  font-variant-numeric: tabular-nums;
}

.top-ink,
.cmyk-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: var(--ink-strip-height);
  background: var(--k);
}

.top-ink {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  pointer-events: none;
}

.top-ink .c,
.cmyk-bar .c { background: var(--c); }
.top-ink .m,
.cmyk-bar .m { background: var(--m); }
.top-ink .y,
.cmyk-bar .y { background: var(--y); }
.top-ink .k,
.cmyk-bar .k { background: #fff; }

.site-nav {
  position: fixed;
  inset: var(--ink-strip-height) 0 auto;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 6px var(--page-pad) 12px;
  background: rgba(6, 6, 7, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.nav-brand img {
  width: auto;
  height: clamp(66px, 6.2vw, 86px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
}

.nav-links a {
  color: rgba(255,255,255,0.54);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links .nav-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  overflow: hidden;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255,255,255,0.94);
  isolation: isolate;
  background:
    linear-gradient(rgba(7,8,10,0.9), rgba(7,8,10,0.9)) padding-box,
    linear-gradient(90deg, rgba(var(--c-rgb),0.82), rgba(var(--m-rgb),0.82) 48%, rgba(var(--y-rgb),0.74), rgba(255,255,255,0.76)) border-box;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07) inset,
    0 0 18px rgba(var(--c-rgb),0.16),
    0 0 24px rgba(var(--m-rgb),0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nav-links .nav-cta::before,
.nav-links .nav-cta::after,
.btn::before,
.btn::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.nav-links .nav-cta::before,
.btn::before {
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 50%, rgba(var(--c-rgb),0.13), transparent 34%),
    radial-gradient(circle at 88% 50%, rgba(var(--m-rgb),0.12), transparent 36%);
}

.nav-links .nav-cta::after,
.btn::after {
  inset: -55% -35%;
  z-index: -2;
  background: linear-gradient(110deg, transparent 33%, rgba(255,255,255,0.42) 48%, transparent 62%);
  opacity: 0.28;
  transform: translateX(-68%);
  transition: opacity 0.22s ease, transform 0.42s ease;
}

.nav-links .nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.12);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.09) inset,
    0 0 22px rgba(var(--c-rgb),0.22),
    0 0 30px rgba(var(--m-rgb),0.22),
    0 0 36px rgba(255,255,255,0.08);
}

.nav-links .nav-cta:hover::after,
.btn:hover::after {
  opacity: 0.68;
  transform: translateX(54%);
}

.btn.is-submitting {
  cursor: wait;
  opacity: 0.82;
  filter: saturate(0.95);
}

.btn-secondary {
  background:
    linear-gradient(rgba(10,12,15,0.84), rgba(10,12,15,0.84)) padding-box,
    linear-gradient(90deg, rgba(255,255,255,0.36), rgba(var(--c-rgb),0.72), rgba(var(--m-rgb),0.72)) border-box;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.page-hero {
  position: relative;
  min-height: 62svh;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--ink-strip-height) + 86px) var(--page-pad) 86px;
  isolation: isolate;
}

.page-hero.small {
  min-height: 48svh;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 16% 22%, rgba(var(--c-rgb), 0.2), transparent 30%),
    radial-gradient(circle at 78% 42%, rgba(var(--m-rgb), 0.16), transparent 32%),
    radial-gradient(circle at 58% 82%, rgba(var(--y-rgb), 0.12), transparent 30%),
    #090a0c;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: 0.38;
}

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.page-hero::after,
.section-panel::before,
.legal-panel::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  opacity: 0.26;
  pointer-events: none;
}

.hero-inner,
.content-frame {
  width: 100%;
  max-width: none;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: clamp(62px, 9vw, 122px);
  height: 2px;
  background: var(--signal-line);
  box-shadow: 0 0 16px rgba(var(--c-rgb),0.35);
}

h1,
h2,
h3,
.job-title {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(72px, 11vw, 150px);
  line-height: 0.88;
}

.page-hero p {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 300;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.application-hint {
  max-width: 620px;
  margin-top: 14px !important;
  color: rgba(255,255,255,0.54) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.section-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) var(--page-pad);
  border-top: 1px solid rgba(255,255,255,0.08);
  isolation: isolate;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: start;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: clamp(58px, 7vw, 112px);
  height: 2px;
  background: var(--signal-line);
}

.section-title {
  color: #fff;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.9;
}

.section-copy {
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.85;
}

.job-meta {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.job-meta li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  list-style: none;
}

.job-meta span {
  color: rgba(255,255,255,0.46);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.job-meta strong {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.stack {
  display: grid;
  gap: 18px;
}

.application-stack {
  display: grid;
  gap: 24px;
}

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

.application-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 410px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.042) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(0deg, rgba(255,255,255,0.032) 1px, transparent 1px) 0 0 / 58px 58px,
    radial-gradient(circle at 18% 0%, rgba(var(--c-rgb),0.12), transparent 34%),
    linear-gradient(145deg, rgba(8,10,13,0.94), rgba(13,15,18,0.86));
  box-shadow: 0 24px 70px rgba(0,0,0,0.34);
  backdrop-filter: blur(12px);
}

.application-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--c), var(--m), var(--y), transparent 86%);
  box-shadow: 0 0 18px rgba(var(--c-rgb),0.42);
}

.application-card-primary {
  border-color: rgba(var(--c-rgb),0.44);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.34),
    0 0 34px rgba(var(--c-rgb),0.12);
}

.application-card > * {
  position: relative;
  z-index: 1;
}

.application-card span {
  color: var(--c);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.application-card:not(.application-card-primary) span {
  color: rgba(255,255,255,0.58);
}

.application-card h3 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.94;
}

.application-card p {
  margin-top: 18px;
  color: rgba(255,255,255,0.64);
  font-weight: 300;
  line-height: 1.7;
}

.application-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 28px;
  list-style: none;
}

.application-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
}

.application-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 12px rgba(var(--c-rgb),0.5);
}

.application-card:not(.application-card-primary) li::before {
  background: rgba(255,255,255,0.7);
  box-shadow: none;
}

.application-card .btn {
  width: max-content;
  margin-top: auto;
}

.application-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(rgba(8,10,13,0.82), rgba(8,10,13,0.82)),
    linear-gradient(90deg, rgba(var(--c-rgb),0.14), rgba(var(--m-rgb),0.1), rgba(var(--y-rgb),0.08));
}

.application-flow span,
.application-flow a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.application-flow span:last-child,
.application-flow a:last-child {
  border-right: 0;
  color: #fff;
}

.application-flow a:hover,
.application-flow a:focus,
.application-flow a.is-active {
  color: #fff;
  background:
    radial-gradient(circle at 0% 50%, rgba(var(--c-rgb),0.2), transparent 42%),
    rgba(255,255,255,0.035);
  box-shadow: inset 3px 0 0 rgba(var(--c-rgb),0.82);
  outline: none;
}

.application-form-panel {
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--c-rgb),0.14), transparent 32%),
    radial-gradient(circle at 82% 62%, rgba(var(--m-rgb),0.12), transparent 34%),
    #07080a;
}

.application-form-panel .contact-grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.application-flow-stacked {
  grid-template-columns: 1fr;
  margin-top: 34px;
}

.application-flow-stacked span,
.application-flow-stacked a {
  border-right: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.application-flow-stacked span:last-child,
.application-flow-stacked a:last-child {
  border-bottom: 0;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px 0 18px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.form-section-title:first-of-type {
  margin-top: 0;
}

.form-section-title::before {
  content: "";
  width: clamp(48px, 6vw, 86px);
  height: 2px;
  background: var(--signal-line);
}

.form-section-title[id] {
  scroll-margin-top: calc(var(--nav-height) + var(--ink-strip-height) + 28px);
}

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

.choice-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 180px));
}

.choice-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 52px;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    linear-gradient(rgba(8,10,13,0.72), rgba(8,10,13,0.72)),
    radial-gradient(circle at 14% 0%, rgba(var(--c-rgb),0.12), transparent 38%);
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.choice-option:hover,
.choice-option:focus-within {
  border-color: rgba(var(--c-rgb),0.55);
  color: #fff;
  box-shadow: 0 0 18px rgba(var(--c-rgb),0.12);
}

.choice-option input[type="checkbox"],
.choice-option input[type="radio"] {
  flex: 0 0 auto;
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--c);
}

.cv-builder {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.cv-entry {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(rgba(8,10,13,0.76), rgba(8,10,13,0.76)),
    radial-gradient(circle at 14% 0%, rgba(var(--c-rgb),0.1), transparent 36%);
}

.cv-row {
  align-items: end;
}

.cv-entry .form-group {
  margin-bottom: 0;
}

.remove-entry-btn,
.add-entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.82);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.add-entry-btn {
  position: relative;
  justify-self: start;
  width: max-content;
  margin-bottom: 4px;
  overflow: hidden;
  padding: 11px 18px;
  border-color: transparent;
  border-radius: 999px;
  isolation: isolate;
  background:
    linear-gradient(rgba(7,8,10,0.9), rgba(7,8,10,0.9)) padding-box,
    linear-gradient(90deg, rgba(var(--c-rgb),0.8), rgba(var(--m-rgb),0.72), rgba(var(--y-rgb),0.72), rgba(255,255,255,0.58)) border-box;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 0 18px rgba(var(--c-rgb),0.12),
    0 0 18px rgba(var(--m-rgb),0.1);
}

.remove-entry-btn {
  width: 40px;
  padding: 0;
}

.add-entry-btn:hover,
.remove-entry-btn:hover {
  border-color: rgba(var(--c-rgb),0.6);
  color: #fff;
  box-shadow: 0 0 18px rgba(var(--c-rgb),0.12);
}

.add-entry-btn::after {
  content: "";
  position: absolute;
  inset: -60% -35%;
  z-index: -1;
  background: linear-gradient(110deg, transparent 34%, rgba(255,255,255,0.36) 49%, transparent 64%);
  opacity: 0.34;
  transform: translateX(-70%);
  transition: transform 0.42s ease, opacity 0.22s ease;
}

.add-entry-btn:hover::after {
  opacity: 0.7;
  transform: translateX(54%);
}

.add-entry-btn:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

.info-card,
.job-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  background:
    linear-gradient(rgba(11,13,16,0.82), rgba(11,13,16,0.82)),
    radial-gradient(circle at 12% 0%, rgba(var(--c-rgb),0.16), transparent 36%);
  box-shadow: 0 22px 60px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.info-card::before,
.job-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.info-card::after,
.job-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  pointer-events: none;
}

.info-card > *,
.job-card > * {
  position: relative;
  z-index: 1;
}

.info-card:hover,
.job-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.26);
  box-shadow: 0 18px 48px rgba(0,0,0,0.38), 0 0 24px rgba(var(--c-rgb),0.14);
  filter: saturate(1.08);
}

.info-card.cyan { border-left: 4px solid var(--c); }
.info-card.magenta { border-left: 4px solid var(--m); }
.info-card.yellow { border-left: 4px solid var(--y); }
.info-card.white { border-left: 4px solid #fff; }

.info-card span,
.job-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--c);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.info-card.magenta span { color: var(--m); }
.info-card.yellow span { color: var(--y); }
.info-card.white span { color: #fff; }

.info-card h2,
.job-card h2 {
  color: #fff;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.96;
}

.info-card p,
.job-card p {
  position: relative;
  margin-top: 22px;
  color: rgba(255,255,255,0.62);
  font-weight: 300;
}

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

.text-list {
  margin-top: 22px;
  list-style: none;
}

.text-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.64);
  font-weight: 300;
}

.text-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 12px rgba(var(--c-rgb),0.45);
}

.contact-panel,
.legal-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) var(--page-pad);
  border-top: 1px solid rgba(255,255,255,0.08);
  isolation: isolate;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-info article {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info span,
label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,0.52);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-info strong,
.contact-info a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.form-shell {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    radial-gradient(circle at 12% 12%, rgba(var(--c-rgb),0.16), transparent 34%),
    radial-gradient(circle at 88% 100%, rgba(var(--m-rgb),0.12), transparent 36%),
    rgba(10,12,15,0.82);
  backdrop-filter: blur(12px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row.cv-row {
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1fr) auto;
  gap: 12px;
}

.cv-entry:first-child .form-row.cv-row {
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1fr);
}

.form-group {
  margin-bottom: 20px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-hint a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(var(--c-rgb),0.72);
  text-underline-offset: 3px;
}

input[type="file"] {
  min-height: auto;
  padding: 16px;
  border-style: dashed;
  background:
    linear-gradient(rgba(8,10,13,0.78), rgba(8,10,13,0.78)),
    radial-gradient(circle at 12% 50%, rgba(var(--c-rgb),0.16), transparent 38%);
  color: rgba(255,255,255,0.74);
  cursor: pointer;
}

input[type="date"] {
  color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  filter: brightness(0) invert(1);
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.field-note {
  margin-top: 9px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  line-height: 1.55;
}

.file-field.is-invalid input[type="file"] {
  border-color: rgba(var(--m-rgb),0.78);
  box-shadow: 0 0 0 3px rgba(var(--m-rgb),0.14);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(var(--c-rgb),0.8);
  box-shadow: 0 0 0 3px rgba(var(--c-rgb),0.12);
}

select option {
  color: #111;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-hint,
.form-msg {
  margin-top: 18px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.form-msg {
  display: none;
  margin-bottom: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.14);
}

.form-msg.success {
  border-color: rgba(var(--c-rgb),0.48);
  color: rgba(255,255,255,0.82);
  padding: 28px 30px 30px;
}

.form-msg.success strong,
.form-msg.success span {
  display: block;
}

.form-msg.success strong {
  color: #fff;
  font-size: 16px;
}

.form-msg.success span {
  margin-top: 8px;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
}

.form-msg-action {
  margin-top: 34px !important;
}

[hidden],
body.form-submitted .form-jump-nav {
  display: none !important;
}

.form-msg.error {
  border-color: rgba(var(--m-rgb),0.48);
  color: rgba(255,255,255,0.82);
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin: 42px 0 12px;
  color: #fff;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.95;
}

.legal-content h3 {
  margin: 24px 0 8px;
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: rgba(255,255,255,0.62);
  font-weight: 300;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content ul {
  margin: 12px 0 18px 20px;
}

.legal-content a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(var(--c-rgb),0.7);
  text-underline-offset: 3px;
}

footer {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  padding: 72px var(--page-pad) 56px;
  background: var(--k);
  color: #fff;
}

.seo-panel {
  position: relative;
  overflow: hidden;
  padding: 64px 72px;
  padding: clamp(52px, 5.8vw, 76px) var(--page-pad);
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--c-rgb),0.13), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(var(--m-rgb),0.1), transparent 30%),
    #07080a;
  color: #fff;
  isolation: isolate;
}

.seo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.seo-panel-inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

.seo-panel .section-kicker {
  margin-bottom: 18px;
}

.seo-panel .section-kicker::before {
  width: clamp(58px, 8vw, 112px);
  background: var(--signal-line);
  box-shadow:
    0 0 14px rgba(var(--c-rgb),0.34),
    0 0 16px rgba(var(--m-rgb),0.24),
    0 0 18px rgba(var(--y-rgb),0.18);
}

.seo-panel h2 {
  max-width: 980px;
  color: #fff;
  font-family: var(--display);
  font-size: 42px;
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.seo-panel p:not(.section-kicker) {
  max-width: 960px;
  margin-top: 22px;
  color: rgba(255,255,255,0.64);
  font-size: 16px;
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 300;
  line-height: 1.78;
}

.footer-logo img {
  width: auto;
  height: clamp(68px, 6vw, 92px);
  margin-bottom: 24px;
}

.footer-tagline {
  max-width: 260px;
  color: rgba(255,255,255,0.42);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

.fcol-title {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.fcol-links,
.fcol-text {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.fcol-links { gap: 1px; }
.fcol-text { gap: 0; }

.fcol-links a,
.fcol-text li,
.fcol-text a {
  color: rgba(255,255,255,0.46);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
}

.fcol-text li.spacer { height: 4px; }
.fcol-text li.spacer-lg { height: 14px; }

.fcol-links a,
.fcol-text a {
  transition: color 0.2s ease;
}

.fcol-links a:hover,
.fcol-text a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--page-pad);
  background: #080808;
}

.footer-bottom p,
.footer-bottom-r a {
  color: rgba(255,255,255,0.28);
  font-size: 12px;
}

.footer-bottom-r {
  display: flex;
  gap: 16px;
}

.footer-bottom-r a {
  transition: color 0.2s ease;
}

.footer-bottom-r a:hover {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  right: var(--page-pad);
  bottom: 24px;
  left: var(--page-pad);
  z-index: 260;
  display: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.cookie-banner.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 900px;
  margin-left: auto;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 6% 20%, rgba(var(--c-rgb),0.18), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(var(--m-rgb),0.14), transparent 34%),
    rgba(7, 8, 10, 0.94);
  box-shadow: 0 18px 48px rgba(0,0,0,0.5), 0 0 24px rgba(var(--c-rgb),0.1);
  backdrop-filter: blur(18px);
}

.cookie-text strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-text p {
  max-width: 640px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-text a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(var(--c-rgb),0.7);
  text-underline-offset: 3px;
}

.cookie-btn {
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(rgba(7,8,10,0.92), rgba(7,8,10,0.92)) padding-box,
    linear-gradient(90deg, var(--c), var(--m), var(--y), #fff) border-box;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1020px) {
  .split,
  .contact-grid,
  .list-grid,
  .application-form-panel .contact-grid,
  .application-options {
    grid-template-columns: 1fr;
  }

  .application-card {
    min-height: auto;
  }

  .application-flow {
    grid-template-columns: 1fr;
  }

  .application-flow span,
  .application-flow a {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .application-flow span:last-child,
  .application-flow a:last-child {
    border-bottom: 0;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 780px) {
  .site-nav {
    height: var(--mobile-nav-height);
  }

  .nav-brand img {
    height: clamp(60px, 15vw, 68px);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--ink-strip-height) + var(--mobile-nav-height));
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border: 0 solid transparent;
    border-radius: 6px;
    background: rgba(6,6,7,0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-links.open {
    max-height: 430px;
    border-width: 1px;
    border-color: rgba(255,255,255,0.1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links .nav-cta {
    width: max-content;
    margin: 14px 18px 18px;
  }

  .page-hero {
    min-height: auto;
    padding-top: calc(var(--mobile-nav-height) + var(--ink-strip-height) + 64px);
    padding-bottom: 64px;
  }

  .seo-panel {
    padding: 46px var(--page-pad);
  }

  .seo-panel .section-kicker {
    white-space: normal;
  }

  h1 {
    font-size: clamp(62px, 18vw, 96px);
  }

  .section-title {
    font-size: clamp(50px, 14vw, 76px);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row.cv-row,
  .cv-entry:first-child .form-row.cv-row {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .job-meta li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
    padding: 48px var(--page-pad);
  }

  footer > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    max-width: 420px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 18px var(--page-pad);
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .cookie-inner {
    display: grid;
    gap: 16px;
    padding: 16px;
  }

  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .info-card,
  .job-card,
  .application-card,
  .form-shell {
    padding: 24px;
  }

  .application-card .btn {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .fcol-links a,
  .fcol-text li,
  .fcol-text a {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
