/* ═══════════════════════════════════════════════════════════════
   AMITA — Free downloads
   Peek carousel + Ableton accents + product visuals
   ═══════════════════════════════════════════════════════════════ */

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

:root {
    --bg: #0a0a0c;
    --bg-warm: #121218;
    --surface: #17171c;
    --surface-light: #22222a;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text: #f4f4f5;
    --text-mid: #d8d8e0;
    --text-muted: #b4b4be;
    --accent: #ff8c42;
    --accent-hover: #ff7020;
    --accent-glow: rgba(255, 140, 66, 0.16);
    --ableton: #ff764d;
    --ableton-dim: rgba(255, 118, 77, 0.14);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-card: 18px;
    --radius-input: 10px;
    --card-width: 78%;
    --card-gap: 22px;
    --stage-inset: 72px;
    --shot-width: 280px;
    --shot-ratio: 2 / 3;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-x: clip;
    overflow-y: auto;
}

.grain {
    position: fixed;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

.ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 40% at 15% 10%, rgba(255, 118, 77, 0.14), transparent 60%),
        radial-gradient(ellipse 45% 35% at 90% 80%, rgba(80, 80, 120, 0.16), transparent 55%);
}

/* Header — same system as main site */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 12, 0.88);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid var(--border);
}

.site-header .logo {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-header .logo:hover { color: var(--accent); }

.header-cta {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, gap 0.3s var(--ease);
}

.header-cta::after {
    content: '\2192';
    transition: transform 0.3s var(--ease);
}

.header-cta:hover {
    color: var(--accent-hover);
    gap: 12px;
}

.header-cta:hover::after { transform: translateX(2px); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-menu {
    position: relative;
}

.menu-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.menu-toggle span {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}

.menu-toggle:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.04);
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 20;
    min-width: 196px;
    padding: 8px;
    background: rgba(18, 18, 24, 0.96);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.menu-dropdown a {
    display: block;
    padding: 11px 12px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text-mid);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
}

.menu-dropdown a:hover,
.menu-dropdown a[aria-current="page"] {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.menu-dropdown a[aria-current="page"] {
    color: var(--accent);
}

.site-footer {
    position: relative;
    z-index: 4;
    padding: 48px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--bg);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-legal a:hover { color: var(--text); }

.footer-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--border-strong);
}

.footer-socials {
    display: flex;
    gap: 24px;
}

.footer-socials a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s var(--ease);
    text-decoration: none;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    border: none;
}

.footer-socials a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.free-page {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 96px 0 10px;
}

.stage {
    position: relative;
    width: 100%;
    max-width: 1240px;
    padding: 8px var(--stage-inset);
}

.viewport {
    --peek: calc((100% - var(--card-width)) / 2);
    overflow: hidden;
    padding: 12px 0 8px;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0,
        rgb(0 0 0 / 0.22) calc(var(--peek) * 0.28),
        rgb(0 0 0 / 0.55) calc(var(--peek) * 0.52),
        rgb(0 0 0 / 0.86) calc(var(--peek) * 0.78),
        #000 var(--peek),
        #000 calc(100% - var(--peek)),
        rgb(0 0 0 / 0.86) calc(100% - var(--peek) * 0.78),
        rgb(0 0 0 / 0.55) calc(100% - var(--peek) * 0.52),
        rgb(0 0 0 / 0.22) calc(100% - var(--peek) * 0.28),
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0,
        rgb(0 0 0 / 0.22) calc(var(--peek) * 0.28),
        rgb(0 0 0 / 0.55) calc(var(--peek) * 0.52),
        rgb(0 0 0 / 0.86) calc(var(--peek) * 0.78),
        #000 var(--peek),
        #000 calc(100% - var(--peek)),
        rgb(0 0 0 / 0.86) calc(100% - var(--peek) * 0.78),
        rgb(0 0 0 / 0.55) calc(100% - var(--peek) * 0.52),
        rgb(0 0 0 / 0.22) calc(100% - var(--peek) * 0.28),
        transparent 100%
    );
}

.viewport::-webkit-scrollbar { display: none; }

.viewport.is-at-start {
    -webkit-mask-image: linear-gradient(
        to right,
        #000 0,
        #000 calc(100% - var(--peek)),
        rgb(0 0 0 / 0.86) calc(100% - var(--peek) * 0.78),
        rgb(0 0 0 / 0.55) calc(100% - var(--peek) * 0.52),
        rgb(0 0 0 / 0.22) calc(100% - var(--peek) * 0.28),
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        #000 0,
        #000 calc(100% - var(--peek)),
        rgb(0 0 0 / 0.86) calc(100% - var(--peek) * 0.78),
        rgb(0 0 0 / 0.55) calc(100% - var(--peek) * 0.52),
        rgb(0 0 0 / 0.22) calc(100% - var(--peek) * 0.28),
        transparent 100%
    );
}

.viewport.is-at-end {
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0,
        rgb(0 0 0 / 0.22) calc(var(--peek) * 0.28),
        rgb(0 0 0 / 0.55) calc(var(--peek) * 0.52),
        rgb(0 0 0 / 0.86) calc(var(--peek) * 0.78),
        #000 var(--peek),
        #000 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0,
        rgb(0 0 0 / 0.22) calc(var(--peek) * 0.28),
        rgb(0 0 0 / 0.55) calc(var(--peek) * 0.52),
        rgb(0 0 0 / 0.86) calc(var(--peek) * 0.78),
        #000 var(--peek),
        #000 100%
    );
}

.track {
    display: flex;
    align-items: stretch;
    gap: var(--card-gap);
    padding-inline: calc((100% - var(--card-width)) / 2);
}

.card {
    flex: 0 0 var(--card-width);
    opacity: 0.45;
    transition: opacity 0.32s ease;
    cursor: pointer;
}

.card.is-active {
    opacity: 1;
    cursor: default;
    z-index: 2;
}

.card:not(.is-active) {
    pointer-events: auto;
}

.card-inner {
    height: 100%;
    min-height: 480px;
    padding: 22px;
    background: linear-gradient(180deg, #1d1d24, #15151a);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-card);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.25),
        0 12px 32px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    transform: scale(0.92);
    transform-origin: center center;
    transition: transform 0.32s var(--ease), border-color 0.32s ease, box-shadow 0.32s ease;
}

.card.is-active .card-inner {
    transform: scale(1);
    border-color: rgba(255, 118, 77, 0.35);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.25),
        0 16px 44px rgba(0, 0, 0, 0.42);
}

.card-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 22px;
    align-items: center;
}

.card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    min-height: 0;
}

.card-visual-product {
    width: var(--shot-width);
    height: calc(var(--shot-width) * 3 / 2);
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: var(--shot-ratio);
    margin-inline: auto;
    margin-block: auto;
    flex-shrink: 0;
    overflow: hidden;
}

.product-shot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
    -webkit-user-drag: none;
    user-select: none;
}

.card-visual-template {
    background: transparent;
}

.card-visual-landscape {
    width: 100%;
    max-width: var(--shot-width);
    height: auto;
    aspect-ratio: auto;
}

.card-visual-landscape .product-shot {
    object-fit: contain;
    height: auto;
    border-radius: 10px;
}

.card-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.card-tag {
    display: inline-flex;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ableton);
    padding: 0;
    margin-bottom: 12px;
}

.card-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.card h2 {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 750;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 10px;
}

.card-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent, #ff6b4a);
    margin-bottom: 8px;
}

.card-copy {
    font-size: 15.5px;
    color: var(--text-mid);
    line-height: 1.6;
    max-width: 40ch;
    margin-bottom: 14px;
}

.card-points {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-points li {
    position: relative;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.55;
    max-width: 40ch;
    padding-left: 16px;
}

.card-points li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent, #ff6b4a);
}

.card-visual-soon {
    background: rgba(16, 16, 20, 0.55);
    border: 1px dashed var(--border-strong);
    border-radius: 14px;
    padding: 18px;
    min-height: 200px;
}

.soon-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 240px;
    text-align: center;
}

.soon-mock-mark {
    font-size: 42px;
    font-weight: 750;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.12);
}

.soon-mock-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
}

.soon-mock-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.card-preview .locked-panel {
    margin-top: auto;
}

.locked-panel {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 36px 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px dashed rgba(255, 255, 255, 0.14);
    color: var(--text-muted);
}

.lock-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
}

.locked-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stage-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: rgba(23, 23, 28, 0.92);
    color: var(--text-mid);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.stage-arrow:hover:not(:disabled) {
    color: var(--accent);
    border-color: rgba(255, 140, 66, 0.45);
}

.stage-arrow:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.stage-arrow:disabled {
    opacity: 0.28;
    cursor: default;
}

.stage-prev { left: 12px; }
.stage-next { right: 12px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 16px 4px;
}

.carousel-dot {
    width: 18px;
    height: 8px;
    padding: 0;
    border: 1px solid rgba(139, 139, 150, 0.5);
    border-radius: 3px;
    background: rgba(139, 139, 150, 0.18);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.carousel-dot:hover {
    border-color: rgba(255, 118, 77, 0.6);
    background: rgba(255, 118, 77, 0.25);
}

.carousel-dot.is-active {
    background: var(--ableton);
    border-color: var(--ableton);
    box-shadow: 0 0 10px rgba(255, 118, 77, 0.35);
}

.carousel-dot:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.field-input {
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
    background: #0e0e12;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-input);
    padding: 12px 14px;
    outline: none;
    touch-action: auto;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-input::placeholder { color: rgba(200, 200, 210, 0.55); }

.field-input:focus {
    border-color: rgba(255, 140, 66, 0.55);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.field-input.error {
    border-color: #ef4444;
}

.field-error {
    font-size: 12px;
    color: #f87171;
    min-height: 0;
    overflow: hidden;
}

.field-error.show {
    min-height: 16px;
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.45;
    cursor: pointer;
}

.consent-check input {
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
    cursor: pointer;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 18px;
    background: var(--ableton);
    color: #111;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.submit-play {
    font-size: 11px;
}

.form-note {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.45;
    text-align: center;
}

/* Simple pages keep working with shared tokens */
.simple-page {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px 32px;
}

.simple-card {
    width: 100%;
    max-width: 480px;
    padding: 36px 32px 28px;
    background: linear-gradient(180deg, #1d1d24, #15151a);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-card);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.simple-card .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ableton);
    margin-bottom: 10px;
}

.simple-card h1 {
    font-size: 26px;
    font-weight: 750;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.simple-card p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0 auto 10px;
    max-width: 36ch;
}

.simple-card .fine-print {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

.simple-card a { color: var(--accent); text-decoration: none; }
.simple-card a:hover { color: var(--accent-hover); }

.unlock-card { max-width: 560px; text-align: left; }
.unlock-card h1 { text-align: left; }
.unlock-card > p { margin-left: 0; margin-bottom: 22px; }

.download-item {
    border-top: 1px solid var(--border);
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.download-item:last-of-type { border-bottom: 1px solid var(--border); }
.download-info { flex: 1; min-width: 0; }
.download-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ableton);
    margin-bottom: 6px;
}
.download-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.download-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: var(--ableton);
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.download-btn span {
    color: #fff;
    opacity: 1;
}

.download-btn:hover { background: var(--accent-hover); }
.download-coming-soon { opacity: 0.55; }
.download-btn-soon {
    background: var(--surface-light);
    color: var(--text-muted);
    cursor: not-allowed;
}
.download-btn-soon:hover { background: var(--surface-light); }

/* Phone / tablet: native swipe. Do not intercept touch in JS. */
@media (pointer: coarse) {
    .viewport {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-snap-stop: always;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Mask on a scroll container breaks swipe on iOS. Fade stays on desktop. */
        -webkit-mask-image: none;
        mask-image: none;
    }

    .track {
        transform: none !important;
        transition: none !important;
    }

    .card {
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
}

@media (max-width: 980px) {
    :root {
        --card-width: 90%;
        --card-gap: 16px;
        --stage-inset: 14px;
        --shot-width: 200px;
    }

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

    .soon-mock { min-height: 140px; }

    .card-inner {
        min-height: 0;
        padding: 18px 16px 16px;
    }

    .stage-arrow { width: 38px; height: 38px; }
    .stage-prev { left: 2px; }
    .stage-next { right: 2px; }
}

@media (max-width: 600px) {
    /* Page can scroll — footer sits below the card, not squeezed into the viewport */
    .site-header {
        padding: 10px 14px;
    }

    .site-header .logo {
        font-size: 13px;
        letter-spacing: 0.18em;
    }

    .header-cta {
        font-size: 11px;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
    }

    .free-page {
        justify-content: flex-start;
        padding: 64px 0 24px;
    }

    .site-footer {
        padding: 18px 16px 28px;
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .footer-legal {
        gap: 16px;
        font-size: 11px;
    }

    .footer-socials {
        gap: 18px;
    }

    :root {
        --card-width: 92%;
        --shot-width: 180px;
    }

    .card-visual-product {
        width: var(--shot-width);
        height: calc(var(--shot-width) * 3 / 2);
    }

    .card-visual-landscape {
        max-width: 100%;
    }


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

    .card-visual {
        order: -1;
        justify-self: center;
    }

    .card-kicker {
        font-size: 11px;
        color: var(--text-mid);
        margin-bottom: 6px;
    }

    .card h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .card-copy {
        font-size: 14px;
        color: var(--text-mid);
        margin-bottom: 12px;
        display: block;
    }

    .card-points li {
        font-size: 13.5px;
    }

    .signup-form {
        gap: 10px;
    }

    .field-input {
        padding: 12px 14px;
        font-size: 16px; /* avoid iOS zoom */
    }

    .consent-check {
        font-size: 13px;
        color: var(--text-mid);
    }

    .submit-btn {
        padding: 14px 16px;
        font-size: 14px;
    }

    .form-note {
        font-size: 12px;
        color: var(--text-mid);
    }
}


@media (prefers-reduced-motion: reduce) {
    .viewport, .track, .card, .card-inner, .stage-arrow, .submit-btn {
        scroll-behavior: auto;
        transition: none;
    }
}
