:root {
  --color-black: #000;
  --color-white: #fff;
  --color-blue-light: #6deafe;
  --color-blue-medium-light: #52cdff;
  --color-blue-medium: #37b1fb;
  --color-blue-medium-dark: #2c9ae4;
  --color-blue-dark: #1d7dca;
  --color-gray: #ccc;
  --color-gray-dark: #444;
  --color-orange: #ff8400;
  --color-red: #d32f2f;
  --color-ink: #071019;
  --color-navy: #071d2f;
  --color-mist: #eaf7fd;
  --shadow-soft: 0 1.5rem 5rem rgba(7, 29, 47, 0.14);
}

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

body {
  display: flex;
  flex-flow: column nowrap;
  min-height: 100vh;
  padding: 1rem;
  padding-bottom: calc(1rem + var(--cookie-banner-offset, 0px));
  font:
    400 16px/1.4 Helvetica,
    "Trebuchet MS",
    Verdana,
    sans-serif;
  background-color: white;
  background-image: url(/assets/images/realized-coach-background.jpg);
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-black);
}

/* 2026 brand system */
html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  padding-bottom: var(--cookie-banner-offset, 0px);
  background: var(--color-white);
  color: var(--color-ink);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body > main:not(.home) {
  width: auto;
  margin: 0 clamp(1rem, 4vw, 3rem);
}

h1,
h2,
h3 {
  color: var(--color-ink);
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

p {
  line-height: 1.65;
}

.header {
  position: relative;
  z-index: 50;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(7, 29, 47, 0.09);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header figure a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-ink);
  text-decoration: none;
}

.header img {
  width: 48px;
  height: 48px;
}

.header-wordmark {
  display: grid;
  color: var(--color-ink);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  line-height: 1.05;
}

.header-wordmark strong {
  color: var(--color-blue-dark);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.header-nav a {
  box-shadow: none;
  color: var(--color-ink);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-nav a:visited {
  color: var(--color-ink);
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
  background: var(--color-mist);
  color: var(--color-blue-dark);
}

.home {
  display: block;
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 81px);
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: 64% center;
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(3, 12, 20, 0.94) 0%,
      rgba(3, 12, 20, 0.78) 38%,
      rgba(3, 12, 20, 0.1) 74%
    ),
    linear-gradient(0deg, rgba(3, 12, 20, 0.55), transparent 45%);
}

.hero__content {
  align-self: center;
  width: min(58rem, 88%);
  margin-left: clamp(1.25rem, 7vw, 7rem);
  padding: 5rem 0 7rem;
  color: var(--color-white);
}

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--color-blue-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--shadow {
  text-shadow: 1px 1px 2px var(--color-blue-dark);
}

.hero h1 {
  max-width: 12ch;
  color: var(--color-white);
  font-size: clamp(3.7rem, 9.2vw, 9rem);
}

.hero h1 em {
  display: inline;
  color: var(--color-blue-light);
  font-style: normal;
}

.hero__intro {
  max-width: 36rem;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
}

.button {
  min-height: 3.6rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: var(--color-blue-dark);
  box-shadow: 0 0.75rem 2rem rgba(29, 125, 202, 0.3);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.button--light {
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: none;
}

.button--light:visited,
.button--light:hover {
  color: var(--color-ink);
}

.text-link {
  color: var(--color-white);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:visited,
.text-link:hover {
  color: var(--color-blue-light);
}

.text-link span {
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(0.3rem);
}

.section-pad {
  padding: clamp(5rem, 11vw, 10rem) clamp(1.25rem, 7vw, 7rem);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
  gap: 4rem 8vw;
  background: var(--color-white);
}

.manifesto h2,
.story h2,
.home-cta h2 {
  font-size: clamp(2.8rem, 6.5vw, 6.4rem);
}

.manifesto__copy {
  align-self: end;
  max-width: 34rem;
  color: #48606f;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.pillars {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #bcd3df;
}

.pillar {
  min-height: 16rem;
  padding: 2rem;
  border-right: 1px solid #bcd3df;
  transition:
    background 240ms ease,
    transform 240ms ease;
}

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

.pillar:hover {
  background: var(--color-mist);
  transform: translateY(-0.5rem);
}

.pillar > span {
  color: var(--color-blue-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.pillar h3 {
  margin: 3.5rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.pillar p {
  max-width: 22rem;
  color: #48606f;
}

.story {
  position: relative;
  overflow: hidden;
}

.story--calm {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(20rem, 1.1fr);
  min-height: 50rem;
  background: var(--color-mist);
}

.story__image-wrap {
  margin: clamp(2rem, 6vw, 6rem) 0 clamp(2rem, 6vw, 6rem)
    clamp(1.25rem, 7vw, 7rem);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.story__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.story__image-wrap:hover img {
  transform: scale(1.035);
}

.story--calm .story__content {
  align-self: center;
  max-width: 48rem;
  padding: clamp(4rem, 10vw, 10rem) clamp(1.5rem, 9vw, 9rem);
}

.story__content > p:last-child {
  max-width: 36rem;
  margin-top: 2rem;
  color: #48606f;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.story--action {
  display: flex;
  align-items: center;
  min-height: min(85vh, 60rem);
  padding: clamp(5rem, 12vw, 10rem) clamp(1.25rem, 7vw, 7rem);
  isolation: isolate;
}

.story--action__image,
.story--action__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story--action__image {
  z-index: -2;
  object-fit: cover;
  object-position: 62% center;
}

.story--action__shade {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(2, 12, 22, 0.96),
    rgba(2, 12, 22, 0.62) 45%,
    rgba(2, 12, 22, 0.08) 75%
  );
}

.story--action .story__content {
  width: min(47rem, 64%);
  color: var(--color-white);
}

.story--action h2 {
  color: var(--color-white);
}

.story--action .story__content > p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.home-cta {
  position: relative;
  text-align: center;
  background-color: var(--color-white);
  background-image: url("/assets/images/realized-coach-background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  isolation: isolate;
}

.home-cta h2 {
  max-width: 12ch;
  margin: 0 auto 1.5rem;
}

.home-cta > p:not(.eyebrow):not(.alt-lang) {
  margin-bottom: 2rem;
  color: #48606f;
  font-size: 1.15rem;
}

.alt-lang {
  max-width: 48rem;
  margin: 1.5rem auto 0;
  opacity: 1;
}

.footer {
  padding: 3rem clamp(1rem, 5vw, 5rem);
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.62);
}

.footer a,
.footer a:visited,
.footer-link-button {
  color: rgba(255, 255, 255, 0.76);
}

.footer-link-button:hover:not(:disabled),
.footer a:hover {
  color: var(--color-blue-light);
}

.cookie-banner,
.cookie-settings-dialog,
.external-link-dialog {
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-breathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

@media (max-width: 760px) {
  .header-wordmark {
    display: none;
  }

  .hero {
    min-height: 52rem;
  }

  .hero__image {
    object-position: 66% center;
  }

  .hero__shade {
    background: linear-gradient(
      0deg,
      rgba(3, 12, 20, 0.96),
      rgba(3, 12, 20, 0.56) 72%,
      rgba(3, 12, 20, 0.16)
    );
  }

  .hero__content {
    align-self: end;
    margin: 0;
    padding: 12rem 1.25rem 5rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 16vw, 5.5rem);
  }

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

  .manifesto {
    gap: 2rem;
  }

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

  .pillar {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #bcd3df;
  }

  .pillar h3 {
    margin-top: 2rem;
  }

  .story__image-wrap {
    height: 38rem;
    margin: 2rem 1.25rem 0;
  }

  .story--calm .story__content {
    padding: 4rem 1.25rem 5rem;
  }

  .story--action {
    min-height: 48rem;
    align-items: end;
  }

  .story--action__image {
    object-position: 66% center;
  }

  .story--action__shade {
    background: linear-gradient(
      0deg,
      rgba(2, 12, 22, 0.98),
      rgba(2, 12, 22, 0.35) 75%
    );
  }

  .story--action .story__content {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero__image {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Final cascade anchors for legacy component rules above. */
h1,
h2,
h3 {
  color: var(--color-ink);
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
}

.header {
  margin: 0;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(7, 29, 47, 0.09);
  background: rgba(255, 255, 255, 0.94);
}

.header figure a {
  display: flex;
}

.header img {
  width: 48px;
  height: 48px;
}

.header-nav a {
  box-shadow: none;
  color: var(--color-ink);
}

.header-nav a:visited {
  color: var(--color-ink);
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
  background: var(--color-mist);
  color: var(--color-blue-dark);
}

.button,
button,
input[type="button"],
input[type="submit"] {
  border-radius: 999px;
  background: var(--color-blue-dark);
}

.button--light,
.button--light:visited,
.button--light:hover {
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: none;
}

.hero h1,
.story--action h2 {
  color: var(--color-white);
}

.hero .reveal {
  opacity: 1;
  transform: none;
  animation: hero-copy-in 700ms 150ms both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .reveal {
    animation: none;
  }
}

main {
  flex: 1;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

a {
  color: var(--color-blue-medium-dark);
  &:visited {
    color: var(--color-blue-medium-dark);
  }
  &:hover {
    text-decoration: underline;
    color: var(--color-blue-medium-light);
  }
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--color-white);
  font-weight: 700;
  transform: translateY(calc(-100% - 2rem));
}

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

h1 {
  color: var(--color-blue-dark);
}

p {
  line-height: 1.2;
  margin-bottom: 1rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #aebfca;
  border-radius: 0.5rem;
  background: var(--color-white);
  color: var(--color-black);
  font: inherit;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #718b9c;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
.button:focus-visible {
  outline: none;
  border-color: var(--color-blue-dark);
  box-shadow: 0 0 0 3px rgba(55, 177, 251, 0.22);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--color-red);
}

button,
input[type="button"],
input[type="submit"],
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  border: 0;
  border-radius: 0.55rem;
  background: linear-gradient(
    315deg,
    var(--color-blue-dark),
    var(--color-blue-medium),
    var(--color-blue-light)
  );
  color: var(--color-white);
  font: inherit;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0.5rem 1.25rem rgba(29, 125, 202, 0.22);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    opacity 150ms ease;
}

.button:visited {
  color: var(--color-white);
}

button:hover:not(:disabled),
input[type="button"]:hover:not(:disabled),
input[type="submit"]:hover:not(:disabled),
.button:hover {
  color: var(--color-white);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 0.7rem 1.5rem rgba(29, 125, 202, 0.3);
}

button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.65;
}

button.secondary,
input[type="button"].secondary,
input[type="submit"].secondary,
.button.secondary {
  border: 1px solid var(--color-blue-dark);
  background: var(--color-white);
  color: var(--color-blue-dark);
  box-shadow: none;
}

.button.secondary:visited {
  color: var(--color-blue-dark);
}

button.secondary:hover:not(:disabled),
input[type="button"].secondary:hover:not(:disabled),
input[type="submit"].secondary:hover:not(:disabled),
.button.secondary:hover:not([aria-disabled="true"]) {
  background: #eef8fe;
  color: var(--color-blue-dark);
  box-shadow: 0 0.4rem 1rem rgba(29, 125, 202, 0.16);
}

form {
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 1em;
  width: 100%;
  max-width: 25em;
}

output {
  margin-bottom: 1em;
}

/* Anticipated Trademark Registration */
.atr {
  position: relative;
}
.atr::after {
  content: "ATR";
  position: absolute;
  top: 1em;
  right: -2em;
  font-size: 0.25em;
  line-height: 0;
}

.external-link-dialog {
  width: min(36rem, calc(100% - 2rem));
  max-height: calc(100% - 2rem);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 0.75rem;
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.3);
}

.external-link-dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
}

.external-link-dialog__content {
  padding: clamp(1.25rem, 5vw, 2rem);
}

.external-link-dialog h2 {
  margin-bottom: 1rem;
  color: var(--color-blue-dark);
}

.external-link-dialog__url {
  background: #f4f9fc;
  font-weight: 700;
}

.external-link-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1000;
  max-width: 72rem;
  max-height: calc(100vh - 2rem);
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid rgba(29, 125, 202, 0.35);
  border-radius: 0.75rem;
  background: var(--color-white);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
  overflow: auto;
}

.cookie-banner,
.cookie-banner__content,
.cookie-banner__content > div,
.cookie-banner__actions {
  min-width: 0;
}

.cookie-banner__actions button {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner h2,
.cookie-settings-dialog h2 {
  margin-bottom: 0.5rem;
  color: var(--color-blue-dark);
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner__actions,
.cookie-settings-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-settings-dialog {
  width: min(42rem, calc(100% - 2rem));
  max-height: calc(100% - 2rem);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 0.75rem;
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.3);
}

.cookie-settings-dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
}

.cookie-settings-dialog__content {
  padding: clamp(1.25rem, 5vw, 2rem);
}

.cookie-preferences {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.cookie-preference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem;
  border: 1px solid var(--color-gray);
  border-radius: 0.5rem;
}

.cookie-preference span {
  display: grid;
  gap: 0.2rem;
}

.cookie-preference small {
  color: var(--color-gray-dark);
}

.cookie-preference input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.25rem;
  min-height: 1.25rem;
}

.cookie-settings-dialog__note {
  color: var(--color-gray-dark);
  font-size: 0.85rem;
}

.cookie-settings-dialog__actions {
  justify-content: flex-end;
  margin-top: 1.5rem;
}

small p {
  font-size: 0.8rem;
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  width: 100%;
  margin: 0 auto 1.5rem;
  padding: 0;
  border: 0;
}

.header figure,
.header figure a,
.header img {
  display: block;
}

.header figure {
  flex: 0 0 auto;
}

.header img {
  height: 64px;
  width: auto;
}

.header-nav {
  flex: 0 0 100%;
  min-width: 0;
}

.header-nav ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .header-nav li {
  margin: 0;
}

.header-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 0.25rem;
  border-radius: 0.5rem;
  color: var(--color-blue-medium);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 4px 0 #8888;
  transition:
    background-color 150ms ease,
    color 150ms ease;
}

.header-nav a:visited {
  color: var(--color-blue-medium);
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-blue-light);
  text-decoration: none;
}

.header-nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(55, 177, 251, 0.28);
}

.homepage-title {
  display: flex;
  flex-flow: column nowrap;
  align-items: end;
  text-transform: uppercase;
  color: var(--color-black);
}

.realized {
  background-image: url("/assets/images/realized-coach-title-background-full.jpg");
  background-size: contain;
  background-repeat: repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16vw;
  line-height: 0.8;
  text-transform: uppercase;
}

.coach {
  margin-right: 1.25%;
  font-size: 3vw;
}

.tm:after {
  content: "\2122";
  font-size: 0.5em;
  vertical-align: super;
}

.slogan {
  font-size: 2em;
  opacity: 0.5;
  text-align: center;
}

.schedule {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.alt-lang {
  margin: 2em auto 1em;
  font-size: 0.75em;
  text-align: center;
  opacity: 0.75;
}

.footer {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  color: var(--color-gray-dark);
  small {
    display: block;
    text-align: center;
  }
}

.footer-links {
  list-style: none;
  margin: 0 auto 1em;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2em;
  width: 100%;
  max-width: 40em;
  font-size: 13px;
  a {
    text-decoration: none;
    &:hover {
      text-decoration: underline;
    }
  }
}

.footer-link-button {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-blue-medium-dark);
  font-size: inherit;
  font-weight: 400;
  box-shadow: none;
}

.footer-link-button:hover:not(:disabled) {
  background: transparent;
  color: var(--color-blue-medium-light);
  text-decoration: underline;
  transform: none;
  box-shadow: none;
}

.last-updated {
  display: block;
  width: 100%;
  margin-top: 1em;
  text-align: right;
}

html {
  scroll-padding-bottom: var(--cookie-banner-offset, 0px);
}

a,
button,
input,
select,
textarea,
[tabindex]:not([tabindex="-1"]) {
  scroll-margin-bottom: calc(1rem + var(--cookie-banner-offset, 0px));
}

@media (min-width: 768px) {
  .cookie-banner__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__actions {
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .realized {
    font-size: 12vw;
    letter-spacing: 3vw;
  }
  .coach {
    margin-right: 3.4vw;
    color: #fff;
    text-shadow: 0 0 1vw var(--color-black);
  }
  .slogan {
    font-size: 3vw;
    opacity: 0.25;
  }
}

@media (min-width: 600px) {
  .header {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .header-nav {
    flex: 0 1 24rem;
  }

  .header-nav ul {
    gap: clamp(0.25rem, 1vw, 0.75rem);
  }

  .header-nav a {
    padding-inline: 0.75rem;
    font-size: 1rem;
  }
}

@media (max-width: 599px) {
  .cookie-banner__actions button,
  .cookie-settings-dialog__actions button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  input,
  select,
  textarea,
  button,
  .button,
  .header-nav a {
    transition: none;
  }
}

/* Brand rules that intentionally win over the original component layer. */
.header {
  margin: 0;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(7, 29, 47, 0.09);
  background: rgba(255, 255, 255, 0.94);
}

.header figure a {
  display: flex;
}

.header img {
  width: 48px;
  height: 48px;
}

.header-nav a,
.header-nav a:visited {
  color: var(--color-ink);
  box-shadow: none;
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
  background: var(--color-mist);
  color: var(--color-blue-dark);
}

.button,
button,
input[type="button"],
input[type="submit"] {
  border-radius: 999px;
  background: var(--color-blue-dark);
}

.button--light,
.button--light:visited,
.button--light:hover {
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: none;
}

.hero h1,
.story--action h2 {
  color: var(--color-white);
}

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

/* Shared 2026 interaction system */
.header img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

button:not(.footer-link-button),
input[type="button"],
input[type="submit"],
.button {
  position: relative;
  min-height: 3.35rem;
  padding: 0.82rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(
    105deg,
    var(--color-blue-dark),
    var(--color-blue-medium)
  );
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.065em;
  line-height: 1.25;
  text-transform: uppercase;
  box-shadow: 0 0.7rem 1.8rem rgba(29, 125, 202, 0.24);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

button:not(.footer-link-button)::after,
input[type="button"]::after,
input[type="submit"]::after,
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.24) 50%,
    transparent 75%
  );
  transform: translateX(-120%);
  transition: transform 420ms ease;
  pointer-events: none;
}

button:not(.footer-link-button):hover:not(:disabled),
input[type="button"]:hover:not(:disabled),
input[type="submit"]:hover:not(:disabled),
.button:hover {
  background: linear-gradient(105deg, #126db5, var(--color-blue-medium-dark));
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.2rem rgba(29, 125, 202, 0.32);
}

button:not(.footer-link-button):hover::after,
input[type="button"]:hover::after,
input[type="submit"]:hover::after,
.button:hover::after {
  transform: translateX(120%);
}

button.secondary,
input[type="button"].secondary,
input[type="submit"].secondary,
.button.secondary {
  border: 1px solid #9fc5d8;
  background: transparent;
  color: var(--color-blue-dark);
  box-shadow: none;
}

button.secondary:hover:not(:disabled),
input[type="button"].secondary:hover:not(:disabled),
input[type="submit"].secondary:hover:not(:disabled),
.button.secondary:hover:not([aria-disabled="true"]) {
  border-color: var(--color-blue-dark);
  background: var(--color-mist);
  color: var(--color-blue-dark);
  box-shadow: 0 0.6rem 1.4rem rgba(29, 125, 202, 0.12);
}

.button--light,
.button--light:visited,
.button--light:hover {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: none;
}

.footer-link-button,
.footer-link-button:hover:not(:disabled) {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transform: none;
  overflow: visible;
}

.footer-link-button::after {
  display: none;
}

.external-link-dialog,
.cookie-settings-dialog {
  border: 1px solid rgba(109, 234, 254, 0.28);
  border-radius: 1.75rem;
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: 0 2rem 7rem rgba(2, 12, 22, 0.45);
  overflow: hidden;
}

.external-link-dialog::backdrop,
.cookie-settings-dialog::backdrop {
  background: rgba(2, 12, 22, 0.78);
  backdrop-filter: blur(8px);
}

.external-link-dialog__content,
.cookie-settings-dialog__content {
  position: relative;
  padding: clamp(1.5rem, 5vw, 2.75rem);
}

.external-link-dialog__content::before,
.cookie-settings-dialog__content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.4rem;
  background: linear-gradient(
    90deg,
    var(--color-blue-dark),
    var(--color-blue-light)
  );
}

.external-link-dialog h2,
.cookie-settings-dialog h2 {
  max-width: 12ch;
  margin: 0 0 1rem;
  color: var(--color-ink);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  line-height: 0.95;
}

.external-link-dialog p,
.cookie-settings-dialog > div > p {
  color: #48606f;
  line-height: 1.6;
}

.external-link-dialog__url {
  padding: 0.9rem 1rem;
  border: 1px solid #c6dce7;
  border-radius: 0.85rem;
  background: var(--color-mist);
  color: #23485e;
  font-size: 0.85rem;
}

.external-link-dialog__actions,
.cookie-settings-dialog__actions {
  padding-top: 1.5rem;
  border-top: 1px solid #d5e5ec;
}

.cookie-preferences {
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.cookie-preference {
  padding: 1rem;
  border: 1px solid #c6dce7;
  border-radius: 1rem;
  background: rgba(234, 247, 253, 0.55);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.cookie-preference:has(input:not(:disabled):checked) {
  border-color: var(--color-blue-medium);
  background: var(--color-mist);
}

.cookie-preference input[type="checkbox"] {
  accent-color: var(--color-blue-dark);
}

.cookie-banner {
  padding: 1.25rem;
  border: 1px solid rgba(109, 234, 254, 0.45);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1.5rem 5rem rgba(2, 12, 22, 0.28);
  backdrop-filter: blur(18px);
}

.cookie-banner h2 {
  color: var(--color-ink);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
}

@media (max-width: 599px) {
  .header img {
    height: 54px;
  }
  .external-link-dialog__actions button,
  .cookie-settings-dialog__actions button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  button:not(.footer-link-button),
  input[type="button"],
  input[type="submit"],
  .button,
  .cookie-preference {
    transition: none;
  }

  button:not(.footer-link-button)::after,
  input[type="button"]::after,
  input[type="submit"]::after,
  .button::after {
    display: none;
  }
}
