:root {
    color-scheme: dark;
    --ink: #090c0d;
    --ink-soft: #111719;
    --ink-green: #132722;
    --paper: #f2efe7;
    --paper-deep: #d8d2c6;
    --white: #fffef9;
    --muted: #aab3b5;
    --muted-dark: #626e70;
    --line: rgba(255, 255, 255, 0.18);
    --line-dark: rgba(9, 12, 13, 0.2);
    --teal: #48d7bb;
    --teal-dark: #247b68;
    --amber: #efb45f;
    --blue: #8dbfe4;
    --green: #9cc276;
    --red: #db766d;
    --max-width: 1320px;
    --page-pad: 64px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--white);
    font-family: "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

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

button,
a {
    color: inherit;
    font: inherit;
}

button {
    letter-spacing: 0;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
p,
blockquote {
    overflow-wrap: break-word;
}

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

h1,
h2,
h3 {
    margin-bottom: 0;
    letter-spacing: 0;
}

h2 {
    font-size: 66px;
    font-weight: 690;
    line-height: 1.03;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    border: 1px solid var(--ink);
    background: var(--white);
    color: var(--ink);
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

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

.page-progress {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
}

.page-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--teal);
    box-shadow: 0 0 18px rgba(72, 215, 187, 0.45);
}

.top-bar {
    position: fixed;
    z-index: 180;
    top: 22px;
    right: 24px;
    left: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    pointer-events: none;
}

.chapter-status,
.sound-control {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(9, 12, 13, 0.78);
    color: var(--white);
    backdrop-filter: blur(14px);
    pointer-events: auto;
}

.chapter-status {
    display: flex;
    min-width: 164px;
    min-height: 52px;
    padding: 9px 14px;
    flex-direction: column;
    justify-content: center;
}

.chapter-status span {
    color: var(--teal);
    font-size: 10px;
    font-variant-numeric: tabular-nums;
}

.chapter-status strong {
    margin-top: 3px;
    font-size: 13px;
    font-weight: 650;
}

.sound-control {
    display: inline-flex;
    min-width: 146px;
    min-height: 52px;
    padding: 7px 13px;
    align-items: center;
    gap: 11px;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.sound-control:hover,
.sound-control:focus-visible {
    border-color: var(--teal);
    background: var(--ink);
}

.sound-control[aria-pressed="true"] {
    border-color: rgba(72, 215, 187, 0.7);
}

.sound-control svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--teal);
}

.sound-control span {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sound-control strong {
    font-size: 13px;
    line-height: 1.2;
}

.sound-control small {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.2;
}

.journey-nav {
    position: fixed;
    z-index: 170;
    top: 50%;
    right: 24px;
    display: flex;
    width: 118px;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(9, 12, 13, 0.72);
    backdrop-filter: blur(14px);
    transform: translateY(-50%);
}

.journey-nav a {
    position: relative;
    display: grid;
    min-height: 43px;
    padding: 0 10px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ba5a7;
    grid-template-columns: 24px 1fr;
    transition: background 180ms ease, color 180ms ease;
}

.journey-nav a:last-child {
    border-bottom: 0;
}

.journey-nav a::before {
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    width: 3px;
    background: var(--teal);
    content: "";
    opacity: 0;
    transform: scaleY(0.3);
    transition: opacity 180ms ease, transform 180ms ease;
}

.journey-nav a:hover,
.journey-nav a:focus-visible,
.journey-nav a.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.journey-nav a.is-active::before {
    opacity: 1;
    transform: scaleY(1);
}

.journey-nav span {
    color: var(--teal);
    font-size: 9px;
    font-variant-numeric: tabular-nums;
}

.journey-nav strong {
    font-size: 10px;
    font-weight: 600;
}

.chapter {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 0;
}

.section-inner {
    position: relative;
    z-index: 3;
    width: min(calc(100% - (var(--page-pad) * 2)), var(--max-width));
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 720;
    line-height: 1.3;
    text-transform: uppercase;
}

.wide-heading {
    max-width: 1040px;
}

.section-lead {
    max-width: 770px;
    margin: 28px 0 0;
    color: #b9c1c3;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.5;
}

.hero {
    display: flex;
    min-height: 92svh;
    align-items: flex-end;
    background: var(--ink);
}

.hero-media,
.hero-shade,
.technical-grid {
    position: absolute;
    inset: 0;
}

.hero-media {
    --parallax-y: 0px;
    background-image: url("/assets/hero.webp");
    background-position: center;
    background-size: cover;
    filter: brightness(0.58) saturate(0.72);
    opacity: 0.76;
    transform: scale(1.045) translate3d(0, var(--parallax-y), 0);
    transition: filter 1600ms ease, opacity 1600ms ease, transform 2400ms cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: transform;
}

.hero-shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 7, 8, 0.95) 0%, rgba(4, 7, 8, 0.72) 47%, rgba(4, 7, 8, 0.08) 78%),
        linear-gradient(0deg, rgba(4, 7, 8, 0.78) 0%, rgba(4, 7, 8, 0) 48%);
}

.technical-grid {
    z-index: 2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-position: center;
    background-size: 96px 96px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

body.journey-started .hero-media {
    filter: brightness(0.68) saturate(0.9);
    opacity: 0.93;
    transform: scale(1) translate3d(0, var(--parallax-y), 0);
}

.hero-coordinate {
    position: absolute;
    z-index: 4;
    top: 98px;
    right: var(--page-pad);
    left: var(--page-pad);
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.52);
    font-size: 9px;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: min(calc(100% - (var(--page-pad) * 2)), var(--max-width));
    margin: 0 auto;
    padding: 140px 0 104px;
}

.hero-eyebrow {
    color: var(--amber);
}

.hero h1 {
    max-width: 990px;
    font-size: 104px;
    font-weight: 760;
    line-height: 0.92;
}

.name-line {
    display: block;
    overflow: hidden;
}

.name-line > span {
    display: block;
    transform: translateY(112%);
    transition: transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.name-line:nth-child(2) > span {
    color: var(--paper-deep);
    transition-delay: 130ms;
}

body.is-ready .name-line > span {
    transform: translateY(0);
}

.hero-statement {
    max-width: 760px;
    margin: 30px 0 0;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.42;
}

.hero-intro {
    max-width: 650px;
    margin: 18px 0 0;
    color: #bdc5c6;
    font-size: 16px;
    line-height: 1.65;
}

.primary-action,
.future-action,
.replay-action {
    display: inline-flex;
    min-height: 56px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid var(--white);
    border-radius: 4px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    font-size: 14px;
    font-weight: 720;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-action {
    margin-top: 30px;
}

.primary-action:hover,
.primary-action:focus-visible {
    border-color: var(--teal);
    background: var(--teal);
    transform: translateY(-2px);
}

.primary-action svg,
.future-action svg,
.replay-action svg {
    width: 18px;
    height: 18px;
}

.journey-meta {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
}

.hero-index {
    position: absolute;
    z-index: 4;
    right: var(--page-pad);
    bottom: 20px;
    left: var(--page-pad);
    display: grid;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-index span:last-child {
    color: var(--amber);
}

.scroll-cue {
    position: absolute;
    z-index: 5;
    right: var(--page-pad);
    bottom: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
}

.scroll-cue svg {
    width: 16px;
    height: 16px;
    animation: cueMove 1400ms ease-in-out infinite;
}

.story-scroll {
    min-height: 190svh;
}

.origin {
    overflow: visible;
    background: #0c1112;
}

.origin-sticky {
    position: sticky;
    top: 0;
    min-height: 100svh;
    overflow: hidden;
}

.origin-media,
.origin-shade {
    position: absolute;
    inset: 0;
}

.origin-media {
    --parallax-y: 0px;
    background-image: url("/assets/origin.webp");
    background-position: center;
    background-size: cover;
    transform: scale(1.06) translate3d(0, var(--parallax-y), 0);
    will-change: transform;
}

.origin-shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7, 11, 12, 0.95) 0%, rgba(7, 11, 12, 0.7) 42%, rgba(7, 11, 12, 0.18) 76%),
        linear-gradient(0deg, rgba(7, 11, 12, 0.9) 0%, rgba(7, 11, 12, 0) 60%);
}

.origin-content {
    min-height: 100svh;
}

.origin-heading {
    position: absolute;
    top: 13svh;
    left: 0;
    max-width: 600px;
}

.origin-heading h2 {
    font-size: 72px;
}

.origin-heading > p:last-child {
    max-width: 540px;
    margin: 24px 0 0;
    color: #c2c9ca;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.55;
}

.origin-steps {
    position: absolute;
    z-index: 3;
    top: 24svh;
    right: 0;
    width: 430px;
}

.origin-step {
    display: grid;
    min-height: 68px;
    padding: 17px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(8, 12, 13, 0.3);
    color: rgba(255, 255, 255, 0.48);
    grid-template-columns: 42px minmax(0, 1fr);
    transition: min-height 420ms ease, background 420ms ease, border-color 420ms ease, color 420ms ease;
}

.origin-step:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.origin-step .step-index {
    padding-top: 3px;
    color: inherit;
    font-size: 10px;
    font-variant-numeric: tabular-nums;
}

.origin-step h3 {
    font-size: 20px;
    line-height: 1.25;
}

.origin-step p {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    color: #bec6c7;
    font-size: 14px;
    line-height: 1.55;
    opacity: 0;
    transition: max-height 420ms ease, margin 420ms ease, opacity 300ms ease;
}

.origin-step.is-active {
    min-height: 132px;
    border-color: rgba(239, 180, 95, 0.72);
    background: rgba(8, 12, 13, 0.88);
    color: var(--amber);
}

.origin-step.is-active p {
    max-height: 100px;
    margin-top: 10px;
    opacity: 1;
}

.origin-meter {
    position: absolute;
    right: 0;
    bottom: 15svh;
    width: 430px;
}

.origin-meter-labels {
    display: flex;
    margin-bottom: 9px;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
}

.origin-meter-track {
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.origin-meter-track span {
    display: block;
    width: 33.333%;
    height: 100%;
    background: var(--amber);
    transition: width 420ms ease;
}

.origin-quote {
    position: absolute;
    bottom: 8svh;
    left: 0;
    max-width: 630px;
    margin: 0;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.45;
}

.ecosystem {
    min-height: 1320px;
    padding: 138px 0 110px;
    background: var(--ink-soft);
}

.ecosystem .wide-heading {
    padding-right: 120px;
}

.ecosystem-map {
    position: relative;
    min-height: 800px;
    margin-top: 90px;
}

.connection-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.connection-map path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.34);
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    stroke-linecap: round;
    stroke-width: 1.4;
    transition: stroke-dashoffset 1300ms cubic-bezier(0.2, 0.7, 0.2, 1) 280ms;
}

.connection-map circle {
    fill: var(--teal);
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.ecosystem-map.is-visible .connection-map path {
    stroke-dashoffset: 0;
}

.ecosystem-map.is-visible .connection-map circle {
    animation: coreSignal 1800ms ease-out 1000ms infinite;
}

.ecosystem-core {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: flex;
    width: 154px;
    height: 154px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--teal);
    background: var(--ink);
    color: var(--white);
    transform: translate(-50%, -50%) rotate(45deg);
}

.ecosystem-core > * {
    transform: rotate(-45deg);
}

.ecosystem-core span {
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
}

.ecosystem-core strong {
    margin-top: 5px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
}

.company {
    --rx: 0deg;
    --ry: 0deg;
    --mx: 50%;
    --my: 50%;
    position: absolute;
    z-index: 2;
    width: min(38%, 430px);
    min-height: 256px;
    padding: 27px 30px 30px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background:
        radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.09), transparent 32%),
        rgba(12, 17, 19, 0.94);
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    transition: border-color 180ms ease, transform 120ms ease;
    will-change: transform;
}

.company::before {
    position: absolute;
    top: -1px;
    right: -1px;
    left: -1px;
    height: 3px;
    background: var(--company-accent);
    content: "";
    transform: scaleX(0.16);
    transform-origin: left;
    transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.company:hover,
.company:focus-within {
    border-color: rgba(255, 255, 255, 0.34);
}

.company:hover::before,
.company:focus-within::before,
.ecosystem-map.is-visible .company::before {
    transform: scaleX(1);
}

.company-orion {
    --company-accent: var(--teal);
    top: 0;
    left: 0;
}

.company-pack {
    --company-accent: var(--amber);
    top: 0;
    right: 0;
}

.company-lab {
    --company-accent: var(--blue);
    bottom: 0;
    left: 0;
}

.company-akz {
    --company-accent: var(--green);
    right: 0;
    bottom: 0;
}

.company-topline {
    display: flex;
    margin-bottom: 22px;
    justify-content: space-between;
    color: var(--muted);
    font-size: 9px;
}

.company-topline span:first-child {
    color: var(--company-accent);
}

.company-icon {
    display: grid;
    width: 40px;
    height: 40px;
    margin-bottom: 22px;
    place-items: center;
    border: 1px solid var(--company-accent);
    color: var(--company-accent);
    transform: translateZ(18px);
}

.company-icon svg {
    width: 20px;
    height: 20px;
}

.company h3 {
    font-size: 25px;
    line-height: 1.15;
    transform: translateZ(12px);
}

.company > p {
    max-width: 365px;
    margin: 15px 0 0;
    color: #bbc3c4;
    font-size: 15px;
    line-height: 1.58;
}

.system-note {
    max-width: 850px;
    margin: 64px 0 0 auto;
    padding: 24px 0 0 88px;
    border-top: 1px solid var(--line);
    color: #d0d5d5;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.5;
}

.principle {
    display: flex;
    min-height: 122svh;
    align-items: center;
    background: var(--ink-green);
}

.principle-grid,
.principle-scan {
    position: absolute;
    inset: 0;
}

.principle-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
}

.principle-grid::before,
.principle-grid::after {
    position: absolute;
    border: 1px solid rgba(72, 215, 187, 0.2);
    content: "";
}

.principle-grid::before {
    top: 14%;
    right: 10%;
    width: 220px;
    height: 220px;
    transform: rotate(45deg);
}

.principle-grid::after {
    right: 18%;
    bottom: 12%;
    width: 120px;
    height: 120px;
}

.principle-scan {
    width: 1px;
    background: rgba(72, 215, 187, 0.32);
    box-shadow: 0 0 28px rgba(72, 215, 187, 0.2);
    animation: scanField 11s linear infinite;
}

.principle-layout {
    display: grid;
    padding: 138px 0 120px;
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.75fr);
    gap: 90px;
}

.principle-heading h2 {
    max-width: 760px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.16;
}

.principle-heading h2 span {
    display: block;
    margin-top: 16px;
    color: var(--teal);
}

.principle-heading > p:last-child {
    max-width: 700px;
    margin: 36px 0 0;
    color: #bec9c6;
    font-size: 17px;
    line-height: 1.7;
}

.principle-sequence {
    border-bottom: 1px solid var(--line);
}

.principle-item {
    position: relative;
    display: grid;
    min-height: 142px;
    padding: 24px 8px 24px 0;
    align-content: center;
    border-top: 1px solid var(--line);
    grid-template-columns: 42px minmax(0, 1fr);
}

.principle-item::before {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 400ms ease;
}

.principle-item:hover::before {
    transform: scaleX(1);
}

.principle-item > span {
    position: relative;
    z-index: 1;
    color: var(--teal);
    font-size: 10px;
}

.principle-item strong,
.principle-item small {
    position: relative;
    z-index: 1;
    grid-column: 2;
}

.principle-item strong {
    font-size: 19px;
    line-height: 1.35;
}

.principle-item small {
    margin-top: 8px;
    color: #9fadaa;
    font-size: 13px;
    line-height: 1.5;
}

.principle-after {
    max-width: 690px;
    margin: 76px 0 0;
    padding-left: 34px;
    border-left: 2px solid var(--amber);
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.5;
}

.growth {
    min-height: 128svh;
    background: var(--ink);
}

.growth-media,
.growth-shade {
    position: absolute;
    inset: -4% 0;
}

.growth-media {
    --parallax-y: 0px;
    background-image: url("/assets/tree.webp");
    background-position: center;
    background-size: cover;
    transform: scale(1.08) translate3d(0, var(--parallax-y), 0);
    will-change: transform;
}

.growth-shade {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 8, 9, 0.82) 0%, rgba(5, 8, 9, 0.18) 34%, rgba(5, 8, 9, 0.62) 100%),
        linear-gradient(90deg, rgba(5, 8, 9, 0.42), transparent 65%);
}

.growth-content {
    min-height: 128svh;
    padding: 110px 0 84px;
}

.growth .wide-heading {
    position: relative;
    z-index: 5;
    max-width: 980px;
}

.growth .section-lead {
    max-width: 710px;
    color: #d4d8d7;
}

.tree-stage {
    --tree-progress: 0;
    position: relative;
    z-index: 3;
    min-height: 690px;
    margin-top: 42px;
}

.tree-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.tree-connections path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.72);
    stroke-dasharray: 1;
    stroke-dashoffset: calc(1 - var(--tree-progress));
    stroke-linecap: round;
    stroke-width: 1.6;
}

.tree-connections .tree-trunk {
    stroke: var(--paper);
    stroke-width: 2.4;
}

.tree-connections .tree-branch-new {
    stroke: var(--amber);
    stroke-width: 2.8;
}

.branch-label {
    position: absolute;
    display: flex;
    width: 232px;
    min-height: 64px;
    padding: 11px 14px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border-left: 2px solid rgba(255, 255, 255, 0.52);
    background: rgba(6, 9, 10, 0.82);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.tree-stage.has-grown .branch-label {
    opacity: 1;
    transform: translateY(0);
}

.branch-label span {
    color: var(--muted);
    font-size: 9px;
}

.branch-label strong {
    font-size: 14px;
    line-height: 1.3;
}

.branch-orion {
    top: 26%;
    left: 2%;
    transition-delay: 180ms;
}

.branch-pack {
    top: 9%;
    left: 21%;
    transition-delay: 340ms;
}

.branch-lab {
    top: 10%;
    right: 15%;
    transition-delay: 500ms;
}

.branch-akz {
    top: 31%;
    right: 0;
    transition-delay: 660ms;
}

.branch-label.branch-new {
    top: 0;
    left: 55%;
    width: 286px;
    border: 1px solid rgba(239, 180, 95, 0.75);
    border-left: 3px solid var(--amber);
    background: rgba(6, 9, 10, 0.94);
    transform: translate(-50%, 14px);
    transition-delay: 900ms;
}

.tree-stage.has-grown .branch-label.branch-new {
    transform: translate(-50%, 0);
}

.branch-label.branch-new span {
    color: var(--amber);
}

.branch-label.branch-new strong {
    font-size: 18px;
}

.growth-ending {
    position: relative;
    z-index: 4;
    display: grid;
    max-width: 760px;
    margin: -40px auto 0;
    padding: 24px 0;
    align-items: start;
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(7, 10, 11, 0.4);
    grid-template-columns: 150px minmax(0, 1fr);
}

.growth-ending span {
    color: var(--amber);
    font-size: 10px;
    text-transform: uppercase;
}

.growth-ending p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.45;
}

.pause {
    display: flex;
    min-height: 112svh;
    align-items: center;
    background: var(--paper);
    color: var(--ink);
}

.pause-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(9, 12, 13, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 12, 13, 0.05) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
}

.pause-layout {
    padding: 130px 0 110px;
}

.pause .eyebrow {
    color: var(--teal-dark);
}

.pause h2 {
    max-width: 1080px;
}

.pause-lead {
    max-width: 760px;
    margin: 34px 0 0;
    color: #3d484a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.55;
}

.distance-track {
    margin-top: 92px;
}

.distance-line {
    height: 3px;
    background: rgba(9, 12, 13, 0.15);
}

.distance-line span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--teal-dark);
    transition: width 1800ms cubic-bezier(0.2, 0.7, 0.2, 1) 300ms;
}

.distance-track.is-visible .distance-line span {
    width: 100%;
}

.distance-points {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.distance-points div {
    position: relative;
    min-height: 108px;
    padding: 22px 18px 14px 0;
    border-right: 1px solid var(--line-dark);
    opacity: 0;
    transform: translateY(12px);
}

.distance-points div::before {
    position: absolute;
    top: -7px;
    left: -1px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--teal-dark);
    background: var(--paper);
    content: "";
    transform: rotate(45deg);
}

.distance-points div:last-child {
    padding-left: 18px;
    border-right: 0;
}

.distance-points div:not(:first-child) {
    padding-left: 18px;
}

.distance-track.is-visible .distance-points div {
    animation: distancePoint 520ms ease forwards;
}

.distance-track.is-visible .distance-points div:nth-child(1) {
    animation-delay: 300ms;
}

.distance-track.is-visible .distance-points div:nth-child(2) {
    animation-delay: 560ms;
}

.distance-track.is-visible .distance-points div:nth-child(3) {
    animation-delay: 820ms;
}

.distance-track.is-visible .distance-points div:nth-child(4) {
    animation-delay: 1080ms;
}

.distance-track.is-visible .distance-points div:nth-child(5) {
    animation-delay: 1340ms;
}

.distance-points span {
    display: block;
    margin-bottom: 20px;
    color: var(--muted-dark);
    font-size: 10px;
}

.distance-points strong {
    font-size: 15px;
    line-height: 1.35;
}

.pause-quote {
    max-width: 860px;
    margin: 72px 0 0 auto;
    padding-left: 34px;
    border-left: 3px solid var(--amber);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.5;
}

.finale {
    position: relative;
    display: flex;
    min-height: 118svh;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
    isolation: isolate;
}

.finale-lines {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.045) 50%, transparent 50.2%),
        linear-gradient(0deg, transparent 49.8%, rgba(255, 255, 255, 0.035) 50%, transparent 50.2%);
    background-size: 160px 160px;
    opacity: 0.7;
    transition: opacity 900ms ease;
}

.finale.future-opened .finale-lines {
    opacity: 0.35;
}

.finale-frame {
    position: absolute;
    z-index: 2;
    inset: 76px 54px 52px;
    pointer-events: none;
}

.frame-line {
    position: absolute;
    display: block;
    background: rgba(255, 255, 255, 0.24);
}

.frame-top,
.frame-bottom {
    right: 0;
    left: 0;
    height: 1px;
    transform: scaleX(0);
}

.frame-right,
.frame-left {
    top: 0;
    bottom: 0;
    width: 1px;
    transform: scaleY(0);
}

.frame-top {
    top: 0;
    transform-origin: left;
}

.frame-right {
    right: 0;
    transform-origin: top;
}

.frame-bottom {
    bottom: 0;
    transform-origin: right;
}

.frame-left {
    left: 0;
    transform-origin: bottom;
}

.finale.is-active .frame-top,
.finale.is-active .frame-bottom {
    animation: frameHorizontal 900ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.finale.is-active .frame-right,
.finale.is-active .frame-left {
    animation: frameVertical 900ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.finale.is-active .frame-right {
    animation-delay: 520ms;
}

.finale.is-active .frame-bottom {
    animation-delay: 1040ms;
}

.finale.is-active .frame-left {
    animation-delay: 1560ms;
}

.project-ticker {
    position: absolute;
    z-index: 4;
    top: 98px;
    right: 0;
    left: 0;
    height: 48px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 700ms ease 500ms, transform 700ms ease 500ms;
}

.finale.is-active .project-ticker {
    opacity: 1;
    transform: translateY(0);
}

.project-ticker-track {
    --ticker-shift: 12px;
    display: flex;
    width: max-content;
    height: 100%;
    align-items: center;
    gap: 24px;
    animation: projectTicker 32s linear infinite;
    animation-play-state: paused;
}

.finale.is-active .project-ticker-track {
    animation-play-state: running;
}

.finale.future-opened .project-ticker-track {
    animation-duration: 22s;
}

.project-ticker span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.project-ticker i {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    background: var(--teal);
    transform: rotate(45deg);
}

#confettiCanvas {
    position: fixed;
    z-index: 250;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.finale-content {
    position: relative;
    z-index: 5;
    width: min(calc(100% - (var(--page-pad) * 2)), 1080px);
    margin: 0 auto;
    padding: 190px 0 118px;
    text-align: center;
}

.finale .eyebrow {
    color: var(--teal);
}

.finale-count {
    display: flex;
    max-width: 720px;
    margin: 0 auto 34px;
    padding: 13px 0;
    align-items: center;
    justify-content: center;
    gap: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
}

.finale-count strong {
    margin-right: 8px;
    color: var(--amber);
    font-size: 16px;
    font-variant-numeric: tabular-nums;
}

.finale h2 {
    font-size: 82px;
    line-height: 0.98;
}

.finale-title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 5px;
}

.finale-title-line > span {
    display: block;
    transform: translateY(112%);
}

.finale-title-line:last-child {
    margin-top: 4px;
    color: var(--teal);
}

.finale.is-active .finale-title-line > span {
    animation: finaleTitleIn 920ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.finale.is-active .finale-title-line:last-child > span {
    animation-delay: 150ms;
}

.finale-address {
    max-width: 780px;
    margin: 36px auto 0;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.55;
}

.finale-wish {
    max-width: 720px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.future-action {
    margin-top: 42px;
    border-color: var(--teal);
    background: var(--teal);
    color: var(--ink);
}

.future-action:hover,
.future-action:focus-visible {
    border-color: var(--amber);
    background: var(--amber);
    transform: translateY(-2px);
}

.future-reveal {
    position: relative;
    max-height: 0;
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 1100ms cubic-bezier(0.2, 0.7, 0.2, 1),
        opacity 560ms ease,
        margin 900ms ease;
}

.future-reveal.is-open {
    max-height: 1080px;
    margin-top: 76px;
    opacity: 1;
}

.future-heading > span {
    color: var(--teal);
    font-size: 10px;
    font-weight: 700;
}

.future-heading > p {
    margin: 12px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
}

.future-route {
    position: relative;
    max-width: 860px;
    margin: 42px auto 0;
    padding: 0;
    list-style: none;
}

.future-route::before {
    position: absolute;
    z-index: -1;
    top: 30px;
    bottom: 30px;
    left: 31px;
    width: 1px;
    background: var(--teal);
    content: "";
    transform: scaleY(0);
    transform-origin: top;
}

.future-reveal.is-open .future-route::before {
    animation: futureRouteLine 1200ms ease 240ms forwards;
}

.future-route li {
    position: relative;
    display: grid;
    min-height: 76px;
    padding: 0 18px 0 8px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0;
    grid-template-columns: 76px minmax(0, 1fr) minmax(180px, auto);
    text-align: left;
    transform: translateX(-34px);
}

.future-route li:nth-child(even) {
    transform: translateX(34px);
}

.future-route li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.future-route li span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: var(--ink);
    color: var(--muted);
    font-size: 9px;
    place-items: center;
}

.future-route li strong {
    font-size: 16px;
}

.future-route li small {
    color: var(--muted);
    font-size: 9px;
    text-align: right;
}

.future-route .future-new {
    border-color: var(--teal);
    background: rgba(72, 215, 187, 0.08);
    color: var(--teal);
}

.future-route .future-new span {
    border-color: var(--teal);
    background: var(--teal);
    color: var(--ink);
}

.future-route .future-new small {
    color: var(--teal);
}

.future-reveal.is-open .future-route li {
    animation: futureRouteLeft 620ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.future-reveal.is-open .future-route li:nth-child(even) {
    animation-name: futureRouteRight;
}

.future-reveal.is-open .future-route li:nth-child(1) {
    animation-delay: 260ms;
}

.future-reveal.is-open .future-route li:nth-child(2) {
    animation-delay: 390ms;
}

.future-reveal.is-open .future-route li:nth-child(3) {
    animation-delay: 520ms;
}

.future-reveal.is-open .future-route li:nth-child(4) {
    animation-delay: 650ms;
}

.future-reveal.is-open .future-route li:nth-child(5) {
    animation-delay: 780ms;
}

.future-last {
    max-width: 680px;
    margin: 48px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.5;
}

.signature {
    margin: 64px auto 0;
    color: var(--muted);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
}

.replay-action {
    min-height: 46px;
    margin-top: 28px;
    padding: 0 17px;
    border-color: rgba(255, 255, 255, 0.22);
    background: transparent;
    color: var(--white);
    font-size: 12px;
}

.replay-action:hover,
.replay-action:focus-visible {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

.status-toast {
    position: fixed;
    z-index: 280;
    right: 24px;
    bottom: 24px;
    max-width: min(360px, calc(100vw - 48px));
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    background: var(--ink);
    color: var(--white);
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
}

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

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes cueMove {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

@keyframes coreSignal {
    0% {
        opacity: 0.75;
        transform: scale(0.7);
    }

    100% {
        opacity: 0;
        transform: scale(3.2);
    }
}

@keyframes scanField {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100vw);
    }
}

@keyframes distancePoint {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes frameHorizontal {
    to {
        transform: scaleX(1);
    }
}

@keyframes frameVertical {
    to {
        transform: scaleY(1);
    }
}

@keyframes projectTicker {
    to {
        transform: translateX(calc(-50% - var(--ticker-shift)));
    }
}

@keyframes finaleTitleIn {
    to {
        transform: translateY(0);
    }
}

@keyframes futureRouteLine {
    to {
        transform: scaleY(1);
    }
}

@keyframes futureRouteLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes futureRouteRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1180px) {
    :root {
        --page-pad: 42px;
    }

    .journey-nav {
        display: none;
    }

    .ecosystem .wide-heading {
        padding-right: 0;
    }

    .principle-layout {
        gap: 60px;
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
    }
}

@media (min-width: 1181px) {
    .journey-nav {
        width: 48px;
    }

    .journey-nav a {
        padding: 0;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .journey-nav strong {
        position: absolute;
        top: 50%;
        right: calc(100% + 10px);
        width: max-content;
        padding: 7px 9px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: var(--ink);
        color: var(--white);
        opacity: 0;
        pointer-events: none;
        transform: translate(6px, -50%);
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .journey-nav a:hover strong,
    .journey-nav a:focus-visible strong {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@media (max-width: 980px) {
    h2 {
        font-size: 52px;
    }

    .hero h1 {
        font-size: 78px;
    }

    .origin-heading h2 {
        font-size: 58px;
    }

    .origin-heading {
        max-width: 470px;
    }

    .origin-steps,
    .origin-meter {
        width: 380px;
    }

    .origin-quote {
        max-width: 500px;
        font-size: 21px;
    }

    .company {
        width: 41%;
    }

    .principle-layout {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .principle-heading h2 {
        font-size: 50px;
    }

    .principle-sequence {
        max-width: 720px;
    }

    .branch-label {
        width: 200px;
    }

    .finale h2 {
        font-size: 68px;
    }
}

@media (max-width: 760px) {
    :root {
        --page-pad: 20px;
    }

    h2 {
        font-size: 40px;
    }

    .top-bar {
        top: 14px;
        right: 14px;
        left: 14px;
    }

    .chapter-status {
        min-width: 112px;
        min-height: 46px;
        padding: 7px 10px;
    }

    .chapter-status strong {
        font-size: 11px;
    }

    .sound-control {
        min-width: 126px;
        min-height: 46px;
        padding: 6px 10px;
    }

    .hero {
        min-height: 94svh;
    }

    .hero-media {
        background-position: 62% center;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(4, 7, 8, 0.86), rgba(4, 7, 8, 0.28)),
            linear-gradient(0deg, rgba(4, 7, 8, 0.92) 0%, rgba(4, 7, 8, 0.2) 72%);
    }

    .technical-grid {
        background-size: 64px 64px;
    }

    .hero-coordinate {
        top: 78px;
    }

    .hero-content {
        padding: 112px 0 100px;
    }

    .hero h1 {
        font-size: 54px;
        line-height: 0.98;
    }

    .hero-statement {
        max-width: 520px;
        margin-top: 24px;
        font-size: 22px;
    }

    .hero-intro {
        font-size: 14px;
    }

    .primary-action,
    .future-action {
        width: 100%;
        max-width: 420px;
    }

    .hero-index {
        display: none;
    }

    .scroll-cue {
        right: 20px;
        bottom: 24px;
    }

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

    .origin-sticky {
        position: relative;
        min-height: auto;
        padding: 100px 0 72px;
    }

    .origin-media {
        background-position: 66% center;
    }

    .origin-shade {
        background:
            linear-gradient(90deg, rgba(7, 11, 12, 0.86), rgba(7, 11, 12, 0.32)),
            linear-gradient(0deg, rgba(7, 11, 12, 0.98) 14%, rgba(7, 11, 12, 0.5) 76%);
    }

    .origin-content {
        min-height: auto;
    }

    .origin-heading,
    .origin-steps,
    .origin-meter,
    .origin-quote {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: none;
    }

    .origin-heading h2 {
        font-size: 45px;
    }

    .origin-heading > p:last-child {
        font-size: 18px;
    }

    .origin-steps {
        margin-top: 130px;
    }

    .origin-step,
    .origin-step.is-active {
        min-height: 118px;
        background: rgba(8, 12, 13, 0.82);
        color: var(--white);
    }

    .origin-step p,
    .origin-step.is-active p {
        max-height: none;
        margin-top: 9px;
        opacity: 1;
    }

    .origin-step.is-active {
        border-color: var(--amber);
    }

    .origin-meter {
        display: none;
    }

    .origin-quote {
        margin-top: 48px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
        font-size: 21px;
    }

    .ecosystem {
        min-height: auto;
        padding: 104px 0 90px;
    }

    .section-lead {
        font-size: 19px;
    }

    .ecosystem-map {
        display: grid;
        min-height: 0;
        margin-top: 64px;
        gap: 14px;
    }

    .connection-map {
        display: none;
    }

    .ecosystem-core {
        position: static;
        width: 100%;
        height: 90px;
        transform: none;
    }

    .ecosystem-core > * {
        transform: none;
    }

    .company {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        min-height: 0;
        transform: none !important;
    }

    .system-note {
        margin-top: 52px;
        padding: 22px 0 0;
        font-size: 20px;
    }

    .principle {
        min-height: auto;
    }

    .principle-grid::before,
    .principle-grid::after {
        display: none;
    }

    .principle-layout {
        padding: 108px 0 92px;
    }

    .principle-heading h2 {
        font-size: 38px;
    }

    .principle-heading > p:last-child {
        font-size: 15px;
    }

    .principle-item {
        min-height: 128px;
    }

    .principle-after {
        margin-top: 54px;
        padding-left: 22px;
        font-size: 21px;
    }

    .growth {
        min-height: auto;
    }

    .growth-media {
        background-position: center top;
    }

    .growth-shade {
        background:
            linear-gradient(180deg, rgba(5, 8, 9, 0.9) 0%, rgba(5, 8, 9, 0.2) 28%, rgba(5, 8, 9, 0.86) 74%),
            linear-gradient(90deg, rgba(5, 8, 9, 0.5), transparent);
    }

    .growth-content {
        min-height: 1230px;
        padding: 90px 0 76px;
    }

    .tree-stage {
        display: grid;
        min-height: 0;
        margin-top: 360px;
        gap: 9px;
    }

    .tree-connections {
        display: none;
    }

    .branch-label,
    .branch-label.branch-new {
        position: static;
        width: 100%;
        min-height: 58px;
        transform: translateY(12px);
    }

    .tree-stage.has-grown .branch-label.branch-new {
        transform: translateY(0);
    }

    .growth-ending {
        margin: 48px 0 0;
        padding: 20px 0;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .growth-ending p {
        font-size: 20px;
    }

    .pause {
        min-height: auto;
    }

    .pause-layout {
        padding: 108px 0 90px;
    }

    .pause-lead {
        font-size: 20px;
    }

    .distance-track {
        margin-top: 64px;
    }

    .distance-line {
        display: none;
    }

    .distance-points {
        border-top: 1px solid var(--line-dark);
        grid-template-columns: 1fr;
    }

    .distance-points div,
    .distance-points div:not(:first-child),
    .distance-points div:last-child {
        min-height: 70px;
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .distance-points div::before {
        display: none;
    }

    .distance-points span {
        margin-bottom: 8px;
    }

    .pause-quote {
        margin-top: 56px;
        padding-left: 22px;
        font-size: 24px;
    }

    .finale {
        min-height: 100svh;
    }

    .finale-frame {
        inset: 68px 14px 22px;
    }

    .project-ticker {
        top: 76px;
        height: 42px;
    }

    .project-ticker-track {
        --ticker-shift: 9px;
        gap: 18px;
    }

    .project-ticker span {
        font-size: 9px;
    }

    .finale-content {
        padding: 148px 0 86px;
    }

    .finale-count {
        margin-bottom: 28px;
        gap: 10px 24px;
        flex-wrap: wrap;
    }

    .finale h2 {
        font-size: 50px;
    }

    .finale-address {
        font-size: 21px;
    }

    .future-reveal.is-open {
        max-height: 1240px;
        margin-top: 56px;
    }

    .future-heading > p {
        font-size: 28px;
    }

    .future-route::before {
        left: 31px;
    }

    .future-route li {
        min-height: 88px;
        padding: 13px 8px;
        align-content: center;
        grid-template-columns: 52px minmax(0, 1fr);
        grid-template-rows: auto auto;
    }

    .future-route li span {
        width: 40px;
        height: 40px;
        grid-row: 1 / 3;
    }

    .future-route li strong,
    .future-route li small {
        grid-column: 2;
    }

    .future-route li small {
        margin-top: 6px;
        text-align: left;
    }

    .future-last {
        font-size: 21px;
    }
}

@media (max-width: 430px) {
    .hero h1 {
        font-size: 46px;
    }

    .hero-statement {
        font-size: 20px;
    }

    .hero-coordinate span:first-child {
        display: none;
    }

    .hero-coordinate {
        justify-content: flex-end;
    }

    .origin-heading h2 {
        font-size: 40px;
    }

    .company {
        padding: 24px 22px 26px;
    }

    .company h3 {
        font-size: 23px;
    }

    .principle-heading h2 {
        font-size: 34px;
    }

    .finale h2 {
        font-size: 43px;
    }

    .finale-address {
        font-size: 19px;
    }
}

@media (max-width: 340px) {
    .hero h1 {
        font-size: 38px;
    }

    .finale h2 {
        font-size: 34px;
    }
}

@media (max-height: 760px) and (min-width: 761px) {
    .hero-content {
        padding-bottom: 72px;
    }

    .hero h1 {
        font-size: 78px;
    }

    .hero-statement {
        font-size: 23px;
    }

    .origin-heading {
        top: 12svh;
    }

    .origin-heading h2 {
        font-size: 56px;
    }

    .origin-heading > p:last-child {
        font-size: 17px;
    }

    .origin-steps {
        top: 20svh;
    }

    .origin-meter {
        bottom: 12svh;
    }

    .origin-quote {
        bottom: 5svh;
        font-size: 19px;
    }
}

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

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

    .name-line > span,
    .reveal,
    .distance-points div,
    .finale-title-line > span,
    .future-route li {
        opacity: 1;
        transform: none;
    }

    .frame-line,
    .future-route::before {
        transform: none;
    }

    .project-ticker-track {
        animation: none;
    }

    .distance-line span {
        width: 100%;
    }
}
