:root {
    --bg: #ffffff;
    --text: #111111;
    --text-muted: #555555;
    --border: #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .logo span {
    font-family: 'Outfit', sans-serif;
}

::selection {
    background: #000;
    color: #fff;
}

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

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

/* ── Navigation ── */
.navbar {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #000;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #000;
}

/* ── Header ── */
.header {
    padding: 80px 0 48px;
}

.hero-header {
    padding: 80px 0 48px;
    border-bottom: 1px solid var(--border);
}

.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.header h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Features List ── */
.features-list {
    padding: 16px 0 0;
}

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

.feature-block:last-child {
    border-bottom: none;
}

.feature-block h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
    letter-spacing: -0.3px;
}

.feature-block p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.feature-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-block ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.feature-block ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #bbb;
}

.feature-block ul li strong {
    color: var(--text);
    font-weight: 600;
}

/* ── CTA Text ── */
.cta-text {
    padding: 40px 0 80px;
    border-top: 1px solid var(--border);
}

.cta-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.cta-text strong {
    color: #000;
}

/* ── Section Header ── */
.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: #000;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

/* ── Legal Section ── */
.legal-section {
    padding-top: 64px;
    padding-bottom: 80px;
    border-top: 1px solid var(--border);
}

.legal-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.legal-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: 0;
    transition: border-color 0.2s ease;
    background: #fff;
}

.legal-card:hover {
    border-color: #000;
}

.legal-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
    letter-spacing: -0.3px;
}

.legal-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.card-arrow {
    display: inline-block;
    margin-top: 16px;
    font-size: 1.1rem;
    color: #bbb;
    transition: color 0.2s ease;
}

.legal-card:hover .card-arrow {
    color: #000;
}

/* ── Footer ── */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

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

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

.footer-links a:hover {
    color: #000;
}

.copyright {
    color: #bbb;
    font-size: 0.8rem;
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.5s ease forwards;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }

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

/* ── Policy page styles (shared) ── */
.main-content {
    padding-bottom: 80px;
}

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

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
    letter-spacing: -0.3px;
}

.policy-section h2::before {
    display: none;
}

.policy-section p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.policy-section strong {
    color: var(--text);
    font-weight: 600;
}

.policy-section a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.policy-section a:hover {
    opacity: 0.5;
}

.policy-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.policy-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.policy-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #999;
}

/* ── Contact Card ── */
.contact-card {
    background: #fafafa;
    border: 1px solid var(--border);
    padding: 24px;
    margin-top: 16px;
}

.contact-card p {
    margin-bottom: 4px;
}

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

.contact-card a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.contact-card a:hover {
    opacity: 0.5;
}

/* ── Notice Box ── */
.notice-box {
    background: #f5f5f5;
    border-left: 3px solid #111;
    padding: 16px 20px;
    margin-top: 16px;
}

.notice-box p {
    margin-bottom: 6px;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

.notice-title {
    font-weight: 600;
    color: var(--text) !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-subtitle {
    font-size: 0.8rem !important;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999 !important;
    margin-bottom: 14px !important;
}

.last-updated {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.8rem;
    color: #aaa;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.glass-container {
    background: transparent;
    border: none;
    padding: 0;
}

.blob-wrapper {
    display: none;
}

.logo-img {
    display: none;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .header {
        padding: 56px 0 36px;
    }

    .hero-header {
        padding: 56px 0 36px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .legal-links-grid {
        grid-template-columns: 1fr;
    }

    .feature-block {
        padding: 24px 0;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.78rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}
