@import url('https://fonts.googleapis.com/css2?family=Newsreader:wght@400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --ink: #f4efe6;
    --muted-ink: rgba(244, 239, 230, 0.72);
    --deep: #0c1218;
    --midnight: #111b26;
    --ember: #ff6b35;
    --teal: #2ec4b6;
    --glow: rgba(255, 107, 53, 0.25);
    --panel: rgba(15, 22, 30, 0.7);
    --panel-soft: rgba(20, 28, 38, 0.6);
    --border: rgba(244, 239, 230, 0.18);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius-l: 24px;
    --radius-m: 16px;
    --radius-s: 12px;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Newsreader', serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--ink);
    background: radial-gradient(circle at 10% 10%, rgba(46, 196, 182, 0.18), transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(255, 107, 53, 0.18), transparent 40%),
        linear-gradient(140deg, #0a121a 0%, #121d2b 45%, #18222f 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.2), transparent 70%);
    top: -160px;
    left: -120px;
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
}

body::after {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.18), transparent 70%);
    bottom: -200px;
    right: -140px;
    top: auto;
    left: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 48px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 50px 0 30px;
}

.logo-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--ink);
}

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

header h1 a:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.tagline {
    font-size: 1.2rem;
    color: var(--muted-ink);
}

.navigation {
    text-align: center;
    margin: 20px 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.navigation a {
    color: var(--ink);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(15, 22, 30, 0.7);
    border: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.navigation a:hover,
.navigation a.active {
    background: rgba(255, 107, 53, 0.18);
    border-color: rgba(255, 107, 53, 0.45);
    transform: translateY(-1px);
}

main {
    background: var(--panel);
    border-radius: var(--radius-l);
    padding: 48px;
    margin: 20px 0 40px;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.app-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    background: #0e151d;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-info h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    margin-bottom: 8px;
}

.app-info .subtitle {
    font-size: 1.2rem;
    color: var(--muted-ink);
}

.hero p {
    font-size: 1.2rem;
    color: var(--muted-ink);
    max-width: 820px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.feature {
    background: var(--panel-soft);
    padding: 28px;
    border-radius: var(--radius-m);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    border-color: rgba(46, 196, 182, 0.4);
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--ink);
}

.feature p {
    color: var(--muted-ink);
    font-size: 1.05rem;
}

.notify-section {
    margin-top: 40px;
    text-align: center;
}

.notify-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 32px;
    border-radius: var(--radius-l);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

.notify-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.notify-card p {
    color: var(--muted-ink);
    font-size: 1.1rem;
}

.pill-link {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.18);
    border: 1px solid rgba(255, 107, 53, 0.5);
    color: var(--ink);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pill-link:hover {
    background: rgba(255, 107, 53, 0.35);
    transform: translateY(-2px);
}

.policy-section {
    margin-top: 40px;
    text-align: center;
    padding: 28px;
    border-radius: var(--radius-m);
    background: rgba(20, 28, 38, 0.65);
    border: 1px solid var(--border);
}

.policy-section h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.policy-section p {
    color: var(--muted-ink);
    margin-bottom: 18px;
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.policy-links a {
    color: var(--ink);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(46, 196, 182, 0.45);
    background: rgba(46, 196, 182, 0.12);
    font-family: var(--font-display);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.policy-links a:hover {
    background: rgba(46, 196, 182, 0.25);
    transform: translateY(-1px);
}

.content-block {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-m);
    padding: 28px;
    border: 1px solid var(--border);
    margin-top: 24px;
}

.content-block h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.content-block p {
    color: var(--muted-ink);
    font-size: 1.05rem;
}

footer {
    text-align: center;
    color: var(--muted-ink);
    padding: 20px 0 10px;
    font-size: 0.95rem;
}

.email-link-inline {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 53, 0.6);
    font-weight: 600;
}

.email-link-inline:hover {
    color: var(--ember);
    border-bottom-color: var(--ember);
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    main {
        padding: 32px 24px;
    }

    .app-info h2 {
        font-size: 2.1rem;
        text-align: center;
    }

    .app-info .subtitle {
        text-align: center;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 24px 16px 40px;
    }

    .app-icon {
        width: 100px;
        height: 100px;
    }

    main {
        padding: 28px 18px;
    }
}


.policy-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.policy-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.policy-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin: 16px 0 10px;
    color: var(--ink);
}

.policy-list {
    list-style: disc;
    padding-left: 20px;
    margin: 12px 0 16px;
    color: var(--muted-ink);
}

.policy-list li {
    margin-bottom: 8px;
}
