:root {
    --bg: #f7f3f0;
    --bg-soft: #fffaf7;
    --surface: rgba(255, 255, 255, 0.8);
    --surface-strong: rgba(255, 255, 255, 0.94);
    --ink: #18181f;
    --muted: #666981;
    --line: rgba(24, 24, 31, 0.09);
    --blue: #6d7cff;
    --blue-soft: #dfe3ff;
    --pink: #ff5db1;
    --pink-soft: #ffd6ec;
    --green: #7ad990;
    --green-soft: #dff7e5;
    --shadow: 0 26px 80px rgba(60, 53, 82, 0.12);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 93, 177, 0.16), transparent 26%),
        radial-gradient(circle at top right, rgba(109, 124, 255, 0.14), transparent 24%),
        linear-gradient(180deg, #f7f3f0 0%, #f8f4fb 44%, #fffaf7 100%);
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
    width: 100%;
}

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

[hidden] {
    display: none !important;
}

.page-shell {
    position: relative;
    overflow: hidden;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: fixed;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.page-shell::before {
    top: -80px;
    left: -120px;
    background: rgba(255, 93, 177, 0.28);
}

.page-shell::after {
    top: 200px;
    right: -120px;
    background: rgba(109, 124, 255, 0.24);
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section {
    padding: 96px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(247, 243, 240, 0.74);
    border-bottom: 1px solid rgba(24, 24, 31, 0.05);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand__mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    color: #fff;
    box-shadow: 0 16px 36px rgba(109, 124, 255, 0.2);
}

.brand__text {
    font-size: 1.16rem;
    letter-spacing: -0.04em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.hero__lede a {
    color: var(--blue);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 24, 31, 0.08);
    color: var(--blue);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero {
    padding-top: 44px;
}

.hero__layout,
.report__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 42px;
    align-items: center;
}

.hero__layout > *,
.report__layout > *,
.cta-panel > * {
    min-width: 0;
}

.hero__copy h1,
.section-heading h2,
.cta-panel h2,
.screen-card--score h2,
.screen-card--archetype h3,
.award-card strong {
    font-family: "Oswald", sans-serif;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero__copy h1 {
    margin-top: 18px;
    max-width: 10ch;
    font-size: clamp(3.7rem, 8vw, 7rem);
}

.hero__copy h1 span {
    color: var(--blue);
}

.hero__lede {
    max-width: 620px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero__actions,
.cta-panel__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--primary {
    background: linear-gradient(135deg, var(--pink), var(--blue));
    color: #fff;
    box-shadow: 0 18px 34px rgba(126, 106, 231, 0.24);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.78);
    border-color: var(--line);
}

.mode-note,
.cta-panel__hint {
    max-width: 540px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

.hero__signals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.signal-card,
.info-card,
.quote-card,
.award-card,
.report__panel,
.hero__photo-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.signal-card {
    padding: 18px;
    border-radius: var(--radius-md);
}

.signal-card__label,
.quote-card__label,
.award-card__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--pink);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.signal-card strong,
.info-card h3,
.quote-card p {
    font-size: 1.02rem;
    line-height: 1.3;
}

.signal-card p,
.info-card p,
.award-card p,
.quote-card p,
.cta-panel__actions p {
    margin-top: 10px;
    color: var(--muted);
}

.disclaimer {
    padding-top: 0;
}

.disclaimer__panel {
    border: 1px solid rgba(37, 31, 74, 0.12);
    border-radius: 28px;
    padding: 24px 28px 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 244, 0.95)),
        rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(58, 44, 85, 0.08);
    color: rgba(37, 31, 74, 0.78);
}

.disclaimer__panel p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
}

.disclaimer__panel p + p {
    margin-top: 12px;
}

.disclaimer__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
}

.disclaimer__note {
    color: var(--ink);
    font-weight: 600;
}

.hero__visual {
    position: relative;
    min-height: 780px;
}

.floating-note {
    position: absolute;
    z-index: 3;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(24, 24, 31, 0.08);
    box-shadow: 0 20px 44px rgba(61, 57, 82, 0.12);
    backdrop-filter: blur(16px);
}

.floating-note span {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
}

.floating-note strong {
    display: block;
    margin-top: 4px;
    font-size: 1.2rem;
}

.floating-note--left {
    left: -24px;
    top: 46px;
}

.floating-note--right {
    right: -18px;
    top: 148px;
}

.phone-stage {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    width: min(430px, 100%);
    padding: 24px 24px 0;
}

.phone-stage__glow {
    position: absolute;
    inset: 80px 24px 40px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 93, 177, 0.18), rgba(109, 124, 255, 0.18));
    filter: blur(36px);
    z-index: 0;
}

.phone {
    position: relative;
    z-index: 1;
    border-radius: 42px;
    padding: 14px;
    background: linear-gradient(180deg, #111218, #262737);
    box-shadow: 0 26px 70px rgba(35, 28, 53, 0.3);
}

.phone__screen {
    overflow: hidden;
    border-radius: 32px;
    padding: 18px;
    background:
        radial-gradient(circle at top right, rgba(109, 124, 255, 0.2), transparent 26%),
        linear-gradient(180deg, #fff7fb 0%, #f6f3ff 100%);
}

.phone__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.screen-card {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(24, 24, 31, 0.07);
    box-shadow: 0 18px 36px rgba(105, 101, 139, 0.08);
}

.screen-card + .screen-card {
    margin-top: 14px;
}

.screen-card__eyebrow {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.screen-card--score {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 14px;
    align-items: center;
}

.screen-card--score h2 {
    margin-top: 6px;
    color: var(--green);
    font-size: 3.2rem;
}

.screen-pill {
    padding: 12px 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue-soft), var(--pink-soft));
    color: #2d3462;
    font-size: 0.84rem;
    font-weight: 700;
}

.screen-card--archetype h3 {
    margin-top: 10px;
    font-size: 2rem;
}

.screen-card--archetype p:last-child,
.screen-card--warning p:last-child {
    margin-top: 10px;
    color: var(--muted);
}

.screen-card--versus {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.mini-profile {
    text-align: center;
}

.mini-profile img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 22px;
}

.mini-profile strong {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
}

.mini-profile span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.35;
}

.versus-badge {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 1.2rem;
    box-shadow: 0 18px 28px rgba(109, 124, 255, 0.22);
}

.hero__photo-card {
    position: absolute;
    right: 10px;
    bottom: 0;
    width: min(360px, 82%);
    overflow: hidden;
    border-radius: 28px;
}

.hero__photo-card img {
    aspect-ratio: 1.05 / 0.96;
    object-fit: cover;
}

.hero__photo-copy {
    padding: 18px 18px 20px;
}

.hero__photo-copy span {
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__photo-copy strong {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.35;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading--left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2 {
    margin-top: 18px;
    font-size: clamp(2.3rem, 4vw, 4.4rem);
}

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

.info-card {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.info-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 93, 177, 0.15), rgba(109, 124, 255, 0.2));
    color: var(--blue);
    font-weight: 800;
}

.info-card h3 {
    margin-top: 18px;
}

.report__panel {
    padding: 26px;
    border-radius: 30px;
}

.report__panel--wide {
    min-height: 100%;
}

.report__panel--stack {
    display: grid;
    gap: 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
}

.metrics-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.metric-card {
    min-height: 170px;
    padding: 22px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric-card span {
    font-size: 1rem;
    font-weight: 700;
}

.metric-card strong {
    font-family: "Oswald", sans-serif;
    font-size: 4rem;
    line-height: 0.95;
}

.metric-card--blue {
    background: linear-gradient(145deg, #eef1ff, #dfe4ff);
    color: #29356d;
}

.metric-card--pink {
    background: linear-gradient(145deg, #ffe8f5, #ffd6ec);
    color: #7d2759;
}

.metric-card--green {
    background: linear-gradient(145deg, #e9fff0, #d5f6df);
    color: #1f6d39;
}

.metric-card--dark {
    background: linear-gradient(145deg, #1f2030, #30324a);
    color: #fff;
}

.quote-card,
.award-card {
    padding: 24px;
    border-radius: 26px;
}

.quote-card p {
    margin-top: 0;
    font-size: 1.35rem;
    color: var(--ink);
}

.award-card strong {
    display: block;
    font-size: 2.3rem;
}

.cta {
    padding-top: 26px;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    gap: 24px;
    align-items: end;
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(109, 124, 255, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.cta-panel h2 {
    margin-top: 18px;
    font-size: clamp(2.3rem, 4vw, 4rem);
}

@media (max-width: 1080px) {
    .hero__layout,
    .report__layout,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: auto;
        display: grid;
        gap: 20px;
    }

    .floating-note,
    .phone-stage,
    .hero__photo-card {
        position: relative;
        inset: auto;
        transform: none;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
    }

    .phone-stage {
        padding: 0;
        justify-self: center;
        max-width: 430px;
    }

    .phone-stage__glow {
        inset: 70px 20px 32px;
    }

    .hero__photo-card {
        max-width: 430px;
        justify-self: center;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 74px 0;
    }

    .site-header__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero__copy h1 {
        max-width: none;
    }

    .hero__signals,
    .diagnostics__grid,
    .metrics-board {
        grid-template-columns: 1fr;
    }

    .screen-card--score,
    .screen-card--versus {
        grid-template-columns: 1fr;
    }

    .versus-badge {
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .eyebrow {
        display: block;
        max-width: 100%;
        white-space: normal;
    }

    .hero__copy h1 {
        max-width: 7ch;
        font-size: clamp(2.5rem, 13vw, 3.7rem);
        line-height: 0.9;
    }

    .hero__actions,
    .cta-panel__actions {
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .section-heading h2,
    .cta-panel h2 {
        font-size: clamp(2.2rem, 10vw, 3.3rem);
    }

    .phone {
        border-radius: 34px;
        padding: 10px;
    }

    .phone__screen {
        border-radius: 26px;
        padding: 14px;
    }

    .screen-card {
        padding: 16px;
        border-radius: 20px;
    }

    .screen-card--score h2,
    .metric-card strong {
        font-size: 3.1rem;
    }

    .cta-panel,
    .report__panel,
    .info-card,
    .quote-card,
    .award-card,
    .disclaimer__panel {
        padding: 22px;
    }
}
