@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/fonts/source-sans-pro-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("assets/fonts/source-sans-pro-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@property --hero-cta-neon-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:root {
  --blue-950: #062c55;
  --blue-900: #063d75;
  --blue-800: #0b4f8d;
  --blue-700: #23679f;
  --blue-100: #e9f1f7;
  --blue-050: #f2f7fa;
  --gold-700: #80715f;
  --taupe-700: #5f6f7d;
  --taupe-500: #91a0ad;
  --taupe-100: #edf2f5;
  --cool-050: #f4f7fa;
  --ink: #27313a;
  --muted: #66717b;
  --line: #d8e2ea;
  --white: #ffffff;
  --shadow: 0 18px 50px rgb(6 44 85 / 8%);
  --radius: 16px;
  --radius-small: 10px;
  --radius-pill: 999px;
  --container: 1180px;
  --header-height: 76px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

main {
  overflow: hidden;
  background: var(--cool-050);
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  color: var(--blue-900);
  line-height: 1.08;
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  max-width: 930px;
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  letter-spacing: -0.045em;
}

h1 span {
  color: var(--gold-700);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 4.4vw, 4.4rem);
  letter-spacing: -0.045em;
  line-height: 0.99;
}

h3 {
  font-size: 1.55rem;
  letter-spacing: -0.015em;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-950);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  color: var(--white);
  background: var(--blue-900);
  border: 1px solid var(--blue-900);
  border-radius: var(--radius-pill);
  box-shadow: none;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  background: var(--blue-800);
  border-color: var(--blue-800);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgb(6 61 117 / 15%);
}

.button:focus-visible,
.desktop-nav a:focus-visible,
.mobile-menu a:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(35 103 159 / 35%);
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.84rem;
}

.button-light {
  color: var(--blue-950);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--blue-950);
  background: var(--taupe-100);
  border-color: var(--taupe-100);
}

.eyebrow {
  margin-bottom: 19px;
  color: var(--blue-700);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  padding: 112px 0 64px;
}

.section-warm {
  background: transparent;
}

.section-blue {
  background: transparent;
}

.section-heading {
  display: grid;
  max-width: none;
  margin-bottom: 76px;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.65fr);
  align-items: end;
  column-gap: clamp(48px, 7vw, 100px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
  grid-column: 1;
}

.section-heading > p:last-child:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 0;
  grid-column: 2;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid rgb(6 61 117 / 10%);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgb(16 38 58 / 7%);
}

.header-inner {
  display: grid;
  width: min(calc(100% - 42px), 1260px);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-symbol {
  position: relative;
  display: block;
  width: 112px;
  height: 36px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-symbol img {
  position: absolute;
  top: -12px;
  left: -5px;
  width: 124px;
  max-width: none;
}

.brand-claim {
  padding-left: 11px;
  color: var(--blue-900);
  border-left: 1px solid var(--taupe-500);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: #4f5d68;
  font-size: 0.89rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--taupe-500);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
}

.cta-short,
.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 44%, rgb(35 103 159 / 12%), transparent 30%),
    linear-gradient(180deg, var(--white) 0%, #f7fafc 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  padding-top: 90px;
  padding-bottom: 72px;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  max-width: 750px;
  margin-bottom: 40px;
  color: #53616c;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.hero-price {
  color: var(--blue-900);
  font-weight: 600;
  white-space: nowrap;
}

.hero-claim {
  margin-bottom: 8px;
}

.text-marker {
  position: relative;
  z-index: 0;
  display: inline-block;
  isolation: isolate;
  white-space: nowrap;
}

.text-marker::before,
.text-marker::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.text-marker::before {
  inset: 8% -0.2em 2% -0.16em;
  background: rgb(255 218 55 / 72%);
  clip-path: polygon(
    0.7% 15%, 3.5% 8%, 8% 12%, 13% 5%, 19% 10%, 25% 3%,
    32% 9%, 39% 4%, 47% 8%, 55% 2%, 63% 7%, 71% 3%,
    79% 9%, 87% 4%, 94% 11%, 99.2% 7%, 98.4% 28%, 100% 43%,
    98.8% 61%, 99.6% 78%, 97.5% 93%, 91% 88%, 84% 96%,
    76% 90%, 69% 97%, 61% 91%, 53% 96%, 45% 90%, 37% 98%,
    29% 91%, 21% 96%, 14% 89%, 7% 94%, 1.2% 86%, 2% 67%,
    0.2% 53%, 1.5% 35%
  );
  transform: rotate(-0.7deg) skewX(-1deg);
  transform-origin: 50% 50%;
}

/* A faint second pass creates the translucent, fibrous edge of a real marker. */
.text-marker::after {
  inset: 18% -0.13em 8% -0.1em;
  background:
    linear-gradient(
      90deg,
      rgb(255 225 69 / 0%) 0 1%,
      rgb(255 225 69 / 38%) 2% 97%,
      rgb(255 225 69 / 0%) 99%
    );
  clip-path: polygon(
    0 22%, 5% 14%, 12% 19%, 20% 10%, 29% 17%, 38% 8%,
    48% 15%, 58% 7%, 68% 14%, 78% 9%, 88% 16%, 100% 10%,
    99% 82%, 92% 88%, 82% 83%, 73% 91%, 63% 85%, 53% 93%,
    43% 86%, 32% 94%, 22% 87%, 12% 92%, 3% 84%
  );
  transform: rotate(0.45deg);
}

.text-marker--pragmatisch::before {
  clip-path: polygon(
    0.5% 9%, 6% 14%, 12% 6%, 19% 11%, 27% 4%, 35% 10%,
    43% 3%, 51% 9%, 60% 5%, 69% 11%, 77% 4%, 85% 9%,
    93% 5%, 99.5% 13%, 98.6% 31%, 100% 48%, 98.7% 66%,
    99.4% 87%, 93% 92%, 85% 87%, 77% 95%, 69% 89%,
    60% 97%, 51% 90%, 42% 95%, 34% 88%, 25% 96%,
    17% 89%, 9% 94%, 0.8% 86%, 1.7% 68%, 0.2% 49%, 1.4% 27%
  );
  transform: rotate(0.55deg) skewX(0.7deg);
}

.hero-route {
  margin-bottom: 28px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  max-width: 850px;
  align-items: center;
  gap: 54px;
}

.hero-actions .button {
  --hero-cta-neon-angle: 0deg;
  position: relative;
  isolation: isolate;
}

.hero-actions .button::before {
  position: absolute;
  z-index: -1;
  inset: -3.9px;
  padding: 2.6px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--hero-cta-neon-angle),
    transparent 0deg 225deg,
    rgb(128 113 95 / 15%) 255deg,
    rgb(203 183 152 / 92%) 300deg,
    rgb(128 113 95 / 20%) 338deg,
    transparent 360deg
  );
  content: "";
  filter: drop-shadow(0 0 5px rgb(128 113 95 / 42%));
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.hero-actions .button:hover::before {
  filter: drop-shadow(0 0 7px rgb(128 113 95 / 55%));
}

.button-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-proof {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 14px;
  color: #5d6973;
  font-size: 0.84rem;
  line-height: 1.25;
}

.hero-proof-number {
  color: var(--blue-900);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.hero-usecase {
  display: none;
}

.hero-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.hero-lines span {
  position: absolute;
  display: block;
  width: min(78vw, 1100px);
  height: min(42vw, 570px);
  border: 1px solid rgb(6 61 117 / 10%);
  border-radius: 50%;
  transform: rotate(-23deg);
}

.hero-lines span:nth-child(1) {
  top: -17%;
  right: -37%;
}

.hero-lines span:nth-child(2) {
  top: 19%;
  right: -48%;
  border-color: rgb(128 113 95 / 13%);
}

.hero-lines span:nth-child(3) {
  right: -28%;
  bottom: -37%;
}

@media (min-width: 1200px) {
  .hero h1 {
    max-width: 850px;
  }

  .hero-usecase {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: clamp(270px, 22vw, 310px);
    max-height: calc(100% - 110px);
    object-fit: contain;
    transform: translateY(-50%);
  }
}

@media (min-width: 1600px) {
  .hero h1 {
    max-width: 930px;
  }

  .hero-usecase {
    right: -100px;
  }
}

/* Logo proof */
.logo-proof {
  padding: 36px 0 40px;
  background: transparent;
}

.proof-label {
  margin-bottom: 21px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wordmark-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(9, 1fr);
  align-items: center;
  gap: 24px;
  list-style: none;
}

.wordmark-list li {
  display: flex;
  min-height: 78px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
}

.wordmark-list img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: saturate(0.82);
  opacity: 0.84;
  transition:
    filter 180ms ease,
    opacity 180ms ease;
}

.wordmark-list img:hover {
  filter: saturate(1);
  opacity: 1;
}

.wordmark-list .wordmark-plain img,
.wordmark-list .wordmark-plain img:hover {
  filter: none;
  opacity: 1;
}

.wordmark-list-compact {
  margin-top: 24px;
  grid-template-columns: repeat(17, minmax(0, 1fr));
  gap: 14px;
}

.wordmark-list-compact li {
  min-width: 0;
  min-height: 42px;
}

.wordmark-list-compact img {
  max-height: 28px;
}

.wordmark-list-compact .wordmark-dark {
  padding: 7px;
}

.wordmark-dark {
  padding: 10px;
  background: var(--blue-950);
}

/* Problem */
.task-grid {
  display: grid;
  margin-bottom: 94px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.task-card {
  min-height: 250px;
  padding: 30px;
  background: var(--white);
  border-top: 3px solid var(--blue-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.task-index {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  margin: 12px auto 32px;
  place-items: center;
  color: transparent;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgb(16 38 58 / 14%);
  font-size: 0;
}

.task-index::before,
.task-index::after {
  position: absolute;
  width: 25px;
  height: 3px;
  background: #e31b23;
  border-radius: 999px;
  content: "";
}

.task-index::before {
  transform: rotate(45deg);
}

.task-index::after {
  transform: rotate(-45deg);
}

.task-card h3 {
  margin-bottom: 12px;
}

.task-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.status-quo {
  display: grid;
  margin-bottom: 74px;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 80px;
}

.status-intro h3 {
  max-width: 420px;
  margin: 0;
  font-size: 2.15rem;
}

.status-list {
  padding: 0;
  margin: 0;
  counter-reset: status;
  list-style: none;
}

.status-list li {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 190px 1fr;
  gap: 24px;
}

.status-list li:first-child {
  border-top: 1px solid var(--line);
}

.status-list strong {
  color: var(--blue-900);
}

.status-list span {
  color: var(--muted);
}

.status-conclusion {
  max-width: 710px;
  margin: -28px 0 38px auto;
  color: var(--blue-900);
  font-size: 1.13rem;
  font-weight: 600;
}

.decision-question {
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#ansatz .container {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: clamp(52px, 8vw, 112px);
}

.failed-project-path {
  padding: 30px 0 0;
  margin-top: 0;
  border-top: 1px solid var(--line);
}

.failed-project-path > div {
  max-width: 420px;
  margin: 0;
}

.failed-project-path h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.failed-project-path > div > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.decision-question p {
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.decision-question h2 {
  display: block;
  max-width: 850px;
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

/* Transformation */
.transformation {
  overflow: hidden;
}

.outcome-grid {
  display: grid;
  margin-bottom: 62px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-grid article {
  min-height: 220px;
  padding: 34px 34px 36px;
  border-right: 1px solid var(--line);
}

.outcome-grid article:last-child {
  border-right: 0;
}

.outcome-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--taupe-700);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.outcome-grid h3 {
  margin: 0;
  font-size: 1.75rem;
}

.transformation-close {
  max-width: 760px;
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: 1.2rem;
}

.transformation-close strong {
  color: var(--blue-900);
}

/* Cases */
.case {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.case-featured {
  display: grid;
  padding: 18px;
  margin-bottom: 24px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.case-copy {
  display: flex;
  padding: 45px 38px 37px;
  flex-direction: column;
}

.case-name {
  margin-bottom: 21px;
  color: var(--taupe-700);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.case-brand {
  display: flex;
  height: 54px;
  margin-bottom: 21px;
  align-items: center;
  gap: 13px;
}

.case-brand img {
  width: 180px;
  max-width: 100%;
  max-height: 54px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  border-radius: var(--radius);
}

.case-brand .case-name {
  margin: 0;
}

.case-logo {
  display: flex;
  height: 54px;
  margin-bottom: 21px;
  align-items: center;
}

.case-logo img {
  width: 180px;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.case-copy h3 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 3.8vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.case-copy > p:not(.case-name) {
  max-width: 580px;
  color: var(--muted);
}

.metric-row {
  display: grid;
  padding-top: 32px;
  margin-top: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
}

.metric-row p {
  margin: 0;
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--blue-900);
  font-size: 1.9rem;
  line-height: 1;
}

.metric-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.case-visual,
.case-placeholder {
  display: block;
  width: 100%;
  min-height: 350px;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
}

.case-media {
  margin: 0;
}

.case-media-featured {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.case-media-featured .case-visual {
  min-height: 0;
  flex: 1 1 auto;
}

.case-screenshot {
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--blue-050);
  object-fit: contain;
}

.case-screenshot-small {
  height: 250px;
  min-height: 250px;
}

.case-media figcaption {
  padding: 10px 2px 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.3;
}

.case-grid {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.case-compact {
  display: grid;
  padding: 36px;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 20px;
}

.case-compact h3 {
  margin-bottom: 14px;
  font-size: 1.75rem;
}

.case-compact p:not(.case-name, .case-number) {
  color: var(--muted);
  font-size: 0.96rem;
}

.case-number {
  display: flex;
  margin: 0;
  align-items: center;
  flex-direction: column;
  color: var(--taupe-700);
  line-height: 1;
}

.case-number strong {
  color: var(--blue-900);
  font-size: 2.1rem;
}

.case-number span {
  margin: 8px 0;
}

.case-placeholder.small {
  width: 100%;
  height: 92px;
  min-height: 92px;
  grid-column: 1 / -1;
  box-shadow: none;
  object-fit: cover;
}

.case-media-small {
  align-self: end;
  grid-column: 1 / -1;
}

.image-zoom-trigger {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: calc(var(--radius) - 4px);
  cursor: zoom-in;
}

.image-zoom-trigger img {
  cursor: inherit;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.image-zoom-trigger:hover img {
  border-color: var(--blue-700);
  box-shadow: 0 10px 28px rgb(6 44 85 / 10%);
}

.image-zoom-trigger:focus-visible {
  outline: 3px solid rgb(35 103 159 / 35%);
  outline-offset: 4px;
}

.image-lightbox {
  width: min(92vw, 1400px);
  max-width: none;
  max-height: calc(100dvh - 48px);
  padding: 18px;
  overflow: visible;
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgb(6 44 85 / 30%);
}

.image-lightbox::backdrop {
  background: rgb(6 24 42 / 78%);
  backdrop-filter: blur(4px);
}

.image-lightbox[open] {
  display: grid;
  place-items: center;
}

.image-lightbox img {
  width: 100%;
  max-height: calc(100dvh - 84px);
  object-fit: contain;
  border-radius: var(--radius-small);
}

.image-lightbox-close {
  position: absolute;
  z-index: 1;
  top: -15px;
  right: -15px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  place-items: center;
  color: var(--white);
  background: var(--blue-900);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgb(6 24 42 / 25%);
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-close:hover {
  background: var(--blue-800);
}

.image-lightbox-close:focus-visible {
  outline: 3px solid rgb(255 255 255 / 65%);
  outline-offset: 3px;
}

/* Strategic questions */
.strategy-questions {
  padding: 68px 0 74px;
  color: var(--white);
  background: var(--blue-950);
}

.strategy-questions-heading {
  max-width: 720px;
  margin: 0 0 34px;
  text-align: left;
}

.strategy-questions-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 3vw, 3.05rem);
  line-height: 1.02;
}

.strategy-questions-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.strategy-question-card {
  display: flex;
  min-height: 154px;
  padding: 22px 24px 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 8px;
  text-align: center;
}

.strategy-question-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.strategy-question-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.strategy-question-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.strategy-question-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-700);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
}

.strategy-question-card p {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.25;
  text-wrap: balance;
}

/* Process */
.process {
  padding-top: 36px;
}

.phase-grid {
  display: grid;
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 0;
}

.phase-card {
  position: relative;
  display: flex;
  padding: 40px 36px;
  flex-direction: column;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
}

.phase-card:last-child {
  border-right: 0;
}

.phase-card:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--blue-700);
  background: var(--cool-050);
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "›";
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  transform: translate(50%, -50%);
}

.phase-card.phase-highlight {
  background: rgb(233 241 247 / 56%);
  box-shadow: none;
}

.phase-topline {
  display: flex;
  margin-bottom: 52px;
  justify-content: space-between;
  color: var(--taupe-700);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.phase-card h3 {
  margin-bottom: 11px;
  font-size: 1.72rem;
}

.phase-card > p:not(.price) {
  color: var(--muted);
  font-size: 0.96rem;
}

.price {
  margin: auto 0 23px;
  color: var(--blue-900);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
}

details {
  border-top: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 18px 30px 18px 0;
  color: var(--blue-900);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before,
summary::after {
  position: absolute;
  top: calc(50% - 1px);
  right: 4px;
  width: 14px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

summary::after {
  transform: rotate(90deg);
}

details[open] summary::after {
  transform: rotate(90deg) scaleX(0);
}

.phase-card details ul {
  padding: 0 0 0 19px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.investment-band {
  display: grid;
  padding: 34px 40px;
  color: var(--white);
  background:
    linear-gradient(120deg, var(--blue-900), var(--blue-950));
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 64px;
}

.investment-band span,
.investment-band strong {
  display: block;
}

.investment-band span {
  color: rgb(255 255 255 / 70%);
  font-size: 0.77rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.investment-band strong {
  margin-top: 5px;
  font-size: 2.25rem;
  line-height: 1;
}

.investment-band p {
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-size: 0.96rem;
}

/* About */
.about-layout {
  display: grid;
  margin-bottom: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(52px, 6vw, 82px);
}

.portrait-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--blue-100);
  border-radius: var(--radius);
  box-shadow: none;
}

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

.about-copy h2 {
  max-width: 590px;
  font-size: clamp(2.8rem, 3.8vw, 4rem);
}

.about-lead {
  max-width: 560px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 1.16rem;
}

.founder {
  padding: 26px 28px;
  background: rgb(255 255 255 / 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.founder h3 {
  margin-bottom: 6px;
}

.founder p {
  margin-bottom: 10px;
  color: var(--muted);
}

.client-quote {
  display: grid;
  padding: 30px 34px;
  margin: 48px 0 0;
  grid-template-columns: 110px minmax(0, 1fr) minmax(210px, 250px);
  align-items: center;
  column-gap: 30px;
  row-gap: 14px;
  background: rgb(255 255 255 / 72%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.client-rating {
  grid-column: 1 / -1;
  grid-row: 1;
  color: #e3a800;
  font-size: 1.18rem;
  letter-spacing: 0.15em;
  line-height: 1;
  text-align: center;
}

.client-quote blockquote {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
}

.client-quote blockquote p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.48;
  text-align: center;
}

.client-quote figcaption {
  display: contents;
}

.client-quote figcaption img {
  width: 102px;
  height: 48px;
  grid-column: 1;
  grid-row: 2;
  object-fit: contain;
}

.client-quote figcaption span,
.client-quote figcaption strong,
.client-quote figcaption small {
  display: block;
}

.client-quote figcaption span {
  padding-left: 26px;
  grid-column: 3;
  grid-row: 2;
  border-left: 1px solid var(--line);
}

.client-quote figcaption strong {
  color: var(--blue-900);
  font-size: 1rem;
}

.client-quote figcaption small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.3;
}

.client-quote--lead {
  margin: 0 0 68px;
}

.ihk-note {
  max-width: 650px;
  color: var(--blue-900) !important;
  font-weight: 600;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.faq-heading h2 {
  margin-bottom: 20px;
}

.faq-heading > p:last-child {
  color: var(--muted);
}

.faq-list {
  display: grid;
  border: 0;
  gap: 10px;
}

.faq-list details {
  padding: 0 24px;
  background: rgb(255 255 255 / 74%);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.faq-list summary {
  padding: 24px 45px 24px 0;
  font-size: 1.18rem;
}

.faq-list summary::before,
.faq-list summary::after {
  top: calc(50% - 1px);
  right: 7px;
}

.faq-list details p {
  max-width: 700px;
  padding: 0 45px 26px 0;
  margin: 0;
  color: var(--muted);
}

/* Final CTA and footer */
.final-cta {
  padding: 120px 0 126px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgb(82 144 194 / 22%), transparent 34%),
    var(--blue-950);
  text-align: center;
}

.final-cta .container {
  max-width: 880px;
}

.final-cta .eyebrow {
  color: #b8d2e5;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 670px;
  margin: 0 auto 34px;
  color: rgb(255 255 255 / 73%);
  font-size: 1.15rem;
}

.final-cta small {
  display: block;
  margin-top: 15px;
  color: rgb(255 255 255 / 56%);
}

.site-footer {
  padding: 58px 0 45px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.45fr;
  align-items: start;
  gap: 60px;
}

.footer-brand {
  margin-bottom: 23px;
}

.footer-intro > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-contact,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-contact strong,
.footer-links strong {
  margin-bottom: 4px;
  color: var(--blue-900);
}

.footer-contact span,
.footer-contact a,
.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--blue-900);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  padding-top: 25px;
  grid-column: 1 / -1;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.footer-credential {
  display: flex;
  max-width: 330px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.footer-credential img {
  width: 72px;
  height: 36px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}

/* Legal pages */
.legal-main {
  min-height: 70vh;
  background: var(--cool-050);
}

.legal-hero {
  padding: 105px 0 64px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.legal-hero p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
}

.legal-content {
  padding-top: 66px;
  padding-bottom: 100px;
}

.legal-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section h2 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

.legal-section h3 {
  margin: 28px 0 12px;
  font-size: 1.25rem;
}

.legal-section p,
.legal-section li {
  max-width: 800px;
  color: #495660;
}

.legal-section address {
  color: #495660;
  font-style: normal;
}

.legal-section a {
  color: var(--blue-900);
  text-underline-offset: 3px;
}

.legal-section ul {
  padding-left: 24px;
}

.legal-note {
  padding: 20px 22px;
  background: var(--blue-050);
  border-left: 3px solid var(--blue-700);
}

.legal-updated {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 15px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 43px;
    height: 42px;
    padding: 11px 9px;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: var(--blue-900);
    transition:
      transform 160ms ease,
      opacity 160ms ease;
  }

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

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

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

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    padding: 17px 24px 28px;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgb(16 38 58 / 12%);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 14px 3px;
    color: var(--blue-900);
    border-bottom: 1px solid var(--line);
    font-weight: 600;
    text-decoration: none;
  }

  .wordmark-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
  }

  .wordmark-list-compact {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px 20px;
  }

  .case-featured {
    grid-template-columns: 1fr;
  }

  .case-media-featured {
    min-height: 310px;
  }

  .case-visual {
    min-height: 310px;
  }

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

  .phase-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .phase-card:last-child {
    border-bottom: 0;
  }

  .phase-card:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: 0;
    rotate: 90deg;
    transform: translate(50%, 50%);
  }

  .phase-card h3 {
    min-height: 0;
  }

  .price {
    margin-top: 35px;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.86fr);
    gap: 44px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  body {
    font-size: 16px;
  }

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

  .section {
    padding: 80px 0 52px;
  }

  .process {
    padding-top: 28px;
  }

  .section-heading {
    display: block;
    margin-bottom: 44px;
  }

  .section-heading > p:last-child:not(.eyebrow) {
    max-width: 640px;
    margin-top: 24px;
    font-size: 1rem;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 9.8vw, 3rem);
  }

  h2 {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .header-inner {
    width: calc(100% - 24px);
    grid-template-columns: 1fr auto auto;
    gap: 8px;
  }

  .brand-claim {
    display: none;
  }

  .brand-symbol {
    width: 86px;
    height: 29px;
  }

  .brand-symbol img {
    top: -9px;
    left: -4px;
    width: 95px;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 11px;
  }

  .cta-long {
    display: none;
  }

  .cta-short {
    display: inline;
  }

  .menu-toggle {
    width: 40px;
    height: 38px;
    padding: 9px 8px;
  }

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

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

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .hero .eyebrow {
    max-width: 310px;
    margin-bottom: 7px;
  }

  .hero-route {
    max-width: 310px;
    margin-bottom: 18px;
  }

  .hero-copy {
    margin-bottom: 25px;
    font-size: 1.02rem;
    line-height: 1.46;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
  }

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

  .hero-lines span {
    width: 150vw;
    height: 78vw;
  }

  .hero-lines span:nth-child(1) {
    top: -3%;
    right: -104%;
  }

  .hero-lines span:nth-child(2) {
    top: 27%;
    right: -118%;
  }

  .hero-lines span:nth-child(3) {
    right: -90%;
    bottom: -10%;
  }

  .logo-proof {
    padding: 30px 0 34px;
  }

  .logo-proof .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 8px;
  }

  .logo-proof .proof-label {
    width: 100%;
    margin-bottom: 10px;
  }

  .wordmark-list {
    display: contents;
  }

  .wordmark-list li {
    width: 18vw;
    max-width: 24vw;
    min-height: 38px;
    padding: 4px 6px;
    flex: 1 1 18vw;
  }

  .wordmark-list img {
    max-width: 100%;
    max-height: 32px;
  }

  .wordmark-list-compact {
    margin-top: 0;
  }

  .wordmark-list-compact .wordmark-dark {
    padding: 5px;
  }

  .task-grid,
  .outcome-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .task-grid {
    margin-bottom: 68px;
  }

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

  .task-index {
    margin-bottom: 32px;
  }

  .status-quo {
    margin-bottom: 54px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .status-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .decision-question {
    padding: 0;
  }

  #ansatz .container {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .decision-question h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .status-conclusion {
    margin: -18px 0 32px;
    font-size: 1.02rem;
  }

  .failed-project-path {
    padding-top: 28px;
  }

  .outcome-grid article {
    min-height: auto;
    padding: 28px 4px 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcome-grid article:last-child {
    border-bottom: 0;
  }

  .outcome-grid span {
    margin-bottom: 20px;
  }

  .transformation-close {
    font-size: 1.06rem;
  }

  .case-featured {
    padding: 12px;
  }

  .case-copy {
    padding: 27px 18px 22px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric-row p {
    display: grid;
    grid-template-columns: 105px 1fr;
    align-items: center;
    gap: 15px;
  }

  .metric-row span {
    margin: 0;
  }

  .case-visual {
    min-height: 270px;
  }

  .case-media-featured {
    min-height: 0;
  }

  .strategy-questions {
    padding: 60px 0 64px;
  }

  .strategy-questions-heading {
    margin-bottom: 28px;
  }

  .strategy-questions-heading h2 {
    font-size: clamp(2.1rem, 9vw, 2.75rem);
  }

  .strategy-questions-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .strategy-question-card,
  .strategy-question-card:nth-child(-n + 3),
  .strategy-question-card:nth-child(4),
  .strategy-question-card:nth-child(5) {
    min-height: 148px;
    grid-column: auto;
  }

  .strategy-question-card p {
    font-size: 1.08rem;
  }

  .case-compact {
    min-height: 390px;
    padding: 27px 24px;
  }

  .image-lightbox {
    width: calc(100vw - 28px);
    padding: 8px;
  }

  .image-lightbox-close {
    top: -13px;
    right: -8px;
  }

  .phase-card {
    padding: 26px 23px;
  }

  .phase-topline {
    margin-bottom: 37px;
  }

  .investment-band {
    padding: 30px 25px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-layout {
    margin-bottom: 0;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .portrait-wrap {
    aspect-ratio: 4 / 3;
  }

  .about-lead {
    margin-bottom: 35px;
  }

  .client-quote {
    padding: 24px;
    margin-top: 40px;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: start;
    gap: 22px 18px;
  }

  .client-quote blockquote {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .client-quote blockquote p {
    font-size: 1rem;
  }

  .client-quote figcaption img {
    width: 78px;
    height: 36px;
    grid-column: 1;
    grid-row: 3;
  }

  .client-quote figcaption span {
    padding-left: 18px;
    grid-column: 2;
    grid-row: 3;
  }

  .client-quote--lead {
    margin: 0 0 56px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq-heading {
    position: static;
  }

  .faq-list summary {
    padding: 22px 40px 22px 0;
    font-size: 1.05rem;
  }

  .faq-list details p {
    padding-right: 10px;
  }

  .final-cta {
    padding: 85px 0 90px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .footer-meta {
    align-items: flex-start;
    text-align: left;
  }

  .footer-brand .brand-claim {
    display: block;
  }

  .legal-hero {
    padding: 78px 0 48px;
  }

  .legal-content {
    padding-top: 46px;
    padding-bottom: 75px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-actions .button::before {
    animation: hero-cta-neon-orbit 4.2s linear infinite;
  }

  .motion-group > * {
    opacity: 0;
    translate: 0 12px;
    transition:
      opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
      translate 520ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .motion-group.is-visible > * {
    opacity: 1;
    translate: 0 0;
    transition-delay: var(--motion-delay, 0ms);
  }

  .text-marker.marker-pending::before,
  .text-marker.marker-pending::after {
    scale: 0 1;
    transform-origin: left center;
    transition: scale 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .text-marker.marker-pending.is-visible::before,
  .text-marker.marker-pending.is-visible::after {
    scale: 1 1;
  }

  .text-marker.marker-pending.is-visible::after {
    transition-delay: 70ms;
  }

  details[open] > :not(summary) {
    animation: details-enter 180ms ease-out;
  }

  @keyframes details-enter {
    from {
      opacity: 0;
      transform: translateY(-4px);
    }
  }

  @keyframes hero-cta-neon-orbit {
    to {
      --hero-cta-neon-angle: 360deg;
    }
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
  .motion-group > * {
    translate: 0 8px;
  }
}

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

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