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

:root {
    --orange: #FF7A2D;
    --red: #FF3B5C;
    --ink: #1c1c1e;
    --muted: #6e6e73;
    --bg: #ffffff;
    --soft: #f5f5f7;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
}

.hero .emoji {
    font-size: 80px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.hero .tagline {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 500;
    opacity: 0.95;
    max-width: 560px;
    margin-bottom: 36px;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--ink);
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    transition: transform 0.2s ease;
}
.cta:hover { transform: translateY(-2px); text-decoration: none; }

section {
    padding: 80px 24px;
    max-width: 880px;
    margin: 0 auto;
}

section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 40px;
    text-align: center;
}

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

.feature {
    background: var(--soft);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.feature .icon { font-size: 40px; margin-bottom: 12px; }
.feature h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

footer {
    background: var(--soft);
    padding: 40px 24px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

footer a { color: var(--muted); margin: 0 12px; }
footer a:hover { color: var(--orange); }

.legal {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px;
}

.legal h1 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

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

.legal h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal p, .legal li {
    color: var(--ink);
    margin-bottom: 12px;
    font-size: 16px;
}

.legal ul { padding-left: 24px; margin-bottom: 16px; }

.legal a.back {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--orange);
    font-weight: 600;
}
