:root {
    --bg: #0b0b10;
    --surface: #14141b;
    --text: #f7f7fb;
    --muted: #b9bbcf;
    --brand: #d10038;
    --brand-2: #ff3b6e;
    --success: #34d399;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 12px;
    top: 12px;
    width: auto;
    height: auto;
    padding: 8px 12px;
    background: var(--surface);
    border-radius: 8px;
}

.container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(180deg, rgba(11, 11, 16, 0.9), rgba(11, 11, 16, 0.6) 40%, rgba(11, 11, 16, 0));
    backdrop-filter: blur(6px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.brand-mark {
    color: var(--brand);
}

.brand-name {
    font-size: 18px;
    letter-spacing: 0.4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
}

.nav-link:hover {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--text);
    background: var(--surface);
    transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.btn:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 10px 25px rgba(209, 0, 56, 0.35);
}

.btn-lg {
    padding: 14px 26px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    padding: 16px 22px;
    font-size: 18px;
}

.hero {
    position: relative;
    min-height: 88vh;
    display: grid;
    place-items: center;
    padding: 64px 0 40px;
    overflow: clip;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1200px 600px at 10% 10%, rgba(209, 0, 56, 0.28), rgba(11, 11, 16, 0) 60%),
        linear-gradient(180deg, rgba(11, 11, 16, 0.3), rgba(11, 11, 16, 0.7)),
        url('https://images.unsplash.com/photo-1520813792240-56fc4a3765a7?auto=format&fit=crop&w=2000&q=70');
    background-size: cover;
    background-position: center;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.03);
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.headline {
    margin: 0 0 12px 0;
    font-size: clamp(28px, 5vw, 56px);
    line-height: 1.07;
    letter-spacing: -0.6px;
}

.subhead {
    margin: 0 auto 24px;
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(16px, 2.5vw, 20px);
}

.cta-note {
    color: var(--muted);
    margin-top: 10px;
    font-size: 14px;
}

.social-proof {
    background: linear-gradient(180deg, rgba(255, 59, 110, 0.06), rgba(20, 20, 27, 0));
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 28px 0;
    text-align: center;
}

.stat {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 18px;
}

.stat-num {
    font-size: 24px;
    font-weight: 800;
}

.stat-label {
    color: var(--muted);
    font-size: 14px;
}

.how {
    padding: 48px 0 20px;
}

.how h2,
.why h2,
.stories h2,
.faq h2 {
    font-size: clamp(22px, 3.2vw, 34px);
    margin: 0 0 18px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step {
    background: var(--surface);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.step-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.step h3 {
    margin: 6px 0 8px;
    font-size: 18px;
}

.step p {
    margin: 0;
    color: var(--muted);
}

.why {
    padding: 32px 0 16px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: center;
}

.why-copy .checks {
    list-style: none;
    padding: 0;
    margin: 16px 0 22px;
}

.checks li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    align-items: baseline;
    margin-bottom: 10px;
}

.check {
    color: var(--success);
    font-weight: 800;
}

.why-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.card-photo {
    margin: 0;
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 5/6;
    object-fit: cover;
}

.stories {
    padding: 28px 0 10px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.story {
    margin: 0;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.story cite {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-style: normal;
}

.trust {
    padding: 24px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.trust-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start;
    background: var(--surface);
    padding: 16px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.trust-icon {
    font-size: 22px;
}

.faq {
    padding: 28px 0 60px;
}

.faq-list details {
    background: var(--surface);
    padding: 14px 16px;
    border-radius: 12px;
    margin: 10px 0;
    box-shadow: var(--shadow);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
}

.faq-list p {
    color: var(--muted);
    margin: 8px 0 0;
}

.faq-cta {
    margin-top: 16px;
}

.mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px;
    background: linear-gradient(180deg, rgba(20, 20, 27, 0), rgba(20, 20, 27, 0.9) 30%, rgba(20, 20, 27, 1));
    backdrop-filter: blur(6px);
    display: none;
}

.site-footer {
    padding: 28px 0 80px;
}

.footer-inner {
    text-align: center;
    color: var(--muted);
}

.footer-inner a {
    color: var(--muted);
}

@media (max-width: 960px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .steps {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 720px) {
    .nav {
        display: none;
    }

    .mobile-cta {
        display: block;
    }

    .site-footer {
        padding-bottom: 110px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}
