:root {
    color-scheme: dark;
    font-family: Inter, Arial, sans-serif;
    background: #050505;
    color: #f4f4f5;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-strong: rgba(255, 255, 255, 0.08);
    --accent: #70ff9b;
    --accent-soft: rgba(112, 255, 155, 0.16);
    --text-muted: #b7b7c7;
    --border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at top, rgba(112, 255, 155, 0.08), transparent 28%),
                linear-gradient(180deg, #0c0c0f 0%, #050505 100%);
}

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

.container {
    width: min(1120px, 100% - 32px);
    margin: 0 auto;
}

.site-header,
.site-nav,
.site-footer,
.document-section,
.hero-panels,
.features-section {
    padding: 24px 0;
}

.header-inner,
.nav-inner,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-header {
    border-bottom: 1px solid var(--border);
}

.privacy-header,
.terms-header {
    padding-top: 32px;
    padding-bottom: 32px;
}

.logo {
    width: 88px;
    height: auto;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.site-header h1,
.site-header h2,
.site-header h3 {
    margin: 0;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.brand-copy h1 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.02;
    margin: 0;
}

.site-header h1 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.02;
}

.hero-copy {
    max-width: 650px;
    margin-top: 18px;
    color: #d7d7dd;
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-copy.subtext {
    margin-top: 10px;
    color: #a7a7b0;
    font-size: 0.98rem;
}

.site-nav {
    border-bottom: 1px solid var(--border);
}

.site-nav a {
    color: #f4f4f5;
    text-decoration: none;
    font-weight: 600;
    margin-right: 24px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--accent);
}

.hero-panels {
    padding-top: 48px;
    padding-bottom: 48px;
}

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

.hero-text h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    margin: 0 0 20px;
}

.hero-list {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.hero-list div {
    background: var(--surface);
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.hero-list strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(112, 255, 155, 0.12);
    color: var(--accent);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.hero-screenshot {
    display: flex;
    justify-content: center;
}

.screenshot-shell {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 34px;
    box-shadow: 0 38px 120px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    max-width: 420px;
    width: 100%;
}

.screenshot-topbar {
    height: 22px;
    background: rgba(255,255,255,0.08);
}

.app-preview {
    background: #070707;
    padding: 22px;
    display: grid;
    gap: 18px;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.preview-title {
    color: #f4f4f5;
    font-weight: 700;
    font-size: 1.05rem;
}

.preview-chip {
    color: #0d0d0b;
    background: var(--accent);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.86rem;
    font-weight: 700;
}

.preview-list {
    display: grid;
    gap: 12px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 14px 16px;
    color: #d7d7dd;
    font-size: 0.97rem;
}

.preview-item span {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(112,255,155,0.18);
    color: var(--accent);
    font-weight: 700;
}

.screenshot-caption {
    padding: 18px 20px 22px;
    font-size: 0.95rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
}

.features-section {
    border-top: 1px solid var(--border);
}

.section-header {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.section-header p {
    margin: 0;
    color: #c7c7cf;
    font-size: 1rem;
}


.features-section h2 {
    font-size: 2rem;
    margin-bottom: 28px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    min-height: 170px;
}

.feature-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #ffffff;
}

.feature-card p {
    margin: 0;
    color: #b7b7c7;
    line-height: 1.7;
}

.document-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
}

.document-section h2 {
    font-size: 1.85rem;
    margin-bottom: 18px;
}

.document-section p,
.document-section li {
    color: #d3d3d8;
    font-size: 1rem;
    line-height: 1.8;
}

.document-section ul {
    padding-left: 20px;
    margin: 18px 0 32px;
    list-style: disc inside;
}

.small-note {
    margin: 0 0 24px;
    color: var(--text-muted);
}

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

.footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.site-footer p {
    margin: 0;
    color: #b7b7c7;
}

@media(max-width: 860px) {
    .hero-grid,
    .header-inner,
    .nav-inner {
        grid-template-columns: 1fr;
        display: block;
    }

    .site-nav a {
        margin-right: 14px;
    }

    .hero-screenshot {
        margin-top: 28px;
    }

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

@media(max-width: 580px) {
    .container {
        width: min(100%, 100% - 24px);
    }

    .site-header h1 {
        font-size: 2.4rem;
    }

    .hero-copy {
        font-size: 1rem;
    }
}
