/* mycadre.app — 2026 */

:root {
    --bg: #060606;
    --surface: #0e0e0e;
    --surface-hover: #151515;
    --border: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.1);
    --text: #ededed;
    --text-secondary: #888;
    --text-muted: #555;
    --primary: #009152;
    --primary-hover: #00a85e;
    --primary-glow: rgba(0, 145, 82, 0.12);
    --error: #ef4444;
    --error-bg: rgba(239, 68, 68, 0.06);
    --radius: 14px;
    --radius-sm: 10px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --max-width: 720px;
    --max-width-wide: 960px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ─────────────────────────────────────── */

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

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s var(--ease-out);
}

a:hover {
    color: var(--primary-hover);
}

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

ul, ol {
    list-style: none;
}

/* ── Skip Link ─────────────────────────────────── */

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 8px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
    transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
    top: 16px;
    color: #fff;
}

/* ── Navigation ────────────────────────────────── */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 6, 6, 0.85);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

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

.nav-icon {
    border-radius: 6px;
}

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

/* CSS-only hamburger */
.nav-toggle-input {
    display: none;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text-secondary);
    border-radius: 1px;
    transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
    position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
    content: "";
    position: absolute;
    width: 100%;
}

.nav-toggle-bar::before {
    top: -6px;
}

.nav-toggle-bar::after {
    top: 6px;
}

/* Hamburger → X transform */
.nav-toggle-input:checked ~ .nav-toggle .nav-toggle-bar {
    background: transparent;
}

.nav-toggle-input:checked ~ .nav-toggle .nav-toggle-bar::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--text);
}

.nav-toggle-input:checked ~ .nav-toggle .nav-toggle-bar::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--text);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s var(--ease-out);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--primary);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

/* ── Page Layout ───────────────────────────────── */

.page-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.page-content {
    flex: 1;
    padding: 64px 24px 80px;
}

.content-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.content-inner--wide {
    max-width: var(--max-width-wide);
}

/* ── Page Typography ───────────────────────────── */

.page-content h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-wrap: balance;
    margin-bottom: 16px;
    animation: fadeUp 0.6s var(--ease-out) both;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-wrap: pretty;
    margin-bottom: 48px;
    animation: fadeUp 0.6s var(--ease-out) 0.08s both;
}

.page-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin-top: 56px;
    margin-bottom: 16px;
}

.page-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.page-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    text-wrap: pretty;
    margin-bottom: 16px;
}

.page-content p:last-child {
    margin-bottom: 0;
}

.page-content ul,
.page-content ol {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.page-content li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 6px;
}

.page-content strong {
    color: var(--text);
    font-weight: 600;
}

.text-muted {
    color: var(--text-muted);
}

.effective-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ── Hero (Home) ───────────────────────────────── */

.hero {
    text-align: center;
    padding: 80px 24px 64px;
    position: relative;
}

.hero .glow {
    position: absolute;
    top: -200px;
    left: 50%;
    translate: -50% 0;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: breathe 8s ease-in-out infinite;
}

.hero-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-icon {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    margin-bottom: 28px;
    box-shadow: 0 0 48px var(--primary-glow);
    animation: fadeUp 0.6s var(--ease-out) both;
}

.hero h1 {
    font-size: clamp(2.75rem, 8vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-wrap: balance;
    margin-bottom: 20px;
    animation: fadeUp 0.6s var(--ease-out) 0.08s both;
}

.hero-tagline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-wrap: pretty;
    margin-bottom: 36px;
    animation: fadeUp 0.6s var(--ease-out) 0.16s both;
}

.hero-cta {
    animation: fadeUp 0.6s var(--ease-out) 0.24s both;
}

.hero-cta-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ── Phone Gallery (Home preview) ──────────────── */

.preview-section {
    padding-top: 0;
    padding-bottom: 48px;
}

.phone-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    max-width: 680px;
    margin: 0 auto;
    perspective: 1200px;
}

.phone-frame {
    flex-shrink: 0;
    width: 180px;
    border-radius: 24px;
    padding: 8px;
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid var(--border);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        0 0 40px var(--primary-glow);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.phone-frame:hover {
    box-shadow:
        0 24px 70px rgba(0,0,0,0.6),
        0 0 60px rgba(0, 145, 82, 0.18);
    transform: translateY(-4px);
}

.phone-frame--center {
    width: 200px;
    z-index: 2;
    transform: translateY(-12px);
}

.phone-frame--center:hover {
    transform: translateY(-16px);
}

.phone-frame--left {
    transform: rotateY(6deg);
    opacity: 0.85;
}

.phone-frame--left:hover {
    transform: rotateY(4deg) translateY(-4px);
    opacity: 1;
}

.phone-frame--right {
    transform: rotateY(-6deg);
    opacity: 0.85;
}

.phone-frame--right:hover {
    transform: rotateY(-4deg) translateY(-4px);
    opacity: 1;
}

.phone-screen {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg);
}

.phone-screen svg {
    display: block;
    width: 100%;
    height: auto;
}

.preview-hint {
    text-align: center;
    margin-top: 28px;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ── Bottom CTA (Home) ─────────────────────────── */

.bottom-cta {
    text-align: center;
}

.bottom-cta h2 {
    margin-top: 0;
    text-wrap: balance;
}

.bottom-cta p {
    color: var(--text-secondary);
    line-height: 1.7;
    text-wrap: pretty;
    margin-bottom: 20px;
}

/* ── Sections (Home) ───────────────────────────── */

.section {
    padding: 64px 24px;
}

.section--alt {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.section-inner--narrow {
    max-width: 680px;
    text-align: center;
}

.section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin-bottom: 12px;
}

.section p {
    color: var(--text-secondary);
    line-height: 1.7;
    text-wrap: pretty;
}

/* ── Card Grid ─────────────────────────────────── */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.card-grid--facts {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition:
        border-color 0.3s var(--ease-out),
        background 0.3s var(--ease-out),
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
}

.card:hover {
    border-color: var(--border-strong);
    background: var(--surface-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.card p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-wrap: pretty;
}

.card--compact {
    padding: 20px;
}

.card-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.card-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}

/* SVG card icons */
svg.card-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    margin-bottom: 14px;
    display: block;
    transition: transform 0.3s var(--ease-spring);
}

.card:hover svg.card-icon {
    transform: scale(1.1);
}

/* ── Stats Row (Home) ──────────────────────────── */

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── Feature Sections (Features page) ──────────── */

.feature-section {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.feature-section:last-of-type {
    border-bottom: none;
}

.feature-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin-bottom: 16px;
    margin-top: 0;
}

.feature-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    text-wrap: pretty;
    margin-bottom: 16px;
}

.feature-section .card-grid {
    margin-top: 24px;
}

/* ── Privacy Callout ───────────────────────────── */

.privacy-callout {
    margin-top: 56px;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}

.privacy-callout h2 {
    margin-top: 0;
    font-size: 1.5rem;
    text-wrap: balance;
}

.privacy-callout p {
    color: var(--text-secondary);
    line-height: 1.7;
    text-wrap: pretty;
    margin-bottom: 12px;
}

/* ── FAQ ───────────────────────────────────────── */

.faq-list {
    margin-top: 8px;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    text-wrap: pretty;
    margin-bottom: 8px;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

/* ── Contact Card ──────────────────────────────── */

.contact-card {
    margin-top: 56px;
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact-card h2 {
    margin-top: 0;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

/* ── Press Assets ──────────────────────────────── */

.press-asset {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 24px;
    transition: border-color 0.3s var(--ease-out);
}

.press-asset:hover {
    border-color: var(--border-strong);
}

.press-asset-icon {
    border-radius: 14px;
    flex-shrink: 0;
}

.press-asset-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.press-asset-info p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 4px;
}

/* ── Description Blocks (Press) ────────────────── */

.desc-block {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.desc-block:last-of-type {
    border-bottom: none;
}

.desc-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.desc-block p {
    color: var(--text-secondary);
    line-height: 1.7;
    text-wrap: pretty;
}

/* ── Footer ────────────────────────────────────── */

.site-footer {
    border-top: 1px solid var(--border);
    padding: 24px;
}

.footer-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s var(--ease-out);
}

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

/* ── Closing Trio (Home) ───────────────────────── */

.trio-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.trio-col {
    text-align: center;
}

.trio-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    margin: 0 auto 16px;
    display: block;
    opacity: 0.7;
}

.trio-col h3 {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-wrap: balance;
    margin-bottom: 10px;
    color: var(--text);
}

.trio-col p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.65;
    text-wrap: pretty;
    margin-bottom: 12px;
}

.trio-col a {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ── Scroll-Driven Reveal ──────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 0.6s var(--ease-out) forwards;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
}

/* Stagger cards within a grid */
.card-grid .reveal:nth-child(2) { animation-delay: 0.05s; }
.card-grid .reveal:nth-child(3) { animation-delay: 0.1s; }
.card-grid .reveal:nth-child(4) { animation-delay: 0.15s; }
.card-grid .reveal:nth-child(5) { animation-delay: 0.2s; }
.card-grid .reveal:nth-child(6) { animation-delay: 0.25s; }

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fallback: if scroll-driven animations aren't supported, just show them */
@supports not (animation-timeline: view()) {
    .reveal {
        opacity: 1;
        transform: none;
        animation: fadeUp 0.5s var(--ease-out) both;
    }

    .card-grid .reveal:nth-child(1) { animation-delay: 0s; }
    .card-grid .reveal:nth-child(2) { animation-delay: 0.06s; }
    .card-grid .reveal:nth-child(3) { animation-delay: 0.12s; }
    .card-grid .reveal:nth-child(4) { animation-delay: 0.18s; }
    .card-grid .reveal:nth-child(5) { animation-delay: 0.24s; }
    .card-grid .reveal:nth-child(6) { animation-delay: 0.3s; }
}

/* ── Beta Form (kept for signup period) ────────── */

.beta-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeUp 0.6s var(--ease-out) 0.24s both;
}

.fields {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.field {
    position: relative;
}

.field + .field {
    border-top: 1px solid var(--border);
}

.field input,
.field select {
    display: block;
    width: 100%;
    padding: 24px 16px 8px;
    font-size: 1rem;
    font-family: var(--font);
    color: var(--text);
    background: transparent;
    border: none;
    outline: none;
    transition: background 0.2s var(--ease-out);
    line-height: 1;
}

.field input:focus,
.field select:focus {
    background: var(--surface-hover);
}

.field input::placeholder {
    color: transparent;
}

.field label {
    position: absolute;
    left: 16px;
    top: 50%;
    translate: 0 -50%;
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.2s var(--ease-out);
    transform-origin: left center;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label {
    top: 13px;
    translate: 0;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    color: var(--primary);
}

.field select + label {
    top: 13px;
    translate: 0;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
}

.field select:focus + label {
    color: var(--primary);
}

.field select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23555' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.field select option {
    background: var(--surface);
    color: var(--text);
}

.turnstile {
    display: flex;
    justify-content: center;
}

.submit {
    width: 100%;
    padding: 15px 24px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s var(--ease-out), box-shadow 0.3s var(--ease-out), scale 0.15s var(--ease-out);
}

.submit:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 32px var(--primary-glow), 0 0 64px rgba(0, 145, 82, 0.06);
}

.submit:active {
    scale: 0.985;
    background: var(--primary);
}

.success {
    padding: 24px 0;
    text-align: center;
    animation: fadeUp 0.5s var(--ease-out) both;
}

.success-check {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 32px var(--primary-glow);
}

.success-check svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.success p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1;
}

.error-msg {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.875rem;
    color: var(--error);
    background: var(--error-bg);
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-sm);
    text-align: center;
    animation: shake 0.4s ease;
}

/* ── Animations ────────────────────────────────── */

@keyframes fadeUp {
    from { opacity: 0; translate: 0 16px; }
    to   { opacity: 1; translate: 0; }
}

@keyframes breathe {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes shake {
    0%, 100% { translate: 0; }
    15%      { translate: -6px; }
    30%      { translate: 5px; }
    45%      { translate: -4px; }
    60%      { translate: 3px; }
    75%      { translate: -2px; }
}

/* ── Mobile ────────────────────────────────────── */

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: grid;
        grid-template-rows: 0fr;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: rgba(6, 6, 6, 0.95);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        backdrop-filter: saturate(180%) blur(20px);
        border-bottom: 1px solid transparent;
        overflow: hidden;
        transition: grid-template-rows 0.35s var(--ease-out), border-color 0.35s ease;
    }

    .nav-links > * {
        overflow: hidden;
    }

    .nav-toggle-input:checked ~ .nav-links {
        grid-template-rows: 1fr;
        border-bottom-color: var(--border);
    }

    .nav-links a {
        display: block;
        padding: 14px 24px;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .hero {
        padding: 56px 24px 48px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero .glow {
        width: 500px;
        height: 500px;
        top: -250px;
    }

    .hero-icon {
        width: 72px;
        height: 72px;
        border-radius: 16px;
        margin-bottom: 24px;
    }

    .phone-gallery {
        gap: 12px;
    }

    .phone-frame {
        width: 130px;
        padding: 6px;
        border-radius: 18px;
    }

    .phone-frame--center {
        width: 150px;
    }

    .phone-frame--left,
    .phone-frame--right {
        display: none;
    }

    .trio-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }

    .section {
        padding: 48px 24px;
    }

    .page-content {
        padding: 40px 20px 64px;
    }

    .page-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

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

    .press-asset {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

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

    .privacy-callout {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ── Accessibility ─────────────────────────────── */

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

    html {
        scroll-behavior: auto;
    }

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