/* Antartica by Eyed. The page is an iceberg: sky and ice up top, and the
   further you scroll, the deeper the water gets. No JavaScript anywhere. */

@font-face {
    font-family: 'Inter';
    src: url('/antartica/assets/font/inter.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
}

:root {
    /* The launcher icon's palette. */
    --surface: #1B5E80;
    --ocean: #144A66;
    --sea: #0F3A51;
    --deep: #0B2A3A;
    --trench: #071C28;
    --abyss: #030D15;
    --glow: #8FD3F7;
    --cyan: #7FD4FF;
    --frost: #B7E6FF;
    --ice: #E6F6FF;

    --text: #E6F6FF;
    --dim: #93B6C9;
    --line: rgba(183, 230, 255, 0.12);
    --card: rgba(183, 230, 255, 0.045);
    --editor: #121212;

    --radius: 22px;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--frost);
    color: var(--deep);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-optical-sizing: auto;
    font-feature-settings: 'cv11', 'ss01';
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    /* Painted on the canvas, so it spans the whole document: the sea deepens as you scroll.
       The first three layers are a faint aurora behind the headline. */
    background:
        radial-gradient(40% 360px at 28% 220px, rgba(127, 212, 255, 0.16), transparent 70%) no-repeat,
        radial-gradient(35% 300px at 72% 120px, rgba(120, 230, 190, 0.09), transparent 70%) no-repeat,
        radial-gradient(30% 260px at 60% 480px, rgba(143, 211, 247, 0.08), transparent 70%) no-repeat,
        linear-gradient(180deg,
            #174F6D 0,
            var(--sea) 640px,
            var(--deep) 1500px,
            var(--trench) 55%,
            var(--abyss) 100%) no-repeat var(--abyss);
}

a {
    color: inherit;
}

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

strong {
    font-weight: 600;
    color: var(--ice);
}

code {
    font-family: ui-monospace, 'SF Mono', 'Cascadia Mono', Menlo, monospace;
    font-size: 0.88em;
    padding: 0.1em 0.4em;
    border-radius: 6px;
    background: rgba(183, 230, 255, 0.08);
}

:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
    border-radius: 6px;
}

.wrap {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 24px;
}

.sr {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    opacity: 0;
}

.frost {
    background: linear-gradient(100deg, var(--frost), var(--cyan) 60%, var(--glow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h1, h2, h3 {
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -0.028em;
    text-wrap: balance;
}

h2 {
    font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem);
}

h3 {
    font-size: 1.1rem;
    letter-spacing: -0.012em;
    line-height: 1.3;
}

p {
    text-wrap: pretty;
}

.kicker,
.eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
}

/* ---------- buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 26px 0 20px;
    border-radius: 999px;
    background: var(--frost);
    color: var(--deep);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 30px -10px rgba(127, 212, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 0.25s var(--ease), background-color 0.25s, box-shadow 0.25s;
}

.btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn:hover {
    background: var(--ice);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -12px rgba(127, 212, 255, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.quiet-link {
    color: var(--frost);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(183, 230, 255, 0.35);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.quiet-link:hover {
    border-color: var(--frost);
}

/* ---------- nav ---------- */

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 18px;
}

.wordmark {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.wordmark img {
    height: 22px;
    width: auto;
}

.wordmark small {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--frost);
    padding-left: 12px;
    border-left: 1px solid rgba(183, 230, 255, 0.25);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 0.93rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dim);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--ice);
}

.nav-links .nav-cta {
    color: var(--ice);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(183, 230, 255, 0.3);
    transition: background-color 0.2s, border-color 0.2s;
}

.nav-links .nav-cta:hover {
    background: rgba(183, 230, 255, 0.1);
    border-color: var(--frost);
}

/* ---------- device frames ---------- */

.device {
    position: relative;
    background: #0A0D10;
    border: 1px solid rgba(183, 230, 255, 0.16);
    box-shadow:
        0 0 0 6px rgba(10, 13, 16, 0.55),
        0 40px 80px -30px rgba(0, 0, 0, 0.8),
        0 0 120px -30px rgba(127, 212, 255, 0.35);
}

.device img {
    width: 100%;
    background: var(--editor);
}

.phone {
    width: min(300px, 76vw);
    padding: 9px;
    border-radius: 42px;
}

.phone img {
    border-radius: 33px;
    aspect-ratio: 640 / 1424;
}

.tablet {
    padding: 12px;
    border-radius: 30px;
}

.tablet img {
    border-radius: 18px;
    aspect-ratio: 16 / 10;
}

/* ---------- hero ---------- */

.hero {
    display: grid;
    gap: 56px;
    justify-items: center;
    text-align: center;
    padding-top: clamp(40px, 8vw, 88px);
    padding-bottom: 72px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--frost);
    letter-spacing: 0.08em;
}

.eyebrow img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.hero h1 {
    font-size: clamp(2.6rem, 1.4rem + 5.4vw, 5rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin-bottom: 22px;
}

.hero h1 .frost {
    display: inline-block;
}

.lede {
    font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem);
    color: var(--dim);
    max-width: 34rem;
    margin: 0 auto 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 28px;
}

.chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.chips li {
    font-size: 0.85rem;
    color: var(--frost);
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(183, 230, 255, 0.07);
    border: 1px solid var(--line);
}

.hero-device {
    position: relative;
}

@media (min-width: 900px) {
    .hero {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: center;
        text-align: left;
        gap: 40px;
        padding-bottom: 96px;
    }

    .hero .lede {
        margin-left: 0;
    }

    .hero-actions,
    .chips {
        justify-content: flex-start;
    }

    .hero-device {
        justify-self: end;
        margin-right: 24px;
    }

    .hero-device .phone {
        rotate: 4deg;
    }
}

/* ---------- the iceberg / waterline ---------- */

.berg {
    text-align: center;
}

.berg-text {
    max-width: 760px;
    margin: 0 auto;
}

.berg-above .berg-text {
    padding-bottom: 36px;
}

.berg-art {
    display: block;
    width: min(560px, 82vw);
    margin: 0 auto;
    overflow: visible;
}

.berg-above .berg-art {
    filter: drop-shadow(0 0 40px rgba(183, 230, 255, 0.25));
}

.berg-below {
    position: relative;
    padding-bottom: clamp(72px, 10vw, 120px);
    background:
        linear-gradient(180deg, rgba(8, 32, 45, 0.7), rgba(8, 32, 45, 0) 520px);
    /* the waterline */
    border-top: 2px solid var(--cyan);
}

/* soft glow band around the waterline, like the icon */
.berg-below::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -40px;
    height: 80px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(143, 211, 247, 0.22) 50%, transparent);
}

.berg-below .berg-text {
    padding-top: 48px;
    margin-bottom: 48px;
}

@media (prefers-reduced-motion: no-preference) {
    .berg-art {
        animation: bob 9s ease-in-out infinite;
    }

    @keyframes bob {
        50% {
            translate: 0 5px;
        }
    }
}

.facts {
    list-style: none;
    display: grid;
    gap: 14px;
    text-align: left;
}

.facts li,
.cards li {
    padding: 26px 24px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--line);
    transition: border-color 0.3s, background-color 0.3s;
}

.facts li:hover,
.cards li:hover {
    border-color: rgba(183, 230, 255, 0.24);
    background: rgba(183, 230, 255, 0.07);
}

.facts h3,
.cards h3,
.trio h3 {
    margin-bottom: 8px;
}

.facts p,
.cards p,
.trio p {
    color: var(--dim);
    font-size: 0.97rem;
}

.facts h3::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    margin-bottom: 16px;
    border-radius: 2px;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
}

@media (min-width: 640px) {
    .facts {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1000px) {
    .facts {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ---------- section scaffolding ---------- */

.tools,
.compare,
.numbers,
.screens,
.details,
.faq {
    padding-block: clamp(72px, 10vw, 128px);
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.section-head .sub {
    color: var(--dim);
    margin-top: 16px;
    font-size: 1.05rem;
}

/* ---------- toolkit: radio tabs ---------- */

.studio {
    position: relative;
    display: grid;
    grid-template-areas:
        "tabs"
        "device"
        "copy";
    justify-items: center;
    gap: 32px;
}

.studio-tabs {
    grid-area: tabs;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.studio-tabs label {
    cursor: pointer;
    user-select: none;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dim);
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(183, 230, 255, 0.03);
    transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}

.studio-tabs label:hover {
    color: var(--ice);
    border-color: rgba(183, 230, 255, 0.3);
}

.studio-device {
    grid-area: device;
}

.studio-copy {
    grid-area: copy;
    width: 100%;
    max-width: 560px;
}

.shot,
.tool {
    display: none;
}

/* Invisible hit areas laid over the app's own bottom navigation in each screenshot. */
.screen-nav {
    position: absolute;
    left: 9px;
    right: 9px;
    top: calc(9px + (100% - 18px) * 0.9146);
    height: calc((100% - 18px) * 0.06);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.screen-nav label {
    cursor: pointer;
    border-radius: 14px;
    transition: background-color 0.2s;
}

.screen-nav label:hover {
    background: rgba(183, 230, 255, 0.08);
}

/* One rule per tool: the checked radio shows its screenshot and its copy, and lights up its tab. */
#t-presets:checked ~ .studio-device .shot-presets,
#t-edit:checked ~ .studio-device .shot-edit,
#t-crop:checked ~ .studio-device .shot-crop,
#t-masks:checked ~ .studio-device .shot-masks,
#t-retouch:checked ~ .studio-device .shot-retouch,
#t-layers:checked ~ .studio-device .shot-layers,
#t-presets:checked ~ .studio-copy .tool-presets,
#t-edit:checked ~ .studio-copy .tool-edit,
#t-crop:checked ~ .studio-copy .tool-crop,
#t-masks:checked ~ .studio-copy .tool-masks,
#t-retouch:checked ~ .studio-copy .tool-retouch,
#t-layers:checked ~ .studio-copy .tool-layers {
    display: block;
    animation: surface 0.45s var(--ease);
}

#t-presets:checked ~ .studio-tabs [for="t-presets"],
#t-edit:checked ~ .studio-tabs [for="t-edit"],
#t-crop:checked ~ .studio-tabs [for="t-crop"],
#t-masks:checked ~ .studio-tabs [for="t-masks"],
#t-retouch:checked ~ .studio-tabs [for="t-retouch"],
#t-layers:checked ~ .studio-tabs [for="t-layers"] {
    color: var(--deep);
    background: var(--frost);
    border-color: var(--frost);
}

#t-presets:focus-visible ~ .studio-tabs [for="t-presets"],
#t-edit:focus-visible ~ .studio-tabs [for="t-edit"],
#t-crop:focus-visible ~ .studio-tabs [for="t-crop"],
#t-masks:focus-visible ~ .studio-tabs [for="t-masks"],
#t-retouch:focus-visible ~ .studio-tabs [for="t-retouch"],
#t-layers:focus-visible ~ .studio-tabs [for="t-layers"] {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

@keyframes surface {
    from {
        opacity: 0;
        translate: 0 8px;
    }
}

.tool h3 {
    font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.3rem);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.tool h3 span {
    display: block;
    font-size: 0.55em;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--cyan);
    margin-top: 8px;
}

.tool p {
    color: var(--dim);
    margin-bottom: 22px;
}

.ticks {
    list-style: none;
    display: grid;
    gap: 10px;
}

.ticks li {
    position: relative;
    padding-left: 28px;
    font-size: 0.97rem;
    color: #C6DEEB;
}

.ticks li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0.55em;
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--cyan);
    border-bottom: 2px solid var(--cyan);
    rotate: -45deg;
    translate: 0 -40%;
}

@media (min-width: 900px) {
    .studio {
        grid-template-columns: auto minmax(0, 560px);
        grid-template-areas:
            "device tabs"
            "device copy";
        grid-template-rows: auto 1fr;
        justify-content: center;
        justify-items: start;
        column-gap: clamp(48px, 7vw, 104px);
        row-gap: 36px;
    }

    .studio-tabs {
        flex-wrap: nowrap;
        gap: 6px;
        justify-content: flex-start;
        align-self: end;
        margin-top: 40px;
    }

    .studio-copy {
        min-height: 420px;
    }
}

/* ---------- before / after ---------- */

.compare-grid {
    display: grid;
    gap: 48px;
    justify-items: center;
}

.compare-copy {
    max-width: 520px;
    text-align: center;
}

.compare-copy h2 {
    margin-bottom: 20px;
}

.compare-copy p {
    color: var(--dim);
    margin-bottom: 28px;
}

.switch {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    color: var(--ice);
    min-height: 48px;
}

/* Material 3 switch, like the app's "Remove location" toggle. */
.switch-track {
    position: relative;
    width: 52px;
    height: 32px;
    flex: none;
    border-radius: 999px;
    border: 2px solid #8AA3B2;
    background: rgba(183, 230, 255, 0.06);
    transition: background-color 0.25s, border-color 0.25s;
}

.switch-track::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #8AA3B2;
    translate: 0 -50%;
    transition: left 0.3s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), background-color 0.25s;
}

#ba-toggle:checked ~ .compare-copy .switch-track {
    background: var(--cyan);
    border-color: var(--cyan);
}

#ba-toggle:checked ~ .compare-copy .switch-track::after {
    left: 22px;
    width: 24px;
    height: 24px;
    background: var(--deep);
}

#ba-toggle:focus-visible ~ .compare-copy .switch-track {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

.ba {
    width: min(420px, 100%);
}

.ba-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    border: 1px solid var(--line);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
}

.ba-frame:active {
    cursor: grabbing;
}

.ba-frame img {
    width: 100%;
    aspect-ratio: 600 / 876;
    pointer-events: none;
    -webkit-user-drag: none;
}

.ba-orig {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.18s ease-out;
}

.ba-frame:active .ba-orig,
#ba-toggle:checked ~ .ba .ba-orig {
    opacity: 1;
}

.ba-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ice);
    background: rgba(10, 13, 16, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ba-badge .is-orig,
.ba-frame:active .ba-badge .is-edited,
#ba-toggle:checked ~ .ba .ba-badge .is-edited {
    display: none;
}

.ba-frame:active .ba-badge .is-orig,
#ba-toggle:checked ~ .ba .ba-badge .is-orig {
    display: inline;
}

.ba figcaption {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--dim);
    text-align: center;
}

@media (min-width: 900px) {
    .compare-grid {
        grid-template-columns: minmax(0, 460px) minmax(0, 420px);
        justify-content: center;
        align-items: center;
        gap: clamp(48px, 8vw, 112px);
    }

    .compare-copy {
        text-align: left;
    }
}

/* ---------- numbers ---------- */

.stats {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
}

.stats li {
    padding: 32px 8px 28px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.stats li:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.stats strong {
    display: block;
    font-size: clamp(2.6rem, 1.8rem + 3.4vw, 4.4rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    margin-bottom: 12px;
    background: linear-gradient(180deg, var(--ice) 30%, var(--glow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stats small {
    font-size: 0.38em;
    font-weight: 500;
    letter-spacing: 0;
    margin-left: 4px;
}

.stats span {
    display: block;
    font-size: 0.92rem;
    color: var(--dim);
    max-width: 16em;
    margin: 0 auto;
}

.footnote {
    margin: 28px auto 0;
    max-width: 640px;
    text-align: center;
    font-size: 0.82rem;
    color: #6F92A6;
}

@media (min-width: 820px) {
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats li {
        border-right: 1px solid var(--line);
    }

    .stats li:last-child {
        border-right: 0;
    }
}

/* ---------- every screen ---------- */

.screens .tablet {
    max-width: 920px;
    margin: 0 auto 56px;
}

.trio {
    list-style: none;
    display: grid;
    gap: 32px;
    max-width: 920px;
    margin: 0 auto;
}

.trio li {
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

kbd {
    display: inline-block;
    min-width: 1.7em;
    padding: 0.05em 0.45em;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.82em;
    font-weight: 600;
    text-align: center;
    color: var(--ice);
    background: rgba(183, 230, 255, 0.08);
    border: 1px solid rgba(183, 230, 255, 0.2);
    border-bottom-width: 2px;
}

@media (min-width: 760px) {
    .trio {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- details ---------- */

.cards {
    list-style: none;
    display: grid;
    gap: 14px;
}

@media (min-width: 640px) {
    .cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- faq ---------- */

.faq .wrap {
    max-width: 800px;
}

.faq details {
    border-bottom: 1px solid var(--line);
}

.faq details:first-of-type {
    border-top: 1px solid var(--line);
}

.faq summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    cursor: pointer;
    font-size: 1.06rem;
    font-weight: 500;
    color: var(--ice);
}

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

.faq summary::after {
    content: '';
    flex: none;
    width: 10px;
    height: 10px;
    margin-right: 6px;
    border-right: 2px solid var(--cyan);
    border-bottom: 2px solid var(--cyan);
    rotate: 45deg;
    translate: 0 -3px;
    transition: rotate 0.3s var(--ease), translate 0.3s var(--ease);
}

.faq details[open] summary::after {
    rotate: -135deg;
    translate: 0 3px;
}

.faq summary:hover {
    color: var(--frost);
}

.faq details p {
    color: var(--dim);
    padding-bottom: 24px;
    max-width: 680px;
}

/* ---------- closing ---------- */

.closing {
    position: relative;
    text-align: center;
    padding-block: clamp(96px, 14vw, 180px);
}

/* the last light reaching the bottom of the sea */
.closing::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(50% 60% at 50% 45%, rgba(127, 212, 255, 0.1), transparent 70%);
}

.closing-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 32px;
    border-radius: 18px;
    box-shadow: 0 0 60px rgba(127, 212, 255, 0.35);
}

.closing h2 {
    max-width: 14em;
    margin: 0 auto 40px;
}

.platform-note {
    margin-top: 20px;
    font-size: 0.88rem;
    color: var(--dim);
}

/* ---------- footer ---------- */

footer {
    border-top: 1px solid var(--line);
    padding-block: 40px;
}

.footer-inner {
    display: grid;
    gap: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    font-size: 0.92rem;
}

.footer-links a {
    color: var(--dim);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--ice);
}

.copyright {
    font-size: 0.82rem;
    color: #6F92A6;
}

.copyright strong {
    color: var(--dim);
}

/* ---------- small screens ---------- */

@media (max-width: 560px) {
    .wrap {
        padding-inline: 20px;
    }

    .hide-sm {
        display: none;
    }

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

    .studio-tabs label {
        padding: 8px 14px;
    }
}

/* ---------- scroll reveal (CSS scroll-driven animations, where supported) ---------- */

@media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
        .reveal {
            animation: rise linear both;
            animation-timeline: view();
            animation-range: entry 0% entry 45%;
        }

        @keyframes rise {
            from {
                opacity: 0;
                translate: 0 28px;
            }
        }
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
