/* ================================================================
   MilleWalk — Product Website Stylesheet
   Design: Dark navy base · Indigo accent · Plus Jakarta Sans
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────────── */
:root {
    --indigo:        #5856D6;
    --indigo-light:  #7B79E0;
    --indigo-dim:    rgba(88,86,214,0.12);
    --amber:         #FF9500;
    --green:         #34C759;
    --navy:          #0F172A;
    --navy-mid:      #1E293B;
    --navy-border:   #334155;
    --text-primary:  #F1F5F9;
    --text-secondary:#94A3B8;
    --text-muted:    #64748B;
    --white:         #FFFFFF;
    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --radius-xl:     32px;
    --shadow-glow:   0 0 60px rgba(88,86,214,0.15);
    --shadow-card:   0 4px 24px rgba(0,0,0,0.25);
    --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
    --font-main:     'Plus Jakarta Sans', sans-serif;
    --font-mono:     'DM Mono', monospace;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    background: var(--navy);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: var(--indigo-light); transition: var(--transition); }
a:hover { color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
.font-mono { font-family: var(--font-mono); }

/* ── Container ─────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navbar ─────────────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15,23,42,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--navy-border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 2rem;
}
.nav-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
}
.nav-logo:hover { color: var(--indigo-light); }
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.25rem;
}
.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: var(--navy-mid); }
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}
.btn-primary {
    background: var(--indigo);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--indigo-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88,86,214,0.35);
}
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--navy-border);
}
.btn-ghost:hover {
    color: var(--white);
    border-color: var(--indigo-light);
    background: var(--indigo-dim);
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 6rem 0 0;
    overflow: hidden;
    background: var(--navy);
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(88,86,214,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88,86,214,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(88,86,214,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-bottom: 5rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--indigo-dim);
    border: 1px solid rgba(88,86,214,0.3);
    color: var(--indigo-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}
.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--indigo);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.3; }
}
.hero-text h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.text-indigo { color: var(--indigo-light); }
.hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.5rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Stats strip */
.mw-stats-strip {
    display: flex;
    gap: 0;
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}
.mw-stat {
    flex: 1;
    min-width: 80px;
    text-align: center;
    padding: 1rem;
    border-right: 1px solid var(--navy-border);
}
.mw-stat:last-child { border-right: none; }
.mw-stat-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--indigo-light);
    font-family: var(--font-mono);
}
.mw-stat-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* Phone frame */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-frame {
    position: relative;
    width: 260px;
    background: var(--navy-mid);
    border-radius: 36px;
    border: 2px solid var(--navy-border);
    padding: 14px 10px;
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,255,255,0.04);
    z-index: 2;
}
.phone-notch {
    width: 80px;
    height: 8px;
    background: var(--navy-border);
    border-radius: 4px;
    margin: 0 auto 10px;
}
.phone-glow-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(88,86,214,0.15) 0%, transparent 65%);
    pointer-events: none;
}

/* Floating pills */
.floating-pill {
    position: absolute;
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: 100px;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    box-shadow: var(--shadow-card);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}
.pill-1 { top: 15%; left: -30px; animation-delay: 0s; }
.pill-2 { top: 50%; right: -20px; animation-delay: 1s; }
.pill-3 { bottom: 20%; left: -10px; animation-delay: 2s; }
@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ── Philosophy strip ───────────────────────────────────────────── */
.philosophy {
    padding: 5rem 0;
    background: var(--navy-mid);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
}
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.philosophy-item { text-align: center; }
.phi-num {
    display: block;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--indigo-light);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}
.philosophy-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.philosophy-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Section header ─────────────────────────────────────────────── */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--indigo-light);
    margin-bottom: 1rem;
    font-family: var(--font-mono);
}
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* ── Features bento ─────────────────────────────────────────────── */
.features { padding: 6rem 0; background: var(--navy); }
.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.bento-card {
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}
.bento-card:hover {
    border-color: rgba(88,86,214,0.4);
    box-shadow: 0 0 40px rgba(88,86,214,0.1);
    transform: translateY(-2px);
}
.bento-large { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.bento-dark { background: rgba(15,23,42,0.8); }
.bento-indigo {
    background: linear-gradient(135deg, rgba(88,86,214,0.15) 0%, rgba(88,86,214,0.05) 100%);
    border-color: rgba(88,86,214,0.3);
}
.bento-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.bento-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--indigo-light);
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
}
.bento-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.bento-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Landmark ticker */
.landmark-ticker {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}
.lm-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--navy);
    border: 1px solid var(--navy-border);
    border-radius: 100px;
    padding: 0.3rem 0.8rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* Route preview cards */
.route-preview {
    background: var(--navy);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.route-flag { font-size: 1.4rem; }
.route-info { flex: 1; }
.route-info h4 { font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.route-info p { font-size: 0.72rem; color: var(--text-muted); }
.route-dist { font-size: 0.78rem; font-family: var(--font-mono); color: var(--indigo-light); }

/* ── How it works ────────────────────────────────────────────────── */
.how-it-works {
    padding: 6rem 0;
    background: var(--navy-mid);
    border-top: 1px solid var(--navy-border);
}
.steps-grid {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.step-card {
    flex: 1;
    min-width: 160px;
    background: var(--navy);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: var(--transition);
}
.step-card:hover { border-color: rgba(88,86,214,0.4); transform: translateY(-2px); }
.step-num {
    display: block;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--indigo-light);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}
.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.step-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.step-arrow {
    font-size: 1.5rem;
    color: var(--navy-border);
    flex-shrink: 0;
}

/* ── Pricing ─────────────────────────────────────────────────────── */
.pricing {
    padding: 6rem 0;
    background: var(--navy);
    border-top: 1px solid var(--navy-border);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.pricing-card {
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover { border-color: rgba(88,86,214,0.4); transform: translateY(-3px); }
.pricing-card.featured {
    border-color: rgba(88,86,214,0.5);
    background: linear-gradient(135deg, rgba(88,86,214,0.12) 0%, rgba(88,86,214,0.04) 100%);
}
.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--indigo);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.pricing-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}
.pricing-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}
.pricing-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.pricing-save {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    min-height: 1.1rem;
}
.pricing-features {
    list-style: none;
    text-align: left;
}
.pricing-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

/* Product description box */
.product-desc-box {
    background: var(--indigo-dim);
    border: 1px solid rgba(88,86,214,0.25);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.product-desc-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* INR table */
.inr-table-wrap {
    margin-top: 2rem;
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.inr-table-head {
    padding: 0.6rem 1.25rem;
    border-bottom: 1px solid var(--navy-border);
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.inr-table { width: 100%; border-collapse: collapse; }
.inr-table th {
    padding: 0.6rem 1.25rem;
    text-align: left;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    background: rgba(88,86,214,0.08);
}
.inr-table th:not(:first-child) { text-align: right; }
.inr-table td {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--navy-border);
}
.inr-table td:not(:first-child) { text-align: right; }
.inr-table td.featured-row { color: var(--indigo-light); font-weight: 600; }
.inr-table td.price-val { color: var(--white); font-family: var(--font-mono); }
.inr-table td.featured-row.price-val { color: var(--indigo-light); }
.inr-table td.save-val { color: var(--green); }
.pricing-note {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ── Download ─────────────────────────────────────────────────────── */
.download {
    padding: 6rem 0;
    background: var(--navy-mid);
    border-top: 1px solid var(--navy-border);
    position: relative;
    overflow: hidden;
}
.download-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.download-text .section-tag { display: block; }
.download-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.download-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.download-checklist {
    list-style: none;
    margin-bottom: 2rem;
}
.download-checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
}
.check { color: var(--green); font-weight: 700; }
.download-badges { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.download-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; }
.download-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-icon-display {
    width: 260px;
    height: 380px;
    background: linear-gradient(135deg, rgba(88,86,214,0.15) 0%, rgba(88,86,214,0.05) 100%);
    border: 2px solid rgba(88,86,214,0.3);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    box-shadow: 0 0 60px rgba(88,86,214,0.15);
}
.app-icon-display img {
    width: 120px;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(88,86,214,0.4);
}
.app-icon-label { text-align: center; }
.app-icon-label strong { display: block; color: var(--white); font-size: 1.1rem; }
.app-icon-label span { color: var(--indigo-light); font-size: 0.85rem; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
    background: var(--navy);
    border-top: 1px solid var(--navy-border);
    padding: 4rem 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--navy-border);
}
.footer-brand .nav-logo { font-size: 1.1rem; color: var(--white); }
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}
.footer-brand .footer-legal {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    line-height: 1.5;
}
.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-mono);
}
.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ── Legal pages ─────────────────────────────────────────────────── */
.legal-page {
    padding: 5rem 0 4rem;
    min-height: 80vh;
}
.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}
.last-updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-mono);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--navy-border);
}
.legal-content section {
    margin-bottom: 2.5rem;
}
.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--navy-border);
}
.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1rem 0 0.5rem;
}
.legal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.legal-content ul, .legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}
.legal-content li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.4rem;
}
.legal-content a { color: var(--indigo-light); }
.legal-content a:hover { color: var(--white); }
.important-notice {
    background: rgba(255,149,0,0.08);
    border: 1px solid rgba(255,149,0,0.3);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.important-notice p { color: var(--amber); margin: 0; }
.contact-info {
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin: 1rem 0;
}
.contact-info p { margin-bottom: 0.25rem; }
.response-time { color: var(--text-muted); font-size: 0.85rem; font-style: italic; }
.summary-box {
    background: var(--navy-mid);
    border: 1px solid rgba(88,86,214,0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}
.summary-box h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--indigo-light);
    margin-bottom: 0.3rem;
    border: none;
    padding: 0;
}
.summary-box p { font-size: 0.875rem; margin-bottom: 1rem; }
.summary-box p:last-child { margin-bottom: 0; }
.acceptance { background: var(--navy-mid); border-radius: var(--radius-md); padding: 1.5rem; }
.acceptance h2 { border: none; }

/* ── Screenshots ─────────────────────────────────────────────────── */
.screenshots {
    padding: 6rem 0;
    background: var(--navy-mid);
    border-top: 1px solid var(--navy-border);
}
.screenshot-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1rem;
}
.screenshot-scroll::-webkit-scrollbar { display: none; }
.screenshot-track {
    display: flex;
    gap: 20px;
    padding: 1rem 0;
    width: max-content;
}
.ss-item {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
}
.ss-item img {
    width: 180px;
    border-radius: 20px;
    border: 2px solid var(--navy-border);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}
.ss-item:hover img {
    border-color: var(--indigo-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.ss-item p {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── Reveal animation ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-actions { justify-content: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; }
    .features-bento { grid-template-columns: 1fr; }
    .bento-large { grid-column: span 1; grid-template-columns: 1fr; }
    .steps-grid { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .pricing-grid { grid-template-columns: 1fr; }
    .download-inner { grid-template-columns: 1fr; }
    .download-visual { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .mw-stats-strip { flex-wrap: wrap; }
    .mw-stat { min-width: 50%; border-right: none; border-bottom: 1px solid var(--navy-border); }
    .mw-stat:nth-child(odd) { border-right: 1px solid var(--navy-border); }
}
@media (max-width: 600px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); border-bottom: 1px solid var(--navy-border); padding: 1rem; gap: 0; }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.75rem 1rem; width: 100%; }
    .nav-hamburger { display: flex; }
    .inr-table-wrap { margin-left: 0; margin-right: 0; }
}
