:root {
  --navy-950: #0a2d23;
  --navy-900: #123d2e;
  --navy-850: #174b39;
  --navy-800: #1c5a44;
  --ice: #b88a32;
  --ice-strong: #957024;
  --ice-soft: #f5ecd9;
  --white: #f4f7fb;
  --muted: #a9b9ca;
  --line: rgba(84, 189, 235, 0.28);
  --line-soft: rgba(255, 255, 255, 0.12);
  --light: #f2f7f4;
  --ink: #173a31;
  --danger: #ff8f8f;
  --success: #78dfb2;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --display: "Avenir Next Condensed", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --body: "Avenir Next", Inter, "Helvetica Neue", Arial, sans-serif;
  --max: 1240px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(20, 126, 181, 0.13), transparent 31rem),
    var(--navy-950);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--navy-950);
  background: var(--ice);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--ice);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 88px;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-soft);
  background: rgba(2, 11, 22, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  width: 232px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.35vw, 38px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: #d7e2ec;
}

.main-nav .mobile-cta {
  display: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--ice);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-left: 30px;
  padding: 0 18px;
  border: 1px solid var(--ice);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.02em;
  transition: color 160ms ease, background 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--navy-950);
  background: var(--ice);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  color: var(--white);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 24px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin: 0 0 clamp(38px, 5vw, 70px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 16px;
  color: var(--ice);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label::after {
  width: 64px;
  height: 1px;
  content: "";
  background: var(--ice);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6.4vw, 6.8rem);
  line-height: 0.91;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.7vw, 5.3rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1;
}

.lead {
  max-width: 730px;
  color: #c3d0dc;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.button svg,
.text-link svg,
.pathway-action svg {
  width: 20px;
  height: 20px;
  transition: transform 160ms ease;
}

.button:hover svg,
.button:focus-visible svg,
.text-link:hover svg,
.text-link:focus-visible svg,
.pathway:hover .pathway-action svg,
.pathway:focus-within .pathway-action svg {
  transform: translateX(5px);
}

.button-primary {
  color: #00111d;
  background: var(--ice);
  box-shadow: 0 16px 34px rgba(184, 138, 50, 0.16);
  transition: background 160ms ease, transform 160ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d5b567;
  transform: translateY(-2px);
}

.button-outline {
  border: 1px solid var(--ice);
  color: var(--white);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--navy-950);
  background: var(--ice);
}

.text-link {
  min-height: 44px;
  padding: 0;
  border-bottom: 1px solid var(--ice);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  padding: 116px 24px 36px;
  overflow: hidden;
  align-items: center;
}

.hero h1 {
  max-width: 710px;
  font-size: clamp(3.25rem, 5vw, 5.2rem);
  line-height: 0.94;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 39%;
}

.hero-media::before {
  position: absolute;
  z-index: 1;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-950) 0%, rgba(2, 11, 22, 0.87) 9%, rgba(2, 11, 22, 0.18) 45%, transparent 76%),
    linear-gradient(0deg, rgba(2, 11, 22, 0.98), transparent 28%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 48%;
}

.hero-gridlines,
.rink-lines {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  inset: 0;
  opacity: 0.35;
  background:
    linear-gradient(90deg, transparent 18%, rgba(184, 138, 50, 0.17) 18.08%, transparent 18.16%),
    linear-gradient(0deg, transparent 72%, rgba(184, 138, 50, 0.14) 72.08%, transparent 72.16%);
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 span {
  color: var(--ice);
}

.hero-copy .lead {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 34px;
  margin: 34px 0 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #c5d3df;
  font-size: 14px;
  font-weight: 650;
}

.hero-trust svg {
  width: 26px;
  height: 26px;
  color: var(--ice);
}

.pathways {
  padding-top: 24px;
  background:
    linear-gradient(rgba(184, 138, 50, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 138, 50, 0.06) 1px, transparent 1px),
    var(--navy-900);
  background-size: 128px 128px;
}

.pathway-list {
  border-top: 1px solid var(--line);
}

.pathway {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr 310px;
  min-height: 192px;
  border-bottom: 1px solid var(--line);
  align-items: stretch;
}

.pathway-number {
  display: flex;
  align-items: center;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(3.6rem, 6vw, 6.3rem);
  font-weight: 900;
  -webkit-text-stroke: 1px var(--ice);
}

.pathway-copy {
  display: flex;
  max-width: 600px;
  padding: 32px 40px 32px 0;
  flex-direction: column;
  justify-content: center;
}

.pathway-copy h3 {
  color: var(--white);
  text-transform: uppercase;
}

.pathway-copy p {
  margin: 0;
  color: var(--muted);
}

.pathway-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  border-left: 1px solid var(--line);
  color: var(--ice);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.pathway:hover .pathway-action,
.pathway:focus-within .pathway-action {
  color: var(--navy-950);
  background: var(--ice);
}

.story {
  padding: 0;
  background: var(--navy-900);
}

.story-grid {
  display: grid;
  width: min(100%, 1440px);
  min-height: 720px;
  margin: 0 auto;
  grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.16fr) minmax(230px, 0.6fr);
}

.story-image {
  min-height: 560px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image.portrait img {
  object-position: 62% 26%;
}

.story-image.close img {
  object-position: 46% 50%;
}

.story-copy {
  display: flex;
  padding: clamp(52px, 7vw, 100px);
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(184, 138, 50, 0.045) 1px, transparent 1px),
    var(--navy-850);
  background-size: 100% 92px;
}

.story-copy h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.8rem);
}

.story-copy p {
  color: #c3d2de;
}

.quote {
  margin: 24px 0;
  padding: 10px 0 10px 28px;
  border-left: 3px solid var(--ice);
  color: var(--white);
  font-size: 20px;
  font-style: italic;
}

.story-byline {
  margin: 4px 0 0;
  color: var(--ice) !important;
  font-size: 14px;
  font-weight: 750;
}

.podcast {
  overflow: hidden;
  background: #02101f;
}

.podcast::before {
  position: absolute;
  right: -120px;
  bottom: -240px;
  width: 600px;
  height: 600px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 82px rgba(184, 138, 50, 0.02);
}

.podcast-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(40px, 7vw, 104px);
  align-items: center;
}

.podcast-art {
  position: relative;
  display: grid;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--ice);
  background:
    linear-gradient(135deg, transparent 45%, rgba(184, 138, 50, 0.12)),
    url("./assets/philipp-bench.webp") center/cover;
  box-shadow: var(--shadow);
  place-items: end start;
}

.podcast-art::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 11, 22, 0.96), rgba(2, 11, 22, 0.06) 70%);
}

.podcast-title {
  position: relative;
  z-index: 1;
  padding: 34px;
  font-family: var(--display);
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
}

.podcast-title small {
  display: block;
  margin-top: 18px;
  color: var(--ice);
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.podcast-copy h2 {
  font-size: clamp(3rem, 5.5vw, 6rem);
  text-transform: uppercase;
}

.podcast-copy .lead {
  max-width: 590px;
}

.podcast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.podcast-player {
  margin-top: 24px;
}

.podcast-consent {
  padding: 20px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(4, 25, 46, 0.82);
}

.podcast-consent p {
  margin-bottom: 14px;
  font-size: 14px;
}

.podcast-frame {
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: 12px;
}

.example {
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(184, 138, 50, 0.2), transparent 30rem),
    var(--light);
}

.example-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 620px;
  box-shadow: 0 30px 90px rgba(5, 47, 82, 0.18);
}

.example-media {
  min-height: 520px;
}

.example-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 47%;
}

.example-content {
  padding: clamp(42px, 6vw, 76px);
  background: rgba(255, 255, 255, 0.72);
}

.example-content .section-label {
  color: #b88a32;
}

.example-content .section-label::after {
  background: #b88a32;
}

.example-content h2 {
  max-width: 700px;
  color: var(--ink);
  font-size: clamp(2.5rem, 4.4vw, 4.8rem);
}

.example-lead {
  color: #4d6961;
}

.example-stats {
  display: grid;
  margin-top: 34px;
  gap: 0;
}

.example-stat {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(9, 37, 74, 0.15);
  align-items: center;
}

.example-stat-icon {
  display: grid;
  width: 50px;
  height: 50px;
  border: 1px solid #957024;
  border-radius: 50%;
  color: #957024;
  place-items: center;
}

.example-stat-icon svg {
  width: 24px;
  height: 24px;
}

.example-stat strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.example-stat span {
  color: #4d6961;
  font-size: 14px;
}

.fine-print {
  margin: 26px 0 0;
  color: #4d6961;
  font-size: 13px;
  line-height: 1.5;
}

.benefit-rail {
  margin-top: 68px;
  border-top: 1px solid rgba(9, 37, 74, 0.18);
}

.benefit-row {
  display: grid;
  grid-template-columns: 66px 0.62fr 1.38fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(9, 37, 74, 0.18);
  align-items: center;
}

.benefit-row svg {
  width: 38px;
  height: 38px;
  color: #b88a32;
}

.benefit-row strong {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.05;
}

.benefit-row p {
  margin: 0;
  color: #4d6961;
  font-size: 15px;
}

.process {
  background:
    radial-gradient(circle at 50% 50%, rgba(12, 114, 167, 0.14), transparent 36rem),
    var(--navy-900);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-grid::before {
  position: absolute;
  top: 49px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--ice), rgba(184, 138, 50, 0.25), var(--ice));
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-icon {
  display: grid;
  width: 98px;
  height: 98px;
  margin: 0 auto 24px;
  border: 1px solid var(--ice);
  border-radius: 50%;
  color: var(--ice);
  background: var(--navy-900);
  place-items: center;
}

.process-icon svg {
  width: 38px;
  height: 38px;
}

.process-step small {
  display: block;
  margin-bottom: 8px;
  color: var(--ice);
  font-weight: 800;
}

.process-step strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.1;
}

.process-step p {
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.form-section {
  scroll-margin-top: 88px;
  background:
    linear-gradient(90deg, rgba(184, 138, 50, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(184, 138, 50, 0.04) 1px, transparent 1px),
    #020d1a;
  background-size: 130px 130px;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 120px;
}

.form-intro h2 {
  font-size: clamp(3rem, 4.9vw, 5.4rem);
}

.form-intro-list {
  display: grid;
  margin-top: 34px;
  gap: 20px;
}

.form-intro-item {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.form-intro-item svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--ice);
}

.lead-form {
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--line);
  background: rgba(3, 20, 38, 0.92);
  box-shadow: var(--shadow);
}

.form-step-title {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
}

.interest-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.interest-switch label {
  position: relative;
  display: grid;
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(175, 207, 228, 0.28);
  color: #d9e4ed;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
  place-items: center;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.interest-switch input {
  position: absolute;
  opacity: 0;
}

.interest-switch label:has(input:checked) {
  border-color: var(--ice);
  color: var(--white);
  background: rgba(184, 138, 50, 0.09);
  box-shadow: inset 0 -2px var(--ice);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: #dce7f0;
  font-size: 13px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid rgba(175, 207, 228, 0.28);
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: #051a30;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7d92a6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ice);
  box-shadow: 0 0 0 3px rgba(184, 138, 50, 0.1);
}

.field-note {
  margin: 0;
  color: #8095a9;
  font-size: 12px;
}

.conditional {
  margin: 34px 0;
  padding: 28px;
  border: 1px solid rgba(184, 138, 50, 0.18);
  background: rgba(184, 138, 50, 0.035);
}

.conditional[hidden] {
  display: none;
}

.check-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.check-option,
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-option {
  min-height: 52px;
  padding: 12px;
  border: 1px solid rgba(175, 207, 228, 0.2);
  cursor: pointer;
  color: #c7d5e1;
  font-size: 13px;
}

.check-option input,
.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--ice-strong);
}

.consents {
  display: grid;
  margin: 30px 0;
  gap: 15px;
}

.consent {
  color: #b8c7d4;
  font-size: 12px;
  line-height: 1.55;
}

.consent a {
  color: var(--ice);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.submit-button {
  width: 100%;
}

.form-status {
  margin: 18px 0 0;
  font-size: 14px;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.form-security {
  margin: 13px 0 0;
  color: #7f94a7;
  font-size: 11px;
  text-align: center;
}

.site-footer {
  padding: 62px 24px 34px;
  border-top: 1px solid var(--line);
  background: #010812;
}

.footer-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  grid-template-columns: 1fr 0.7fr 0.7fr;
  gap: 44px;
}

.footer-brand {
  width: 210px;
  margin-bottom: 22px;
}

.footer-grid p {
  max-width: 460px;
  color: #8398aa;
  font-size: 13px;
}

.footer-title {
  display: block;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 17px;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a {
  width: fit-content;
  color: #a9b9c7;
  font-size: 13px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--ice);
}

.footer-bottom {
  display: flex;
  width: min(100%, var(--max));
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #687c8e;
  font-size: 11px;
  justify-content: space-between;
}

.page-hero {
  display: grid;
  min-height: 650px;
  padding-top: 154px;
  overflow: hidden;
  align-items: end;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 11, 22, 0.98) 0%, rgba(2, 11, 22, 0.72) 52%, rgba(2, 11, 22, 0.1)),
    linear-gradient(0deg, var(--navy-950), transparent 40%),
    var(--page-image, none) center/cover;
}

.page-hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero .lead {
  max-width: 700px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.content-section {
  background: var(--navy-900);
}

.content-split {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.content-copy p,
.content-copy li {
  color: #b8c7d3;
}

.content-copy ul {
  padding-left: 22px;
}

.content-copy li + li {
  margin-top: 10px;
}

.detail-rail {
  border-top: 1px solid var(--line);
}

.detail-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row span {
  color: var(--ice);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
}

.detail-row strong {
  display: block;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.1;
}

.detail-row p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.topic {
  min-height: 240px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.topic svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--ice);
}

.topic p {
  color: var(--muted);
  font-size: 14px;
}

.faq {
  background: #031221;
}

.faq-list {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 750;
  list-style: none;
  justify-content: space-between;
  gap: 30px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--ice);
  content: "+";
  font-family: var(--body);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 780px;
  padding-bottom: 24px;
  color: var(--muted);
}

.legal-page {
  min-height: 100vh;
  padding-top: 160px;
}

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

.legal-content section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.legal-content p,
.legal-content li {
  color: #b9c8d5;
}

.legal-content a {
  color: var(--ice);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-warning {
  padding: 20px;
  border: 1px solid rgba(255, 193, 103, 0.5);
  color: #ffe0ad;
  background: rgba(255, 167, 59, 0.08);
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  padding: 130px 24px 60px;
  align-items: center;
}

.thanks-card {
  width: min(100%, 840px);
  margin: 0 auto;
  padding: clamp(38px, 8vw, 84px);
  border: 1px solid var(--line);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.thanks-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  border: 1px solid var(--ice);
  border-radius: 50%;
  color: var(--ice);
  place-items: center;
}

.thanks-icon svg {
  width: 34px;
  height: 34px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.is-open {
    position: fixed;
    top: 88px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 48px 24px;
    background: rgba(2, 11, 22, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .main-nav.is-open a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 26px;
  }

  .main-nav.is-open .mobile-cta {
    display: inline-flex;
    width: 100%;
    min-height: 56px;
    margin-top: 22px;
    border: 1px solid var(--ice);
    align-items: center;
    justify-content: center;
    font-family: var(--body);
    font-size: 15px;
  }

  .pathway {
    grid-template-columns: 86px 1fr 230px;
  }

  .story-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .story-image.close {
    display: none;
  }

  .form-layout {
    grid-template-columns: 1fr;
  }

  .form-intro {
    position: static;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  .site-header {
    height: 74px;
  }

  .header-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .brand {
    width: 190px;
  }

  .main-nav.is-open {
    top: 74px;
  }

  .section {
    padding: 74px 18px;
  }

  .hero {
    min-height: 780px;
    padding: 118px 18px 48px;
    align-items: end;
  }

  .hero-media {
    inset: 0;
  }

  .hero-media::before {
    background:
      linear-gradient(0deg, var(--navy-950) 4%, rgba(2, 11, 22, 0.92) 39%, rgba(2, 11, 22, 0.05) 78%),
      linear-gradient(90deg, rgba(2, 11, 22, 0.25), transparent);
  }

  .hero-media img {
    object-position: 53% 26%;
  }

  .hero-copy {
    padding-top: 300px;
  }

  h1 {
    font-size: clamp(3.3rem, 15.2vw, 5.1rem);
  }

  h2 {
    font-size: clamp(2.7rem, 12vw, 4.5rem);
  }

  .hero-actions {
    gap: 14px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .pathway {
    grid-template-columns: 60px 1fr;
    min-height: 0;
    padding: 26px 0;
  }

  .pathway-number {
    align-items: flex-start;
    font-size: 3.2rem;
  }

  .pathway-copy {
    padding: 0 0 20px;
  }

  .pathway-action {
    grid-column: 2;
    min-height: 52px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .story-image {
    min-height: 480px;
  }

  .story-copy {
    padding: 54px 22px;
  }

  .podcast-layout,
  .example-layout,
  .content-split {
    grid-template-columns: 1fr;
  }

  .podcast-art {
    min-height: 420px;
  }

  .example-content {
    padding: 38px 22px;
  }

  .benefit-row {
    grid-template-columns: 52px 1fr;
  }

  .benefit-row p {
    grid-column: 2;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 46px 20px;
  }

  .process-grid::before {
    display: none;
  }

  .form-grid,
  .check-group {
    grid-template-columns: 1fr;
  }

  .interest-switch {
    grid-template-columns: 1fr;
  }

  .conditional {
    padding: 20px;
  }

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

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

  .footer-bottom {
    gap: 8px;
    flex-direction: column;
  }

  .page-hero {
    min-height: 610px;
    padding-top: 124px;
  }

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

@media (max-width: 520px) {
  .hero-copy {
    padding-top: 250px;
  }

  .hero-trust {
    align-items: flex-start;
  }

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

  .process-step {
    text-align: left;
  }

  .process-icon {
    margin: 0 0 18px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

/* --------------------------------------------------------------------------
   Light editorial direction — Player Protect 2026
   -------------------------------------------------------------------------- */

:root {
  --navy-950: #0a2d23;
  --navy-900: #123d2e;
  --navy-850: #174b39;
  --navy-800: #1c5a44;
  --ice: #b88a32;
  --ice-strong: #957024;
  --ice-soft: #f5ecd9;
  --white: #ffffff;
  --muted: #5f746d;
  --line: rgba(11, 75, 55, 0.18);
  --line-soft: rgba(11, 75, 55, 0.11);
  --light: #f2f7f4;
  --ink: #173a31;
  --gold: #b88a32;
  --danger: #9e352e;
  --success: #08744e;
  --shadow: 0 28px 70px rgba(18, 78, 62, 0.12);
  --display: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --radius: 10px;
}

html {
  color-scheme: light;
}

body {
  color: var(--ink);
  background: #fff;
}

picture {
  display: contents;
}

::selection {
  color: #fff;
  background: var(--forest, #0b4b37);
}

.skip-link {
  color: #fff;
  background: var(--navy-900);
}

.site-header,
.site-header.is-scrolled {
  border-color: rgba(11, 75, 55, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(22, 72, 60, 0.05);
  backdrop-filter: blur(18px);
}

.main-nav a {
  color: #234d42;
}

.header-cta {
  border-color: var(--navy-900);
  color: #fff;
  background: var(--navy-900);
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--navy-900);
  background: var(--ice);
}

.menu-toggle {
  border-color: var(--line);
  color: var(--navy-900);
}

.section-label {
  color: var(--gold);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.section-label::after {
  background: var(--gold);
}

h1,
h2,
h3 {
  color: var(--navy-900);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.7rem, 4.4vw, 5rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
}

.lead {
  color: #516d65;
}

.button {
  border-radius: 4px;
}

.button-primary {
  color: var(--navy-900);
  background: var(--ice);
  box-shadow: 0 14px 34px rgba(184, 138, 50, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fff;
  background: var(--ice-strong);
}

.button-outline {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: #fff;
  background: var(--navy-900);
}

.text-link {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.hero {
  min-height: 760px;
  padding: 142px 24px 70px;
  background:
    linear-gradient(90deg, rgba(231, 246, 248, 0.82), transparent 34%),
    #fff;
}

.hero::after {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy {
  width: 51%;
  max-width: 650px;
}

.hero h1 {
  max-width: 650px;
  color: var(--navy-900);
  font-size: clamp(3.5rem, 5.5vw, 6.2rem);
  line-height: 0.94;
}

.hero-copy h1 span {
  color: var(--navy-900);
}

.hero-copy .lead {
  max-width: 570px;
  color: #49675f;
}

.hero-media {
  z-index: 0;
  inset: 112px 3vw 52px 52%;
  overflow: hidden;
  border-radius: 4px 4px 74px 4px;
  background: var(--light);
  box-shadow: var(--shadow);
}

.hero-media::before {
  display: none;
}

.hero-media img {
  object-position: 48% 48%;
}

.hero-gridlines {
  z-index: 1;
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent 16%, rgba(11, 75, 55, 0.08) 16.08%, transparent 16.16%),
    linear-gradient(0deg, transparent 78%, rgba(199, 157, 56, 0.1) 78.08%, transparent 78.16%);
}

.hero-trust {
  color: #587069;
}

.hero-trust svg {
  color: var(--navy-900);
}

.pathways {
  padding-top: clamp(76px, 9vw, 132px);
  background: #fff;
}

.pathway-list {
  display: grid;
  border-top: 1px solid var(--gold);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pathway {
  display: flex;
  min-height: 390px;
  padding: 38px 34px;
  border-right: 1px solid rgba(199, 157, 56, 0.45);
  border-bottom: 1px solid var(--gold);
  flex-direction: column;
  align-items: flex-start;
}

.pathway:last-child {
  border-right: 0;
}

.pathway-number {
  display: block;
  color: transparent;
  font-family: var(--body);
  font-size: 4.1rem;
  line-height: 1;
  -webkit-text-stroke: 1px var(--navy-900);
}

.pathway-copy {
  display: block;
  max-width: none;
  padding: 34px 0 24px;
}

.pathway-copy h3 {
  color: var(--navy-900);
  text-transform: none;
}

.pathway-copy p {
  color: #5b716a;
}

.pathway-action {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-left: 0;
  color: var(--ice);
  font-family: var(--body);
  font-size: 14px;
  text-transform: none;
}

.pathway:hover .pathway-action,
.pathway:focus-within .pathway-action {
  color: var(--navy-900);
  background: transparent;
}

.sport-index {
  background: #f5fafb;
}

.sport-link-grid {
  display: grid;
  border-top: 1px solid var(--gold);
}

.sport-link {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 30px;
  gap: 28px;
  min-height: 150px;
  padding: 30px 6px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 180ms ease, background 180ms ease;
}

.sport-link:hover,
.sport-link:focus-visible {
  padding-right: 20px;
  padding-left: 20px;
  background: #fff;
}

.sport-link > span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.sport-link h3 {
  margin-bottom: 7px;
}

.sport-link p {
  max-width: 760px;
  margin: 0;
  color: #5b716a;
}

.sport-link > svg {
  width: 24px;
  height: 24px;
  color: var(--ice);
}

.check-depth {
  background: var(--light);
}

.depth-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
}

.check-depth .section-heading {
  position: sticky;
  top: 126px;
}

.check-matrix {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  min-height: 190px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-item:nth-child(even) {
  border-right: 0;
}

.check-item svg {
  width: 32px;
  height: 32px;
  color: var(--ice);
}

.check-item h3 {
  margin-bottom: 8px;
  font-family: var(--body);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: 0;
}

.check-item p {
  margin: 0;
  color: #5b716a;
  font-size: 14px;
}

.career-phases {
  display: grid;
  min-height: 740px;
  background: #fff;
  grid-template-columns: 1fr 1fr;
}

.career-copy {
  display: flex;
  max-width: 680px;
  padding: clamp(72px, 8vw, 128px);
  justify-self: end;
  flex-direction: column;
  justify-content: center;
}

.career-copy h2 {
  max-width: 530px;
}

.career-image {
  min-height: 640px;
  overflow: hidden;
}

.career-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.phase-list {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.phase-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.phase-list article > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.phase-list h3 {
  margin-bottom: 5px;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0;
}

.phase-list p {
  margin: 0;
  color: #5b716a;
  font-size: 14px;
}

.story {
  background: #eaf5f1;
}

.story-grid {
  min-height: 700px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(460px, 1.1fr);
}

.story-image.close {
  display: none;
}

.story-image img {
  object-position: 50% 48%;
}

.story-copy {
  color: var(--ink);
  background:
    linear-gradient(rgba(11, 75, 55, 0.04) 1px, transparent 1px),
    #eaf5f1;
}

.story-copy p {
  color: #4d6b62;
}

.quote {
  border-color: var(--gold);
  color: var(--navy-900);
}

.story-byline {
  color: var(--navy-900) !important;
}

.podcast {
  color: #fff;
  background: var(--navy-900);
}

.podcast h2,
.podcast .lead,
.podcast .section-label,
.podcast .button-outline {
  color: #fff;
}

.podcast .section-label::after {
  background: var(--gold);
}

.podcast .button-outline {
  border-color: rgba(255, 255, 255, 0.7);
}

.podcast .button-outline:hover,
.podcast .button-outline:focus-visible {
  color: var(--navy-900);
  background: #fff;
}

.podcast-art {
  border: 0;
  border-radius: 4px;
  background:
    linear-gradient(0deg, rgba(7, 58, 43, 0.84), transparent 68%),
    url("./assets/philipp-portrait-2000.webp") 48% 48% / cover;
}

.podcast-art::before {
  background: linear-gradient(0deg, rgba(7, 58, 43, 0.88), transparent 64%);
}

.podcast-title small {
  color: #d7e9e3;
}

.podcast-consent {
  border-color: rgba(255, 255, 255, 0.2);
  color: #d3e3de;
  background: rgba(255, 255, 255, 0.05);
}

.example {
  background: #f5fafb;
}

.example-layout {
  overflow: hidden;
  border-radius: 4px 4px 42px 4px;
}

.example-media img {
  object-position: 50% 48%;
}

.example-content {
  background: #fff;
}

.example-content .section-label {
  color: var(--gold);
}

.example-content .section-label::after {
  background: var(--gold);
}

.example-stat-icon,
.example-stat-icon svg,
.benefit-row svg {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.process {
  color: var(--ink);
  background: #fff;
}

.process-grid::before {
  background: linear-gradient(90deg, var(--gold), rgba(199, 157, 56, 0.25), var(--gold));
}

.process-icon {
  border-color: var(--navy-900);
  color: var(--navy-900);
  background: #fff;
}

.process-step small {
  color: var(--gold);
}

.process-step strong {
  color: var(--navy-900);
}

.process-step p {
  color: #5b716a;
}

.form-section {
  background:
    linear-gradient(90deg, rgba(11, 75, 55, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(11, 75, 55, 0.035) 1px, transparent 1px),
    #eef7f8;
  background-size: 130px 130px;
}

.form-intro-item {
  color: #587069;
}

.form-intro-item svg {
  color: var(--navy-900);
}

.lead-form {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.form-step-title {
  color: var(--navy-900);
}

.interest-switch label {
  border-color: var(--line);
  color: #45645b;
  background: #fff;
}

.interest-switch label:has(input:checked) {
  border-color: var(--ice);
  color: var(--navy-900);
  background: #faf4e8;
  box-shadow: inset 0 -2px var(--ice);
}

.field label,
.field legend {
  color: #2c5349;
}

.field input,
.field select,
.field textarea {
  border-color: rgba(11, 75, 55, 0.22);
  color: var(--ink);
  background: #fbfefe;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8ba09a;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ice);
  box-shadow: 0 0 0 3px rgba(184, 138, 50, 0.13);
}

.field-note,
.consent,
.form-security {
  color: #647c75;
}

.conditional {
  border-color: var(--line);
  background: #f4fafb;
}

.check-option {
  border-color: var(--line);
  color: #416058;
  background: #fff;
}

.check-option:has(input:checked) {
  border-color: var(--ice);
  color: var(--navy-900);
  background: #faf4e8;
}

.consent a {
  color: var(--ice-strong);
}

.site-footer {
  border-color: var(--line);
  color: #4f6961;
  background: #eaf5f3;
}

.footer-title,
.footer-nav a {
  color: var(--navy-900);
}

.footer-bottom {
  border-color: var(--line);
}

.page-hero {
  min-height: 720px;
  color: var(--ink);
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 38%, rgba(255, 255, 255, 0.12) 72%),
    var(--page-image) center / cover;
}

.page-hero::before {
  display: none;
}

.page-hero .lead {
  color: #4d6961;
}

.page-hero .button-outline {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.sport-page-hero {
  min-height: 640px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 75, 55, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(11, 75, 55, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 82% 48%, rgba(184, 138, 50, 0.12), transparent 22rem),
    #fff;
  background-size: 132px 132px, 132px 132px, auto, auto;
}

.sport-page-hero::after {
  position: absolute;
  right: 7vw;
  bottom: -220px;
  width: min(44vw, 620px);
  height: min(44vw, 620px);
  border: 1px solid rgba(11, 75, 55, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 100px rgba(184, 138, 50, 0.03);
}

.sport-page-hero .page-hero-content {
  position: relative;
  z-index: 1;
}

.sport-page-hero .sport-proof {
  max-width: 620px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #587069;
  font-size: 14px;
}

.product-links {
  background: #eef7f8;
}

.product-link-grid {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  gap: 20px;
  min-height: 210px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 180ms ease, transform 180ms ease;
}

.product-link:nth-child(even) {
  border-right: 0;
}

.product-link:hover,
.product-link:focus-visible {
  background: #fff;
  transform: translateY(-2px);
}

.product-link > svg:first-child {
  width: 34px;
  height: 34px;
  color: var(--navy-900);
}

.product-link h3 {
  margin-bottom: 9px;
  font-family: var(--body);
  font-size: 19px;
  font-weight: 750;
  letter-spacing: 0;
}

.product-link p {
  margin-bottom: 18px;
  color: #5b716a;
  font-size: 14px;
}

.product-link span {
  color: var(--ice-strong);
  font-size: 13px;
  font-weight: 800;
}

.product-link .product-arrow {
  width: 22px;
  height: 22px;
  color: var(--ice);
}

.content-section,
.faq {
  color: var(--ink);
  background: #fff;
}

.content-section .lead,
.faq .lead,
.topic p,
.detail-row p,
.faq-item p {
  color: #587069;
}

.topic-grid,
.detail-rail,
.faq-list,
.topic,
.detail-row,
.faq-item {
  border-color: var(--line);
}

.topic svg {
  color: var(--navy-900);
}

.topic h3,
.detail-row strong,
.faq-item summary {
  color: var(--navy-900);
}

.detail-row span {
  color: var(--gold);
  -webkit-text-stroke-color: var(--gold);
}

.legal-page,
.thanks-page {
  color: var(--ink);
  background: #f4fafb;
}

.legal-content h1,
.legal-content h2,
.thanks-card h1 {
  color: var(--navy-900);
}

.legal-content section {
  border-color: var(--line);
}

.legal-warning {
  border-color: var(--gold);
  color: #705a22;
  background: #fff9e9;
}

.thanks-card {
  border-color: var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.thanks-icon {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

@media (max-width: 1050px) {
  .depth-layout {
    grid-template-columns: 1fr;
  }

  .check-depth .section-heading {
    position: static;
  }

  .career-copy {
    padding: 70px 48px;
  }
}

@media (max-width: 960px) {
  .site-header .main-nav {
    background: #fff;
    box-shadow: 0 22px 46px rgba(11, 75, 55, 0.14);
  }

  .main-nav .mobile-cta {
    color: #fff;
    background: var(--navy-900);
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 106px 24px 72px;
  }

  .hero-media {
    position: relative;
    height: min(64vw, 520px);
    margin: 0 0 48px;
    inset: auto;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(3.2rem, 8vw, 5rem);
  }

  .hero-copy {
    padding-top: 0;
  }

  .pathway-list {
    grid-template-columns: 1fr;
  }

  .pathway {
    min-height: 280px;
    border-right: 0;
  }

  .career-phases {
    grid-template-columns: 1fr;
  }

  .career-copy {
    max-width: none;
    justify-self: stretch;
  }

  .career-image {
    min-height: 560px;
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: 0;
    padding: 92px 18px 58px;
    background: #fff;
  }

  .hero-media {
    height: min(78vw, 460px);
    margin-bottom: 40px;
    inset: auto;
    border-radius: 4px 4px 34px 4px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(2.45rem, 10.5vw, 4rem);
  }

  .check-matrix {
    grid-template-columns: 1fr;
  }

  .sport-link {
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    gap: 14px;
  }

  .product-link-grid {
    grid-template-columns: 1fr;
  }

  .product-link,
  .product-link:nth-child(even) {
    border-right: 0;
  }

  .check-item,
  .check-item:nth-child(even) {
    min-height: 0;
    border-right: 0;
  }

  .career-copy {
    padding: 72px 22px;
  }

  .career-image {
    min-height: 460px;
  }

  .story-image {
    min-height: 520px;
  }

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

  .page-hero {
    min-height: 680px;
    background:
      linear-gradient(0deg, #fff 3%, rgba(255, 255, 255, 0.96) 40%, rgba(255, 255, 255, 0.04) 76%),
      var(--page-image) 55% 28% / cover;
    align-items: end;
  }

  .page-hero-content {
    padding-top: 280px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 0;
  }

  .pathway {
    display: flex;
    min-height: 0;
    padding: 30px 8px;
  }

  .pathway-number {
    font-size: 3.2rem;
  }

  .pathway-action {
    grid-column: auto;
  }

  .check-item {
    grid-template-columns: 38px 1fr;
    padding: 26px 12px;
  }

  .career-image {
    min-height: 390px;
  }

  .story-image {
    min-height: 430px;
  }
}
