/* ==========================================================================
   Takeover — landing styles
   Tokens mirror the app's `protocol` design system
   (myApp/src/Components/protocol/protocol-primitives.tsx)
   ========================================================================== */

:root {
    /* Surfaces */
    --bg: #05070A;
    --panel: #10141C;
    --panel-raised: #121821;
    --panel-elevated: #1A202C;
    --panel-soft: #0D1117;
    --panel-soft-border: #1F2937;

    /* Accents */
    --accent: #FF7A00;
    --accent-dark: #A93B00;
    --gold: #FFD15B;
    --green: #43D998;
    --violet: #9B7CFF;
    --cyan: #54C8FF;
    --red: #FF5A48;

    /* Ink */
    --text: #FAFAFA;
    --muted: #9A9AA3;
    --faint: #6E6E78;
    --on-accent: #2A1204;

    --border: rgba(255, 255, 255, 0.08);
    --border-soft: rgba(255, 255, 255, 0.05);

    /* Shape — app radius scale */
    --r-icon: 13px;
    --r-pill: 15px;
    --r-btn: 16px;
    --r-card: 22px;
    --r-hero: 24px;

    --shadow-card: 0 8px 18px rgba(0, 0, 0, .16);
    --shadow-hero: 0 14px 30px rgba(0, 0, 0, 0.42);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --maxw: 1120px;
}

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

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

::selection {
    background: rgba(255, 122, 0, 0.3);
    color: #fff;
}

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

/* ---------------------------------------------------------------- layout */

.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
    position: relative;
}

/* the nav is sticky and 68px tall — keep anchored sections clear of it */
section[id] {
    scroll-margin-top: 88px;
}

/* ------------------------------------------------------------ typography */

/* Eyebrow — protocol `pageEyebrow`: 900 weight, 1.8 tracking, accent */
.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
}

.eyebrow.muted {
    color: var(--faint);
}

/* Display / section titles — protocol titles run 900 with tight tracking */
h1,
h2,
h3 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

h1 {
    font-size: clamp(2.6rem, 7vw, 4.4rem);
    letter-spacing: -0.045em;
}

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

h3 {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.lede {
    margin: 20px 0 0;
    max-width: 46ch;
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.6;
}

.section-head {
    max-width: 42rem;
    margin-bottom: 44px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head .lede {
    margin-top: 16px;
}

.section-head.center .lede {
    margin-left: auto;
    margin-right: auto;
}

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

/* 3D pressable — mirrors PrimaryAction: a 4px lip that compresses on press */
.btn3d {
    display: inline-block;
    border-radius: var(--r-btn);
    padding-bottom: 4px;
    background: var(--accent-dark);
    transition: transform .14s var(--ease), padding-bottom .14s var(--ease);
}

.btn3d>span {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: var(--r-btn);
    background: var(--accent);
    color: var(--on-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.btn3d:hover {
    transform: translateY(1px);
    padding-bottom: 3px;
}

.btn3d:active {
    transform: translateY(3px);
    padding-bottom: 1px;
}

.btn3d.neutral {
    background: #080A0E;
}

.btn3d.neutral>span {
    background: #171B22;
    border: 1px solid #2A303A;
    color: var(--text);
}

.btn3d svg {
    flex: none;
}

/* Store badges — same 3D lip, badge lockup inside */
.store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.store-btn>span {
    gap: 12px;
    padding: 0 20px;
    min-height: 58px;
    text-transform: none;
    letter-spacing: 0;
}

.store-btn .badge-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.store-btn .badge-copy small {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: .65;
}

.store-btn .badge-copy strong {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Quiet secondary link */
.ghost-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: color .18s var(--ease);
}

.ghost-link:hover {
    color: var(--accent);
}

/* ----------------------------------------------------------------- cards */

/* PremiumCard */
.card {
    position: relative;
    border-radius: var(--r-card);
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

/* HeroCard — gradient body + accent wash from the top-right */
.hero-card {
    position: relative;
    border-radius: var(--r-hero);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow-hero);
    overflow: hidden;
    background:
        linear-gradient(200deg, rgba(255, 122, 0, 0.14), transparent 62%),
        linear-gradient(180deg, #171E2A 0%, #0F141D 52%, #0A0E15 100%);
}

/* Icon tile — protocol accentIcon */
.icon-tile {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--r-icon);
    border: 1px solid var(--border);
    background: var(--panel-raised);
    flex: none;
}

/* StatPill */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--r-pill);
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pill svg {
    flex: none;
}

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

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 7, 10, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease);
}

.nav.scrolled {
    border-bottom-color: var(--border-soft);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 68px;
}

/* Brand lockup — mark + TAKEOVER / LOCK IN, exactly as in the app header */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    flex: none;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1;
}

.brand-sub {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.3em;
    line-height: 1;
    color: var(--faint);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    transition: color .18s var(--ease);
}

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

.nav-cta>span {
    min-height: 40px;
    padding: 0 18px;
    font-size: 10px;
}

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

.hero {
    position: relative;
    padding: 72px 0 96px;
    overflow: hidden;
}

/* Ambient accent bloom — the app's glowOverlayPrimary, scaled up */
.hero::before {
    content: '';
    position: absolute;
    top: -280px;
    left: 50%;
    width: 900px;
    height: 700px;
    transform: translateX(-60%);
    background: radial-gradient(closest-side, rgba(255, 122, 0, 0.16), transparent 72%);
    pointer-events: none;
    z-index: 0;
}

/* Faint concentric rings echoing the logo */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-radial-gradient(circle at 78% 34%,
            rgba(255, 122, 0, 0.055) 0 1px,
            transparent 1px 74px);
    -webkit-mask-image: radial-gradient(circle at 78% 34%, #000, transparent 62%);
    mask-image: radial-gradient(circle at 78% 34%, #000, transparent 62%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
    gap: 56px;
    align-items: center;
}

.hero-copy h1 span {
    color: var(--accent);
}

/* ---------------------------------------------------- phone mockup (app) */

.phone-stage {
    position: relative;
}

.phone {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    aspect-ratio: 340 / 700;
    border-radius: 46px;
    padding: 10px;
    background: linear-gradient(160deg, #262c38, #0d1017 42%, #22282f);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, .7),
        0 0 0 1px rgba(255, 255, 255, .05);
}

.phone-screen {
    height: 100%;
    border-radius: 37px;
    background: var(--bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 14px 13px 0;
    gap: 12px;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 108px;
    height: 26px;
    border-radius: 0 0 16px 16px;
    background: #000;
    z-index: 2;
}

/* in-app header */
.app-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
}

.app-streak {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--panel);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
}

.app-streak span {
    color: var(--faint);
    font-size: 8px;
    letter-spacing: .12em;
}

/* in-app hero */
.app-hero {
    padding: 14px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.app-hero h4 {
    margin: 6px 0 0;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.app-hero p {
    margin: 7px 0 0;
    font-size: 9.5px;
    line-height: 1.45;
    color: var(--muted);
}

.app-eyebrow {
    color: var(--accent);
    font-size: 7.5px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* daily-run card */
.app-card {
    padding: 13px;
}

.app-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 11px;
}

.app-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-row .icon-tile {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: rgba(255, 122, 0, 0.12);
    border-color: rgba(255, 122, 0, 0.24);
}

.app-row-copy {
    flex: 1;
    min-width: 0;
}

.app-row-copy b {
    display: block;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.app-row-copy i {
    display: block;
    font-style: normal;
    font-size: 9px;
    color: var(--faint);
    margin-top: 1px;
}

.app-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

.app-timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 11px;
}

.app-timer b {
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.app-timer small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--faint);
    font-size: 8.5px;
    font-weight: 600;
}

.app-cta {
    width: 100%;
}

.app-cta>span {
    min-height: 40px;
    justify-content: space-between;
    padding: 0 14px;
    font-size: 9.5px;
}

.tiny-label {
    color: var(--faint);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .06em;
}

/* Today's path — the run's nodes, connected by a road */
.app-path {
    position: relative;
    padding-bottom: 12px;
}

.app-node {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 9px;
}

/* the road between nodes */
.app-node+.app-node::before {
    content: '';
    position: absolute;
    left: 15px;
    top: -13px;
    width: 2px;
    height: 13px;
    background: var(--border);
}

.node-dot {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex: none;
    border-radius: 11px;
    background: var(--panel-raised);
    border: 1px solid var(--border);
    box-shadow: 0 3px 0 #080A0E;
}

.node-dot.on {
    background: var(--accent);
    border-color: transparent;
    box-shadow: 0 3px 0 var(--accent-dark);
}

.app-node.dim {
    opacity: .55;
}

/* floating annotation chips over the phone */
.chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(24, 28, 36, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .5);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
    animation: float 7s ease-in-out infinite;
}

.chip-left {
    left: -34px;
    top: 30%;
}

.chip-right {
    right: -34px;
    top: -3%;
    animation-delay: -3.5s;
}

@keyframes float {

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

    50% {
        transform: translateY(-9px);
    }
}

/* --------------------------------------------------------------- modules */

.bento {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.bento .card {
    padding: 22px;
    transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}

.bento .card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.14);
    background: var(--panel-raised);
}

.bento h3 {
    margin: 18px 0 8px;
}

.bento p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.bento .module-no {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    color: var(--faint);
}

/* per-module accent on the icon tile */
.t-accent {
    background: rgba(255, 122, 0, .12);
    border-color: rgba(255, 122, 0, .26);
    color: var(--accent);
}

.t-violet {
    background: rgba(155, 124, 255, .12);
    border-color: rgba(155, 124, 255, .26);
    color: var(--violet);
}

.t-cyan {
    background: rgba(84, 200, 255, .12);
    border-color: rgba(84, 200, 255, .26);
    color: var(--cyan);
}

.t-gold {
    background: rgba(255, 209, 91, .12);
    border-color: rgba(255, 209, 91, .26);
    color: var(--gold);
}

.t-red {
    background: rgba(255, 90, 72, .12);
    border-color: rgba(255, 90, 72, .26);
    color: var(--red);
}

.t-green {
    background: rgba(67, 217, 152, .12);
    border-color: rgba(67, 217, 152, .26);
    color: var(--green);
}

/* -------------------------------------------------------- focus / split  */

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.feature-list li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.feature-list .icon-tile {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    /* nudge the tile so its centre sits on the title's cap height */
    margin-top: -1px;
}

/* Scoped to the copy column — a bare `span` here would also match .icon-tile
   and knock it out of `display: grid` (icon jumps to the corner) and off its
   accent colour. */
.feature-list .ft-copy {
    flex: 1;
    min-width: 0;
}

.feature-list b {
    display: block;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.feature-list .ft-copy span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    margin-top: 3px;
}

/* Tako panel */
.tako-panel {
    position: relative;
    display: grid;
    place-items: center;
    padding: 56px 24px;
    min-height: 340px;
}

.tako-panel::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255, 122, 0, .13), transparent 70%);
}

.tako {
    position: relative;
    width: 240px;
    max-width: 70%;
    animation: float 6s ease-in-out infinite;
}

.tako-caption {
    position: relative;
    margin: 26px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    max-width: 30ch;
}

/* ------------------------------------------------------------ steps/path */

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    counter-reset: step;
}

.steps .card {
    padding: 26px 24px;
}

.step-no {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: rgba(255, 122, 0, .12);
    border: 1px solid rgba(255, 122, 0, .26);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.steps h3 {
    margin: 18px 0 8px;
}

.steps p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

/* ------------------------------------------------------------------- FAQ */

.faq {
    display: grid;
    gap: 12px;
    max-width: 46rem;
    margin: 0 auto;
}

.faq details {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--panel);
    overflow: hidden;
    transition: border-color .22s var(--ease), background .22s var(--ease);
}

.faq details[open] {
    background: var(--panel-raised);
    border-color: rgba(255, 255, 255, 0.13);
}

.faq summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.015em;
}

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

.faq summary::after {
    content: '';
    margin-left: auto;
    width: 9px;
    height: 9px;
    flex: none;
    border-right: 2px solid var(--faint);
    border-bottom: 2px solid var(--faint);
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform .24s var(--ease), border-color .24s var(--ease);
}

.faq details[open] summary::after {
    transform: rotate(-135deg) translate(-2px, -2px);
    border-color: var(--accent);
}

.faq .answer {
    margin: 0;
    padding: 0 20px 20px 60px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

.faq .q-dot {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    flex: none;
    border-radius: 9px;
    background: rgba(255, 122, 0, .12);
    border: 1px solid rgba(255, 122, 0, .26);
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------------- CTA */

.cta-card {
    padding: 64px 40px;
    text-align: center;
}

.cta-card .store-row {
    justify-content: center;
}

.cta-card .lede {
    margin-left: auto;
    margin-right: auto;
}

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

.footer {
    border-top: 1px solid var(--border-soft);
    padding: 44px 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.footer-links a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    transition: color .18s var(--ease);
}

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

.copyright {
    color: var(--faint);
    font-size: 13px;
}

/* ------------------------------------------------------------- legal doc */

.legal {
    padding: 64px 0 96px;
    max-width: 780px;
    margin: 0 auto;
}

.legal .updated {
    margin: 12px 0 0;
    color: var(--faint);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
}

.legal h2 {
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    margin: 48px 0 14px;
}

.legal p,
.legal li {
    color: #C7C7CE;
    font-size: 15.5px;
    line-height: 1.75;
}

.legal p {
    margin: 0 0 14px;
}

.legal ul {
    padding-left: 20px;
    margin: 14px 0;
}

.legal li {
    margin-bottom: 8px;
}

.legal a {
    color: var(--accent);
    font-weight: 600;
}

.legal a:hover {
    text-decoration: underline;
}

.legal hr {
    border: 0;
    border-top: 1px solid var(--border-soft);
    margin: 48px 0 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    transition: color .18s var(--ease);
}

.back-link:hover {
    color: var(--accent);
}

/* --------------------------------------------------------- reveal on scroll */

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

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

/* ----------------------------------------------------------- breakpoints */

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .hero-copy {
        max-width: 34rem;
    }

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

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

    .split {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 620px) {
    .section {
        padding: 72px 0;
    }

    .hero {
        padding: 48px 0 72px;
    }

    .bento {
        grid-template-columns: 1fr;
    }

    .store-row {
        flex-direction: column;
        align-items: stretch;
    }

    .store-btn {
        width: 100%;
    }

    .chip-left {
        left: -12px;
    }

    .chip-right {
        right: -10px;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

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