/* Generated by tools.sitegen.build — do not edit manually */

:root {
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --bg-surface: rgba(17, 17, 17, 0.8);
    --accent: #C4956A;
    --text-primary: #E5E5E5;
    --text-secondary: #999999;
    --text-strong: #FFFFFF;
    --border: #333333;
    --border-hover: #555555;
    --link-color: #60A5FA;
    --glow-color: rgba(255, 255, 255, 0.07);
    --footer-text: #858585;
    --font-stack: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 960px;
}

[data-theme="light"] {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --bg-surface: rgba(240, 240, 240, 0.8);
    --accent: #9B6B3A;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-strong: #000000;
    --border: #CCCCCC;
    --border-hover: #888888;
    --link-color: #1D4ED8;
    --glow-color: rgba(0, 0, 0, 0.04);
    --footer-text: #666666;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-stack);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ---- Custom Scrollbar ---- */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover);
}

/* ---- Navigation ---- */

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
    text-decoration: none;
    margin-right: auto;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

nav a:hover,
nav a:focus-visible {
    color: var(--text-strong);
}

.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.35rem 0.5rem;
    display: flex;
    align-items: center;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
    color: var(--text-strong);
    border-color: var(--border-hover);
}

/* ---- Sections ---- */

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 0;
}

section + section {
    border-top: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

/* ---- Scroll Reveal ---- */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Hero ---- */

.hero {
    padding: 5rem 0 3rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    color: var(--text-strong);
}

.tagline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.hero-apps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.app-card-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    text-align: left;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.app-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--border-hover);
}

.app-card-mini img {
    border-radius: 16px;
}

.app-card-mini .app-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.15rem;
    color: var(--text-strong);
}

.app-card-mini .app-card-title a {
    color: var(--text-strong);
    text-decoration: none;
    transition: color 0.2s ease;
}

.app-card-mini .app-card-title a:hover {
    color: var(--accent);
}

.app-subtitle {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ---- Feature Strip ---- */

.strip {
    background: var(--bg-secondary);
}

.strip h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-strong);
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.strip-item {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.strip-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, var(--glow-color), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.strip-item:hover::before {
    opacity: 1;
}

.strip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--border-hover);
}

.strip-item > * {
    position: relative;
    z-index: 1;
}

.strip-icon {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.strip-icon svg {
    transition: transform 0.3s ease;
}

.strip-item:hover .strip-icon svg {
    transform: scale(1.1);
}

.strip-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-strong);
    font-weight: 600;
}

.strip-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ---- App Section ---- */

.app-section {
    padding: 4rem 0;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.app-header img {
    border-radius: 20px;
}

.app-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.15rem;
    color: var(--text-strong);
}

.app-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-list li {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.2s ease;
}

.feature-list li:hover {
    border-color: var(--border-hover);
}

.store-link {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.15s;
}

.store-link:hover {
    opacity: 0.85;
}

/* ---- Trust Strip ---- */

.trust-strip {
    background: var(--bg-secondary);
    text-align: center;
}

.trust-strip h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.agency-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.agency-badge {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.2s ease;
}

.agency-badge:hover {
    border-color: var(--border-hover);
}

/* ---- Content Pages (Privacy, Support) ---- */

.content-page {
    padding: 3rem 0;
}

.content-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-strong);
}

.effective-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.content-page section {
    padding: 1.5rem 0 0;
    border-top: none;
}

.content-page section + section {
    border-top: none;
}

.content-page h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.content-page p {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
}

/* ---- FAQ ---- */

.faq-app {
    margin-bottom: 2rem;
}

.faq-app h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-strong);
}

details {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    background: var(--bg-surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.2s ease;
}

details:hover {
    border-color: var(--border-hover);
}

summary {
    padding: 0.85rem 1rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    list-style: none;
    color: var(--text-primary);
}

summary::-webkit-details-marker {
    display: none;
}

summary::before {
    content: "+";
    display: inline-block;
    width: 1.25rem;
    color: var(--accent);
    font-weight: 700;
}

details[open] summary::before {
    content: "\2212";
}

details p {
    padding: 0 1rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---- Footer ---- */

footer {
    border-top: 1px solid var(--border);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

footer p {
    font-size: 0.85rem;
    color: var(--footer-text);
    margin-bottom: 0.25rem;
}

footer a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--text-strong);
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-apps {
        flex-direction: column;
        align-items: center;
    }

    .app-header {
        flex-direction: column;
        text-align: center;
    }

    .app-description {
        text-align: center;
    }

    .feature-list {
        justify-content: center;
    }

    section {
        padding: 2.5rem 0;
    }

    .hero {
        padding: 3rem 0 2rem;
    }
}

/* ---- Accessibility ---- */

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
