@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,650&display=swap');

:root {
    --pink: #ED3888;
    --soft-pink: #ED92B7;
    --cyan: #37C3DE;
    --navy: #253D85;
    --blue: #009DDB;
    --ink: #111216;
    --paper: #fbfaf8;
    --muted: #6f7077;
    --line: rgba(17, 18, 22, 0.16);
    --font-sans: "Inter", Arial, sans-serif;
    --font-serif: "Newsreader", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

#scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    z-index: 50;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 56px);
    background: rgba(17, 18, 22, 0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: min(100%, 1280px);
    max-height: 88vh;
    object-fit: contain;
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(17, 18, 22, 0.24);
    cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #fff;
}

.lightbox-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(17, 18, 22, 0.24);
    cursor: pointer;
    transform: translateY(-50%);
}

.lightbox-nav.prev {
    left: 22px;
}

.lightbox-nav.next {
    right: 22px;
}

.lightbox-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.lightbox-nav.prev::before {
    transform: translate(-35%, -50%) rotate(-45deg);
}

.lightbox-nav.next::before {
    transform: translate(-65%, -50%) rotate(135deg);
}

.lightbox-count {
    position: absolute;
    left: 50%;
    bottom: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

body.lightbox-open {
    overflow: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(18px, 4vw, 56px);
    color: #fff;
    transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(251, 250, 248, 0.92);
    color: var(--ink);
    box-shadow: 0 8px 26px rgba(17, 18, 22, 0.08);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 58px;
    min-width: 58px;
}

.brand img {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 240ms ease, opacity 240ms ease;
    transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 30;
    background: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease;
}

.mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.mobile-nav nav a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 10vw, 4rem);
    font-weight: 500;
    letter-spacing: 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 300ms ease, transform 300ms ease, color 180ms ease;
}

.mobile-nav.is-open nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.is-open nav a:nth-child(1) { transition-delay: 60ms; }
.mobile-nav.is-open nav a:nth-child(2) { transition-delay: 110ms; }
.mobile-nav.is-open nav a:nth-child(3) { transition-delay: 160ms; }
.mobile-nav.is-open nav a:nth-child(4) { transition-delay: 210ms; }

.mobile-nav nav a:hover {
    color: var(--pink);
}

.site-header nav {
    display: flex;
    gap: clamp(16px, 3vw, 38px);
    align-items: center;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-header nav a {
    text-decoration: none;
    position: relative;
}

.site-header nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
    transform: scaleX(1);
}

.hero {
    position: relative;
    min-height: 96vh;
    display: grid;
    align-items: end;
    isolation: isolate;
    color: #fff;
    background: var(--ink);
    overflow: hidden;
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 34%;
    transform: scale(1.04);
}

.hero-shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(17, 18, 22, 0.86) 0%, rgba(17, 18, 22, 0.36) 48%, rgba(17, 18, 22, 0.18) 100%),
        linear-gradient(0deg, rgba(17, 18, 22, 0.78) 0%, rgba(17, 18, 22, 0) 46%);
}

.hero-content {
    width: min(1040px, calc(100% - 36px));
    margin: 0 auto;
    padding: 34vh 0 12vh;
}

.partner-label,
.section-label {
    margin: 0 0 18px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 980px;
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(4rem, 12vw, 11rem);
    font-weight: 650;
    line-height: 0.82;
    letter-spacing: 0;
}

.dek {
    max-width: 720px;
    margin: 34px 0 0;
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.18;
}

.intro-section {
    padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 76px);
    background:
        linear-gradient(135deg, rgba(237, 56, 136, 0.1), rgba(55, 195, 222, 0.08)),
        #fff;
}

.origin-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
    gap: clamp(26px, 5vw, 68px);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(34px, 5vw, 70px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.origin-statement h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 4.6rem);
    font-weight: 650;
    line-height: 0.9;
    letter-spacing: 0;
}

.origin-copy p,
.chapter-copy p,
.feature-content p,
.split-copy p,
.impact-copy p,
.video-copy p {
    margin: 0 0 1.2rem;
    color: #30323a;
}

.chapter {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    min-height: 760px;
    background: #fff;
}

.chapter.image-left {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.chapter.image-right {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.chapter-media {
    margin: 0;
    min-height: 760px;
}

.chapter-media img {
    width: 100%;
    height: 100%;
    min-height: 760px;
    object-fit: cover;
}

figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.chapter-media figcaption {
    padding: 0 28px 24px;
    margin-top: -46px;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
}

.chapter-copy,
.feature-content,
.split-copy,
.impact-copy {
    padding: clamp(54px, 7vw, 108px);
    align-self: center;
}

.chapter-copy h2,
.feature-content h2,
.split-copy h2,
.video-copy h2,
.impact-copy h2,
.finale h2 {
    margin: 0 0 28px;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    font-weight: 650;
    line-height: 0.92;
    letter-spacing: 0;
}

.kinetic-title .word-clip {
    display: inline;
    overflow: visible;
    vertical-align: baseline;
}

.kinetic-title .word {
    display: inline;
    color: rgba(17, 18, 22, 0.18);
    opacity: 1;
    filter: none;
    transform: none;
    transition:
        color 220ms linear,
        text-shadow 220ms linear;
    will-change: color;
}

.kinetic-title .word.is-lit {
    color: var(--pink);
}

.feature-content .kinetic-title .word,
.video-copy .kinetic-title .word,
.finale .kinetic-title .word {
    color: rgba(255, 255, 255, 0.18);
}

.feature-content .kinetic-title .word.is-lit,
.video-copy .kinetic-title .word.is-lit,
.finale .kinetic-title .word.is-lit {
    color: var(--cyan);
    text-shadow: 0 12px 36px rgba(55, 195, 222, 0.18);
}

.hero .kinetic-title .word {
    color: rgba(255, 255, 255, 0.16);
}

.hero .kinetic-title .word.is-lit {
    color: #fff;
    text-shadow: 0 18px 52px rgba(255, 255, 255, 0.16);
}

.quote-band {
    position: relative;
    padding: clamp(96px, 14vw, 190px) clamp(18px, 5vw, 76px);
    background:
        linear-gradient(90deg, rgba(17, 18, 22, 0.86), rgba(17, 18, 22, 0.54)),
        url("photos/_73I5488-Edit copy.jpg") center / cover;
    color: #fff;
    overflow: hidden;
}

.quote-content {
    max-width: 1160px;
    margin: 0 auto;
    padding-top: clamp(26px, 4vw, 46px);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.quote-content .section-label {
    color: var(--pink);
}

.quote-content blockquote {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 8.6rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: 0;
}

.quote-note {
    max-width: 620px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.5;
}

.feature-panel {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(360px, 720px) minmax(0, 1fr);
    align-items: center;
    isolation: isolate;
    color: #fff;
    overflow: hidden;
    padding: 0 clamp(18px, 6vw, 96px);
}

.feature-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.feature-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 24%;
}

.feature-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(17, 18, 22, 0.18), rgba(17, 18, 22, 0.82));
}

.feature-content {
    max-width: 720px;
    grid-column: 1;
    margin-right: auto;
    padding-left: 0;
    padding-right: clamp(28px, 5vw, 82px);
}

.feature-content p,
.feature-content .section-label {
    color: #fff;
}

.feature-content .section-label {
    color: var(--soft-pink);
}

.split-story {
    padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 76px);
    background: var(--paper);
}

.split-copy {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}

.split-copy .section-label {
    color: var(--pink);
}

.split-story--dark {
    background: #1a1b1e;
}

.split-story--dark .split-copy h2 {
    color: var(--pink);
}

.split-story--dark .split-copy .kinetic-title .word {
    color: rgba(255, 255, 255, 0.18);
}

.split-story--dark .split-copy .kinetic-title .word.is-lit {
    color: var(--pink);
}

.split-story--dark .split-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.split-story--dark .split-copy .section-label {
    color: var(--soft-pink);
}

.split-copy h2 {
    color: var(--ink);
    line-height: 1.05;
}

.video-section {
    display: grid;
    grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    padding: clamp(70px, 10vw, 132px) clamp(18px, 5vw, 76px);
    background: var(--ink);
    color: #fff;
}

.video-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.video-section video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}

.iphone-gallery {
    background: #f7f5ef;
    color: #111;
    padding: clamp(52px, 8vw, 118px) clamp(18px, 4.8vw, 72px) clamp(92px, 12vw, 190px);
}

.iphone-title {
    min-height: 74vh;
    display: grid;
    align-content: space-between;
}

.iphone-title p {
    margin: 0;
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    font-weight: 600;
}

.iphone-title h2 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(4.2rem, 12vw, 13.5rem);
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: -0.07em;
}

.iphone-title h2 span {
    display: block;
}

.iphone-title h2 span:nth-child(2) {
    text-align: right;
}

.iphone-intro {
    display: grid;
    grid-template-columns: minmax(220px, 0.55fr) minmax(320px, 1fr);
    gap: clamp(42px, 8vw, 130px);
    max-width: 1180px;
    margin: 0 auto clamp(72px, 12vw, 180px);
}

.iphone-intro h3 {
    position: sticky;
    top: 120px;
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.4vw, 5.2rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 0;
}

.iphone-intro-copy p {
    margin: 0 0 1.3rem;
    color: #1f211f;
    font-size: clamp(1.02rem, 1.55vw, 1.32rem);
    line-height: 1.72;
}

.iphone-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.6vw, 24px);
    max-width: 1080px;
    margin: 0 auto;
}

.iphone-flow figure {
    display: none;
}

.iphone-flow figure:nth-child(1),
.iphone-flow figure:nth-child(6),
.iphone-flow figure:nth-child(10),
.iphone-flow figure:nth-child(12),
.iphone-flow figure:nth-child(16),
.iphone-flow figure:nth-child(18) {
    display: block;
}

.iphone-flow figure {
    margin: 0;
    grid-column: auto;
    background: #e4e0d8;
    overflow: hidden;
}

.iphone-flow img {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    cursor: zoom-in;
}

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

.gallery-more {
    text-align: center;
    margin-top: clamp(40px, 6vw, 72px);
}

.gallery-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: none;
    background: none;
    color: var(--muted);
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease;
}

.gallery-more-btn::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: currentColor;
    transition: width 220ms ease;
}

.gallery-more-btn:hover {
    color: var(--pink);
}

.gallery-more-btn:hover::after {
    width: 48px;
}

.gallery-more-count {
    color: var(--cyan);
    font-size: 0.68rem;
    font-weight: 800;
}

.iphone-flow.is-expanded figure {
    display: block;
}

.impact-section {
    padding: clamp(80px, 11vw, 150px) clamp(18px, 5vw, 76px);
    background:
        linear-gradient(120deg, rgba(237, 56, 136, 0.12), rgba(55, 195, 222, 0.14)),
        var(--paper);
}

.impact-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
    gap: clamp(30px, 6vw, 88px);
    align-items: center;
}

.impact-copy {
    padding: 0;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    align-self: center;
}

.impact-stat {
    background: #fff;
    padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 36px);
}

.impact-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 650;
    line-height: 1;
    color: var(--pink);
}

.impact-stat--small {
    font-size: clamp(1.1rem, 2vw, 1.8rem) !important;
}

.impact-stat span {
    display: block;
    margin-top: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.4;
}

.impact-closing {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
    line-height: 1.5;
    color: #30323a;
}

.stat-grid {
    display: grid;
    gap: 1px;
    background: var(--line);
}

.stat-grid div {
    background: #fff;
    padding: 32px;
}

.stat-grid strong {
    display: block;
    color: var(--pink);
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 0.9;
}

.stat-grid span {
    display: block;
    margin-top: 12px;
    color: #30323a;
    font-weight: 700;
    line-height: 1.3;
}

.finale {
    min-height: 92vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 90px 18px;
    color: #fff;
    background:
        linear-gradient(rgba(17, 18, 22, 0.58), rgba(17, 18, 22, 0.84)),
        url("photos/1W0A5120-2.jpg") center / cover fixed;
}

.finale-logo {
    width: 118px;
    margin: 0 auto 34px;
}

.finale-copy {
    max-width: 900px;
}

.finale h2 {
    margin-bottom: 24px;
    font-size: clamp(3.3rem, 8vw, 8.8rem);
}

.finale-cta {
    max-width: 620px;
    margin: 0 auto 38px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.45;
}

.story-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.story-button:hover,
.story-button:focus-visible {
    background: var(--pink);
    border-color: var(--pink);
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 28px clamp(18px, 4vw, 56px);
    background: var(--ink);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

footer p {
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

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

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

    .kinetic-title .word {
        color: inherit;
        text-shadow: none;
    }

}

@media (max-width: 980px) {
    body {
        font-size: 17px;
    }

    .site-header nav {
        gap: 16px;
        font-size: 0.68rem;
    }

    .origin-card,
    .chapter,
    .video-section,
    .impact-inner {
        grid-template-columns: 1fr;
    }

    .chapter-media,
    .chapter-media img {
        min-height: 540px;
    }

    .chapter-copy,
    .feature-content {
        padding: 56px 24px;
    }

    .feature-content {
        grid-column: 1;
        margin-left: 0;
        padding-right: 24px;
    }

    .feature-panel::after {
        background: linear-gradient(0deg, rgba(17, 18, 22, 0.88), rgba(17, 18, 22, 0.34));
    }

    .iphone-title {
        min-height: 58vh;
    }

    .iphone-title h2 {
        font-size: clamp(3.5rem, 14vw, 7.5rem);
    }

    .iphone-intro {
        grid-template-columns: 1fr;
    }

    .iphone-intro h3 {
        position: static;
    }

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

    .iphone-flow figure,
    .iphone-flow figure:nth-child(n) {
        grid-column: auto;
    }

    .finale {
        background-attachment: scroll;
    }
}

@media (max-width: 680px) {
    .split-copy {
        text-align: left;
    }

    .site-header nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .site-header {
        align-items: flex-start;
        padding: 14px 16px;
    }

    .brand {
        width: 48px;
        min-width: 48px;
    }

    .site-header nav {
        width: min-content;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 8px 14px;
        line-height: 1.2;
    }

    .origin-card {
        padding: 34px 0;
    }

    .hero {
        min-height: 92vh;
    }

    .hero-media img,
    .hero-media video {
        object-position: 42% 50%;
    }

    .hero-shade {
        background:
            linear-gradient(0deg, rgba(17, 18, 22, 0.86) 0%, rgba(17, 18, 22, 0.34) 58%, rgba(17, 18, 22, 0.2) 100%);
    }

    .hero-content {
        padding-bottom: 16vh;
    }

    .hero h1 {
        font-size: clamp(3.8rem, 20vw, 6.3rem);
    }

    .iphone-gallery {
        padding-left: 14px;
        padding-right: 14px;
    }

    .iphone-title {
        min-height: 48vh;
    }

    .iphone-title h2 {
        font-size: clamp(2.65rem, 17vw, 4.6rem);
        letter-spacing: -0.06em;
    }

    .iphone-intro {
        margin-bottom: 64px;
    }

    .iphone-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .iphone-flow figure,
    .iphone-flow figure:nth-child(n) {
        grid-column: span 1;
    }

    .iphone-flow img {
        aspect-ratio: 4 / 3;
    }

    .lightbox {
        padding: 58px 12px;
    }

    .lightbox-nav {
        top: auto;
        bottom: 18px;
        width: 46px;
        height: 46px;
        transform: none;
    }

    .lightbox-nav.prev {
        left: 18px;
    }

    .lightbox-nav.next {
        right: 18px;
    }

    .lightbox-count {
        bottom: 31px;
    }

    footer {
        display: grid;
    }
}
