.story-page {
  --story-ink: #050505;
  --story-teal: #073536;
  --story-mint: #30efd2;
  min-height: 100vh;
  background: #fff;
  color: #050505;
  font-family: 'Manrope', Arial, sans-serif;
}

.story-page,
.story-page * {
  box-sizing: border-box;
}

.story-page a {
  color: inherit;
  text-decoration: none;
}

.story-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  background: #050505;
  color: #fff;
}

.story-nav__inner {
  width: min(100%, 1280px);
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.story-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.story-brand img {
  width: auto;
  height: 40px;
  object-fit: initial;
  border-radius: 999px;
  background: #fff;
  padding: 4px;
}

.story-brand__name {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .01em;
}

.story-brand__meta {
  color: rgba(255, 255, 255, .48);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.story-nav__links > a,
.story-nav__menu summary {
  color: rgba(255, 255, 255, .72);
  cursor: pointer;
  transition: color .2s ease;
}

.story-nav__links > a:hover,
.story-nav__menu summary:hover {
  color: #fff;
}

.story-nav__menu {
  position: relative;
}

.story-nav__menu summary {
  list-style: none;
}

.story-nav__menu summary::-webkit-details-marker {
  display: none;
}

.story-nav__menu summary::after {
  content: '⌄';
  display: inline-block;
  margin-left: 6px;
  font-size: 13px;
  transform: translateY(-1px);
}

.story-nav__menu[open] summary::after {
  transform: rotate(180deg) translateY(-2px);
}

.story-nav__dropdown {
  position: absolute;
  top: calc(100% + 18px);
  right: -18px;
  width: 250px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(5, 5, 5, .97);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.story-nav__dropdown a {
  display: block;
  padding: 11px 12px;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.story-nav__dropdown a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .09);
}

.story-nav__call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .86);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.story-nav__call:hover {
  background: #fff;
  color: #050505;
}

.story-nav__call,
.story-nav__call:visited {
  background: #050505 !important;
  color: #fff !important;
}

.story-nav__call:hover,
.story-nav__call:focus-visible {
  background: #fff !important;
  color: #050505 !important;
}

.story-progress {
  display: none;
}

.story-hero {
  position: relative;
  min-height: max(720px, calc(100svh - 88px));
  overflow: hidden;
  padding: 132px 24px 64px;
  background: #050505;
  color: #fff;
}

.story-hero__grid {
  position: relative;
  z-index: 1;
  width: min(100%, 1312px);
  min-height: calc(100svh - 176px);
  margin: 0 auto;
  display: grid;
  align-items: end;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
}

.story-hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-bottom: 10px;
  animation: story-rise .65s ease both;
}

.story-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--story-mint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.story-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: currentColor;
}

.story-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0;
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 700;
  line-height: .84;
  letter-spacing: -.08em;
  overflow-wrap: normal;
  text-wrap: balance;
}

.story-page--long-title .story-hero h1 {
  font-size: clamp(4rem, 7vw, 8rem);
}

.story-hero__kicker {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: -.035em;
}

.story-scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.story-scroll-link__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .6);
}

.story-hero__media {
  position: relative;
  z-index: 1;
  height: min(67svh, 780px);
  min-height: 340px;
  overflow: hidden;
  background: var(--story-teal);
  animation: story-media-in .9s ease both;
}

.story-hero__media img {
  width: 100%;
  height: calc(100% + 48px);
  object-fit: cover;
  object-position: center;
  transition: transform .12s linear;
}

.story-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, .05) 65%, transparent);
  pointer-events: none;
}

.story-hero__label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  color: rgba(255, 255, 255, .8);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.story-section {
  padding: 96px 24px;
}

.story-section__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.story-intro {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 96px;
}

.story-section__side {
  position: sticky;
  top: 122px;
  align-self: start;
}

.story-section__side-label {
  margin: 0;
  color: var(--story-teal);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.story-section__side-title {
  max-width: 260px;
  margin: 24px 0 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: .95;
  letter-spacing: -.06em;
}

.story-intro__body {
  max-width: 720px;
}

.story-intro__lead {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.story-intro__detail {
  max-width: 560px;
  margin: 32px 0 0;
  color: rgba(0, 0, 0, .62);
  font-size: 16px;
  line-height: 2;
}

.story-intro__note {
  margin: 48px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .15);
  color: rgba(0, 0, 0, .45);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.story-process {
  position: relative;
  overflow: hidden;
  padding: 96px 24px 120px;
  background: #050505;
  color: #fff;
  transition: background-color .35s ease;
}

.story-process__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.story-process__header p {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.story-process__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 96px;
  margin-top: 72px;
}

.story-process__media {
  position: sticky;
  top: 122px;
  align-self: start;
}

.story-process__image {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--story-teal);
}

.story-process__image img {
  width: 100%;
  height: calc(100% + 48px);
  object-fit: cover;
  transition: transform .12s linear;
}

.story-process__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent 55%);
}

.story-process__image-label {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: rgba(255, 255, 255, .8);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.story-process__meter {
  height: 1px;
  margin-top: 24px;
  background: rgba(255, 255, 255, .22);
}

.story-process__meter span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--story-mint);
  box-shadow: 0 0 18px rgba(48, 239, 210, .9);
  transform-origin: left;
}

.story-process__meter-label {
  display: flex;
  min-height: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  color: #6b7280;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story-process__meter-label.is-complete {
  color: var(--story-mint);
}

.story-process__steps {
  display: grid;
  gap: 72px;
}

.story-process__step {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.story-process__step-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
  color: #6b7280;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .2em;
}

.story-process__step-meta::after {
  content: '';
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, .1);
}

.story-process__step h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.055em;
}

.story-process__step p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
  line-height: 1.75;
}

.story-points {
  padding: 72px 24px;
  background: var(--story-teal);
  color: #fff;
}

.story-points__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr .8fr;
  gap: 96px;
}

.story-points__list {
  display: grid;
  gap: 0;
}

.story-points__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  font-size: 17px;
  line-height: 1.5;
}

.story-check {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--story-mint);
  color: var(--story-mint);
}

.story-stats {
  display: grid;
  align-self: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}

.story-stat {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.story-stat__value {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.06em;
}

.story-stat__label {
  margin-top: 8px;
  color: rgba(255, 255, 255, .58);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.story-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 88px 24px;
  background: #050505;
  color: #fff;
}

.story-cta__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.story-cta__label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .55);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.story-cta h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.055em;
}

.story-cta__button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding: 17px 24px;
  border: 1px solid #fff;
  background: #fff;
  color: #050505;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.story-cta__button:hover {
  background: transparent;
  color: #fff;
}

.story-cta__button,
.story-cta__button:visited {
  background: #fff !important;
  color: #050505 !important;
}

.story-cta__button:hover,
.story-cta__button:focus-visible {
  background: transparent !important;
  color: #fff !important;
}

.story-cookie {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px max(24px, calc((100vw - 1024px) / 2));
  background: #fff;
  color: #111;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, .08);
}

.story-cookie__copy {
  max-width: 680px;
}

.story-cookie__copy strong {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
}

.story-cookie__copy p {
  margin: 0;
  color: rgba(0, 0, 0, .62);
  font-size: 12px;
  line-height: 1.55;
}

.story-cookie__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
}

.story-cookie__actions button {
  padding: 11px 22px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.story-cookie__actions button:last-child {
  background: #050505;
  color: #fff;
}

.story-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@keyframes story-rise {
  from { opacity: 1; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes story-media-in {
  from { opacity: 1; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 900px) {
  .story-nav__inner {
    width: min(100%, 720px);
    padding-right: 32px;
    padding-left: 32px;
  }

  .story-nav__links {
    gap: 16px;
  }

  .story-nav__call {
    padding: 10px 12px;
  }

  .story-hero {
    min-height: auto;
    padding: 132px 20px 56px;
  }

  .story-hero__grid,
  .story-intro,
  .story-process__grid,
  .story-points__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-hero__grid {
    min-height: auto;
  }

  .story-hero__media {
    height: 56svh;
  }

  .story-section__side,
  .story-process__media {
    position: static;
  }

  .story-process__image {
    height: 420px;
  }

  .story-points {
    padding: 64px 24px;
  }

  .story-stats {
    padding-top: 0;
  }

  .story-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-cookie {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
  }
}

@media (max-width: 620px) {
  .story-nav__inner {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .story-nav {
    height: 76px;
  }

  .story-progress {
    display: none;
  }

  .story-nav__links > a,
  .story-nav__menu {
    display: none;
  }

  .story-brand__name {
    font-size: 14px;
  }

  .story-brand__meta {
    display: none;
  }

  .story-hero {
    padding-top: 112px;
  }

  .story-hero h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .story-page--long-title .story-hero h1 {
    font-size: clamp(48px, 14vw, 76px);
  }

  .story-section,
  .story-process {
    padding-right: 20px;
    padding-left: 20px;
  }

  .story-points {
    padding: 56px 20px;
  }

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

  .story-stat {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
  }

  .story-cookie__actions {
    width: 100%;
  }

  .story-cookie__actions button {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-page *,
  .story-page *::before,
  .story-page *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}