@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter_Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #071018;
  --ink-raised: #0e1e29;
  --ink-card: #13222d;
  --cyan: #53c7e8;
  --cyan-dark: #08789a;
  --paper: #f4f7f8;
  --white: #ffffff;
  --text: #071018;
  --muted: #65737c;
  --line: #d4dfe3;
  --line-dark: #28414e;
  --surface-soft: #eaf1f3;
  --max-width: 1180px;
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--paper);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-optical-sizing: auto;
  font-synthesis: none;
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

::selection {
  color: var(--ink);
  background: var(--cyan);
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
  min-width: 0;
}

.split-layout > *,
.profile-layout > *,
.performance-grid > *,
.costs-heading > *,
.cost-overview > *,
.value-layout > *,
.model-grid > *,
.open-layout > *,
.contact-layout > *,
.form-row > *,
.footer-main > * {
  min-width: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--cyan);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

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

.noscript-note {
  position: fixed;
  inset: var(--header-height) 0 auto;
  z-index: 80;
  margin: 0;
  padding: 10px 20px;
  color: var(--ink);
  background: var(--cyan);
  text-align: center;
  font-weight: 700;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  color: var(--white);
  background: rgb(7 16 24 / 94%);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--max-width), calc(100% - 40px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 22%);
  background: #000;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: grid;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--cyan);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: rgb(255 255 255 / 80%);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

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

.nav-links .nav-cta {
  min-height: 42px;
  padding: 9px 15px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  background: var(--cyan);
  border: 1px solid var(--cyan);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  border: 1px solid rgb(255 255 255 / 20%);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  flex: 0 0 44px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 700px;
  height: 92svh;
  max-height: 860px;
  overflow: hidden;
  display: grid;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(7 16 24 / 94%) 0%, rgb(7 16 24 / 76%) 39%, rgb(7 16 24 / 15%) 72%),
    linear-gradient(0deg, rgb(7 16 24 / 75%) 0%, transparent 43%);
}

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

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  padding: calc(var(--header-height) + 62px) 0 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.kicker {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cyan-dark);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  line-height: 1.25;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 34px;
  flex: 0 0 7px;
  background: var(--cyan);
}

.hero .kicker,
.section-dark .kicker {
  color: var(--cyan);
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-weight: 800;
  letter-spacing: -0.038em;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 5.5vw, 5.7rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.15rem, 3.4vw, 3.45rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 86%);
  font-size: clamp(1.04rem, 1.35vw, 1.25rem);
  line-height: 1.5;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
}

.button {
  min-height: 46px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 3px;
  color: inherit;
  background: transparent;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #72d4ef;
  border-color: #72d4ef;
}

.button-ghost {
  color: var(--white);
  border-color: rgb(255 255 255 / 48%);
  background: rgb(7 16 24 / 30%);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
  background: rgb(255 255 255 / 8%);
}

.hero-proof {
  max-width: 900px;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgb(255 255 255 / 30%);
  background: rgb(7 16 24 / 74%);
  backdrop-filter: blur(10px);
}

.hero-proof div {
  min-height: 96px;
  padding: 17px 21px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}

.hero-proof div + div {
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.hero-proof dt {
  margin-top: 4px;
  color: rgb(255 255 255 / 65%);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.availability {
  color: var(--ink);
  background: var(--cyan);
}

.availability-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.availability p {
  margin: 0;
}

.text-link,
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.text-link {
  white-space: nowrap;
}

.text-link span,
.section-link span {
  transition: transform 160ms ease;
}

.text-link:hover span,
.section-link:hover span {
  transform: translateX(4px);
}

.section {
  padding: clamp(70px, 8vw, 108px) 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-tinted {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
  min-width: 0;
}

.section-heading .intro {
  max-width: 760px;
}

.intro {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.5;
}

.section-dark .intro,
.section-dark .section-copy > p:not(.kicker) {
  color: #b8c8d0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.98fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: stretch;
}

.section-media {
  min-height: 560px;
  margin: 0;
  border-right: 8px solid var(--cyan);
  overflow: hidden;
  background: var(--line);
}

.section-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 17% center;
}

.section-copy {
  align-self: center;
}

.section-copy > p:not(.kicker, .intro) {
  margin: 24px 0 0;
  color: var(--muted);
}

.quality-list {
  margin: 42px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.quality-list li {
  position: relative;
  padding: 18px 12px 18px 36px;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.quality-list li::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 4px;
  width: 7px;
  height: 7px;
  background: var(--cyan);
}

.section-link {
  margin-top: 38px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--cyan);
}

.section-link-light {
  color: var(--white);
}

.profile-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr;
  gap: clamp(44px, 7vw, 92px);
  align-items: stretch;
}

.profile-facts {
  margin: 42px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 42px;
}

.profile-facts div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.profile-facts dt {
  margin-bottom: 4px;
  color: #9fb1bb;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile-facts dd {
  margin: 0;
  color: var(--white);
  font-size: 1.03rem;
}

.career-line {
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.career-line li {
  position: relative;
  min-width: 0;
  padding: 26px 18px 0 0;
  border-top: 2px solid var(--line-dark);
}

.career-line li::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
}

.career-line strong,
.career-line span {
  display: block;
}

.career-line strong {
  color: var(--white);
  font-size: 0.85rem;
}

.career-line span {
  margin-top: 10px;
  color: #9fb1bb;
  font-size: 0.82rem;
  line-height: 1.35;
}

.portrait-media {
  min-height: 650px;
  margin: 0;
  border-left: 8px solid var(--cyan);
  overflow: hidden;
  background: var(--ink-card);
}

.portrait-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.result-card,
.goal-card,
.model-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.result-card {
  min-height: 250px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.result-card-featured {
  color: var(--white);
  background: var(--ink);
  border: none;
  box-shadow: inset 7px 0 0 var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.result-number {
  margin-bottom: auto;
  color: var(--cyan-dark);
  font-size: clamp(2.4rem, 3.4vw, 3.7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.result-card-featured .result-number {
  color: var(--cyan);
}

.result-card h3 {
  margin-top: 44px;
}

.result-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.result-card-featured p {
  color: #9fb1bb;
}

.goal-card {
  padding: 27px;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.goal-card ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.goal-card li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-bottom: 1px solid var(--line-dark);
}

.goal-card li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--cyan);
}

.more-results,
.cost-details {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.more-results summary,
.cost-details summary {
  padding: 20px 24px;
  list-style: none;
  cursor: pointer;
  font-weight: 800;
}

.more-results summary::-webkit-details-marker,
.cost-details summary::-webkit-details-marker {
  display: none;
}

.more-results summary::after,
.cost-details summary::after {
  content: "+";
  float: right;
  color: var(--cyan-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.more-results[open] summary::after,
.cost-details[open] summary::after {
  content: "−";
}

.more-results ul {
  margin: 0;
  padding: 0 52px 24px;
  columns: 2;
  column-gap: 52px;
  color: var(--muted);
}

.more-results li {
  margin: 8px 0;
}

.costs-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: end;
}

.costs-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.06rem;
}

.cost-overview {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 0.82fr;
  gap: 18px;
}

.cost-tile,
.cost-total {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.cost-tile-featured {
  border: none;
  box-shadow: inset 7px 0 0 var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.cost-tile > strong,
.cost-total > strong {
  display: block;
  color: var(--cyan-dark);
  font-size: clamp(1.9rem, 2.7vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.cost-tile h3 {
  margin-top: 24px;
  color: var(--ink);
}

.cost-tile p {
  margin: 18px 0 0;
  color: var(--muted);
}

.cost-total {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.cost-total > span {
  color: #9fb1bb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cost-total > strong {
  margin-top: 34px;
  color: var(--white);
}

.cost-total > p {
  margin: 10px 0 0;
  color: var(--cyan);
  font-size: 1.08rem;
}

.cost-total small {
  margin-top: 54px;
  padding-top: 24px;
  color: #b8c8d0;
  border-top: 1px solid var(--line-dark);
  font-size: 0.9rem;
}

.cost-details {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.cost-details summary::after {
  color: var(--cyan-dark);
}

.cost-detail-grid {
  padding: 0 24px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 36px;
}

.cost-detail-grid div {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.cost-detail-grid strong {
  color: var(--ink);
  white-space: nowrap;
}

.value-section {
  padding-top: clamp(56px, 6vw, 78px);
  padding-bottom: 0;
}

.value-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.value-copy {
  padding: 0 clamp(32px, 5vw, 58px) 36px 0;
}

.value-list {
  margin-top: 22px;
}

.value-list article {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.value-index {
  color: var(--cyan-dark);
  font-weight: 800;
}

.value-list p {
  margin: 5px 0 0;
  color: var(--muted);
}

.value-note {
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 6px solid var(--cyan);
  font-style: italic;
  font-weight: 650;
}

.value-copy > .section-link {
  margin-top: 22px;
}

.value-media {
  min-height: 600px;
  margin: 0;
  overflow: hidden;
  border-left: 8px solid var(--cyan);
}

.value-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.models-section {
  background: var(--white);
}

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

.model-card {
  min-height: 330px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 6px 0 0 var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  min-width: 0;
}

.model-card-featured {
  color: var(--white);
  background: var(--ink);
  border: none;
}

.model-label {
  margin: 0 0 14px;
  color: var(--cyan-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.model-card-featured .model-label {
  color: var(--cyan);
}

.model-card h3 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.model-card ul {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.model-card-featured ul {
  color: #b8c8d0;
}

.model-card li {
  position: relative;
  padding: 5px 0 5px 21px;
  line-height: 1.4;
}

.model-card li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--cyan);
}

.model-select {
  width: fit-content;
  margin-top: auto;
  padding: 8px 0 5px;
  border: 0;
  border-bottom: 2px solid var(--cyan);
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.model-card-featured .model-select {
  color: var(--white);
}

.model-disclaimer {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

.open-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.open-layout .button {
  width: fit-content;
}

.open-slots {
  margin: 0;
}

.open-slots div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.open-slots div:first-child {
  border-top: 1px solid var(--line-dark);
}

.open-slots dt {
  color: #9fb1bb;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.open-slots dd {
  margin: 5px 0 0;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 750;
}

.open-layout > .button {
  grid-column: 1 / -1;
  margin-top: -20px;
}

.contact-section {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.primary-contact {
  margin-top: 44px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.primary-contact span,
.primary-contact strong,
.primary-contact a {
  display: block;
}

.primary-contact span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-contact strong {
  margin-top: 10px;
  font-size: 1.25rem;
}

.primary-contact a {
  margin-top: 4px;
  color: var(--cyan-dark);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.management-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.sponsor-form {
  padding: clamp(28px, 4vw, 48px);
  color: var(--white);
  background: var(--ink);
  border-left: 8px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.form-required-note {
  margin: 0 0 20px;
  color: #9fb1bb;
  font-size: 0.78rem;
  text-align: right;
}

.form-required-note span {
  color: var(--cyan);
  font-weight: 800;
}

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

.sponsor-form > label,
.form-row label {
  display: block;
  margin-bottom: 20px;
}

.sponsor-form label > span:first-child {
  display: block;
  margin-bottom: 7px;
  color: #b8c8d0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sponsor-form input,
.sponsor-form select,
.sponsor-form textarea {
  width: 100%;
  border: 1px solid #3b5260;
  border-radius: 3px;
  color: var(--white);
  background: var(--ink-raised);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.sponsor-form input,
.sponsor-form select {
  min-height: 50px;
  padding: 10px 13px;
}

.sponsor-form textarea {
  min-height: 154px;
  padding: 13px;
  resize: vertical;
}

.sponsor-form select {
  color-scheme: dark;
}

.phone-input-group {
  display: grid;
  grid-template-columns: 120px minmax(180px, 1fr);
  gap: 10px;
}

.phone-input-group select,
.phone-input-group input {
  min-width: 0;
}

.phone-country-select {
  position: relative;
  min-width: 0;
  display: block;
}

.phone-country-select select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 42px;
  color: transparent;
}

.phone-country-select option {
  color: var(--white);
  background: var(--ink-raised);
}

.phone-country-value {
  position: absolute;
  inset: 0 42px 0 14px;
  display: flex;
  align-items: center;
  color: var(--white);
  pointer-events: none;
}

.phone-country-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #b8c8d0;
  border-bottom: 2px solid #b8c8d0;
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.sponsor-form input:focus,
.sponsor-form select:focus,
.sponsor-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgb(83 199 232 / 18%);
}

.sponsor-form input::placeholder,
.sponsor-form textarea::placeholder {
  color: #82949e;
}

.sponsor-form .check-row {
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.sponsor-form .check-row input {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin: 2px 0 0;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid #5a707c;
  border-radius: 3px;
  background: var(--ink-raised);
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease, box-shadow 150ms ease;
}

.sponsor-form .check-row input::before {
  content: "";
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  transform: translateY(-1px) rotate(-45deg) scale(0);
  transition: transform 120ms ease;
}

.sponsor-form .check-row input:checked {
  border-color: var(--cyan);
  background: var(--cyan);
}

.sponsor-form .check-row input:checked::before {
  transform: translateY(-1px) rotate(-45deg) scale(1);
}

.sponsor-form .check-row > span {
  margin: 0;
  color: #b8c8d0;
  font-size: 0.88rem;
  font-weight: 450;
  letter-spacing: 0;
}

.check-row a {
  color: var(--white);
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.captcha-field {
  margin-top: 20px;
}

#turnstile-widget {
  min-height: 65px;
}

.button-submit {
  width: 100%;
  margin-top: 12px;
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.button-submit:disabled {
  opacity: 0.66;
  cursor: wait;
  transform: none;
}

.form-note {
  margin: 13px 0 0;
  color: #82949e;
  font-size: 0.76rem;
  text-align: center;
}

.form-note a {
  color: #b8c8d0;
}

.form-status {
  min-height: 0;
  margin-top: 0;
  padding: 0;
  font-size: 0.9rem;
}

.form-status:not(:empty) {
  min-height: 48px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  background: var(--ink-raised);
}

.form-status.success {
  color: #a7e7c2;
  border-color: #397955;
}

.form-status.error {
  color: #ffd0d0;
  border-color: #9b5050;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.footer-main {
  min-height: 128px;
  display: grid;
  grid-template-columns: 1.1fr 1.45fr auto;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 8px 20px;
}

.footer-links a {
  color: #b8c8d0;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-links .footer-legal-start {
  grid-column: 1;
}

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

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a,
.fis-profile-link {
  /* The 68px target leaves the FIS logo's required 1.5 X clear space intact. */
  position: relative;
  width: 68px;
  min-width: 68px;
  height: 68px;
  min-height: 68px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: transparent;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-socials a::after,
.fis-profile-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--cyan);
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible,
.fis-profile-link:hover,
.fis-profile-link:focus-visible {
  color: var(--white);
  transform: translateY(-2px);
}

.footer-socials a:hover::after,
.footer-socials a:focus-visible::after,
.fis-profile-link:hover::after,
.fis-profile-link:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.fis-logo-lockup {
  position: relative;
  padding-right: 7px;
  display: inline-flex;
  align-items: flex-start;
  flex: none;
  line-height: 0;
}

.fis-logo {
  width: 36px;
  height: auto;
  flex: none;
}

.fis-registered {
  position: absolute;
  top: 48%;
  right: 0;
  color: var(--white);
  font-size: 8px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  transform: translateY(-50%);
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-dark);
  color: #82949e;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #b8c8d0;
  text-decoration: none;
}

.legal-page {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 74px) 0 90px;
}

.legal-card {
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-card h1 {
  margin-bottom: 38px;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 1;
}

.legal-card h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.5rem, 2.3vw, 2.05rem);
  line-height: 1.1;
}

.legal-card h3 {
  margin: 32px 0 10px;
  font-size: 1.12rem;
}

.legal-card h2,
.legal-card h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: pretty;
}

.legal-card h4 {
  margin: 25px 0 8px;
  font-size: 1rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card a:not(.button) {
  color: var(--cyan-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.legal-card .button {
  margin-top: 24px;
}

.legal-footer {
  margin-top: 0;
}

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .performance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .goal-card {
    grid-column: 1 / -1;
  }

  .goal-card ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 0;
  }

  .footer-links {
    grid-template-columns: repeat(5, max-content);
  }

  .footer-links .footer-legal-start {
    grid-column: auto;
  }

  .footer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  h1,
  h2,
  h3 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid var(--line-dark);
    box-shadow: 0 24px 50px rgb(0 0 0 / 24%);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line-dark);
  }

  .nav-links .nav-cta {
    margin-top: 14px;
    justify-content: center;
    border-bottom: 0;
  }

  .split-layout,
  .profile-layout,
  .value-layout,
  .contact-layout,
  .costs-heading,
  .open-layout {
    grid-template-columns: 1fr;
  }

  .section-media,
  .portrait-media,
  .value-media {
    min-height: 500px;
  }

  .portrait-media {
    order: -1;
  }

  .value-copy {
    padding-right: 0;
  }

  .value-media {
    min-height: 560px;
  }

  .cost-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .performance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cost-total {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 260px;
  }

  .open-layout > .button {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 70px;
  }

  .container,
  .nav,
  .hero-inner,
  .legal-page {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-copy {
    font-size: 0.86rem;
  }

  .brand-copy small {
    font-size: 0.55rem;
  }

  .hero {
    min-height: 760px;
    height: auto;
    max-height: none;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgb(7 16 24 / 97%) 0%, rgb(7 16 24 / 74%) 55%, rgb(7 16 24 / 20%) 100%);
  }

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

  .hero-inner {
    height: auto;
    padding: 0 0 28px;
    justify-content: flex-start;
  }

  .hero-copy {
    min-height: max(760px, 100svh);
    padding: clamp(260px, 38svh, 330px) 0 42px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  h1 {
    font-size: clamp(2.75rem, 12vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-proof {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: 88px;
    padding: 15px 18px;
  }

  .hero-proof div + div {
    border-top: 1px solid rgb(255 255 255 / 18%);
    border-left: 0;
  }

  .availability-inner {
    min-height: 118px;
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .section {
    padding: 68px 0;
  }

  .section-media,
  .portrait-media,
  .value-media {
    min-height: 430px;
    border-width: 6px;
  }

  .quality-list,
  .profile-facts,
  .model-grid,
  .form-row,
  .cost-detail-grid,
  .goal-card ul {
    grid-template-columns: 1fr;
  }

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

  .career-line li {
    min-height: 86px;
    padding: 0 0 22px 30px;
    border-top: 0;
    border-left: 2px solid var(--line-dark);
  }

  .career-line li::before {
    top: 2px;
    left: -7px;
  }

  .career-line span {
    margin-top: 5px;
  }

  .performance-grid,
  .cost-overview {
    grid-template-columns: 1fr;
  }

  .goal-card,
  .cost-total {
    grid-column: auto;
  }

  .result-card {
    min-height: 210px;
  }

  .more-results ul {
    padding: 0 42px 22px;
    columns: 1;
  }

  .cost-tile,
  .cost-total {
    min-height: 210px;
    padding: 24px;
  }

  .cost-detail-grid div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .value-copy {
    padding-bottom: 48px;
  }

  .value-media {
    min-height: 470px;
  }

  .model-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-links .footer-legal-start {
    grid-column: auto;
  }

  .footer-actions {
    justify-content: flex-start;
  }

  .footer-bottom {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .legal-page {
    padding-top: calc(var(--header-height) + 38px);
  }

  .legal-card {
    padding-inline: 22px;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }

  .hero-actions .button {
    flex: 1 0 100%;
    width: 100%;
  }

  .kicker {
    letter-spacing: 0.16em;
  }

  .section-media,
  .portrait-media {
    min-height: 380px;
  }

  .value-media {
    min-height: 400px;
  }

  .phone-input-group {
    grid-template-columns: 1fr;
  }
}

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

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

}

@media print {
  .site-header,
  .availability,
  .hero-actions,
  .section-link,
  .model-select,
  .sponsor-form,
  .site-footer {
    display: none !important;
  }

  .hero,
  .section,
  .section-dark {
    min-height: 0;
    color: #000;
    background: #fff;
  }

  .hero-media {
    position: relative;
    height: 320px;
  }

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

  .hero-inner {
    padding: 30px 0;
  }

}

/* =========================================================
   COOKIE CONSENT
========================================================= */

.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding: 24px;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cookie-consent__content {
    width: min(720px, 100%);

    padding: 24px;

    background: #08151f;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.35);

    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-consent__content strong {
    display: block;

    margin-bottom: 8px;

    font-size: 1.1rem;
    font-weight: 700;
}

.cookie-consent__content p {
    margin: 0 0 12px;

    color: rgba(255, 255, 255, 0.75);
}

.cookie-consent__content a {
    color: #55c3e3;
    text-decoration: none;
}

.cookie-consent__content a:hover {
    text-decoration: underline;
}


/* ACTIONS */

.cookie-consent__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;

    margin-top: 20px;
}

.cookie-consent__actions button {
    min-width: 130px;

    padding: 11px 18px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 2px;

    background: transparent;
    color: #ffffff;

    font: inherit;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.cookie-consent__actions button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
}

#cookie-accept {
    background: #55c3e3;
    border-color: #55c3e3;
    color: #06131c;
}

#cookie-accept:hover {
    background: #6bcee9;
    border-color: #6bcee9;
}


/* FOOTER COOKIE SETTINGS */

.cookie-settings {
    padding: 0;

    border: 0;
    background: none;

    color: inherit;
    font: inherit;

    cursor: pointer;
}

.cookie-settings:hover {
    color: #55c3e3;
}


/* MOBILE */

@media (max-width: 600px) {

    .cookie-consent {
        padding: 12px;
    }

    .cookie-consent__content {
        padding: 20px;
    }

    .cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-consent__actions button {
        min-width: 0;
        width: 100%;
    }
}