/* =========================================================
   Music Wall — Website
   Inspired by Alcove's warmth, tuned for music + album art.
   ========================================================= */

:root {
    /* Palette */
    --bg-cream: #faf5ee;
    --bg-cream-soft: #f4ecde;
    --bg-dark: #0d0c14;
    --bg-dark-2: #161423;
    --ink: #14111d;
    --ink-soft: #4a4458;
    --ink-mute: #7a7488;
    --line: rgba(20, 17, 29, 0.08);
    --line-strong: rgba(20, 17, 29, 0.14);

    --on-dark: #f4ecde;
    --on-dark-soft: rgba(244, 236, 222, 0.72);
    --on-dark-mute: rgba(244, 236, 222, 0.5);
    --line-dark: rgba(244, 236, 222, 0.10);
    --line-dark-strong: rgba(244, 236, 222, 0.18);

    /* Type — system sans only (no rounded “app” display) */
    --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;

    /* Layout */
    --maxw: 1180px;
    --radius: 18px;
    --radius-sm: 12px;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg-cream);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

::selection { background: #2a2a2a; color: #faf5ee; }

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

/* =========================================================
   Header
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    padding: 14px 0;
    transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    background: rgba(250, 245, 238, 0.78);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom-color: var(--line);
}

.nav-inner {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.01em;
}

.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    overflow: hidden;
    flex-shrink: 0;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(20, 17, 29, 0.18);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: top;
}

.brand-mark--footer {
    width: 26px;
    height: 26px;
    border-radius: 7px;
}

.brand-name { line-height: 1; }

.brand-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    background: rgba(20, 17, 29, 0.07);
    padding: 3px 7px;
    border-radius: 999px;
    text-transform: lowercase;
}

.primary-nav {
    justify-self: center;
    display: flex;
    gap: 28px;
    font-size: 14px;
    color: var(--ink-soft);
}

.primary-nav a {
    position: relative;
    padding: 6px 2px;
    transition: color 0.2s var(--ease);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--ink);
    transition: width 0.25s var(--ease), left 0.25s var(--ease);
}
.primary-nav a:hover::after { width: 100%; left: 0; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: var(--bg-cream);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(20, 17, 29, 0.18);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(20, 17, 29, 0.26);
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.005em;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
    will-change: transform;
}

.btn-primary {
    background: var(--ink);
    color: var(--bg-cream);
    box-shadow: 0 10px 30px rgba(20, 17, 29, 0.22);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(20, 17, 29, 0.32);
}

.btn-ghost {
    background: rgba(20, 17, 29, 0.06);
    color: var(--ink);
}
.btn-ghost:hover {
    background: rgba(20, 17, 29, 0.10);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 28px;
    font-size: 16px;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
    position: relative;
    padding: 64px 0 40px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: rgba(20, 17, 29, 0.06);
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 700;
    color: var(--ink);
    margin: 0 auto 22px;
    max-width: 14ch;
}

.hero-title-accent {
    display: inline;
    font-style: italic;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 0.42em 0 0 rgba(20, 17, 29, 0.08);
}

.hero-sub {
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--ink-soft);
    max-width: 60ch;
    margin: 0 auto 36px;
}

.hero-ctas {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 56px;
}

.hero-visual {
    position: relative;
    margin-top: 16px;
}

.mac-window {
    margin: 0 auto;
    max-width: 1080px;
    background: #1c1a26;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04) inset,
        0 24px 60px -12px rgba(20, 17, 29, 0.35);
    transform: perspective(1800px) rotateX(2deg);
    transition: transform 0.5s var(--ease);
}
.mac-window:hover { transform: perspective(1800px) rotateX(0deg); }

.mac-bar {
    height: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    background: #2a2833;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}
.mac-bar .dot {
    width: 12px; height: 12px; border-radius: 50%;
    box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.25);
}
.mac-bar .dot-r { background: #ff5f57; }
.mac-bar .dot-y { background: #febc2e; }
.mac-bar .dot-g { background: #28c840; }
.mac-title {
    position: absolute;
    left: 0; right: 0;
    text-align: center;
    font-size: 12px;
    color: rgba(244, 236, 222, 0.55);
    font-weight: 500;
    pointer-events: none;
}

.mac-screen {
    aspect-ratio: 16 / 10;
    background: #000;
    overflow: hidden;
}
.mac-screen img { width: 100%; height: 100%; object-fit: cover; }

.hero-hint {
    text-align: center;
    margin-top: 22px;
    font-size: 13.5px;
    color: var(--ink-mute);
}

/* =========================================================
   Trust strip
   ========================================================= */

.trust {
    padding: 28px 0 8px;
}
.trust-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px 28px;
    color: var(--ink-soft);
}
.trust-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    gap: 2px;
}
.trust-item strong {
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
}
.trust-item span {
    font-size: 12px;
    color: var(--ink-mute);
}
.trust-divider {
    width: 1px; height: 26px;
    background: var(--line-strong);
}

/* =========================================================
   Social proof (App Store)
   ========================================================= */

.social-proof {
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--line);
}

.social-proof-store {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.app-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: #fff;
    color: var(--ink);
    box-shadow: 0 8px 24px -12px rgba(20, 17, 29, 0.15);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.app-store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(20, 17, 29, 0.2);
    border-color: var(--ink);
}

.app-store-badge-icon {
    flex-shrink: 0;
    color: var(--ink);
}

.app-store-badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}
.app-store-badge-line1 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink-mute);
}
.app-store-badge-line2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.social-proof-facts {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto 36px;
}

.social-fact {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.social-fact-wide {
    grid-column: 1 / -1;
}

.social-fact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.social-fact-value {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.social-fact-note {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.4;
    margin-top: 2px;
}

.social-proof-footnote {
    text-align: center;
    color: var(--ink-soft);
    font-size: 15px;
    max-width: 52ch;
    margin: 0 auto 16px;
    line-height: 1.5;
}

.social-proof-cta {
    text-align: center;
}

/* =========================================================
   Section heads
   ========================================================= */

section { position: relative; }

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

.kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 14px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.6vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--ink);
}
.section-head h2 em {
    font-style: italic;
    color: var(--ink-soft);
    font-weight: 600;
}

.section-head .lede {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 17px;
}

/* =========================================================
   Gallery
   ========================================================= */

.gallery {
    background: var(--bg-cream-soft);
    padding: 96px 0 72px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.gallery-rail-wrap {
    position: relative;
    max-width: calc(var(--maxw) + 80px);
    margin: 0 auto;
    padding: 0 28px;
}

.gallery-rail {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 18px 4px 28px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.gallery-rail::-webkit-scrollbar { display: none; }

.shot {
    flex: 0 0 78%;
    max-width: 880px;
    scroll-snap-align: center;
    background: #1c1a26;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 42px -18px rgba(20, 17, 29, 0.35);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.shot:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -22px rgba(20, 17, 29, 0.45);
}
.shot img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.shot figcaption {
    color: rgba(244, 236, 222, 0.85);
    font-size: 13px;
    padding: 12px 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #14111d;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 22px rgba(20, 17, 29, 0.18);
    z-index: 2;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.gallery-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 12px 28px rgba(20, 17, 29, 0.26);
}
.gallery-arrow.prev { left: 6px; }
.gallery-arrow.next { right: 6px; }

.gallery-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 6px;
}
.dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(20, 17, 29, 0.18);
    transition: background 0.2s var(--ease), transform 0.2s var(--ease), width 0.25s var(--ease);
}
.dot-btn:hover { background: rgba(20, 17, 29, 0.32); }
.dot-btn.is-active {
    width: 22px;
    border-radius: 999px;
    background: var(--ink);
}

/* =========================================================
   Features
   ========================================================= */

.features {
    padding: 110px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 8px 22px -12px rgba(20, 17, 29, 0.10);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 14px 32px -14px rgba(20, 17, 29, 0.18);
    border-color: var(--line-strong);
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(20, 17, 29, 0.06);
    color: var(--ink);
    margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }

.feature h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 8px;
}
.feature p {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* =========================================================
   Roadmap
   ========================================================= */

.roadmap {
    padding: 24px 0 110px;
}

.roadmap-list {
    list-style: none;
    max-width: 760px;
    margin: 18px auto 0;
    display: grid;
    gap: 14px;
}

.roadmap-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 22px -12px rgba(20, 17, 29, 0.10);
}

.roadmap-check {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 1.5px solid rgba(20, 17, 29, 0.18);
    background: rgba(20, 17, 29, 0.03);
    position: relative;
    margin-top: 2px;
}

.roadmap-item--done .roadmap-check {
    background: var(--ink);
    border-color: var(--ink);
}

.roadmap-item--done .roadmap-check::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    width: 6px;
    height: 11px;
    border-right: 2px solid var(--bg-cream);
    border-bottom: 2px solid var(--bg-cream);
    transform: rotate(40deg);
}

.roadmap-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 19px;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 4px;
}

.roadmap-item p {
    font-size: 14.5px;
    color: var(--ink-soft);
}

/* =========================================================
   How it works
   ========================================================= */

.how {
    padding: 100px 0;
    background: var(--ink);
    color: var(--on-dark);
}
.how .kicker { color: var(--on-dark-mute); }
.how .section-head h2 { color: var(--on-dark); }

.steps {
    list-style: none;
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-dark-strong);
    border-radius: var(--radius);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.step:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(244, 236, 222, 0.28);
}

.step-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--on-dark);
    line-height: 1;
}

.step-num::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    background: var(--on-dark-mute);
}

.step h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--on-dark);
    margin-bottom: 6px;
    letter-spacing: -0.015em;
}
.step p {
    color: var(--on-dark-soft);
    font-size: 14.5px;
}

/* =========================================================
   Requirements
   ========================================================= */

.requirements {
    padding: 110px 0;
}

.req-list {
    list-style: none;
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 22px -12px rgba(20, 17, 29, 0.10);
}
.req-list li {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
}
.req-list li:last-child { border-bottom: none; }
.req-key {
    color: var(--ink-mute);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.req-val { color: var(--ink); font-weight: 500; }

/* =========================================================
   CTA
   ========================================================= */

.cta {
    position: relative;
    padding: 120px 0;
    background: var(--ink);
    color: var(--on-dark);
    overflow: hidden;
    text-align: center;
    border-top: 1px solid var(--line-dark);
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 700;
    max-width: 18ch;
}
.cta p {
    color: var(--on-dark-soft);
    font-size: 17px;
    margin-bottom: 18px;
}

.cta .btn-primary {
    background: var(--bg-cream);
    color: var(--ink);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.cta .btn-primary:hover {
    box-shadow: 0 22px 48px rgba(0,0,0,0.45);
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    background: var(--bg-cream);
    padding: 56px 0 64px;
    border-top: 1px solid var(--line);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}
.foot-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
}
.foot-copy { color: var(--ink-soft); font-size: 14px; }
.foot-small { color: var(--ink-mute); font-size: 12.5px; max-width: 56ch; }

/* =========================================================
   Reveal animations
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .shot { flex-basis: 88%; }
    .hero { padding-top: 48px; }
    .social-proof-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 22px; }
    .nav-inner { padding: 0 22px; gap: 12px; }
    .primary-nav { display: none; }
    .nav-cta { padding: 9px 14px; font-size: 13px; }
    .brand-tag { display: none; }

    .hero { padding: 40px 0 24px; }
    .eyebrow { margin-bottom: 22px; font-size: 11.5px; }
    .hero-ctas { margin-bottom: 40px; }

    .social-proof { padding: 56px 0 44px; }
    .social-proof-facts { grid-template-columns: 1fr; }
    .social-fact-wide { grid-column: auto; }
    .app-store-badge { padding: 10px 16px 10px 14px; }
    .app-store-badge-line2 { font-size: 17px; }

    .gallery { padding: 72px 0 56px; }
    .gallery-rail-wrap { padding: 0 16px; }
    .gallery-arrow { display: none; }
    .shot { flex-basis: 92%; }
    .shot figcaption { font-size: 12.5px; padding: 10px 14px 14px; }

    .features { padding: 80px 0; }
    .feature-grid { grid-template-columns: 1fr; gap: 14px; }
    .feature { padding: 24px 22px; }
    .roadmap { padding: 8px 0 80px; }
    .roadmap-item {
        grid-template-columns: 26px 1fr;
        gap: 14px;
        padding: 18px;
    }

    .how, .requirements, .cta { padding: 80px 0; }

    .req-list li { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }

    .trust-divider { display: none; }
    .trust-inner { gap: 14px 22px; }
}

@media (max-width: 480px) {
    .hero-title { letter-spacing: -0.03em; }
    .mac-bar { height: 26px; }
    .mac-bar .dot { width: 10px; height: 10px; }
    .mac-title { font-size: 11px; }
    .mac-window { border-radius: 14px; transform: none; }
    .shot { flex-basis: 96%; border-radius: 12px; }

    .feature-icon { width: 40px; height: 40px; }
    .req-list { border-radius: var(--radius-sm); }
}
