*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

:root {
    --purple: #200ee6;
    --purple-light: #EEEDFE;
    --purple-dark: #2d18e5;
    --teal: #1D9E75;
    --teal-light: #E1F5EE;
    --coral: #D85A30;
    --coral-light: #FAECE7;
    --amber: #BA7517;
    --amber-light: #FAEEDA;
    --bg: #ffffff;
    --bg2: #f5f5f3;
    --text: #1a1a18;
    --muted: #6b6b67;
    --border: rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* ── NAVBAR ─────────────────────────────────────── */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    border-bottom: 0.5px solid var(--border);
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 100%;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
}

.logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--purple);
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 0.5px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--bg2);
}

.btn-primary {
    background: var(--purple);
    color: white;
    border: none;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
}

.btn-primary:hover {
    opacity: 0.88;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
    padding: 90px 40px 64px;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--purple-light);
    color: var(--purple-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 40px;
    margin-bottom: 30px;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero h1 em {
    color: var(--purple);
    font-style: normal;
}

.hero p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 44px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 15px 36px;
    border-radius: 40px;
    font-size: 15px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-lg.primary {
    background: var(--purple);
    color: white;
}

.btn-lg.primary:hover {
    opacity: 0.88;
}

.btn-lg.secondary {
    background: transparent;
    color: var(--text);
    border: 0.5px solid var(--border);
}

.btn-lg.secondary:hover {
    background: var(--bg2);
}

/* ── STATS ───────────────────────────────────────── */
.stats {
    display: flex;
    justify-content: center;
    margin: 0 40px 72px;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
}

.stat {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 32px 24px;
    border-right: 0.5px solid var(--border);
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
}

/* ── SEARCH ──────────────────────────────────────── */
.search-section {
    padding: 0 40px 72px;
    max-width: 860px;
    margin: 0 auto;
}

.search-bar {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg);
    margin-bottom: 16px;
}

.search-input {
    flex: 1;
    padding: 15px 22px;
    font-size: 15px;
    border: none;
    background: transparent;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    outline: none;
}

.search-input::placeholder {
    color: var(--muted);
}

.search-select {
    border-left: 0.5px solid var(--border);
    border-right: 0.5px solid var(--border);
    border-top: none;
    border-bottom: none;
    background: var(--bg2);
    color: var(--muted);
    padding: 15px 18px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    outline: none;
}

.search-btn {
    background: var(--purple);
    color: white;
    border: none;
    padding: 15px 28px;
    font-size: 14px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s;
}

.search-btn:hover {
    opacity: 0.88;
}

.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 7px 16px;
    border-radius: 40px;
    font-size: 12px;
    background: var(--bg2);
    border: 0.5px solid var(--border);
    cursor: pointer;
    color: var(--muted);
    transition: all 0.15s;
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--purple-light);
    color: var(--purple-dark);
    border-color: var(--purple);
}

/* ── SECTION GENERIC ─────────────────────────────── */
.section {
    padding: 0 40px 72px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 28px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.section-link {
    font-size: 13px;
    color: var(--purple);
    cursor: pointer;
    text-decoration: none;
}

.section-link:hover {
    text-decoration: underline;
}

/* ── CREATOR CARDS ───────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 16px;
}

.creator-card {
    background: var(--bg);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.creator-card:hover {
    border-color: var(--purple);
    box-shadow: 0 4px 20px rgba(127, 119, 221, 0.12);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.dna-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 40px;
}

.dna-badge i {
    font-size: 11px;
}

.badge-elite {
    background: var(--amber-light);
    color: #633806;
}

.badge-expert {
    background: var(--purple-light);
    color: #3C3489;
}

.badge-confirmed {
    background: var(--teal-light);
    color: #085041;
}

.badge-beginner {
    background: #F1EFE8;
    color: #444441;
}

.card-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 3px;
}

.card-niche {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px;
}

.card-socials {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.social-pill {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 40px;
    background: var(--bg2);
    color: var(--muted);
    border: 0.5px solid var(--border);
}

.card-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0.5px solid var(--border);
    padding-top: 12px;
}

.stars {
    color: var(--amber);
    font-size: 12px;
}

.price {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

/* ── SWIPE / MEETING ─────────────────────────────── */
.swipe-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.swipe-card {
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.swipe-card-img {
    width: 100%;
    height: 190px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--teal-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.swipe-card-body {
    padding: 22px 20px;
}

.swipe-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 3px;
}

.swipe-handle {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
}

.swipe-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.swipe-tag {
    font-size: 12px;
    padding: 4px 11px;
    border-radius: 40px;
    background: var(--purple-light);
    color: var(--purple-dark);
}

.swipe-bio {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.swipe-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 0.5px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.15s;
}

.action-btn.skip:hover {
    background: #FCEBEB;
    border-color: #E24B4A;
    color: #A32D2D;
}

.action-btn.save:hover {
    background: var(--teal-light);
    border-color: var(--teal);
    color: #085041;
}

.swipe-info {
    padding: 28px 24px;
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
}

.swipe-info h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

.swipe-feature {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
}

.feature-sub {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

/* ── SCORE DNA ───────────────────────────────────── */
.dna-section {
    margin: 0 40px 72px;
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.dna-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dna-left {
    padding: 52px 44px;
    border-right: 0.5px solid var(--border);
}

.dna-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--teal);
    background: var(--teal-light);
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.dna-left h2 {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

.dna-left>p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.criteria {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.criterion {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.crit-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.crit-label {
    font-weight: 500;
}

.crit-pct {
    color: var(--muted);
}

.crit-bar {
    height: 6px;
    background: var(--bg2);
    border-radius: 99px;
    overflow: hidden;
}

.crit-fill {
    height: 100%;
    border-radius: 99px;
}

.dna-right {
    padding: 52px 44px;
}

.dna-right h3 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
}

.level-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.level-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 16px;
    border-radius: 10px;
    border: 0.5px solid var(--border);
    transition: border-color 0.2s;
}

.level-card:hover {
    border-color: var(--purple);
}

.level-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.level-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.level-desc {
    font-size: 12px;
    color: var(--muted);
}

.level-score {
    margin-left: auto;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
}

/* ── HOW IT WORKS ────────────────────────────────── */
.how {
    padding: 64px 40px 72px;
}

.how-title {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 36px;
}

.steps-wrapper {
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.step {
    padding: 32px 26px;
    border-right: 0.5px solid var(--border);
}

.step:last-child {
    border-right: none;
}

.step-num {
    font-family: 'Syne', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--purple-light);
    margin-bottom: 14px;
    line-height: 1;
}

.step-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--purple-light);
    color: var(--purple-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.step h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
}

.step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── CTA BOTTOM ──────────────────────────────────── */
.cta-section {
    margin: 0 40px 72px;
    background: var(--purple);
    border-radius: var(--radius-lg);
    padding: 60px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-left h2 {
    font-family: 'Syne', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.cta-left p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

.cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--purple-dark);
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.15s;
}

.btn-white:hover {
    opacity: 0.9;
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 14px 30px;
    border-radius: 40px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
    border-top: 0.5px solid var(--border);
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-right {
    font-size: 12px;
    color: var(--muted);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   Everything below adapts the layout above for
   tablet and phone widths. Nothing above this line
   was changed.
   ══════════════════════════════════════════════════ */

/* ── Tablet (≤968px): collapse the 2-col / 4-col
      grid sections before they get cramped ────────── */
@media (max-width: 968px) {
    .dna-inner {
        grid-template-columns: 1fr;
    }

    .dna-left {
        border-right: none;
        border-bottom: 0.5px solid var(--border);
        padding: 40px 32px;
    }

    .dna-right {
        padding: 40px 32px;
    }

    .swipe-wrap {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step:nth-child(2n) {
        border-right: none;
    }

    .step:nth-child(-n+2) {
        border-bottom: 0.5px solid var(--border);
    }
}

/* ── Tablet / large phone (≤768px) ───────────────── */
@media (max-width: 768px) {
    .nav {
        padding: 16px 20px;
    }

    /* No hamburger menu exists yet (that needs a bit of
       JS to toggle), so the middle links are hidden here
       and the logo + CTA buttons carry mobile nav for
       now. Say the word if you want a real toggle menu
       and I'll wire up the JS + markup for it. */
    .nav-links {
        display: none;
    }

    .hero {
        padding: 56px 20px 44px;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .stats {
        flex-wrap: wrap;
        margin: 0 20px 56px;
    }

    .stat {
        flex: 1 1 50%;
        max-width: 50%;
        border-right: none !important;
    }

    .search-section {
        padding: 0 20px 56px;
    }

    .search-bar {
        flex-direction: column;
    }

    .search-select {
        width: 100%;
        border-left: none;
        border-right: none;
        border-top: 0.5px solid var(--border);
        border-bottom: 0.5px solid var(--border);
    }

    .section {
        padding: 0 20px 56px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }

    .dna-section {
        margin: 0 20px 56px;
    }

    .how {
        padding: 48px 20px 56px;
    }

    .cta-section {
        margin: 0 20px 56px;
        padding: 40px 28px;
        flex-direction: column;
        text-align: center;
    }

    .cta-btns {
        width: 100%;
        justify-content: center;
    }

    footer {
        padding: 28px 20px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* ── Small phones (≤480px) ───────────────────────── */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        width: 100%;
        text-align: center;
    }

    .stat {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 20px;
        border-bottom: 0.5px solid var(--border);
    }

    .stat:last-child {
        border-bottom: none;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        border-right: none !important;
        border-bottom: 0.5px solid var(--border);
    }

    .step:last-child {
        border-bottom: none;
    }

    .dna-left,
    .dna-right {
        padding: 32px 20px;
    }

    .cta-left h2 {
        font-size: 24px;
    }

    .swipe-card-img {
        height: 150px;
        font-size: 44px;
    }
}