@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;400;500;600;700&family=Sora:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #eef4fb;
  --bg-strong: #dde7f1;
  --surface: rgba(247, 250, 255, 0.72);
  --surface-strong: rgba(247, 250, 255, 0.92);
  --ink: #0c1522;
  --muted: #546272;
  --accent: #14e6ff;
  --accent-strong: #8df6ff;
  --line: rgba(12, 21, 34, 0.1);
  --shadow: 0 32px 84px rgba(16, 34, 56, 0.12);
  --content-max: 1220px;
  --radius-xl: 1.8rem;
  --radius-lg: 1.05rem;
  --radius-md: 0.8rem;
  --header-height: 5.25rem;
  --transition: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Sora", "Avenir Next", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(20, 230, 255, 0.14), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(10, 110, 126, 0.09), transparent 30%),
    linear-gradient(180deg, #f6f9fd 0%, #eef4fb 45%, #e3ebf3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 28%),
    repeating-linear-gradient(
      0deg,
      rgba(13, 21, 32, 0.02) 0,
      rgba(13, 21, 32, 0.02) 1px,
      transparent 1px,
      transparent 5px
    );
  mix-blend-mode: soft-light;
  opacity: 0.65;
}

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

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

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(24, 18, 16, 0.16);
  border-radius: 1rem;
  background: rgba(255, 252, 247, 0.8);
  color: var(--ink);
  padding: 0.95rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input:focus-visible,
textarea:focus-visible,
.button:focus-visible,
.hero-panel:focus-visible,
.nav-link:focus-visible,
.locale-link:focus-visible,
.proof-card:focus-visible,
.story-card__link:focus-visible,
.site-footer__links a:focus-visible,
.site-footer__social-action:focus-visible,
.site-footer__mock-button:focus-visible,
.site-footer__submit:focus-visible {
  outline: none;
  border-color: rgba(20, 230, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(20, 230, 255, 0.18);
}

textarea {
  resize: vertical;
}

.site-shell {
  min-height: 100vh;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 400;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.25rem;
  background:
    radial-gradient(circle at 14% 50%, rgba(20, 230, 255, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(4, 6, 8, 0.98) 0%, rgba(4, 6, 8, 0.92) 100%);
  border-bottom: 1px solid rgba(20, 230, 255, 0.14);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 0 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 230, 255, 0.7), transparent);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  min-width: max-content;
}

.brand__name {
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f6fbff;
}

.brand__tag {
  display: none;
}

.primary-nav {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 1.25rem;
  left: auto;
  width: min(18rem, calc(100% - 2rem));
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.6rem);
  transition: opacity var(--transition), transform var(--transition);
  justify-self: end;
}

.site-header.is-open .primary-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-nav__list {
  display: grid;
  gap: 0.25rem;
  padding: 0.7rem;
  border-radius: 1.2rem;
  position: relative;
  z-index: 1;
  background: rgba(4, 6, 8, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.nav-link {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 999px;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: left;
  color: rgba(244, 248, 252, 0.88);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  color: #071008;
  background: rgba(20, 230, 255, 0.92);
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.locale-link {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 248, 252, 0.64);
  transition: color var(--transition);
}

.locale-link.is-current {
  color: var(--accent);
}

.locale-switcher__divider {
  width: 1px;
  height: 0.75rem;
  background: rgba(20, 230, 255, 0.18);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 0;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(20, 230, 255, 0.16);
  border-radius: 999px;
  color: #f7fbff;
  box-shadow: none;
}

.nav-toggle--icon {
  position: relative;
}

.nav-toggle__bars {
  position: relative;
  width: 1.15rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle__bars span {
  position: absolute;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle__bars span:first-child {
  transform: translateY(-0.22rem);
}

.nav-toggle__bars span:last-child {
  transform: translateY(0.22rem);
}

body[data-page="home"] .site-header {
  grid-template-columns: auto 1fr auto;
  background: linear-gradient(180deg, rgba(4, 6, 8, 0.92) 0%, rgba(4, 6, 8, 0.56) 68%, transparent 100%);
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: blur(14px);
}

body[data-page="home"] .brand {
  position: static;
  transform: none;
}

body[data-page="home"] .brand__name {
  font-size: 0.98rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body[data-page="home"] .brand__tag {
  display: none;
}

body[data-page="about"] .site-header {
  grid-template-columns: auto 1fr auto;
}

body[data-page="about"] .primary-nav {
  display: block;
}

body[data-page="about"] .nav-toggle {
  display: inline-flex;
}

body[data-page="home"] .nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  color: #f6fbff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(20, 230, 255, 0.16);
  box-shadow: none;
}

body[data-page="home"] .site-header.is-open .nav-toggle__bars span:first-child {
  transform: rotate(45deg);
}

body[data-page="home"] .site-header.is-open .nav-toggle__bars span:last-child {
  transform: rotate(-45deg);
}

body[data-page="home"] .primary-nav {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 1.25rem;
  left: auto;
  width: min(18rem, calc(100% - 2rem));
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.6rem);
  transition: opacity var(--transition), transform var(--transition);
}

body[data-page="home"] .site-header.is-open .primary-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.is-open .nav-toggle__bars span:first-child {
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle__bars span:last-child {
  transform: rotate(-45deg);
}

body[data-page="home"] .primary-nav__list {
  display: grid;
  gap: 0.25rem;
  padding: 0.7rem;
  border-radius: 1.2rem;
  background: rgba(4, 6, 8, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.primary-nav__list--home {
  justify-items: stretch;
}

.nav-link--home {
  width: 100%;
  padding: 0.92rem 1rem;
  text-align: left;
  color: rgba(244, 248, 252, 0.88);
}

.nav-link--header-cta {
  justify-content: center;
  min-height: 2.8rem;
  padding-inline: 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link--header-cta-primary {
  background: var(--accent);
  color: #091009;
  border-color: rgba(20, 230, 255, 0.34);
}

.nav-link--header-cta-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 248, 252, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
}

.primary-nav__locale {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem 0.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.2rem;
}

body[data-page="home"] .nav-link {
  padding: 0.92rem 1rem;
  border-radius: 999px;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  color: rgba(244, 248, 252, 0.88);
}

body[data-page="home"] .nav-link--header-cta {
  width: 100%;
  justify-content: center;
}

body[data-page="home"] .nav-link--header-cta-primary {
  background: var(--accent);
  color: #091009;
}

body[data-page="home"] .nav-link--header-cta-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 248, 252, 0.92);
}

body[data-page="home"] .nav-link:hover,
body[data-page="home"] .nav-link.is-active {
  background: rgba(20, 230, 255, 0.92);
  color: #071008;
}

body[data-page="home"] .locale-switcher {
  display: none;
}

body[data-page="home"] .locale-link {
  color: rgba(244, 248, 252, 0.64);
}

body[data-page="home"] .locale-link.is-current {
  color: var(--accent);
}

body[data-page="home"] .locale-switcher__divider {
  background: rgba(20, 230, 255, 0.18);
}

body[data-page="home"] main {
  padding-top: 0;
}

.page--home [id],
.page--about [id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.page--home,
.page--about {
  width: 100%;
  margin: 0;
}

main {
  padding-top: var(--header-height);
}

.page:not(.page--home):not(.page--about),
.section,
.page-hero,
.chapter-stack,
.site-footer {
  width: min(calc(100% - 2rem), var(--content-max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow,
.panel-tag,
.panel-status,
.scene-frame__label,
.media-card__eyebrow,
.chapter-card__aside,
.proof-card__source {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
}

.eyebrow,
.panel-status,
.panel-tag,
.proof-card__source,
.chapter-card__aside,
.scene-frame__label {
  color: var(--muted);
}

.display-title,
.scene-frame__caption {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.05em;
  margin: 0;
}

.section-title,
.case-panel h3,
.chapter-card h3,
.teaser-panel h3,
.hero-slide h2,
.hero-panel__copy h2 {
  font-family: "Sora", "Avenir Next", sans-serif;
  font-weight: 600;
  letter-spacing: -0.065em;
  margin: 0;
}

.display-title {
  font-size: clamp(3.3rem, 8vw, 7rem);
  line-height: 0.92;
  max-width: 12ch;
}

.display-title--inner {
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1;
  max-width: 11ch;
}

.lede,
.body-copy,
.proof-card__body,
.hero-slide p,
.hero-panel__copy p,
.case-panel__body p,
.teaser-panel p,
.form-helper,
.form-status {
  color: var(--muted);
  line-height: 1.72;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.body-copy {
  max-width: 62ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.92rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

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

.button--primary {
  background: var(--ink);
  color: #f5fbff;
  box-shadow: 0 14px 34px rgba(14, 31, 53, 0.16), 0 0 0 1px rgba(20, 230, 255, 0.08) inset;
}

.button--primary:hover {
  background: #112033;
}

.button--ghost {
  border-color: rgba(12, 21, 34, 0.12);
  background: rgba(247, 250, 255, 0.62);
  color: var(--ink);
}

.action-row,
.chip-row,
.form-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  background: rgba(12, 21, 34, 0.05);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.showcase-carousel .chip {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(244, 248, 252, 0.82);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

html.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.16, 1), opacity 700ms ease;
}

html.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-hero {
  padding: 0;
  display: grid;
}

.home-hero__cinema {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  border-radius: 0 0 2.2rem 2.2rem;
  background: #050608;
  border: 0;
  box-shadow: none;
  isolation: isolate;
}

.home-hero__cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, rgba(124, 214, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%);
  opacity: 0.18;
}

.home-hero__shader,
.home-hero__shader-canvas,
.hero-video-wrap,
.hero-video,
.home-hero__veil {
  position: absolute;
  inset: 0;
}

.home-hero__shader {
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(84, 174, 255, 0.18), transparent 22%),
    radial-gradient(circle at 50% 48%, rgba(7, 17, 36, 0.92), rgba(4, 7, 12, 0.98) 42%, #03050a 100%);
}

.home-hero__shader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 44%, rgba(183, 231, 255, 0.08), transparent 36%),
    radial-gradient(circle at 50% 48%, rgba(8, 18, 38, 0.36), transparent 56%);
  mix-blend-mode: screen;
}

.home-hero__shader-canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.98;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  filter: saturate(0.72) contrast(1.1) brightness(0.3) grayscale(0.08);
}

.home-hero__veil {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 44%, rgba(175, 232, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(3, 6, 12, 0.22) 0%, rgba(3, 6, 12, 0.04) 24%, rgba(3, 6, 12, 0.28) 72%, rgba(3, 6, 12, 0.78) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 100%;
  padding: 1.5rem;
}

.home-hero__content--poster {
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: clamp(1rem, 2.4vw, 2rem);
  min-height: 100svh;
  padding: clamp(5.9rem, 10vw, 8.2rem) clamp(1.4rem, 4.8vw, 4.5rem) clamp(1.4rem, 3.4vw, 2.4rem);
}

.home-hero__masthead {
  display: grid;
  gap: 0.9rem;
  align-self: center;
  justify-items: center;
  width: 100%;
  max-width: none;
  text-align: center;
}

.home-hero__masthead .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.home-hero__name-stage {
  --hero-name-size: clamp(5rem, 16vw, 12rem);
  display: grid;
  gap: 0;
  align-content: start;
  justify-items: center;
}

.home-hero__name-window {
  overflow: visible;
  width: 100%;
  line-height: 0.82;
}

.home-hero__name-line {
  display: block;
  padding-inline: 0.04em;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: var(--hero-name-size);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.11em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  transition: opacity 260ms ease, transform 260ms ease;
}

.home-hero__name-stage.is-switching .home-hero__name-line {
  opacity: 0;
  transform: translateY(18%);
}

.home-hero__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.home-hero__info {
  display: grid;
  gap: 0.85rem;
  max-width: 40rem;
}

.home-hero__role-block {
  display: grid;
  gap: 0.28rem;
}

.home-hero__role-label {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.home-hero__role-text {
  min-height: 1.5em;
  overflow: hidden;
}

.home-hero__role-text span {
  display: inline-block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-style: italic;
  color: #ffffff;
  transition: opacity 220ms ease, transform 220ms ease;
}

.home-hero__role-text span.is-hidden {
  opacity: 0;
  transform: translateY(-70%);
}

.home-hero__kicker--poster {
  max-width: 36ch;
  margin: 0;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.home-hero__tertiary {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color var(--transition), transform var(--transition);
}

.home-hero__tertiary:hover {
  color: #ffffff;
  transform: translateX(0.1rem);
}

.home-hero__support {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-hero__support li {
  position: relative;
  padding-left: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.home-hero__support li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: var(--accent);
}

.home-hero__content--editorial {
  grid-template-columns: minmax(0, 1.22fr) minmax(18rem, 0.62fr);
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 1.5rem 2rem;
}

.home-hero__editorial {
  display: grid;
  align-content: end;
  gap: 1rem;
  min-height: 100%;
  padding-top: clamp(5rem, 10vw, 8rem);
}

.home-hero__display {
  margin: 0;
  display: grid;
  line-height: 0.82;
  letter-spacing: -0.1em;
  text-transform: uppercase;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(4.8rem, 13vw, 10.6rem);
  font-weight: 700;
  color: var(--accent);
}

.home-hero__sidebar {
  display: grid;
  gap: 1rem;
  align-self: stretch;
  padding-top: clamp(5rem, 8vw, 7rem);
}

.home-hero__portrait {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 24% 18%, rgba(20, 230, 255, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(17, 24, 17, 0.92), rgba(5, 6, 8, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.home-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(0.72) contrast(1.04) brightness(0.7);
}

.home-hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 8, 0.18) 0%, rgba(4, 6, 8, 0.7) 100%),
    radial-gradient(circle at 28% 24%, rgba(20, 230, 255, 0.16), transparent 28%);
}

.home-hero__sidebar-copy {
  display: grid;
  gap: 0.8rem;
  padding: 0.2rem 0 0;
}

.hero-stat-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-stat-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(244, 248, 252, 0.86);
}

.hero-stat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: var(--accent);
}

.home-hero__intro {
  padding-top: clamp(3.8rem, 9vw, 6.4rem);
  margin-bottom: 1.1rem;
}

.home-hero__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.55fr);
  gap: 2rem;
  align-items: start;
}

.home-hero__poster {
  position: relative;
  min-height: clamp(19rem, 38vw, 32rem);
}

.home-hero__name {
  position: relative;
  z-index: 1;
  display: grid;
  line-height: 0.78;
  letter-spacing: -0.1em;
  text-transform: uppercase;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(4.8rem, 14vw, 10.4rem);
  font-weight: 700;
  color: var(--accent);
}

.home-hero__orb {
  position: absolute;
  top: 52%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: clamp(6.5rem, 13vw, 10rem);
  aspect-ratio: 1;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.home-hero__orb-core {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 999px;
}

.home-hero__orb-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) contrast(1.08) brightness(0.72);
  transform: scale(1.08);
}

.home-hero__orb-core::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 8, 0.1) 0%, rgba(4, 6, 8, 0.28) 100%),
    radial-gradient(circle at 30% 22%, rgba(20, 230, 255, 0.16), transparent 32%);
}

.home-hero__orb-core span {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

.home-hero__copy {
  display: grid;
  gap: 1rem;
  justify-items: start;
  align-content: start;
  max-width: 24rem;
  padding-top: clamp(1rem, 3vw, 2.4rem);
}

.home-hero__kicker {
  margin: 0;
  max-width: 26rem;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.home-hero__cinema .eyebrow,
.home-hero__cinema .home-hero__kicker,
.home-hero__cinema .body-copy,
.home-hero__cinema .hero-instruction {
  color: rgba(255, 255, 255, 0.72);
}

.home-hero__cinema .button--primary {
  background: var(--accent);
  color: #050608;
  box-shadow: 0 16px 42px rgba(20, 230, 255, 0.18);
}

.home-hero__cinema .button--primary:hover {
  background: var(--accent-strong);
}

.home-hero__cinema .button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.home-hero__bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.home-hero__tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  letter-spacing: -0.03em;
}

.home-hero__scroll {
  display: inline-grid;
  justify-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color var(--transition), transform var(--transition);
}

.home-hero__scroll--poster {
  justify-self: center;
  align-self: end;
}

.home-hero__scroll-line {
  width: 1px;
  height: clamp(3.2rem, 8vh, 5.6rem);
  background: linear-gradient(180deg, rgba(20, 230, 255, 0.95), rgba(20, 230, 255, 0));
  animation: hero-scroll-pulse 1.9s ease-in-out infinite;
}

.home-hero__scroll:hover {
  color: var(--accent);
  transform: translateY(2px);
}

@keyframes hero-scroll-pulse {
  0% {
    transform: scaleY(0.2);
    transform-origin: top;
    opacity: 0.5;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  100% {
    transform: scaleY(0.2);
    transform-origin: bottom;
    opacity: 0.35;
  }
}

.hero-instruction {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.hero-panels {
  position: relative;
  display: flex;
  gap: 0.75rem;
  min-height: min(18rem, 34svh);
  align-self: end;
}

.hero-panel,
.hero-slide,
.scene-frame,
.media-card,
.universal-form {
  border: 1px solid rgba(24, 18, 16, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-panel {
  position: relative;
  flex: 1 1 0;
  overflow: hidden;
  border-radius: 1.2rem;
  min-width: 0;
  isolation: isolate;
  background: rgba(239, 247, 255, 0.08);
  border-color: rgba(148, 208, 255, 0.16);
  box-shadow: 0 18px 42px rgba(8, 18, 30, 0.24);
  transition: flex-grow 580ms cubic-bezier(0.2, 0.8, 0.2, 1), transform var(--transition), filter var(--transition);
}

.hero-panel::before,
.scene-frame::before,
.media-card::before,
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 44%),
    var(--theme-gradient);
}

.hero-panel::after,
.scene-frame::after,
.media-card::after,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 10, 8, 0.08) 0%, rgba(15, 10, 8, 0.28) 44%, rgba(15, 10, 8, 0.84) 100%);
  z-index: -1;
}

.hero-panel--artist,
.scene-frame--artist,
.media-card--artist,
.hero-slide--artist {
  --theme-gradient:
    linear-gradient(160deg, rgba(135, 65, 40, 0.28), rgba(40, 25, 20, 0.2)),
    radial-gradient(circle at 20% 24%, rgba(217, 117, 69, 0.58), transparent 34%),
    radial-gradient(circle at 78% 28%, rgba(99, 45, 33, 0.52), transparent 30%),
    linear-gradient(135deg, #6f3e30 0%, #2c2021 100%);
}

.hero-panel--studio,
.scene-frame--studio,
.media-card--studio,
.hero-slide--studio,
.hero-panel--consultant,
.scene-frame--consultant,
.media-card--consultant,
.hero-slide--consultant {
  --theme-gradient:
    linear-gradient(160deg, rgba(20, 230, 255, 0.08), rgba(12, 21, 31, 0.18)),
    radial-gradient(circle at 24% 24%, rgba(20, 230, 255, 0.24), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(102, 132, 16, 0.22), transparent 32%),
    linear-gradient(135deg, #12171d 0%, #090c10 100%);
}

.hero-panel--visionself,
.scene-frame--visionself,
.media-card--visionself,
.hero-slide--visionself,
.hero-panel--author,
.scene-frame--author,
.media-card--author,
.hero-slide--author {
  --theme-gradient:
    linear-gradient(160deg, rgba(20, 230, 255, 0.1), rgba(13, 20, 31, 0.14)),
    radial-gradient(circle at 25% 20%, rgba(20, 230, 255, 0.26), transparent 36%),
    radial-gradient(circle at 80% 30%, rgba(118, 148, 16, 0.2), transparent 32%),
    linear-gradient(135deg, #12171d 0%, #090c10 100%);
}

.hero-panel--wellness,
.scene-frame--wellness,
.media-card--wellness,
.hero-slide--wellness {
  --theme-gradient:
    linear-gradient(160deg, rgba(97, 94, 62, 0.22), rgba(34, 28, 17, 0.16)),
    radial-gradient(circle at 24% 22%, rgba(181, 165, 92, 0.48), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(85, 74, 33, 0.52), transparent 28%),
    linear-gradient(135deg, #545238 0%, #1d1811 100%);
}

.hero-panel__surface {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.45rem;
  color: #f6efe7;
}

.hero-panel__visual {
  min-height: 13rem;
  display: flex;
  align-items: flex-start;
}

.hero-panel__copy {
  display: grid;
  gap: 0.65rem;
  opacity: 0;
  transform: translateY(1.25rem);
  max-width: 26rem;
  transition: opacity 420ms ease, transform 420ms ease;
}

.hero-panel__copy p,
.hero-panel__cta,
.hero-panel .panel-tag,
.hero-panel .panel-status {
  color: rgba(245, 239, 232, 0.86);
}

.visual-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 18% 18%, rgba(134, 216, 255, 0.16), transparent 28%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.visual-placeholder::before,
.visual-placeholder::after {
  content: "";
  position: absolute;
  border-radius: 0.95rem;
}

.visual-placeholder::before {
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.visual-placeholder::after {
  top: 1.4rem;
  left: 1.45rem;
  right: 36%;
  height: 3.15rem;
  background:
    linear-gradient(180deg, rgba(134, 216, 255, 0.24), rgba(134, 216, 255, 0.05)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 72%);
  box-shadow: 0 20px 36px rgba(62, 191, 255, 0.14);
}

.visual-placeholder--scene::after {
  right: 42%;
  height: 4.2rem;
}

.visual-placeholder--case::after {
  right: 48%;
  height: 2.85rem;
}

.visual-placeholder__label {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 252, 247, 0.24);
  background: rgba(255, 252, 247, 0.12);
  color: rgba(246, 239, 231, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
}

.visual-placeholder__title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #f6efe7;
}

.visual-placeholder__body {
  margin: 0;
  max-width: 30ch;
  line-height: 1.55;
  color: rgba(246, 239, 231, 0.78);
}

.visual-placeholder__list {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visual-placeholder__list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.45;
  color: rgba(246, 239, 231, 0.9);
}

.visual-placeholder__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(246, 239, 231, 0.76);
}

.visual-placeholder--hero .visual-placeholder__body,
.visual-placeholder--hero .visual-placeholder__list {
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 320ms ease, transform 320ms ease;
}

.hero-panel.is-active .visual-placeholder--hero .visual-placeholder__body,
.hero-panel.is-active .visual-placeholder--hero .visual-placeholder__list,
.hero-panel:focus-visible .visual-placeholder--hero .visual-placeholder__body,
.hero-panel:focus-visible .visual-placeholder--hero .visual-placeholder__list {
  opacity: 1;
  transform: translateY(0);
}

.hero-panel__cta {
  font-weight: 600;
}

.hero-panel.is-active {
  flex-grow: 2.1;
}

.hero-panel.is-active .hero-panel__surface {
  justify-content: space-between;
}

.hero-panel.is-active .hero-panel__copy,
.hero-panel:focus-visible .hero-panel__copy {
  opacity: 1;
  transform: translateY(0);
}

.hero-panel:not(.is-active) {
  filter: saturate(0.92) brightness(0.95);
}

.hero-mobile {
  display: none;
}

.section {
  padding: 2rem 0 3.4rem;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.section-heading--split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
}

.proof-strip {
  padding: 1rem 0 0;
}

.home-venture-strip {
  padding: 1.25rem 0 0.6rem;
}

.venture-strip__track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.venture-badge {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: rgba(9, 12, 11, 0.92);
  border: 1px solid rgba(20, 230, 255, 0.12);
  color: rgba(244, 248, 252, 0.84);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}

.venture-badge:hover {
  transform: translateY(-2px);
  color: var(--accent);
  border-color: rgba(20, 230, 255, 0.28);
}

.venture-badge--static {
  cursor: default;
}

.home-profile {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(3.4rem, 8vw, 5.6rem) 0 clamp(3.2rem, 6vw, 4.6rem);
  background:
    radial-gradient(circle at 78% 12%, rgba(20, 230, 255, 0.12), transparent 18%),
    linear-gradient(180deg, #050608 0%, #030405 100%);
  color: #f6fbff;
  overflow: clip;
}

.home-profile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 112px 100%, 100% 112px;
  opacity: 0.08;
  pointer-events: none;
}

.home-profile::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: 0;
  width: min(48vw, 44rem);
  height: clamp(3.8rem, 9vw, 6.1rem);
  background: repeating-linear-gradient(90deg, rgba(20, 230, 255, 0.96) 0 1.85rem, transparent 1.85rem 4.7rem);
  border-radius: 2rem 0 0 0;
  opacity: 0.95;
  pointer-events: none;
}

.home-profile__shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 1600px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(18rem, 0.76fr);
  gap: clamp(2rem, 6vw, 6.6rem);
  align-items: center;
}

.home-profile__copy {
  display: grid;
  gap: 1.1rem;
  max-width: 46rem;
}

.home-profile .eyebrow {
  color: rgba(20, 230, 255, 0.72);
}

.home-profile__statement {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.8rem, 5.6vw, 5.8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.07em;
  color: #f6fbff;
  text-wrap: balance;
}

.home-profile__line {
  display: block;
}

.home-profile__phrase {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.home-profile__accent {
  color: var(--accent);
}

.home-profile__rotating-wrap {
  display: inline-grid;
  min-width: var(--home-profile-rotator-width, 8ch);
}

.home-profile__rotating {
  display: inline-block;
  color: var(--accent);
  transition: opacity 200ms ease, transform 200ms ease, filter 200ms ease;
  will-change: opacity, transform, filter;
}

.home-profile__rotating.is-hidden {
  opacity: 0;
  transform: translateY(0.18em);
  filter: blur(6px);
}

@media (max-width: 520px) {
  .home-profile__phrase {
    display: inline;
    white-space: normal;
  }
}

.home-profile .body-copy {
  max-width: 37ch;
  color: rgba(244, 248, 252, 0.76);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.home-profile__story-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 230, 255, 0.92);
  transition: color var(--transition), transform var(--transition);
}

.home-profile__story-link::after {
  content: "→";
  font-size: 1rem;
}

.home-profile__story-link:hover {
  color: #ffffff;
  transform: translateX(0.12rem);
}

.home-profile__media {
  position: relative;
  min-height: clamp(28rem, 48vw, 45rem);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.home-profile__backdrop,
.home-profile__portrait-shell,
.home-profile__marker {
  --home-profile-x: 0px;
  --home-profile-y: 0px;
}

.home-profile__backdrop {
  position: absolute;
  inset: 10% 2% 8% 18%;
  border-radius: 2rem;
  background-size: cover;
  background-position: center top;
  filter: blur(48px) saturate(0.74) brightness(0.3);
  opacity: 0.24;
  transform: translate3d(var(--home-profile-x), var(--home-profile-y), 0) scale(1.08);
  transform-origin: center;
}

.home-profile__marker {
  position: absolute;
  right: -1.8rem;
  bottom: 1.4rem;
  width: min(34vw, 22rem);
  height: clamp(4rem, 9vw, 6rem);
  border-radius: 1.8rem 0 0 0;
  background: repeating-linear-gradient(90deg, rgba(20, 230, 255, 0.94) 0 1.8rem, transparent 1.8rem 4.7rem);
  opacity: 0.88;
  transform: translate3d(var(--home-profile-x), var(--home-profile-y), 0);
}

.home-profile__rail {
  position: absolute;
  inset: 10% auto 12% 53%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(20, 230, 255, 0.46), transparent);
  opacity: 0.8;
}

.home-profile__portrait-shell {
  position: relative;
  width: min(100%, 35rem);
  transform: translate3d(var(--home-profile-x), var(--home-profile-y), 0);
}

.home-profile__portrait {
  position: relative;
  margin: 0;
  width: 100%;
  height: clamp(28rem, 48vw, 42rem);
  overflow: hidden;
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
}

.home-profile__portrait::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: 7rem;
  height: 7rem;
  border-top: 1px solid rgba(20, 230, 255, 0.52);
  border-right: 1px solid rgba(20, 230, 255, 0.52);
  border-radius: 0 1.2rem 0 0;
  z-index: 1;
  pointer-events: none;
}

.home-profile__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 8, 0.02) 0%, rgba(5, 8, 8, 0.18) 66%, rgba(5, 8, 8, 0.64) 100%),
    linear-gradient(90deg, rgba(5, 8, 8, 0.12) 0%, transparent 22%, transparent 100%);
}

.home-profile__caption {
  position: absolute;
  left: 1.15rem;
  bottom: 1.05rem;
  display: inline-grid;
  gap: 0.22rem;
  padding: 0.75rem 0.92rem;
  border: 1px solid rgba(20, 230, 255, 0.22);
  border-radius: 1rem;
  background: rgba(3, 5, 6, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  z-index: 2;
}

.home-profile__caption-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f6fbff;
}

.home-profile__caption-meta {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20, 230, 255, 0.86);
}

.home-profile__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.06) contrast(1.02);
}

.home-story {
  width: 100%;
  margin: 0;
  padding: 3.2rem 0 4.6rem;
  background:
    radial-gradient(circle at 68% 18%, rgba(20, 230, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #040507 0%, #060709 100%);
  color: #f6fbff;
}

.home-story__shell {
  width: min(calc(100% - 2rem), var(--content-max));
  margin: 0 auto;
}

.home-story__layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.52fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.home-story__intro {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  display: grid;
  gap: 1rem;
}

.home-story__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.home-story__ellipsis {
  position: relative;
  grid-column: 1 / -1;
  height: 3.4rem;
}

.home-story__ellipsis span {
  position: absolute;
  left: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(20, 230, 255, 0.92);
  box-shadow: 0 0 0 0.3rem rgba(20, 230, 255, 0.08);
  transform: translateX(-50%);
}

.home-story__ellipsis span:nth-child(1) {
  top: 0.2rem;
}

.home-story__ellipsis span:nth-child(2) {
  top: 1.22rem;
}

.home-story__ellipsis span:nth-child(3) {
  top: 2.24rem;
}

.home-story__timeline {
  --about-rail-width: clamp(4.2rem, 5.4vw, 5.4rem);
  --about-card-gap: clamp(1.8rem, 3vw, 3rem);
  --about-card-max: clamp(20rem, 34vw, 28rem);
  gap: clamp(1rem, 2vw, 1.4rem);
  width: 100%;
  margin: 0;
}

.home-story__timeline.about-timeline__list::before {
  background: linear-gradient(180deg, rgba(20, 230, 255, 0.92), rgba(255, 255, 255, 0.08));
}

.home-story__timeline .about-milestone {
  min-height: 9.8rem;
}

.home-story__timeline .about-milestone__card {
  width: min(100%, var(--about-card-max));
}

.home-story__timeline .about-milestone__visual,
.home-story__timeline .about-milestone__copy {
  min-height: 7.9rem;
}

.home-story__timeline .about-milestone__copy h3 {
  font-size: clamp(1.18rem, 2vw, 1.75rem);
}

.home-story__timeline .about-milestone__copy .body-copy {
  font-size: 0.84rem;
  line-height: 1.42;
}

.home-story__timeline .about-milestone__detail {
  display: none;
}

.home-story .eyebrow,
.home-story .body-copy,
.home-story .section-title {
  color: #f6fbff;
}

.home-story .body-copy {
  color: rgba(244, 248, 252, 0.76);
}

.home-story .section-title {
  max-width: 10ch;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.9;
}

.about-hero,
.about-timeline {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #050608;
  color: #f6fbff;
}

.about-hero {
  padding: 0;
}

.about-hero__inner,
.about-timeline__layout {
  width: min(calc(100% - 2rem), 1440px);
  margin: 0 auto;
}

.about-hero__scene {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(100svh, 58rem);
  border-bottom: 1px solid rgba(20, 230, 255, 0.16);
  background: #050608;
}

.about-hero__backdrop,
.about-hero__veil,
.about-hero__scanline {
  position: absolute;
  inset: 0;
}

.about-hero__backdrop {
  inset: -8%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(var(--about-parallax-x, 0px), var(--about-parallax-y, 0px), 0) scale(var(--about-scale, 1.08));
  will-change: transform;
}

.about-hero__backdrop--primary {
  --about-scale: 1.08;
  filter: brightness(0.42) saturate(0.82) contrast(1.04);
}

.about-hero__backdrop--secondary {
  --about-scale: 1.16;
  opacity: 0.22;
  mix-blend-mode: screen;
  filter: blur(10px) brightness(0.55) saturate(0.72);
}

.about-hero__veil {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.18) 0%, rgba(5, 6, 8, 0.42) 38%, rgba(5, 6, 8, 0.88) 100%),
    radial-gradient(circle at 50% 22%, rgba(20, 230, 255, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.8) 0%, rgba(5, 6, 8, 0.24) 22%, rgba(5, 6, 8, 0.24) 78%, rgba(5, 6, 8, 0.8) 100%);
}

.about-hero__scanline {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px;
  opacity: 0.08;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.9) 26%, rgba(0, 0, 0, 0.95));
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: min(100svh, 58rem);
  padding: clamp(6rem, 9vw, 8rem) 0 clamp(4.6rem, 8vw, 6rem);
}

.about-hero__headline,
.about-hero__copy {
  display: grid;
  gap: 1rem;
}

.about-hero__headline .eyebrow {
  justify-self: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(246, 251, 255, 0.82);
  backdrop-filter: blur(14px);
}

.about-hero__title {
  margin: 0;
  max-width: none;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(4.4rem, 15vw, 11rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--accent);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.52);
}

.about-hero__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}

.about-hero__copy {
  max-width: 42rem;
}

.about-hero__quote {
  margin: 0;
  max-width: 11ch;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #f6fbff;
  text-wrap: balance;
}

.about-hero__copy .lede {
  max-width: 39rem;
  color: rgba(244, 248, 252, 0.8);
}

.about-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-hero__facts li {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 248, 252, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(246, 251, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.about-hero__scroll-arrow {
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
}

.about-timeline {
  padding: clamp(4rem, 7vw, 6rem) 0 5rem;
}

.about-timeline__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.about-timeline__intro {
  position: static;
  display: grid;
  gap: 1rem;
  padding-top: 0.6rem;
  width: min(100%, 34rem);
  margin: 0;
}

.about-timeline__intro .eyebrow {
  color: rgba(20, 230, 255, 0.92);
}

.about-timeline__intro .section-title {
  max-width: 8ch;
  color: #f6fbff;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.about-timeline__intro .body-copy {
  max-width: 34ch;
  color: rgba(244, 248, 252, 0.76);
}

.about-timeline__list {
  --about-rail-width: clamp(4.5rem, 6vw, 5.8rem);
  --about-card-gap: clamp(2.1rem, 3vw, 3.4rem);
  --about-card-max: clamp(23rem, 34vw, 31rem);
  position: relative;
  display: grid;
  gap: clamp(0.95rem, 1.8vw, 1.35rem);
  width: min(100%, 1100px);
  margin: 0 auto;
}

.about-timeline__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(20, 230, 255, 0.7), rgba(255, 255, 255, 0.08));
  transform: translateX(-50%);
}

.about-milestone {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: var(--about-card-gap);
  align-items: start;
  min-height: 10.25rem;
}

.about-milestone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #050608;
  border: 2px solid var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0.45rem rgba(20, 230, 255, 0.08);
}

.about-milestone__rail {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max-content;
  display: grid;
  z-index: 2;
  pointer-events: none;
}

.about-milestone--right .about-milestone__rail {
  justify-items: end;
  transform: translate(calc(-100% - clamp(1rem, 1.4vw, 1.35rem)), -50%);
}

.about-milestone--left .about-milestone__rail {
  justify-items: start;
  transform: translate(clamp(1rem, 1.4vw, 1.35rem), -50%);
}

.about-milestone__year {
  position: relative;
  display: inline-block;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-wrap: balance;
}

.about-milestone__year::after {
  content: "";
  position: absolute;
  top: -0.12em;
  bottom: -0.12em;
  background: #050608;
  z-index: -1;
}

.about-milestone--right .about-milestone__year {
  text-align: right;
}

.about-milestone--right .about-milestone__year::after {
  left: -0.22em;
  right: -0.4em;
}

.about-milestone--left .about-milestone__year {
  text-align: left;
}

.about-milestone--left .about-milestone__year::after {
  left: -0.4em;
  right: -0.22em;
}

.about-milestone__year--numeric {
  font-size: clamp(2.05rem, 3.8vw, 3.4rem);
}

.about-milestone__year--range {
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  letter-spacing: -0.06em;
}

.about-milestone__year--word {
  max-width: 7rem;
  font-size: clamp(0.98rem, 1.5vw, 1.4rem);
  line-height: 0.98;
}

.about-milestone__card {
  --about-item-image: linear-gradient(145deg, #111711 0%, #050608 100%);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(7.4rem, 0.42fr) minmax(0, 0.58fr);
  gap: 0.75rem;
  width: min(100%, var(--about-card-max));
  padding: 0.72rem;
  border-radius: 1.45rem;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(9, 11, 14, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}

.about-milestone--left .about-milestone__card {
  grid-column: 1;
  justify-self: end;
  margin-right: clamp(0.2rem, 1vw, 0.8rem);
}

.about-milestone--right .about-milestone__card {
  grid-column: 2;
  justify-self: start;
  margin-left: clamp(0.2rem, 1vw, 0.8rem);
}

.about-milestone__visual {
  position: relative;
  overflow: hidden;
  min-height: 8.8rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(20, 230, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.06), rgba(5, 6, 8, 0.34)),
    var(--about-item-image);
  background-size: cover, cover;
  background-position: center, center;
}

.about-milestone__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.02) 0%, rgba(5, 6, 8, 0.12) 40%, rgba(5, 6, 8, 0.64) 100%),
    linear-gradient(135deg, rgba(20, 230, 255, 0.16), transparent 42%);
}

.about-milestone--retail .about-milestone__visual::after {
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.08) 0%, rgba(5, 6, 8, 0.62) 100%),
    linear-gradient(90deg, rgba(20, 230, 255, 0.18), transparent 55%);
}

.about-milestone--scale .about-milestone__visual::after {
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.06) 0%, rgba(5, 6, 8, 0.62) 100%),
    radial-gradient(circle at 72% 28%, rgba(20, 230, 255, 0.26), transparent 24%);
}

.about-milestone--market .about-milestone__visual::after {
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.08) 0%, rgba(5, 6, 8, 0.6) 100%),
    linear-gradient(130deg, rgba(20, 230, 255, 0.16), transparent 62%);
}

.about-milestone--leadership .about-milestone__visual::after {
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.08) 0%, rgba(5, 6, 8, 0.62) 100%),
    linear-gradient(180deg, rgba(20, 230, 255, 0.16), transparent 44%);
}

.about-milestone__visual-label {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0.2rem 0.52rem;
  border-radius: 999px;
  background: rgba(7, 9, 12, 0.94);
  border: 1px solid rgba(20, 230, 255, 0.18);
  color: rgba(246, 251, 255, 0.78);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-milestone__copy {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  min-height: 8.8rem;
  padding: 0.9rem 0.95rem;
  border-radius: 1.05rem;
  background: rgba(8, 10, 13, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.05);
  isolation: isolate;
}

.about-milestone__copy::before {
  content: "";
  position: absolute;
  inset: -18%;
  background-image: var(--about-item-image);
  background-size: cover;
  background-position: center;
  filter: blur(24px) saturate(0.7) brightness(0.3);
  transform: scale(1.18);
  opacity: 0.52;
  z-index: -2;
}

.about-milestone__copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.28), rgba(5, 6, 8, 0.86));
  z-index: -1;
}

.about-milestone__copy > * {
  position: relative;
  z-index: 1;
}

.about-milestone__meta {
  margin: 0;
  color: rgba(20, 230, 255, 0.92);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-milestone__copy h3 {
  margin: 0;
  color: #f6fbff;
  font-size: clamp(1.3rem, 2.2vw, 2.1rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.about-milestone__copy .body-copy {
  max-width: 36ch;
  font-size: 0.94rem;
  line-height: 1.45;
  color: rgba(244, 248, 252, 0.8);
}

.about-milestone__detail {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(244, 248, 252, 0.58);
  line-height: 1.45;
}

.timeline-list {
  --story-progress: 0;
  --story-line-x: clamp(8.8rem, 11vw, 10.2rem);
  position: relative;
  display: grid;
  gap: clamp(2rem, 6vh, 4.6rem);
  padding-left: clamp(1rem, 3vw, 2rem);
}

.timeline-list::before,
.timeline-list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--story-line-x);
  width: 1px;
}

.timeline-list::before {
  background: rgba(255, 255, 255, 0.14);
}

.timeline-list::after {
  bottom: auto;
  height: calc(var(--story-progress) * 100%);
  background: linear-gradient(180deg, rgba(20, 230, 255, 1), rgba(20, 230, 255, 0.14));
  transition: height 220ms ease;
}

.timeline-card {
  display: grid;
  grid-template-columns: var(--story-line-x) minmax(0, 1fr);
  gap: clamp(1.8rem, 3vw, 2.6rem);
  align-items: start;
  opacity: 0.24;
  filter: blur(10px);
  transform: translateY(4rem);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.75, 0.16, 1),
    filter 700ms cubic-bezier(0.2, 0.75, 0.16, 1),
    transform 700ms cubic-bezier(0.2, 0.75, 0.16, 1);
  transition-delay: calc(var(--story-index, 0) * 80ms);
}

.timeline-card.is-active,
.timeline-card.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.timeline-card__rail {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 0.75rem;
  padding-top: 0.6rem;
  padding-right: 0.35rem;
  position: relative;
}

.timeline-card__year {
  position: relative;
  display: inline-block;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  color: var(--accent);
  max-width: 100%;
  text-align: right;
  text-wrap: balance;
}

.timeline-card__year::after {
  content: "";
  position: absolute;
  top: -0.12em;
  bottom: -0.12em;
  left: -0.22em;
  right: -0.4em;
  background: #050608;
  z-index: -1;
}

.timeline-card__year--numeric {
  font-size: clamp(2rem, 4vw, 4rem);
}

.timeline-card__year--word {
  font-size: clamp(1.7rem, 2.7vw, 2.9rem);
}

.timeline-card__dot {
  position: absolute;
  top: 1.35rem;
  right: calc(var(--story-line-x) * -1 + 0.05rem);
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: #050608;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 10px rgba(20, 230, 255, 0.08);
}

.timeline-card__panel {
  display: grid;
  gap: 0.85rem;
  max-width: 42rem;
  min-height: 15rem;
  padding: 1.55rem;
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.timeline-card__copy {
  display: grid;
  gap: 0.85rem;
}

.timeline-card--word .timeline-card__copy {
  padding-top: clamp(1rem, 1.6vw, 1.35rem);
}

.timeline-card__visual {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(20, 230, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    linear-gradient(92deg, transparent 0 58%, rgba(20, 230, 255, 0.12) 78%, transparent 94%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    #0b0d11;
}

.timeline-card__visual::before,
.timeline-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.timeline-card__visual::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.28;
}

.timeline-card__visual::after {
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 8, 0.72));
}

.timeline-card__visual--1 {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    linear-gradient(132deg, transparent 0 52%, rgba(20, 230, 255, 0.14) 74%, transparent 92%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    #0b0d11;
}

.timeline-card__visual--2 {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    linear-gradient(90deg, transparent 0 50%, rgba(20, 230, 255, 0.1) 68%, rgba(20, 230, 255, 0.04) 82%, transparent 100%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    #0b0d11;
}

.timeline-card__visual--3 {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    linear-gradient(118deg, transparent 0 48%, rgba(20, 230, 255, 0.12) 70%, transparent 88%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    #0b0d11;
}

.timeline-card__visual-label {
  position: absolute;
  left: 0.8rem;
  bottom: 0.75rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(7, 9, 12, 0.94);
  border: 1px solid rgba(20, 230, 255, 0.18);
  color: rgba(246, 251, 255, 0.76);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.timeline-card__meta {
  margin: 0;
  color: rgba(20, 230, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline-card__panel h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: #f6fbff;
}

.timeline-card__panel .body-copy {
  color: rgba(244, 248, 252, 0.76);
}

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

.experience-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(13, 21, 32, 0.08);
  box-shadow: 0 24px 50px rgba(16, 34, 56, 0.08);
}

.experience-card h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-summary {
  padding-top: 1.4rem;
  padding-bottom: 5rem;
}

.about-summary .section-heading {
  max-width: 30rem;
}

.about-summary .eyebrow {
  color: rgba(20, 230, 255, 0.92);
}

.about-summary .section-title {
  color: #f6fbff;
}

.about-summary .experience-card {
  gap: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 13, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.about-summary .experience-card h3 {
  color: #f6fbff;
}

.about-summary .experience-card .body-copy,
.about-summary .experience-card li {
  color: rgba(244, 248, 252, 0.76);
}

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

.focus-card {
  --focus-x: 22%;
  --focus-y: 18%;
  --focus-rgb: 20 230 255;
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  border: 1px solid rgb(var(--focus-rgb) / 0.14);
  background: #050608;
  min-height: 27rem;
  isolation: isolate;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.14;
  pointer-events: none;
}

.focus-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(24rem 24rem at var(--focus-x) var(--focus-y), rgb(var(--focus-rgb) / 0.22), transparent 42%),
    radial-gradient(10rem 10rem at var(--focus-x) var(--focus-y), rgb(255 255 255 / 0.12), transparent 38%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.focus-card__glow {
  position: absolute;
  inset: -18%;
  z-index: 0;
  border-radius: 2rem;
  background: radial-gradient(18rem 18rem at var(--focus-x) var(--focus-y), rgb(var(--focus-rgb) / 0.28), transparent 46%);
  filter: blur(34px);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

.focus-card__visual,
.focus-card__body {
  position: relative;
  z-index: 1;
}

.focus-card__visual {
  position: relative;
  min-height: 12rem;
  background:
    radial-gradient(circle at 26% 26%, rgb(var(--focus-rgb) / 0.1), transparent 28%),
    linear-gradient(145deg, #111711 0%, #050608 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.focus-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(14rem 14rem at var(--focus-x) var(--focus-y), rgb(var(--focus-rgb) / 0.3), transparent 36%),
    linear-gradient(180deg, rgb(255 255 255 / 0.02), transparent 48%);
  opacity: 0.22;
  transition: opacity var(--transition);
  pointer-events: none;
}

.focus-card__body {
  display: grid;
  align-content: end;
  gap: 0.9rem;
  min-height: calc(100% - 12rem);
  padding: 1.35rem;
  color: #f6fbff;
}

.focus-card__body h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.focus-card__body .body-copy {
  color: rgba(244, 248, 252, 0.72);
}

.focus-card .button--primary {
  background: var(--accent);
  color: #071008;
}

.focus-card--visionself {
  --focus-rgb: 255 82 174;
}

.focus-card--studio {
  --focus-rgb: 20 230 255;
}

.focus-card--speaking {
  --focus-rgb: 255 170 84;
}

.focus-card.is-spotlit,
.focus-card:hover {
  border-color: rgb(var(--focus-rgb) / 0.4);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgb(var(--focus-rgb) / 0.14),
    0 0 48px rgb(var(--focus-rgb) / 0.16);
  transform: translateY(-3px);
}

.focus-card.is-spotlit::after,
.focus-card:hover::after {
  opacity: 1;
}

.focus-card.is-spotlit .focus-card__glow,
.focus-card:hover .focus-card__glow {
  opacity: 1;
  transform: scale(1);
}

.focus-card.is-spotlit .focus-card__visual::after,
.focus-card:hover .focus-card__visual::after {
  opacity: 1;
}

.home-speaking {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 2.4rem;
}

.home-speaking__shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.6rem);
  width: min(calc(100% - 2rem), 1600px);
  margin: 0 auto;
  min-height: clamp(38rem, 64vw, 52rem);
  padding: clamp(2rem, 4vw, 3.6rem);
  overflow: hidden;
  border-radius: 2.2rem;
  border: 1px solid rgba(20, 230, 255, 0.14);
  background: #050608;
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.36);
}

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

.home-speaking__shell::before {
  top: 1.1rem;
  right: 1.1rem;
  width: clamp(7rem, 16vw, 16rem);
  height: clamp(4rem, 10vw, 9rem);
  border-top: 1px solid rgba(20, 230, 255, 0.72);
  border-right: 1px solid rgba(20, 230, 255, 0.72);
  border-top-right-radius: 6rem;
  opacity: 0.62;
}

.home-speaking__shell::after {
  left: 1.1rem;
  bottom: 1.1rem;
  width: clamp(7rem, 16vw, 16rem);
  height: clamp(4rem, 10vw, 9rem);
  border-bottom: 1px solid rgba(20, 230, 255, 0.72);
  border-left: 1px solid rgba(20, 230, 255, 0.72);
  border-bottom-left-radius: 6rem;
  opacity: 0.52;
}

.home-speaking__ambient {
  position: absolute;
  inset: -6%;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.24), rgba(5, 6, 8, 0.9)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(20, 230, 255, 0.14), transparent 18%),
    url("/assets/speaking-audience.jpg") center center / cover no-repeat;
  background-size: auto, 112px 112px, 112px 112px, auto, cover;
  filter: grayscale(1) contrast(1.08) brightness(0.42);
  transform: scale(1.08);
  opacity: 0.52;
}

.home-speaking__media,
.home-speaking__copy {
  position: relative;
  z-index: 2;
}

.home-speaking__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(11rem, 14.5rem);
  align-items: start;
  gap: clamp(0.9rem, 2vw, 1.6rem);
  min-height: clamp(28rem, 54vw, 40rem);
  padding-top: clamp(1rem, 2vw, 2rem);
}

.home-speaking__photo {
  --float-x: 0px;
  --float-y: 0px;
  --float-rotate: 0deg;
  position: absolute;
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b0d11;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  transform: translate3d(var(--float-x), var(--float-y), 0) rotate(var(--float-rotate));
  will-change: transform;
}

.home-speaking__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.02), rgba(5, 6, 8, 0.08) 55%, rgba(5, 6, 8, 0.58) 100%);
}

.home-speaking__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-speaking__photo--primary {
  position: relative;
  left: auto;
  bottom: auto;
  align-self: end;
  justify-self: start;
  width: min(100%, 35rem);
  aspect-ratio: 0.95;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.home-speaking__photo--primary img {
  object-position: center 42%;
}

.home-speaking__photo--secondary {
  position: relative;
  top: auto;
  right: auto;
  align-self: start;
  justify-self: end;
  width: min(100%, 14.5rem);
  aspect-ratio: 0.84;
  margin-top: 0;
}

.home-speaking__photo--secondary img {
  object-position: center 52%;
}

.home-speaking__photo-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(4, 6, 8, 0.84);
  border: 1px solid rgba(20, 230, 255, 0.18);
  color: rgba(246, 251, 255, 0.86);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.home-speaking__copy {
  display: grid;
  justify-self: end;
  gap: 1rem;
  width: min(100%, 29rem);
  color: #f6fbff;
}

.home-speaking__copy .eyebrow {
  color: rgba(20, 230, 255, 0.92);
}

.home-speaking__copy .section-title {
  max-width: 8ch;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  line-height: 0.92;
  color: #f6fbff;
}

.home-speaking__copy .body-copy {
  max-width: 40ch;
  color: rgba(244, 248, 252, 0.8);
}

.home-speaking__topics {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-speaking__topics li {
  position: relative;
  padding-left: 1rem;
  color: rgba(244, 248, 252, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-speaking__topics li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0.35rem rgba(20, 230, 255, 0.1);
}

.home-speaking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.35rem;
}

.home-speaking .button--primary {
  background: var(--accent);
  color: #071008;
}

.home-speaking .button--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #f6fbff;
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.2rem;
}

.proof-card {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  min-height: 10.5rem;
  padding: 1rem 0 0.2rem;
  border-top: 1px solid rgba(13, 21, 32, 0.1);
  transition: transform var(--transition), color var(--transition);
}

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

.proof-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.case-stream {
  display: grid;
  gap: 0;
}

.case-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.4rem;
  align-items: center;
  padding: 1.85rem 0;
  border-top: 1px solid rgba(24, 18, 16, 0.1);
}

.case-panel--reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.case-panel--reverse .case-panel__media {
  order: 2;
}

.case-panel__media,
.case-panel__body {
  min-width: 0;
}

.media-card,
.scene-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 24rem;
  padding: 1.2rem;
  isolation: isolate;
}

.scene-frame {
  min-height: 36rem;
  padding-bottom: 6.2rem;
}

.media-card__badge,
.panel-status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: rgba(255, 252, 247, 0.12);
  border: 1px solid rgba(255, 252, 247, 0.24);
}

.panel-status--live,
.media-card__badge--live {
  color: var(--accent);
}

.panel-status--development,
.media-card__badge--development {
  color: #f4ffbf;
}

.panel-status--upcoming,
.media-card__badge--upcoming {
  color: #dfe4ff;
}

.media-card__eyebrow,
.scene-frame__caption,
.media-card__badge,
.scene-frame__label {
  position: relative;
  z-index: 1;
  color: #f6efe7;
}

.scene-frame__caption {
  position: absolute;
  inset: auto 1.15rem 1.15rem 1.15rem;
  margin: 0;
  max-width: 24rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.media-card .visual-placeholder,
.scene-frame .visual-placeholder {
  margin-top: auto;
}

.visual-placeholder--teaser .visual-placeholder__label {
  border-color: rgba(24, 18, 16, 0.1);
  background: rgba(24, 18, 16, 0.04);
  color: var(--muted);
}

.visual-placeholder--teaser .visual-placeholder__title {
  color: var(--ink);
}

.visual-placeholder--teaser .visual-placeholder__body,
.visual-placeholder--teaser .visual-placeholder__list li {
  color: var(--muted);
}

.visual-placeholder--teaser .visual-placeholder__list li::before {
  background: rgba(188, 111, 59, 0.74);
}

.case-panel__body {
  display: grid;
  gap: 0.85rem;
  align-content: center;
}

.case-panel h3,
.chapter-card h3,
.teaser-panel h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1;
}

.signal-list,
.fact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.signal-list li,
.fact-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
}

.signal-list li::before,
.fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--accent);
}

.newsletter-highlight,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(13, 21, 32, 0.1);
}

.showcase-carousel {
  padding-top: 2.25rem;
}

.showcase-carousel__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.showcase-carousel__head .section-heading {
  margin-bottom: 0;
}

.showcase-carousel__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.showcase-carousel__button {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 230, 255, 0.2);
  background: #07090b;
  color: var(--accent);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.showcase-carousel__button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #111711;
}

.showcase-carousel__button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.showcase-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.showcase-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.showcase-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(32rem, 74%);
  gap: 1rem;
}

.showcase-slide {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(15rem, 0.82fr) minmax(0, 1.18fr);
  min-height: 27rem;
  border-radius: 2rem;
  border: 1px solid rgba(20, 230, 255, 0.1);
  background: #050608;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
  scroll-snap-align: start;
}

.showcase-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.14;
  pointer-events: none;
}

.showcase-slide__visual,
.showcase-slide__body {
  position: relative;
  z-index: 1;
}

.showcase-slide__visual {
  min-height: 100%;
  background:
    radial-gradient(circle at 30% 24%, rgba(20, 230, 255, 0.34), transparent 28%),
    radial-gradient(circle at 72% 72%, rgba(20, 230, 255, 0.1), transparent 24%),
    linear-gradient(145deg, #111711 0%, #050608 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-slide__visual::after {
  content: "";
  position: absolute;
  inset: 14% 14% 14% 14%;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 28% 22%, rgba(20, 230, 255, 0.22), transparent 24%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.showcase-slide__body {
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: 1.6rem;
  color: #f6fbff;
}

.showcase-slide__body .eyebrow,
.showcase-slide__body .body-copy {
  color: rgba(244, 248, 252, 0.72);
}

.showcase-slide__body h3 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
  color: #f6fbff;
}

.showcase-slide__body .body-copy {
  max-width: 32ch;
}

.showcase-slide .button--primary {
  background: var(--accent);
  color: #071008;
  box-shadow: 0 16px 40px rgba(20, 230, 255, 0.16);
}

.showcase-slide .button--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f6fbff;
}

.home-journal {
  width: 100%;
  margin: 0;
  padding: 4.2rem 0 5rem;
  background: linear-gradient(180deg, #f4f0e9 0%, #f7f4ee 100%);
  color: #101417;
}

.stories-carousel {
  width: min(calc(100% - 3rem), 1600px);
  margin: 0 auto;
}

.stories-carousel__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.stories-carousel__head .section-heading {
  margin-bottom: 0;
}

.stories-carousel__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.stories-carousel__button {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  border: 0;
  background: var(--accent);
  color: #0a0f10;
  box-shadow: 0 12px 28px rgba(16, 34, 56, 0.16);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.stories-carousel__button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(16, 34, 56, 0.2);
  background: var(--accent-strong);
}

.stories-carousel__button:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.stories-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.stories-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.stories-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(30rem, 41%);
  gap: 1.35rem;
}

.story-card {
  scroll-snap-align: start;
}

.story-card__link {
  display: grid;
  gap: 1rem;
  color: #101417;
}

.story-card__media {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #13181b 0%, #0b0f11 100%);
  box-shadow: 0 20px 52px rgba(16, 34, 56, 0.16);
  transition: transform var(--transition), box-shadow var(--transition);
}

.story-card__media--image {
  background:
    linear-gradient(180deg, rgba(4, 9, 12, 0.06), rgba(4, 9, 12, 0.28)),
    var(--story-card-image) var(--story-card-image-position, center) / cover no-repeat;
}

.story-card__media::before,
.story-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.story-card__media::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.2;
}

.story-card__media::after {
  opacity: 0;
  background: linear-gradient(180deg, rgba(20, 230, 255, 0.72), rgba(20, 230, 255, 0.48));
}

.story-card__media--image::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 8, 10, 0.12), rgba(5, 8, 10, 0.42));
  background-size: 34px 34px, 34px 34px, auto;
  opacity: 0.48;
}

.story-card--book .story-card__media:not(.story-card__media--image) {
  background:
    radial-gradient(circle at 24% 22%, rgba(20, 230, 255, 0.36), transparent 26%),
    linear-gradient(130deg, #0d1114 0%, #151c20 58%, #0a0e10 100%);
}

.story-card--book .story-card__media:not(.story-card__media--image)::before {
  inset: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  opacity: 1;
}

.story-card--retail .story-card__media:not(.story-card__media--image) {
  background:
    linear-gradient(90deg, rgba(20, 230, 255, 0.08) 0 34%, transparent 34% 100%),
    linear-gradient(145deg, #12171a 0%, #070a0c 100%);
}

.story-card--retail .story-card__media:not(.story-card__media--image)::before {
  background:
    linear-gradient(90deg, transparent 0 56%, rgba(255, 255, 255, 0.06) 56% 57%, transparent 57%),
    linear-gradient(180deg, transparent 0 64%, rgba(255, 255, 255, 0.06) 64% 65%, transparent 65%),
    radial-gradient(circle at 78% 28%, rgba(20, 230, 255, 0.24), transparent 18%);
  opacity: 1;
}

.story-card--speaking .story-card__media:not(.story-card__media--image) {
  background:
    radial-gradient(circle at 18% 18%, rgba(20, 230, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #101416 0%, #070a0c 100%);
}

.story-card--speaking .story-card__media:not(.story-card__media--image)::before {
  inset: auto 1rem 1rem 1rem;
  height: 52%;
  border-radius: 1rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 12%, transparent 12% 16%, rgba(255, 255, 255, 0.05) 16% 28%, transparent 28% 32%, rgba(255, 255, 255, 0.05) 32% 48%, transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  opacity: 1;
}

.story-card--studio .story-card__media:not(.story-card__media--image) {
  background:
    radial-gradient(circle at 76% 24%, rgba(20, 230, 255, 0.26), transparent 22%),
    linear-gradient(145deg, #12171a 0%, #070a0c 100%);
}

.story-card--studio .story-card__media:not(.story-card__media--image)::before {
  inset: 1rem;
  border-radius: 1rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 54%, rgba(20, 230, 255, 0.18) 68%, transparent 86%);
  background-size: 26px 26px, 26px 26px, auto;
  opacity: 1;
}

.story-card--book .story-card__media--image::before,
.story-card--speaking .story-card__media--image::before {
  background:
    linear-gradient(180deg, rgba(8, 15, 20, 0.02), rgba(8, 15, 20, 0.46)),
    linear-gradient(90deg, rgba(20, 230, 255, 0.14), transparent 28%, transparent 72%, rgba(20, 230, 255, 0.1)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
  opacity: 1;
}

.story-card__read {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.82rem 1.12rem;
  border-radius: 999px;
  background: rgba(10, 12, 14, 0.82);
  color: #f7fbff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.8rem);
  transition: transform var(--transition), opacity var(--transition), background var(--transition), color var(--transition);
}

.story-card__body {
  display: grid;
  gap: 0.82rem;
}

.story-card__meta-row {
  display: grid;
  gap: 0.55rem;
}

.story-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  width: max-content;
  padding: 0.22rem 0.55rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(16, 20, 23, 0.18);
  color: rgba(16, 20, 23, 0.82);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.story-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  background: rgba(16, 20, 23, 0.06);
  color: rgba(16, 20, 23, 0.7);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card__body h3 {
  margin: 0;
  font-size: clamp(1.85rem, 2.9vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #101417;
}

.story-card__body .body-copy {
  margin: 0;
  color: rgba(16, 20, 23, 0.74);
  max-width: 40ch;
  font-size: 1rem;
  line-height: 1.65;
}

.story-card__link:hover .story-card__media,
.story-card__link:focus-visible .story-card__media {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(16, 34, 56, 0.22);
}

.story-card__link:hover .story-card__media::after,
.story-card__link:focus-visible .story-card__media::after {
  opacity: 1;
}

.story-card__link:hover .story-card__read,
.story-card__link:focus-visible .story-card__read {
  opacity: 1;
  transform: translateY(0);
  background: rgba(10, 12, 14, 0.9);
  color: #f7fbff;
}

.cta-section__actions,
.cta-action-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.universal-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
  border-radius: 1.45rem;
  background: rgba(255, 252, 247, 0.76);
}

.universal-form label {
  display: grid;
  gap: 0.45rem;
}

.universal-form span {
  font-size: 0.86rem;
  color: var(--ink);
}

.form-helper {
  margin: 0;
  font-size: 0.84rem;
}

.form-status {
  margin: 0;
  font-size: 0.85rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  padding: 1.4rem 0 1.2rem;
  align-items: start;
}

.page-hero__content,
.page-hero__scene {
  padding: 0;
}

.page-hero__content {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.page-hero__content .lede {
  max-width: 36rem;
  color: rgba(13, 21, 32, 0.72);
}

.chapter-stack {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
  gap: 1.3rem;
  padding: 1rem 0 3rem;
}

.chapter-stack__rail {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  align-self: start;
  display: grid;
  gap: 0.85rem;
}

.chapter-stack__list {
  display: grid;
  gap: 0.95rem;
}

.chapter-card {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(24, 18, 16, 0.1);
}

.author-extras {
  padding-top: 0;
}

.author-extras__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.teaser-panel {
  display: grid;
  gap: 1rem;
  padding: 0;
}

.teaser-panel--merch {
  display: grid;
  gap: 1rem;
}

.site-footer {
  position: relative;
  margin-top: clamp(3.5rem, 8vw, 6rem);
  margin-bottom: 0;
  padding: 0;
  border-top: 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(20, 230, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #060809 0%, #030405 100%);
  color: #f6fbff;
  overflow: clip;
}

.site-footer__top {
  padding: clamp(2.6rem, 6vw, 3.75rem) 1.5rem clamp(2.2rem, 5vw, 3rem);
  background: var(--accent);
  color: #050608;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__connect-shell {
  max-width: 54rem;
  margin: 0 auto;
  text-align: center;
}

.site-footer__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-footer__title {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.site-footer__body {
  max-width: 42rem;
  margin: 1.1rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(5, 8, 8, 0.8);
}

.site-footer__beehiiv {
  display: flex;
  justify-content: center;
  margin: 1.35rem auto 0;
  width: min(100%, 34.625rem);
}

.site-footer__beehiiv-frame {
  display: block;
  width: 100%;
  max-width: 34.625rem;
  min-height: 15.625rem;
}

.site-footer__form {
  max-width: 52rem;
  margin: 2rem auto 0;
}

.site-footer__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer__field {
  display: grid;
  gap: 0.45rem;
  text-align: left;
}

.site-footer__field--full {
  grid-column: 1 / -1;
}

.site-footer__field-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(5, 8, 8, 0.72);
}

.site-footer__form-input {
  min-height: 4.45rem;
  width: 100%;
  padding: 0 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(5, 8, 8, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: #050608;
  font-size: 1.02rem;
  box-shadow: 0 18px 38px rgba(5, 8, 8, 0.1);
}

.site-footer__form-input::placeholder {
  color: rgba(5, 8, 8, 0.44);
}

.site-footer__form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.site-footer__submit {
  min-width: 11.75rem;
  min-height: 3.5rem;
  padding: 0 1.45rem;
  border-radius: 999px;
  border: 2px solid rgba(5, 8, 8, 0.86);
  background: transparent;
  color: #050608;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.site-footer__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  background: rgba(5, 8, 8, 0.92);
  color: #f6fbff;
}

.site-footer__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.site-footer__form-status {
  min-height: 1.3rem;
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(5, 8, 8, 0.74);
}

.site-footer__form-helper {
  max-width: 40rem;
  margin: 0.4rem auto 0;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(5, 8, 8, 0.62);
}

.site-footer__mock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 52rem;
  margin: 2rem auto 0;
}

.site-footer__mock-field {
  min-height: 4.45rem;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(5, 8, 8, 0.44);
  font-size: 1.02rem;
  text-align: left;
  box-shadow: 0 18px 38px rgba(5, 8, 8, 0.1);
}

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

.site-footer__mock-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

.site-footer__mock-button {
  min-width: 11.75rem;
  min-height: 3.5rem;
  padding: 0 1.45rem;
  border-radius: 999px;
  border: 2px solid rgba(5, 8, 8, 0.86);
  background: transparent;
  color: #050608;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__mock-note {
  margin: 1rem 0 0;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(5, 8, 8, 0.62);
}

.site-footer__social {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__social-action {
  appearance: none;
  width: 100%;
  min-height: 8.5rem;
  padding: 1.4rem 1rem;
  border: 0;
  background: #050608;
  color: #f6fbff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.site-footer__social-action:hover {
  transform: translateY(-3px);
}

.site-footer__social-action.is-live:hover {
  background: rgba(20, 230, 255, 0.96);
  color: #050608;
}

.site-footer__social-action.is-soon:hover {
  background: rgba(16, 20, 18, 1);
  color: var(--accent-strong);
}

.site-footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
}

.site-footer__social-icon svg {
  width: 2rem;
  height: 2rem;
}

.site-footer__social-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
}

.site-footer__social-monogram--linkedin {
  font-size: 1.5rem;
  letter-spacing: -0.08em;
}

.site-footer__social-monogram--x {
  text-transform: uppercase;
}

.site-footer__social-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.15rem 1.5rem 1.35rem;
  color: rgba(246, 251, 255, 0.66);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.site-footer__bottom--single {
  justify-content: flex-start;
}

.site-toast {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 90;
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: rgba(6, 8, 9, 0.95);
  border: 1px solid rgba(20, 230, 255, 0.24);
  color: #f6fbff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.85rem);
  transition: opacity var(--transition), transform var(--transition);
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .primary-nav {
    position: absolute;
    inset: calc(100% + 0.5rem) 1rem auto 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.6rem);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-header.is-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav__list {
    display: grid;
    justify-items: stretch;
    padding: 0.75rem;
    border-radius: 1.2rem;
    background: rgba(4, 6, 8, 0.96);
    border: 1px solid rgba(20, 230, 255, 0.16);
  }

  .locale-switcher {
    justify-self: end;
  }

  .nav-toggle {
    display: inline-flex;
  }

  body[data-page="home"] .nav-toggle {
    display: inline-flex;
  }

  body[data-page="home"] .primary-nav {
    right: 1rem;
    width: min(18rem, calc(100% - 2rem));
  }

  body[data-page="home"] .primary-nav__list {
    padding: 0.75rem;
  }

  .home-hero__intro,
  .section-heading--split,
  .newsletter-highlight,
  .cta-section,
  .page-hero,
  .author-extras__grid,
  .site-footer__top,
  .site-footer__form-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__grid,
  .case-panel,
  .case-panel--reverse,
  .chapter-stack,
  .showcase-slide {
    grid-template-columns: 1fr;
  }

  .home-hero__content--editorial,
  .experience-grid,
  .focus-grid,
  .home-speaking__shell,
  .home-profile__shell {
    grid-template-columns: 1fr;
  }

  .about-timeline__layout {
    grid-template-columns: 1fr;
  }

  .about-timeline__list {
    --about-rail-width: clamp(4.2rem, 7vw, 5.2rem);
    --about-card-gap: clamp(3.2rem, 4vw, 4.2rem);
    --about-card-max: clamp(18rem, 34vw, 26rem);
  }

  .about-hero__scene {
    min-height: 50rem;
  }

  .about-hero__inner {
    padding: 6rem 0 5rem;
  }

  .about-hero__footer {
    align-items: start;
  }

  .about-timeline__intro {
    position: static;
  }

  .about-milestone__card {
    grid-template-columns: 1fr;
  }

  .home-speaking__shell {
    min-height: auto;
    padding: 1.6rem;
  }

  .home-profile {
    padding: clamp(3rem, 7vw, 4.6rem) 0 3rem;
  }

  .home-profile__copy {
    max-width: 54rem;
  }

  .home-profile__statement {
    font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  }

  .home-profile__media {
    min-height: clamp(22rem, 52vw, 33rem);
    justify-content: center;
  }

  .home-profile__portrait-shell {
    width: min(100%, 30rem);
  }

  .home-profile__portrait {
    height: clamp(22rem, 52vw, 33rem);
  }

  .home-profile__rail {
    inset: 8% auto 12% 50%;
    opacity: 0.42;
  }

  .home-profile__marker {
    right: -0.8rem;
    bottom: 0.65rem;
    width: min(30vw, 18rem);
  }

  .home-speaking__media {
    grid-template-columns: minmax(0, 1fr) minmax(10rem, 13rem);
    min-height: 23rem;
  }

  .home-speaking__copy {
    justify-self: start;
    width: min(100%, 34rem);
  }

  .home-hero__footer {
    flex-direction: column;
    align-items: start;
  }

  .case-panel--reverse .case-panel__media {
    order: initial;
  }

  .home-hero__cinema {
    min-height: 100svh;
  }

  .home-hero__content {
    padding: 1.2rem;
  }

  .home-hero__content--poster {
    gap: 1.6rem;
    padding: 6.2rem 1.2rem 1.4rem;
  }

  .about-hero__title {
    max-width: 9ch;
    margin: 0 auto;
    font-size: clamp(3rem, 10vw, 6.4rem);
  }

  .about-milestone__year--numeric {
    font-size: clamp(2.1rem, 6vw, 3.4rem);
  }

  .about-milestone__year--word {
    font-size: clamp(1.25rem, 4vw, 2.1rem);
  }

  .home-hero__masthead {
    align-self: center;
  }

  .home-hero__scroll {
    display: none;
  }

  .home-hero__stage {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-hero__copy {
    max-width: none;
    padding-top: 0;
  }

  .home-hero__editorial {
    padding-top: 4.8rem;
  }

  .home-hero__sidebar {
    padding-top: 0;
  }

  .home-story__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-story__intro {
    position: static;
  }

  .timeline-list {
    --story-line-x: 5rem;
    padding-left: 0;
  }

  .timeline-card {
    grid-template-columns: var(--story-line-x) minmax(0, 1fr);
  }

  .timeline-card__dot {
    right: -0.5rem;
  }

  .chapter-stack__rail {
    position: static;
  }

  .showcase-carousel__track {
    grid-auto-columns: minmax(28rem, 86%);
  }

  .stories-carousel__track {
    grid-auto-columns: minmax(28rem, 68%);
  }
}

@media (max-width: 1100px) {
  .about-timeline__layout {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .about-timeline__intro {
    position: static;
  }

  .about-timeline__list {
    --about-rail-width: 4.4rem;
    --about-card-gap: clamp(1.2rem, 2vw, 2rem);
    --about-card-max: clamp(19rem, 39vw, 24rem);
    gap: 0.9rem;
  }

  .about-milestone {
    min-height: 9.3rem;
  }

  .about-milestone__year--numeric {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }

  .about-milestone__year--word {
    max-width: 5.8rem;
    font-size: clamp(0.85rem, 1.5vw, 1.12rem);
  }

  .about-milestone--right .about-milestone__rail {
    transform: translate(calc(-100% - 1rem), -50%);
  }

  .about-milestone--left .about-milestone__rail {
    transform: translate(1rem, -50%);
  }

  .about-milestone__card,
  .about-milestone--left .about-milestone__card,
  .about-milestone--right .about-milestone__card {
    width: min(100%, var(--about-card-max));
    grid-template-columns: minmax(6.3rem, 0.42fr) minmax(0, 0.58fr);
    margin-left: 0;
    margin-right: 0;
  }

  .about-milestone__visual,
  .about-milestone__copy {
    min-height: 7.7rem;
  }

  .about-milestone__copy {
    padding: 0.78rem 0.82rem;
  }

  .about-milestone__copy h3 {
    font-size: clamp(1.1rem, 2vw, 1.65rem);
  }

  .about-milestone__copy .body-copy {
    font-size: 0.82rem;
  }

  .about-milestone__detail {
    font-size: 0.73rem;
  }

  .site-footer__social {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__social-action {
    min-height: 7.3rem;
  }
}

@media (max-width: 860px) {
  .home-profile {
    padding: 2.7rem 0 2.6rem;
  }

  .home-profile__shell {
    width: min(calc(100% - 1.4rem), 100%);
    gap: 1.4rem;
  }

  .home-profile__copy {
    gap: 0.9rem;
  }

  .home-profile__statement {
    max-width: 9.5ch;
    font-size: clamp(2.35rem, 10.5vw, 4.2rem);
  }

  .home-profile .body-copy {
    max-width: 34ch;
    font-size: 0.98rem;
  }

  .home-profile__story-link {
    margin-top: 0.15rem;
  }

  .home-profile__media {
    min-height: clamp(21rem, 76vw, 28rem);
  }

  .home-profile__portrait-shell {
    width: min(100%, 27rem);
  }

  .home-profile__portrait {
    height: clamp(21rem, 78vw, 29rem);
    border-radius: 1.65rem 1.65rem 0 0;
  }

  .home-profile__caption {
    left: 0.9rem;
    bottom: 0.9rem;
    padding: 0.68rem 0.82rem;
  }

  .home-profile__marker {
    right: -0.35rem;
    width: min(56vw, 14rem);
    height: 3.7rem;
    background: repeating-linear-gradient(90deg, rgba(20, 230, 255, 0.94) 0 1.4rem, transparent 1.4rem 3.6rem);
  }

  .home-profile::after {
    right: -3rem;
    width: min(58vw, 16rem);
    height: 3.8rem;
    opacity: 0.55;
  }

  .home-profile__rail {
    display: none;
  }

  .home-hero__cinema {
    min-height: 100svh;
    border-radius: 0 0 2rem 2rem;
  }

  .home-hero__content {
    padding: 1.15rem;
  }

  .home-hero__content--poster {
    gap: 1.35rem;
    padding: 6rem 1.15rem 1.35rem;
  }

  .home-hero__content--editorial {
    gap: 1rem;
  }

  .home-hero__name-stage {
    --hero-name-size: clamp(4.2rem, 20vw, 7.2rem);
  }

  .home-hero__role-text span {
    font-size: clamp(1.1rem, 4.8vw, 1.6rem);
  }

  .home-hero__support {
    gap: 0.55rem 0.9rem;
  }

  .home-hero__intro {
    padding-top: 2.4rem;
    margin-bottom: 0;
  }

  .home-hero__poster {
    min-height: 17rem;
  }

  .site-footer__top {
    padding-inline: 1.15rem;
  }

  .site-footer__field--full {
    grid-column: auto;
  }

  .site-footer__mock-grid {
    gap: 0.85rem;
  }

  .home-hero__name {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .home-hero__display {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .home-speaking__shell {
    gap: 1.35rem;
  }

  .home-speaking__media {
    grid-template-columns: minmax(0, 1fr) minmax(8.2rem, 11rem);
    min-height: 20rem;
  }

  .home-speaking__photo--primary {
    width: min(100%, 27rem);
    margin-top: 3.5rem;
  }

  .home-speaking__photo--secondary {
    width: min(100%, 10.5rem);
  }

  .home-speaking__copy .section-title {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .home-hero__orb {
    width: 5.7rem;
    left: 50%;
    top: 52%;
  }

  .home-hero__portrait {
    min-height: 14rem;
  }

  .home-hero__bottomline {
    display: none;
  }

  .about-timeline__list {
    --about-card-gap: 0;
    gap: 0.95rem;
  }

  .about-timeline__list::before {
    left: 1rem;
    transform: none;
  }

  .about-milestone {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    min-height: auto;
    padding-top: 2.15rem;
  }

  .about-milestone::before {
    left: 1rem;
    top: 3rem;
    transform: translateX(-50%);
  }

  .about-milestone__rail {
    left: 1rem;
    top: 0.1rem;
    width: 3.2rem;
    justify-items: start;
    transform: none;
  }

  .about-milestone--right .about-milestone__rail,
  .about-milestone--left .about-milestone__rail {
    justify-items: start;
    transform: none;
  }

  .about-milestone__year,
  .about-milestone--right .about-milestone__year,
  .about-milestone--left .about-milestone__year {
    margin-left: 2.05rem;
    text-align: left;
  }

  .about-milestone__card,
  .about-milestone--left .about-milestone__card,
  .about-milestone--right .about-milestone__card {
    grid-column: 1;
    justify-self: start;
    width: min(calc(100% - 3rem), 100%);
    margin-left: 2.9rem;
    margin-right: 0;
    grid-template-columns: minmax(6.2rem, 0.4fr) minmax(0, 0.6fr);
  }

  .about-milestone__visual,
  .about-milestone__copy {
    min-height: 6.9rem;
  }

  .hero-panels {
    display: none;
  }

  .hero-mobile {
    display: grid;
    gap: 0.9rem;
  }

  .hero-mobile__tabs {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .hero-mobile__tab {
    border: 1px solid rgba(24, 18, 16, 0.08);
    border-radius: 999px;
    padding: 0.7rem 0.95rem;
    white-space: nowrap;
    background: rgba(255, 252, 247, 0.58);
    color: var(--muted);
  }

  .hero-mobile__tab.is-active {
    color: var(--ink);
    background: rgba(24, 18, 16, 0.08);
  }

  .hero-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(78vw, 1fr);
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }

  .showcase-carousel__head {
    align-items: start;
    flex-direction: column;
  }

  .stories-carousel__head {
    align-items: start;
    flex-direction: column;
  }

  .stories-carousel__track {
    grid-auto-columns: 68vw;
    gap: 0.95rem;
  }

  .story-card__media {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .story-card__read {
    opacity: 1;
    transform: translateY(0);
  }

  .showcase-carousel__track {
    grid-auto-columns: minmax(84vw, 1fr);
  }

  .showcase-slide {
    min-height: 24rem;
  }

  .showcase-slide__visual {
    min-height: 11rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .venture-strip__track {
    gap: 0.6rem;
  }

  .hero-slide {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 26rem;
    padding: 1.2rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8rem;
    color: #f6efe7;
    scroll-snap-align: start;
  }

  .hero-slide::after,
  .hero-slide::before {
    z-index: -1;
  }

  .hero-slide p,
  .hero-slide .panel-status,
  .hero-slide .panel-tag {
    color: rgba(246, 239, 231, 0.9);
  }

  .chapter-card {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .newsletter-highlight,
  .cta-section,
  .site-footer,
  .page-hero__content,
  .page-hero__scene,
  .case-panel,
  .chapter-card,
  .teaser-panel {
    border-radius: 1.1rem;
  }

  .scene-frame {
    min-height: 24rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.9rem 1rem;
  }

  main {
    padding-top: 5.5rem;
  }

  .page:not(.page--home):not(.page--about),
  .section,
  .page-hero,
  .chapter-stack {
    width: min(calc(100% - 1rem), var(--content-max));
  }

  .page--home {
    width: 100%;
  }

  .page--about {
    width: 100%;
  }

  .site-footer {
    width: 100%;
  }

  .site-footer__top {
    padding: 3.25rem 1rem 2.8rem;
  }

  .site-footer__title {
    font-size: clamp(2.1rem, 13vw, 3.1rem);
  }

  .site-footer__body {
    font-size: 0.92rem;
  }

  .site-footer__field-label {
    font-size: 0.76rem;
  }

  .site-footer__mock-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__mock-field--full {
    grid-column: auto;
  }

  .site-footer__field--full {
    grid-column: auto;
  }

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

  .site-footer__social-action {
    min-height: 6.5rem;
    gap: 0.72rem;
  }

  .site-footer__social-label {
    font-size: 0.66rem;
  }

  .site-footer__bottom {
    justify-content: center;
    text-align: center;
  }

  .site-toast {
    right: 0.85rem;
    left: 0.85rem;
    bottom: 0.85rem;
    max-width: none;
    border-radius: 1.1rem;
  }

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

  .home-hero__cinema {
    min-height: 100svh;
    border-radius: 0 0 1.4rem 1.4rem;
  }

  body[data-page="home"] .site-header {
    grid-template-columns: auto 1fr auto;
  }

  body[data-page="about"] .site-header {
    grid-template-columns: auto 1fr auto;
  }

  body[data-page="home"] .nav-link {
    font-size: 1.08rem;
  }

  .home-hero__content--poster {
    gap: 1.2rem;
    padding: 5.9rem 1rem 1.2rem;
  }

  .home-hero__name-stage {
    --hero-name-size: clamp(4.4rem, 22vw, 6rem);
  }

  .home-hero__role-text span {
    font-size: clamp(1.02rem, 6vw, 1.4rem);
  }

  .home-hero__actions .button {
    width: 100%;
    justify-content: center;
  }

  .home-profile {
    padding: 2.35rem 0 2.2rem;
  }

  .home-profile__shell {
    width: min(calc(100% - 1rem), 100%);
  }

  .home-profile .eyebrow {
    font-size: 0.66rem;
  }

  .home-profile__statement {
    max-width: 9ch;
    font-size: clamp(2.1rem, 12vw, 3.4rem);
    letter-spacing: -0.06em;
  }

  .home-profile .body-copy {
    max-width: 30ch;
    font-size: 0.95rem;
  }

  .home-profile__story-link {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .home-profile__media {
    min-height: 18.75rem;
  }

  .home-profile__portrait-shell {
    width: 100%;
  }

  .home-profile__portrait {
    height: clamp(18.75rem, 88vw, 24rem);
    border-radius: 1.35rem 1.35rem 0 0;
  }

  .home-profile__portrait::before {
    inset: 0.8rem 0.8rem auto auto;
    width: 4.8rem;
    height: 4.8rem;
  }

  .home-profile__caption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.18rem;
    padding: 0.62rem 0.72rem;
  }

  .home-profile__caption-name {
    font-size: 0.64rem;
  }

  .home-profile__caption-meta {
    font-size: 0.56rem;
  }

  .home-profile__backdrop {
    inset: 4% 0 8% 0;
    filter: blur(42px) saturate(0.74) brightness(0.32);
  }

  .home-profile__marker,
  .home-profile::after {
    display: none;
  }

  .home-hero__tertiary {
    padding-top: 0.15rem;
  }

  .home-hero__support {
    gap: 0.5rem 0.8rem;
  }

  .home-hero__support li {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .home-story {
    padding: 2.6rem 0 3.4rem;
  }

  .home-journal {
    padding: 3rem 0 3.5rem;
  }

  .home-speaking {
    padding-bottom: 1.8rem;
  }

  .home-speaking__shell {
    width: min(calc(100% - 1rem), 1600px);
    padding: 1rem;
    border-radius: 1.4rem;
    gap: 1rem;
  }

  .home-speaking__shell::before,
  .home-speaking__shell::after {
    width: 5rem;
    height: 3rem;
  }

  .home-speaking__media {
    grid-template-columns: minmax(0, 1fr) minmax(6.5rem, 8rem);
    min-height: 15rem;
    gap: 0.7rem;
    padding-top: 0.5rem;
  }

  .home-speaking__photo {
    border-radius: 1.1rem;
  }

  .home-speaking__photo--primary {
    width: 100%;
    margin-top: 2.2rem;
  }

  .home-speaking__photo--secondary {
    width: 100%;
    margin-top: 0;
  }

  .home-speaking__photo-label {
    left: 0.65rem;
    bottom: 0.65rem;
    padding: 0.18rem 0.45rem;
    font-size: 0.5rem;
  }

  .home-speaking__copy {
    gap: 0.85rem;
  }

  .home-speaking__copy .section-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .home-speaking__topics {
    gap: 0.52rem;
  }

  .home-speaking__topics li {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .home-speaking__actions .button {
    width: 100%;
    justify-content: center;
  }

  .home-story__shell {
    width: min(calc(100% - 1rem), var(--content-max));
  }

  .home-story__actions {
    justify-content: center;
    margin-top: 1rem;
  }

  .stories-carousel {
    width: min(calc(100% - 1rem), var(--content-max));
  }

  .home-story__layout {
    gap: 1.5rem;
  }

  .home-story .section-title {
    max-width: 12ch;
    font-size: clamp(1.7rem, 9vw, 2.9rem);
  }

  .home-story__timeline {
    --about-card-gap: 0;
    gap: 0.95rem;
  }

  .home-story__timeline.about-timeline__list::before {
    left: 1rem;
    transform: none;
  }

  .home-story__timeline .about-milestone {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    min-height: auto;
    padding-top: 2.15rem;
  }

  .home-story__timeline .about-milestone::before {
    left: 1rem;
    top: 3rem;
    transform: translateX(-50%);
  }

  .home-story__timeline .about-milestone__rail {
    left: 1rem;
    top: 0.1rem;
    width: 3.2rem;
    justify-items: start;
    transform: none;
  }

  .home-story__timeline .about-milestone--right .about-milestone__rail,
  .home-story__timeline .about-milestone--left .about-milestone__rail {
    justify-items: start;
    transform: none;
  }

  .home-story__timeline .about-milestone__year,
  .home-story__timeline .about-milestone--right .about-milestone__year,
  .home-story__timeline .about-milestone--left .about-milestone__year {
    margin-left: 2.05rem;
    text-align: left;
  }

  .home-story__timeline .about-milestone__card,
  .home-story__timeline .about-milestone--left .about-milestone__card,
  .home-story__timeline .about-milestone--right .about-milestone__card {
    grid-column: 1;
    justify-self: start;
    width: min(calc(100% - 3rem), 100%);
    margin-left: 2.9rem;
    margin-right: 0;
    grid-template-columns: minmax(6.2rem, 0.4fr) minmax(0, 0.6fr);
  }

  .home-story__timeline .about-milestone__visual,
  .home-story__timeline .about-milestone__copy {
    min-height: 6.9rem;
  }

  .home-story__timeline .about-milestone__copy {
    padding: 0.78rem 0.82rem;
  }

  .home-story__timeline .about-milestone__copy h3 {
    font-size: clamp(1.05rem, 2vw, 1.5rem);
  }

  .home-story__timeline .about-milestone__copy .body-copy {
    font-size: 0.8rem;
  }

  .home-story__ellipsis span {
    left: 1rem;
    transform: translateX(-50%);
  }

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

  .about-hero__inner,
  .about-timeline__layout {
    width: min(calc(100% - 1rem), 1600px);
  }

  .about-hero__inner {
    padding: 5.7rem 0 4.5rem;
  }

  .about-hero__scene {
    min-height: 41rem;
  }

  .about-hero__headline .eyebrow {
    justify-self: start;
    padding: 0.34rem 0.72rem;
  }

  .about-hero__title {
    max-width: 7ch;
    margin: 0;
    text-align: left;
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .about-hero__quote {
    max-width: 10ch;
    font-size: clamp(1.55rem, 8vw, 2.5rem);
  }

  .about-hero__facts li {
    min-height: 2.1rem;
    padding: 0.56rem 0.72rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .about-hero__scroll {
    bottom: 0.9rem;
  }

  .about-timeline {
    padding-bottom: 3.4rem;
  }

  .about-timeline__layout {
    gap: 1.4rem;
  }

  .about-timeline__list {
    --about-card-gap: 0;
    gap: 1rem;
  }

  .about-milestone {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    min-height: auto;
    padding-top: 1.95rem;
  }

  .about-milestone::before {
    left: 0.95rem;
    top: 2.7rem;
    width: 0.68rem;
    height: 0.68rem;
  }

  .about-milestone__rail {
    left: 0.95rem;
    width: 3rem;
    top: 0.08rem;
    justify-items: start;
    transform: none;
  }

  .about-milestone__year {
    margin-left: 2.05rem;
    text-align: left;
  }

  .about-milestone__year--numeric {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .about-milestone__year--range {
    font-size: clamp(1.02rem, 4.7vw, 1.34rem);
    letter-spacing: -0.03em;
  }

  .about-milestone__year--word {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    padding: 0.32rem 0.52rem;
    border-radius: 999px;
    background: rgba(20, 230, 255, 0.1);
  }

  .about-milestone__card {
    width: min(calc(100% - 2.55rem), 100%);
    margin-left: 2.15rem;
    margin-right: 0;
    padding: 0.68rem;
    gap: 0.68rem;
    border-radius: 1.15rem;
    grid-template-columns: minmax(5.4rem, 0.42fr) minmax(0, 0.58fr);
  }

  .about-milestone--left .about-milestone__card,
  .about-milestone--right .about-milestone__card {
    grid-column: 1;
    justify-self: start;
    margin-left: 2.15rem;
    margin-right: 0;
  }

  .about-milestone__visual {
    min-height: 5.9rem;
    border-radius: 0.95rem;
  }

  .about-milestone__copy {
    min-height: 5.9rem;
    padding: 0.7rem 0.75rem;
  }

  .about-milestone__visual-label {
    left: 0.55rem;
    bottom: 0.5rem;
    padding: 0.2rem 0.45rem;
    font-size: 0.48rem;
  }

  .about-milestone__copy h3 {
    font-size: clamp(1rem, 5vw, 1.28rem);
  }

  .about-milestone__meta {
    font-size: 0.56rem;
  }

  .about-milestone__copy .body-copy,
  .about-milestone__detail {
    font-size: 0.72rem;
    line-height: 1.42;
  }

  .timeline-list {
    --story-line-x: 0.95rem;
    gap: 0.95rem;
  }

  .stories-carousel__button {
    width: 2.8rem;
    height: 2.8rem;
  }

  .stories-carousel__track {
    grid-auto-columns: 68vw;
    gap: 0.8rem;
  }

  .story-card__link {
    gap: 0.75rem;
  }

  .story-card__media {
    min-height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 1.2rem;
  }

  .story-card__body {
    gap: 0.62rem;
  }

  .story-card__body h3 {
    font-size: clamp(1.25rem, 7vw, 1.7rem);
  }

  .story-card__body .body-copy {
    font-size: 0.88rem;
    max-width: none;
  }

  .timeline-card {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    align-items: start;
  }

  .timeline-card__rail {
    grid-column: 1;
    justify-items: start;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    min-height: auto;
  }

  .timeline-card__dot {
    left: var(--story-line-x);
    right: auto;
    top: 1.05rem;
    width: 0.7rem;
    height: 0.7rem;
    transform: translateX(-50%);
    box-shadow: 0 0 0 5px rgba(20, 230, 255, 0.06);
  }

  .timeline-card__year {
    max-width: none;
    margin-left: 2.05rem;
    text-align: left;
    text-wrap: balance;
  }

  .timeline-card__year::after {
    left: -0.4em;
    right: -0.22em;
  }

  .timeline-card__year--numeric {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .timeline-card__year--word {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    padding: 0.32rem 0.52rem;
    border-radius: 999px;
    background: rgba(20, 230, 255, 0.1);
  }

  .timeline-card__panel {
    grid-row: auto;
    min-height: auto;
    max-width: none;
    width: min(calc(100% - 2.6rem), 18.6rem);
    margin: 0.12rem 0 0;
    padding: 0.72rem;
    gap: 0.72rem;
    border-radius: 1rem;
  }

  .timeline-card--left .timeline-card__panel {
    grid-column: 1;
    margin-left: 2.15rem;
    margin-right: auto;
  }

  .timeline-card--right .timeline-card__panel {
    grid-column: 1;
    margin-left: auto;
    margin-right: 0.15rem;
  }

  .timeline-card__visual {
    display: block;
    min-height: 5.2rem;
  }

  .timeline-card--word .timeline-card__copy {
    padding-top: 0.35rem;
  }

  .timeline-card__visual-label {
    left: 0.55rem;
    bottom: 0.5rem;
    padding: 0.2rem 0.45rem;
    font-size: 0.5rem;
  }

  .timeline-card__copy {
    gap: 0.58rem;
  }

  .timeline-card__meta {
    font-size: 0.56rem;
    letter-spacing: 0.17em;
  }

  .timeline-card__panel h3 {
    font-size: clamp(1rem, 4.6vw, 1.35rem);
    line-height: 0.98;
  }

  .timeline-card__panel .body-copy {
    font-size: 0.76rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .display-title {
    max-width: 100%;
  }

  .home-hero__name {
    font-size: clamp(3.2rem, 18vw, 4.85rem);
  }

  .home-hero__display {
    font-size: clamp(3.2rem, 18vw, 4.85rem);
  }

  .home-hero__orb {
    width: 4.9rem;
  }

  .home-hero__editorial {
    padding-top: 4.2rem;
  }

  .home-hero__portrait {
    min-height: 12rem;
  }

  .venture-badge {
    width: 100%;
    justify-content: center;
  }

  .hero-carousel {
    grid-auto-columns: minmax(88vw, 1fr);
  }

  .showcase-carousel__track {
    grid-auto-columns: minmax(92vw, 1fr);
  }

  .proof-strip__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

.page--mamibien {
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 132, 184, 0.16), transparent 26%),
    radial-gradient(circle at 84% 8%, rgba(89, 224, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #fffafc 0%, #fffdfb 54%, #fff8f1 100%);
}

.mamibien-hero,
.mamibien-flow,
.mamibien-proof,
.mamibien-cta {
  position: relative;
}

.mamibien-hero {
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-height) + 2.2rem) clamp(1.25rem, 4vw, 3rem) 5rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 126, 176, 0.18), transparent 24%),
    radial-gradient(circle at 80% 24%, rgba(96, 218, 255, 0.14), transparent 24%),
    linear-gradient(135deg, #080b11 0%, #111720 52%, #151019 100%);
}

[data-mamibien-layer] {
  transform: translate3d(var(--mamibien-parallax-x, 0px), var(--mamibien-parallax-y, 0px), 0)
    rotate(var(--mamibien-parallax-rotate, 0deg));
  will-change: transform;
}

.mamibien-hero__shell,
.mamibien-support__shell,
.mamibien-usecases__shell,
.mamibien-cta__shell {
  width: min(1240px, calc(100vw - 2.5rem));
  margin: 0 auto;
}

.mamibien-hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.mamibien-hero__ambient,
.mamibien-hero__mesh {
  position: absolute;
  pointer-events: none;
}

.mamibien-hero__ambient {
  z-index: 0;
  border-radius: 999px;
  filter: blur(18px);
}

.mamibien-hero__ambient--one {
  top: 8rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(255, 111, 170, 0.22) 0%, rgba(255, 111, 170, 0) 68%);
}

.mamibien-hero__ambient--two {
  right: -5rem;
  bottom: 3rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(255, 196, 91, 0.2) 0%, rgba(255, 196, 91, 0) 70%);
}

.mamibien-hero__mesh {
  z-index: 0;
  top: 4.5rem;
  right: 8%;
  width: 30rem;
  height: 30rem;
  border-radius: 2.2rem;
  opacity: 0.48;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.1) 72%, transparent 100%);
}

.mamibien-hero__badge {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.64rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 244, 250, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mamibien-hero__title {
  max-width: 8.8ch;
  color: #f8fbff;
}

.page--mamibien .lede {
  max-width: 58ch;
  color: rgba(233, 239, 246, 0.78);
}

.chip--soft {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 77, 141, 0.12);
  color: #bf2d70;
}

.mamibien-hero__visual {
  position: relative;
  min-height: 36rem;
  z-index: 1;
}

.mamibien-hero__poster,
.mamibien-hero__screen,
.mamibien-support__visual {
  margin: 0;
}

.mamibien-hero__poster {
  width: min(22rem, 88%);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  transform-origin: center center;
}

.mamibien-hero__poster img,
.mamibien-hero__screen img,
.mamibien-support__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mamibien-hero__screen {
  position: absolute;
  right: 0;
  bottom: 0.8rem;
  width: min(15rem, 42%);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
  border: 10px solid rgba(255, 255, 255, 0.96);
}

.mamibien-hero__floating-note {
  position: absolute;
  left: -1rem;
  bottom: 2.6rem;
  z-index: 2;
  display: grid;
  gap: 0.22rem;
  max-width: 15rem;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 20, 27, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.mamibien-hero__floating-note span {
  color: #8a4963;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mamibien-hero__floating-note strong {
  color: #13151a;
  font-size: 1rem;
  line-height: 1.15;
}

.action-row--mamibien {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.action-row--mamibien .button {
  min-width: 0;
}

.mamibien-flow {
  padding: 4.5rem 1.25rem 1rem;
}

.mamibien-flow__shell,
.mamibien-proof__shell,
.mamibien-cta__shell {
  width: min(1240px, calc(100vw - 2.5rem));
  margin: 0 auto;
}

.mamibien-flow__heading {
  width: min(52rem, 100%);
  margin-bottom: 2rem;
}

.mamibien-flow__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.82fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.mamibien-flow__steps {
  display: grid;
  gap: 0.85rem;
}

.mamibien-flow-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(16, 20, 27, 0.08);
}

.mamibien-flow-step:last-child {
  border-bottom: 1px solid rgba(16, 20, 27, 0.08);
}

.mamibien-flow-step__number {
  color: #e5579a;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1;
}

.mamibien-flow-step__copy h3 {
  margin: 0 0 0.35rem;
  color: #13151a;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.05;
}

.mamibien-flow__visual {
  position: relative;
  min-height: 31rem;
}

.mamibien-flow__screen {
  width: min(19rem, 100%);
  margin: 0 0 0 auto;
  border-radius: 2rem;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 84px rgba(20, 24, 34, 0.18);
}

.mamibien-flow__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mamibien-flow__card {
  position: absolute;
  left: 0;
  bottom: 2rem;
  display: grid;
  gap: 0.3rem;
  max-width: 16rem;
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(14, 17, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.mamibien-flow__card span {
  color: rgba(108, 230, 255, 0.8);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mamibien-flow__card strong {
  color: #f8fbff;
  font-size: 1.02rem;
  line-height: 1.15;
}

.mamibien-flow__card .body-copy {
  color: rgba(231, 238, 247, 0.76);
}

.mamibien-proof {
  margin-top: 1rem;
  padding: 4rem 1.25rem;
  background: linear-gradient(180deg, #101621 0%, #0b1018 100%);
  color: #eef4fb;
  overflow: hidden;
  isolation: isolate;
}

.mamibien-proof__ambient {
  position: absolute;
  left: -8rem;
  bottom: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(96, 218, 255, 0.16) 0%, rgba(96, 218, 255, 0) 72%);
  filter: blur(24px);
  pointer-events: none;
}

.mamibien-proof .eyebrow,
.mamibien-proof .section-title,
.mamibien-proof .body-copy {
  color: inherit;
}

.mamibien-proof__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mamibien-proof__list {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 0;
}

.mamibien-proof__item {
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mamibien-proof__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mamibien-proof__item dt {
  margin: 0 0 0.35rem;
  color: rgba(146, 223, 245, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mamibien-proof__item dd {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.35;
}

.mamibien-proof__visual {
  display: flex;
  justify-content: flex-end;
}

.mamibien-proof__device {
  width: min(18rem, 100%);
  margin: 0;
  border-radius: 2rem;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.28);
}

.mamibien-proof__device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mamibien-hero__floating-pill {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.18rem;
  min-width: 13.5rem;
  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 20, 27, 0.08);
  box-shadow: 0 22px 50px rgba(32, 29, 48, 0.12);
  backdrop-filter: blur(14px);
}

.mamibien-hero__floating-pill span,
.mamibien-support__floating-card span {
  color: #8a4963;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mamibien-hero__floating-pill strong,
.mamibien-support__floating-card strong {
  color: #13151a;
  font-size: 1rem;
  line-height: 1.15;
}

.mamibien-hero__floating-pill--status {
  top: 2.8rem;
  right: 2rem;
}

.mamibien-hero__floating-pill--support {
  left: -1.2rem;
  bottom: 4.5rem;
}

.mamibien-steps .section-heading,
.mamibien-features .section-heading,
.mamibien-faq .section-heading {
  width: min(1240px, calc(100vw - 2.5rem));
  margin: 0 auto 2rem;
}

.mamibien-steps__grid,
.mamibien-features__grid {
  width: min(1240px, calc(100vw - 2.5rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.mamibien-steps__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mamibien-features__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mamibien-step,
.mamibien-feature,
.mamibien-metric,
.mamibien-faq__item {
  border-radius: 1.5rem;
  border: 1px solid rgba(16, 20, 27, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 40px rgba(36, 44, 59, 0.08);
}

.mamibien-step,
.mamibien-feature {
  padding: 1.5rem;
}

.mamibien-step__number {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: #e53a82;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mamibien-step h3,
.mamibien-feature h3,
.mamibien-metric__value {
  margin: 0 0 0.7rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.05;
}

.mamibien-support {
  margin-top: 1rem;
  padding: 4rem 1.25rem;
  background: linear-gradient(180deg, #111726 0%, #0c121d 100%);
  color: #eef4fb;
  overflow: hidden;
  isolation: isolate;
}

.mamibien-support .eyebrow,
.mamibien-support .section-title,
.mamibien-support .body-copy {
  color: inherit;
}

.mamibien-support__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mamibien-support__ambient {
  position: absolute;
  right: -8rem;
  top: 4rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 196, 91, 0.12) 0%, rgba(255, 196, 91, 0) 72%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 1;
}

.mamibien-support__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.mamibien-metric {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.mamibien-metric__label {
  margin: 0 0 0.5rem;
  color: rgba(238, 244, 251, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mamibien-metric__value {
  margin: 0;
  color: #fff7fb;
}

.mamibien-support__visual-stack {
  position: relative;
  width: min(20rem, 100%);
  margin-left: auto;
}

.mamibien-support__visual {
  width: min(18rem, 100%);
  margin-left: auto;
  border-radius: 2rem;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.24);
}

.mamibien-support__floating-card {
  position: absolute;
  left: -3rem;
  bottom: 1.8rem;
  display: grid;
  gap: 0.18rem;
  min-width: 12rem;
  padding: 0.9rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.mamibien-usecases__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.mamibien-usecases__list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mamibien-usecases__list li {
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 20, 27, 0.08);
  box-shadow: 0 16px 36px rgba(36, 44, 59, 0.06);
}

.mamibien-faq__list {
  width: min(980px, calc(100vw - 2.5rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.mamibien-faq__item {
  padding: 1.25rem 1.35rem;
}

.mamibien-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.mamibien-faq__item summary::-webkit-details-marker {
  display: none;
}

.mamibien-faq__item p {
  margin: 0.9rem 0 0;
}

.mamibien-cta {
  padding-top: 0;
}

.mamibien-cta__shell {
  padding: 2rem 0 0;
  border-top: 1px solid rgba(16, 20, 27, 0.08);
}

.mamibien-cta__disclaimer {
  max-width: 70ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.mamibien-utility-links--footer {
  margin-top: 1.1rem;
}

.page--mamibien-v2 {
  background:
    radial-gradient(circle at 18% 0%, rgba(54, 221, 255, 0.14), transparent 24%),
    radial-gradient(circle at 80% 0%, rgba(255, 108, 173, 0.12), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #071019 42%, #f5f6f8 42%, #f5f6f8 100%);
}

.mamiscan2-hero,
.mamiscan2-proof,
.mamiscan2-cta {
  position: relative;
}

.mamiscan2-hero {
  min-height: 100vh;
  padding: calc(var(--header-height) + 1.8rem) 1.25rem 3.5rem;
  overflow: hidden;
  isolation: isolate;
}

.mamiscan2-hero__shell,
.mamiscan2-proof__shell,
.mamiscan2-cta__shell {
  width: min(1280px, calc(100vw - 2.5rem));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mamiscan2-hero__intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.mamiscan2-hero__intro .eyebrow {
  color: rgba(214, 227, 245, 0.8);
}

.mamiscan2-hero__badge {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(239, 245, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mamiscan2-hero__display {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 2rem;
}

.mamiscan2-hero__line {
  display: block;
  max-width: 12ch;
  color: #f8fbff;
  font-size: clamp(3.6rem, 10vw, 7.4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.mamiscan2-hero__line--two {
  color: #5ee5ff;
}

.mamiscan2-hero__glow,
.mamiscan2-hero__grid {
  position: absolute;
  pointer-events: none;
}

.mamiscan2-hero__glow {
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.86;
}

.mamiscan2-hero__glow--cyan {
  top: 5rem;
  left: -7rem;
  background: radial-gradient(circle, rgba(59, 228, 255, 0.26) 0%, rgba(59, 228, 255, 0) 70%);
}

.mamiscan2-hero__glow--pink {
  right: -7rem;
  bottom: 8rem;
  background: radial-gradient(circle, rgba(255, 91, 171, 0.22) 0%, rgba(255, 91, 171, 0) 70%);
}

.mamiscan2-hero__grid {
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black 0%, rgba(0, 0, 0, 0.32) 58%, transparent 88%);
}

.mamiscan2-card {
  --mamiscan2-mouse-x: 50%;
  --mamiscan2-mouse-y: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem;
  background:
    linear-gradient(145deg, #19326d 0%, #0b111d 42%, #0a0f18 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.58),
    inset 0 1px 1px rgba(255, 255, 255, 0.16),
    inset 0 -2px 8px rgba(0, 0, 0, 0.6);
}

.mamiscan2-card__sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(560px circle at var(--mamiscan2-mouse-x) var(--mamiscan2-mouse-y), rgba(255, 255, 255, 0.08) 0%, transparent 42%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.mamiscan2-card__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr) minmax(0, 0.62fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
  min-height: min(78vh, 760px);
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.mamiscan2-card__copy {
  position: relative;
  z-index: 2;
}

.mamiscan2-card__kicker {
  margin: 0 0 0.8rem;
  color: rgba(148, 229, 247, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mamiscan2-card__title {
  margin: 0 0 1rem;
  color: #fbfdff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.mamiscan2-card__copy .body-copy {
  max-width: 30ch;
  color: rgba(228, 238, 248, 0.74);
}

.action-row--mamiscan2 {
  margin-top: 1.5rem;
}

.mamiscan2-card__visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.mamiscan2-phone {
  position: relative;
  width: min(300px, 100%);
}

.mamiscan2-phone__bezel {
  position: relative;
  padding: 10px;
  border-radius: 2.8rem;
  background: #05060b;
  box-shadow:
    inset 0 0 0 2px #4b5563,
    inset 0 0 0 7px #030408,
    0 34px 80px rgba(0, 0, 0, 0.56);
}

.mamiscan2-phone__bezel::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 102px;
  height: 28px;
  border-radius: 999px;
  background: #020308;
  transform: translateX(-50%);
  z-index: 3;
}

.mamiscan2-phone__screen {
  overflow: hidden;
  border-radius: 2.2rem;
  background: #0b0f18;
  aspect-ratio: 1170 / 2532;
}

.mamiscan2-phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mamiscan2-card__metric {
  position: absolute;
  left: -1.4rem;
  bottom: 1.6rem;
  display: grid;
  gap: 0.22rem;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.mamiscan2-card__metric span,
.mamiscan2-floating-badge span {
  color: rgba(151, 229, 246, 0.78);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mamiscan2-card__metric strong {
  color: #f8fbff;
  font-size: 1rem;
}

.mamiscan2-card__brand-wrap {
  display: flex;
  justify-content: flex-end;
  align-self: start;
  position: relative;
  z-index: 2;
}

.mamiscan2-card__brand {
  margin: 0;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #97a4b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  max-width: 4.3ch;
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-align: right;
  text-wrap: balance;
}

.mamiscan2-floating-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.24rem;
  min-width: 12.5rem;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
}

.mamiscan2-floating-badge strong {
  color: #f8fbff;
  font-size: 0.98rem;
  line-height: 1.15;
}

.mamiscan2-floating-badge--one {
  top: 1.4rem;
  right: 1.4rem;
}

.mamiscan2-floating-badge--two {
  right: 14rem;
  bottom: 1.4rem;
}

.mamiscan2-proof {
  padding: 4.5rem 1.25rem 1rem;
}

.mamiscan2-proof__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.88fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.mamiscan2-proof__copy {
  width: min(36rem, 100%);
}

.mamiscan2-proof__list {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 0;
}

.mamiscan2-proof__item {
  padding: 1rem 0;
  border-top: 1px solid rgba(16, 20, 27, 0.08);
}

.mamiscan2-proof__item:last-child {
  border-bottom: 1px solid rgba(16, 20, 27, 0.08);
}

.mamiscan2-proof__item dt {
  margin: 0 0 0.4rem;
  color: #1398b5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mamiscan2-proof__item dd {
  margin: 0;
  color: #151922;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.4;
}

.mamiscan2-proof__visual {
  position: relative;
  min-height: 34rem;
}

.mamiscan2-proof__poster,
.mamiscan2-proof__screen {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 26px 68px rgba(14, 18, 28, 0.18);
}

.mamiscan2-proof__poster {
  width: min(23rem, 82%);
  border-radius: 2rem;
}

.mamiscan2-proof__poster img,
.mamiscan2-proof__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mamiscan2-proof__screen {
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: min(15rem, 42%);
  border-radius: 2rem;
  border: 8px solid rgba(255, 255, 255, 0.95);
}

.mamiscan2-cta {
  padding-top: 1rem;
}

.mamiscan2-cta__shell {
  padding: 2rem 0 0;
  border-top: 1px solid rgba(16, 20, 27, 0.08);
}

.mamiscan2-cta__copy {
  width: min(38rem, 100%);
}

.mamiscan2-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.mamiscan2-utility-links {
  margin-top: 1.2rem;
}

.page--mamibien-utility {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 108, 166, 0.12), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(255, 186, 84, 0.12), transparent 28%),
    linear-gradient(180deg, #fff8fb 0%, #fffdf9 46%, #fff7f0 100%);
}

.mamibien-utility-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.mamibien-utility-links__label {
  color: #7a435f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mamibien-utility-links__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
}

.mamibien-inline-link {
  color: #bf2d70;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
}

.mamibien-inline-link:hover {
  color: #e53a82;
}

.mamibien-legal-hero {
  padding: calc(var(--header-height) + 2rem) clamp(1.25rem, 4vw, 3rem) 2.5rem;
}

.mamibien-legal-hero__shell,
.mamibien-utility-section__shell,
.mamibien-utility-links-section__shell,
.mamibien-terms__shell {
  width: min(1240px, calc(100vw - 2.5rem));
  margin: 0 auto;
}

.mamibien-legal-hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.mamibien-legal-hero__title {
  max-width: 11ch;
  color: #13151a;
}

.mamibien-legal-summary,
.mamibien-utility-panel,
.mamibien-terms__article {
  border-radius: 1.5rem;
  border: 1px solid rgba(16, 20, 27, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(36, 44, 59, 0.08);
}

.mamibien-legal-summary {
  padding: 1.4rem;
}

.mamibien-legal-summary__icon {
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.1rem;
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(229, 58, 130, 0.16);
}

.mamibien-legal-summary__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mamibien-legal-summary__list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.mamibien-legal-summary__item {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(19, 21, 26, 0.04);
}

.mamibien-legal-summary__item p {
  margin: 0;
  color: #6a7180;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mamibien-legal-summary__item strong {
  color: #10141b;
  font-size: 1rem;
}

.mamibien-legal-summary__item--single {
  margin-top: 1rem;
}

.mamibien-utility-section {
  padding-top: 0;
}

.mamibien-utility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mamibien-utility-panel,
.mamibien-terms__article {
  padding: 1.5rem;
}

.mamibien-utility-panel h2,
.mamibien-terms__article h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.05;
}

.mamibien-terms__article h3 {
  margin: 1rem 0 0.6rem;
  color: #10141b;
  font-size: 1rem;
  line-height: 1.25;
}

.mamibien-utility-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: #4b5461;
}

.mamibien-utility-list--compact {
  margin-top: 1rem;
}

.mamibien-legal-note {
  max-width: 68ch;
  margin: 1rem 0 0;
  color: #616b78;
  font-size: 0.92rem;
  line-height: 1.6;
}

.mamibien-utility-links-section {
  padding-top: 0;
}

.mamibien-terms {
  padding-top: 0;
}

.mamibien-terms__shell {
  display: grid;
  gap: 1rem;
}

.mamibien-terms__article .body-copy + .body-copy {
  margin-top: 0.9rem;
}

.mamibien-terms__article .body-copy + .mamibien-utility-list,
.mamibien-terms__article .mamibien-utility-list + .body-copy,
.mamibien-terms__article h3 + .mamibien-utility-list,
.mamibien-terms__article h3 + .body-copy {
  margin-top: 0.9rem;
}

@media (max-width: 1080px) {
  .mamiscan2-card__layout,
  .mamibien-hero__shell,
  .mamibien-flow__grid,
  .mamibien-proof__shell,
  .mamibien-support__shell,
  .mamibien-usecases__shell,
  .mamibien-legal-hero__shell {
    grid-template-columns: 1fr;
  }

  .mamiscan2-card__brand-wrap {
    justify-content: flex-start;
  }

  .mamiscan2-card__brand {
    text-align: left;
  }

  .mamiscan2-floating-badge--two {
    right: 1.4rem;
    bottom: 7rem;
  }

  .mamiscan2-proof__shell {
    grid-template-columns: 1fr;
  }

  .mamiscan2-proof__visual {
    min-height: 28rem;
  }

  .mamibien-hero__visual {
    min-height: 31rem;
    max-width: 36rem;
    margin: 0 auto;
  }

  .mamibien-hero__floating-pill--support {
    left: 0.4rem;
    bottom: 1.6rem;
  }

  .mamibien-flow__visual,
  .mamibien-proof__visual {
    min-height: auto;
  }

  .mamibien-flow__screen,
  .mamibien-proof__device {
    margin: 0 auto;
  }

  .mamibien-proof__visual {
    justify-content: center;
  }

  .mamibien-support__visual {
    margin: 0;
  }

  .mamibien-support__visual-stack {
    margin: 0;
  }

  .mamibien-support__metrics,
  .mamibien-features__grid,
  .mamibien-utility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .mamiscan2-hero {
    padding-top: calc(var(--header-height) + 1.2rem);
    padding-bottom: 2.5rem;
  }

  .mamiscan2-hero__shell,
  .mamiscan2-proof__shell,
  .mamiscan2-cta__shell {
    width: min(100%, calc(100vw - 1.5rem));
  }

  .mamiscan2-hero__line {
    max-width: 10ch;
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .mamiscan2-card {
    border-radius: 2rem;
  }

  .mamiscan2-card__layout {
    min-height: auto;
    padding: 1.2rem;
  }

  .mamiscan2-card__visual {
    padding: 0.6rem 0 1rem;
  }

  .mamiscan2-phone {
    width: min(260px, 78vw);
  }

  .mamiscan2-card__metric,
  .mamiscan2-floating-badge {
    position: relative;
    inset: auto;
    min-width: 0;
  }

  .mamiscan2-card__metric {
    margin-top: -1rem;
    left: auto;
    bottom: auto;
  }

  .mamiscan2-floating-badge--one,
  .mamiscan2-floating-badge--two {
    margin-top: 0.85rem;
  }

  .mamiscan2-proof {
    padding: 3rem 0.75rem 0.5rem;
  }

  .mamiscan2-proof__visual {
    min-height: auto;
    display: grid;
    gap: 0.9rem;
  }

  .mamiscan2-proof__poster,
  .mamiscan2-proof__screen {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
  }

  .mamiscan2-cta__actions {
    flex-direction: column;
  }

  .mamibien-hero {
    padding-top: calc(var(--header-height) + 1.4rem);
  }

  .mamibien-hero__shell,
  .mamibien-flow__shell,
  .mamibien-proof__shell,
  .mamibien-legal-hero__shell,
  .mamibien-utility-section__shell,
  .mamibien-utility-links-section__shell,
  .mamibien-terms__shell,
  .mamibien-steps .section-heading,
  .mamibien-features .section-heading,
  .mamibien-faq .section-heading,
  .mamibien-steps__grid,
  .mamibien-features__grid,
  .mamibien-faq__list {
    width: min(100%, calc(100vw - 1.5rem));
  }

  .mamibien-hero__visual {
    min-height: auto;
    display: grid;
    gap: 0.85rem;
  }

  .mamibien-hero__mesh,
  .mamibien-hero__ambient--two {
    display: none;
  }

  .mamibien-hero__poster,
  .mamibien-hero__screen,
  .mamibien-support__visual {
    width: 100%;
    max-width: none;
  }

  .mamibien-hero__screen {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(82%, 20rem);
    margin-left: auto;
    border-width: 8px;
  }

  .mamibien-hero__floating-note {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin-top: -1rem;
  }

  .mamibien-flow {
    padding-top: 3rem;
  }

  .mamibien-flow__grid {
    grid-template-columns: 1fr;
  }

  .mamibien-flow__visual {
    min-height: auto;
    display: grid;
    gap: 0.9rem;
  }

  .mamibien-flow__screen {
    width: min(88%, 20rem);
  }

  .mamibien-flow__card {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
  }

  .mamibien-proof {
    padding: 3rem 0.75rem;
  }

  .mamibien-proof__shell {
    grid-template-columns: 1fr;
  }

  .mamibien-hero__floating-pill {
    position: relative;
    inset: auto;
    min-width: 0;
  }

  .mamibien-support__visual-stack {
    width: 100%;
  }

  .mamibien-support__floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .mamibien-steps__grid,
  .mamibien-features__grid,
  .mamibien-support__metrics,
  .mamibien-utility-grid {
    grid-template-columns: 1fr;
  }

  .mamibien-utility-links__items {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
}

.site-footer {
  width: 100%;
  margin-top: clamp(4.5rem, 9vw, 7rem);
  padding: 0;
  background: #f6f7f8;
  color: #111417;
  border-top: 1px solid rgba(17, 20, 23, 0.08);
  overflow: hidden;
}

.site-footer__shell {
  width: min(100%, 100rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 3vw, 2rem) clamp(1.7rem, 4vw, 2.4rem);
}

html.has-reveal .site-footer__shell[data-reveal] {
  opacity: 0;
  transform: translateY(56px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.has-reveal .site-footer__shell[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer__row--top {
  align-items: center;
}

.site-footer__brand-block {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.site-footer__brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.38rem;
  border: 2px solid currentColor;
  flex: 0 0 auto;
}

.site-footer__brand-copy {
  display: grid;
  gap: 0.2rem;
}

.site-footer__brand {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.site-footer__brand-tag {
  color: rgba(17, 20, 23, 0.6);
  font-size: 0.95rem;
  line-height: 1.4;
}

.site-footer__icon-links {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__icon-link {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 20, 23, 0.04);
  color: #111417;
  border: 1px solid rgba(17, 20, 23, 0.08);
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.site-footer__icon-link:hover {
  transform: translateY(-2px);
  background: #111417;
  color: #f6f7f8;
  border-color: #111417;
}

.site-footer__icon-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 230, 255, 0.2);
}

.site-footer__icon-link-mark {
  width: 1.15rem;
  height: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__icon-link-mark svg {
  width: 100%;
  height: 100%;
}

.site-footer__divider {
  width: 100%;
  height: 1px;
  margin: clamp(1.4rem, 3vw, 2rem) 0;
  background: rgba(17, 20, 23, 0.12);
}

.site-footer__meta {
  display: grid;
  gap: 0.25rem;
  color: rgba(17, 20, 23, 0.62);
  font-size: 0.98rem;
  line-height: 1.5;
}

.site-footer__meta p {
  margin: 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1.4rem;
}

.site-footer__links a {
  color: rgba(17, 20, 23, 0.88);
  font-size: 0.98rem;
  line-height: 1.4;
  transition: color var(--transition), opacity var(--transition);
}

.site-footer__links a:hover {
  color: rgba(17, 20, 23, 1);
}

@media (max-width: 820px) {
  .site-footer__row,
  .site-footer__row--top {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__icon-links {
    gap: 0.65rem;
  }

  .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-footer {
    margin-top: 3.5rem;
  }

  .site-footer__shell {
    padding: 1.5rem 1rem 1.35rem;
  }

  .site-footer__brand-block {
    gap: 0.85rem;
  }

  .site-footer__brand-tag,
  .site-footer__meta,
  .site-footer__links a {
    font-size: 0.92rem;
  }

  .site-footer__icon-link {
    width: 2.75rem;
    height: 2.75rem;
  }
}

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

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
