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

:root {
    --bg: #f7f8fb;
    --bg-soft: #fff6f0;
    --white: #ffffff;
    --ink: #111214;
    --muted: #5d616a;
    --accent: #1f5cff;
    --accent-soft: #e7efff;
    --line: #e4e7ee;
    --shadow: 0 18px 40px rgba(17, 24, 40, 0.08);
    --radius: 20px;
    --radius-lg: 28px;
}

body {
    font-family: "Instrument Sans", "Segoe UI", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, var(--bg) 0%, #fdf7f2 100%);
    line-height: 1.6;
}

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

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

section {
    scroll-margin-top: 90px;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(247, 248, 251, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    z-index: 20;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    position: relative;
}

.brand {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.nav-link {
    font-size: 14px;
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--ink);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-download {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    padding: 10px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(31, 92, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(31, 92, 255, 0.3);
}

.btn-secondary {
    border-color: var(--line);
    background: var(--white);
    color: var(--ink);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 18px;
}

.hero {
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-copy h1 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.subhead {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 24px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.microcopy {
    font-size: 14px;
    color: var(--muted);
}

.hero-media {
    display: grid;
    gap: 20px;
    justify-items: center;
}

.phone-stack {
    position: relative;
    min-height: 520px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone {
    border-radius: 36px;
    box-shadow: var(--shadow);
}

.phone-main {
    width: 320px;
    z-index: 2;
}

.phone-back {
    position: absolute;
    width: 260px;
    left: 0;
    transform: rotate(-6deg);
    opacity: 0.9;
}

.voice-pill {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    background: var(--white);
    border-radius: 18px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted);
    box-shadow: 0 12px 28px rgba(17, 24, 40, 0.06);
}

.voice-pill span:first-child {
    color: var(--ink);
    font-weight: 600;
}

.pill-arrow {
    font-size: 12px;
    color: var(--muted);
}

.hero-glow {
    position: absolute;
    right: -160px;
    top: 80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(31, 92, 255, 0.18), transparent 70%);
    pointer-events: none;
}

.trust-strip {
    padding: 28px 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-item h3 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 16px;
    margin-bottom: 6px;
}

.trust-item p {
    font-size: 14px;
    color: var(--muted);
}

.demo {
    padding: 90px 0;
}

.demo-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.phone-full {
    width: 100%;
    max-width: 380px;
    border-radius: 40px;
    box-shadow: var(--shadow);
    justify-self: center;
}

.demo-copy h2 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 36px;
    margin-bottom: 16px;
}

.example-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    margin: 24px 0;
    box-shadow: 0 12px 30px rgba(17, 24, 40, 0.05);
}

.example-input {
    font-weight: 600;
    margin-bottom: 10px;
}

.example-output {
    color: var(--muted);
    font-size: 14px;
}

.text-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

.features {
    padding: 90px 0;
    background: var(--white);
}

.section-head {
    text-align: left;
    margin-bottom: 36px;
}

.section-head h2 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 36px;
    margin-bottom: 12px;
}

.section-head p {
    color: var(--muted);
    font-size: 16px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--line);
}

.feature-card h3 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);
    font-size: 14px;
}

.examples {
    padding: 90px 0;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.examples-lower {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: center;
}

.example-list {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(17, 24, 40, 0.04);
}

.example-list h3 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 18px;
    margin-bottom: 12px;
}

.example-list ul {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.mixed-board {
    background: linear-gradient(135deg, var(--white), #f6f9ff);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--line);
}

.examples-media {
    display: grid;
    justify-items: center;
    gap: 10px;
}

.example-shot {
    width: 100%;
    max-width: 260px;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.mixed-board h3 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 18px;
    margin-bottom: 16px;
}

.task-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--accent-soft);
    color: var(--ink);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
}

.views {
    padding: 90px 0;
    background: var(--white);
}

.views-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.view-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--line);
    display: grid;
    gap: 16px;
    justify-items: center;
    text-align: center;
}

.view-card h3 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 18px;
}

.view-card p {
    font-size: 14px;
    color: var(--muted);
}

.phone-mini {
    width: 100%;
    max-width: 220px;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.privacy {
    padding: 90px 0;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.privacy-copy h2 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 34px;
    margin-bottom: 14px;
}

.privacy-copy p {
    color: var(--muted);
}

.privacy-link {
    display: inline-flex;
    margin-top: 14px;
}

.privacy-list {
    display: grid;
    gap: 18px;
}

.privacy-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
}

.privacy-item h3 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 16px;
    margin-bottom: 6px;
}

.privacy-item p {
    color: var(--muted);
    font-size: 14px;
}

.final-cta {
    padding: 90px 0 110px;
}

.final-grid {
    background: linear-gradient(135deg, #f2f6ff, #ffffff);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
}

.final-copy h2 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 32px;
    margin-bottom: 12px;
}

.final-copy p {
    color: var(--muted);
}

.final-actions {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.site-footer {
    padding: 40px 0 60px;
    border-top: 1px solid var(--line);
    background: var(--white);
}

/* Legal Pages */
.legal-nav {
    justify-content: space-between;
}

.legal-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.legal-hero {
    padding: 110px 0 40px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 40px;
    margin-bottom: 8px;
}

.legal-updated {
    color: var(--muted);
    font-size: 14px;
}

.legal-content {
    padding: 50px 0 100px;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
}

.legal-section h3 {
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 8px;
}

.legal-section p {
    color: var(--muted);
    margin-bottom: 12px;
}

.legal-section ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--muted);
    display: grid;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 12px;
}

.legal-section .label {
    font-weight: 600;
    color: var(--ink);
    margin-top: 12px;
}

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

.footer-note {
    font-size: 14px;
    color: var(--muted);
    margin-top: 6px;
}

.footer-links {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-grid,
    .demo-grid,
    .privacy-grid,
    .final-grid {
        grid-template-columns: 1fr;
    }

    .hero-media {
        order: -1;
    }

    .final-grid {
        text-align: left;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 72px;
        right: 24px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        box-shadow: var(--shadow);
        min-width: 220px;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-download {
        display: inline-flex;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 90px 0 70px;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .section-head h2,
    .demo-copy h2,
    .privacy-copy h2 {
        font-size: 28px;
    }

    .feature-grid,
    .views-grid,
    .examples-grid,
    .examples-lower {
        grid-template-columns: 1fr;
    }

    .phone-stack {
        min-height: 420px;
    }

    .phone-main {
        width: 260px;
    }

    .phone-back {
        width: 220px;
        left: -10px;
    }

    .final-grid {
        padding: 28px;
    }

    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .hero-copy h1 {
        font-size: 30px;
    }

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

    .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
