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

:root {
    --primary: #EE7266;
    --dark: #4D2C29;
    --bg: #0d0d0d;
    --bg-card: #1a1a1a;
    --text: #f5f5f5;
    --text-muted: #a0a0a0;
    --accent: #fef3cd;
    --accent-border: #ffc107;
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.nav__cta {
    padding: 8px 20px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s;
}

.nav__cta:hover {
    transform: translateY(-1px);
}

/* Hero */
.hero {
    padding: 160px 24px 100px;
    text-align: center;
}

.hero__inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero__tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero__title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero__highlight {
    color: var(--primary);
}

.hero__sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__proof {
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn--primary {
    background: var(--primary);
    color: var(--dark);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(238, 114, 102, 0.3);
}

.btn--ghost {
    border: 2px solid rgba(255,255,255,0.15);
    color: var(--text);
}

.btn--ghost:hover {
    border-color: rgba(255,255,255,0.4);
}

.btn--large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Statement */
.statement {
    padding: 100px 24px;
    background: var(--bg-card);
}

.statement__inner {
    max-width: 700px;
    margin: 0 auto;
}

.statement h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.statement p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.9;
}

.statement__bold {
    color: var(--text) !important;
    font-weight: 700;
    font-size: 20px !important;
}

/* How it works */
.how {
    padding: 100px 24px;
}

.how__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.how h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
}

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

.how__step {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.how__number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 800;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.how__step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.how__step p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Features */
.features {
    padding: 100px 24px;
    background: var(--bg-card);
}

.features__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
}

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

.feature {
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    background: var(--bg);
}

.feature__icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Manifesto */
.manifesto {
    padding: 100px 24px;
    text-align: center;
}

.manifesto__inner {
    max-width: 750px;
    margin: 0 auto;
}

.manifesto h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
}

.manifesto blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    border-left: 4px solid var(--primary);
    padding-left: 24px;
    text-align: left;
    margin-bottom: 32px;
}

.manifesto__sub {
    font-size: 16px;
    color: var(--text-muted);
}

.manifesto__sub strong {
    color: var(--primary);
}

/* Install CTA */
.install {
    padding: 100px 24px;
    background: var(--bg-card);
    text-align: center;
}

.install__inner {
    max-width: 600px;
    margin: 0 auto;
}

.install h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.install > .install__inner > p:first-of-type {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 32px;
}

.install__note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* FAQ */
.faq {
    padding: 100px 24px;
}

.faq__inner {
    max-width: 700px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.faq__item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.faq__item p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: 60px 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__logo {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer__tagline {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.footer__copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__sub {
        font-size: 16px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

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

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

    .statement__inner,
    .manifesto__inner,
    .install__inner,
    .faq__inner {
        padding: 0 8px;
    }
}

.logo-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 4px;
}

.footer__logo .logo-icon {
    width: 28px;
    height: 28px;
}

/* Legal pages */
.legal {
    padding: 140px 24px 80px;
}

.legal__inner {
    max-width: 750px;
    margin: 0 auto;
}

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

.legal__updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 48px;
}

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

.legal p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal ul {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 16px;
    padding-left: 24px;
    line-height: 2;
}

.legal a {
    color: var(--primary);
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}

.legal strong {
    color: var(--text);
}

.legal__table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 14px;
}

.legal__table th,
.legal__table td {
    text-align: left;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.legal__table th {
    background: var(--bg-card);
    color: var(--text);
    font-weight: 600;
}

.legal__table td {
    color: var(--text-muted);
}

.footer__links {
    margin-bottom: 16px;
}

.footer__links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
}

.footer__links a:hover {
    color: var(--primary);
}
