/* ==========================
   GOOGLE FONTS
========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@400;600;700;800&display=swap');


/* ==========================
   ROOT VARIABLES
========================== */

:root {

    --bg-dark: #0F0B1F;
    --primary: #7C3AED;
    --secondary: #A855F7;
    --emotion: #EC4899;
    --suspense: #3B82F6;
    --chaos: #EF4444;
    --glass: rgba(255, 255, 255, 0.08);

    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.72);

    --radius-xl: 28px;
    --radius-lg: 20px;

    --shadow-xl:
        0 20px 60px rgba(0, 0, 0, .35);

    --transition:
        all .35s ease;
}


/* ==========================
   RESET
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100vh;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        linear-gradient(135deg,
            #0F0B1F,
            #1B1140,
            #2A145C);

    color: white;
    background-attachment: fixed;

    overflow-x: hidden;
}


/* ==========================
   PAGE WRAPPER
========================== */

.page-wrapper {

    min-height: 100vh;
    overflow-x: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 24px;

    position: relative;
}


/* ==========================
   GLASS CARD
========================== */

.glass-card {

    width: 100%;
    max-width: 380px;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(24px);

    border-radius: 34px;

    box-shadow:
        var(--shadow-xl);

    padding: 36px 26px;

    text-align: center;

    position: relative;

    overflow: hidden;
}


/* ==========================
   LOGO
========================== */

.logo {

    font-size: 48px;
    margin-bottom: 12px;
}


/* ==========================
   TITLE
========================== */

.page-title {

    font-family: 'Sora', sans-serif;

    font-size: 42px;
    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 14px;
}


/* ==========================
   DESCRIPTION
========================== */

.page-description {

    color:
        var(--text-secondary);

    font-size: 18px;

    line-height: 1.6;
}


/* ==========================
   GLOW EFFECT
========================== */

.glow {

    position: absolute;

    width: 260px;
    height: 260px;

    background:
        rgba(124, 58, 237, .42);

    border-radius: 50%;

    filter: blur(120px);

    z-index: -1;
}

.glow-left {
    top: -80px;
    left: -100px;
}

.glow-right {
    bottom: -80px;
    right: -100px;
}


/* ==========================
   MOBILE
========================== */

@media(max-width:768px) {

    .page-title {
        font-size: 30px;
    }

    .glass-card {
        padding: 34px 22px;
    }
}

/* ==========================
   PRANK INTRO
========================== */

.prank-card {

    text-align: center;
}


.mystery-icon {

    font-size: 54px;

    margin-bottom: 18px;
}


.ai-status {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background:
        rgba(124, 58, 237, .16);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 999px;

    padding: 8px 16px;

    margin-bottom: 28px;

    font-size: 13px;

    color:
        rgba(255, 255, 255, .75);
}


.prank-title {

    font-family: 'Sora',
        sans-serif;

    font-size: 24px;

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 22px;
}


.prank-subtitle {

    color:
        rgba(255, 255, 255, .72);

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 14px;
}

.prank-urgency {

    color:
        rgba(255, 255, 255, .72);

    opacity: .75;

    font-size: 13px;

    line-height: 1.5;

    margin-bottom: 24px;
}


/* BUTTON */

.primary-btn {

    width: 100%;

    border: none;

    cursor: pointer;

    background:
        linear-gradient(135deg,
            #7C3AED,
            #A855F7);

    color: white;

    font-size: 16px;
    font-weight: 700;

    border-radius: 22px;

    padding: 18px 24px;

    transition:
        .35s ease;

    box-shadow:
        0 12px 30px rgba(124, 58, 237, .35);
}


.primary-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 40px rgba(124, 58, 237, .45);
}

.primary-btn:active {

    transform:
        scale(.98);
}

/* ==========================
   QUESTION THEMES
========================== */

.theme-1 {

    background:
    linear-gradient(
        135deg,
        #0F0B1F,
        #1B1140,
        #2A145C
    );
}

.theme-2 {

    background:
    linear-gradient(
        135deg,
        #161129,
        #2D1459,
        #47216D
    );
}

.theme-3 {

    background:
    linear-gradient(
        135deg,
        #2B1035,
        #4A155A,
        #6D2167
    );
}

.theme-4 {

    background:
    linear-gradient(
        135deg,
        #1A0814,
        #3A1027,
        #5B1221
    );
}

/* MOBILE */

@media(max-width:768px) {

    .prank-title {

        font-size: 28px;
    }

    .prank-subtitle {

        font-size: 16px;
    }
}

/* ==========================
   QUESTION SCREEN
========================== */

.q-card {

    max-width: 420px;
    position: relative;
    overflow: hidden;
}


.progress-dots {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-bottom: 30px;
}

.progress-dots span {

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .15);
}

.progress-dots .active {

    background:
        #A855F7;

    box-shadow:
        0 0 12px rgba(168, 85, 247, .6);
}


.question-label {

    color:
        rgba(255, 255, 255, .72);

    font-size: 16px;

    margin-bottom: 14px;
}


.question-title {

    font-family:
        'Sora',
        sans-serif;

    font-size: 34px;

    line-height: 1.3;

    font-weight: 800;

    margin-bottom: 34px;
}


.answer-group {

    display: flex;

    flex-direction: column;

    gap: 16px;
}


/* ANSWER CARDS */

.answer-card {

    border: none;

    cursor: pointer;

    width: 100%;

    background:
        rgba(255, 255, 255, .06);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 22px;

    padding: 20px;

    color: white;

    font-size: 17px;
    font-weight: 600;

    transition:
        .25s ease;

    backdrop-filter:
        blur(12px);
}

.answer-card:hover {

    transform:
        translateY(-2px);

    border:
        1px solid rgba(168, 85, 247, .5);

    background:
        rgba(168, 85, 247, .12);
}


.answer-card:active {

    transform:
        scale(.98);
}

/* ==========================
   SELECTED ANSWER
========================== */

.answer-card.selected {

    transform: scale(.98);

    border:
        1px solid rgba(168,85,247,.7);

    background:
        linear-gradient(
            135deg,
            rgba(124,58,237,.25),
            rgba(168,85,247,.15)
        );

    box-shadow:
        0 0 24px rgba(168,85,247,.25);

    animation:
        selectedPulse .45s ease;
}

@keyframes selectedPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(.96);
    }

    100% {
        transform: scale(.98);
    }
}

.answer-card{
    color:white !important;
    opacity:1 !important;
}


/* MOBILE */

@media(max-width:768px) {

    .question-title {

        font-size: 28px;
    }
}

/* ==========================
   PROCESSING SCREEN
========================== */

.processing-screen {

    position: fixed;

    inset: 0;

    background:
        rgba(7, 0, 25, .92);

    backdrop-filter:
        blur(18px);

    display: none;

    position: absolute;
    inset: 0;

    z-index: 999;

    justify-content: center;
    align-items: center;
    flex-direction: column;

    z-index: 9999;

    display: none;

    justify-content: center;

    align-items: center;
}


.processing-box {

    text-align: center;

    animation:
        fadeUp .4s ease;
}


.loader-orb {

    width: 90px;
    height: 90px;

    border-radius: 50%;

    margin: auto auto 24px;

    background:
        radial-gradient(circle,
            #A855F7,
            transparent);

    animation:
        pulseOrb 1s infinite;
}


.processing-box h3 {

    font-size: 28px;

    margin-bottom: 10px;
}


.processing-box p {

    font-size: 22px;
    line-height: 1.35;
    max-width: 300px;
    margin: auto auto 12px;
}


@keyframes pulseOrb {

    0% {

        transform:
            scale(.8);

        opacity: .6;
    }

    50% {

        transform:
            scale(1.15);

        opacity: 1;
    }

    100% {

        transform:
            scale(.8);

        opacity: .6;
    }
}

/* ==========================
   PREMIUM PROGRESS
========================== */

.progress-wrapper {

    margin-bottom: 26px;
}

.progress-top {

    display: flex;

    justify-content:
        space-between;

    margin-bottom: 10px;

    color:
        rgba(255,255,255,.65);

    font-size: 13px;
}

.progress-bar {

    height: 8px;

    border-radius: 999px;

    background:
        rgba(255,255,255,.08);

    overflow: hidden;
}

.progress-fill {

    height: 100%;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #7C3AED,
            #A855F7
        );

    box-shadow:
        0 0 20px
        rgba(168,85,247,.45);

    transition:
        width .5s ease;
}

/* ==========================
   SUSPENSE SCREEN
========================== */

.loader-orb {

    width: 120px;
    height: 120px;

    margin: 25px auto;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(183,95,255,.95) 0%,
            rgba(120,50,255,.4) 45%,
            rgba(183,95,255,0) 75%
        );

    animation:
        pulseOrb 2s ease-in-out infinite;
}

@keyframes pulseOrb {

    0% {

        transform:
            scale(1);

        opacity: .7;
    }

    50% {

        transform:
            scale(1.15);

        opacity: 1;
    }

    100% {

        transform:
            scale(1);

        opacity: .7;
    }
}

.scan-progress-wrap {

    width: 100%;
    height: 12px;

    background:
        rgba(255,255,255,.08);

    border-radius: 999px;

    overflow: hidden;

    margin-top: 20px;
}

.scan-progress-bar {

    width: 0%;

    height: 100%;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #d946ef
        );

    transition:
        width .2s ease;
}

.scan-percent {

    margin-top: 18px;

    font-size: 24px;
    font-weight: 700;

    color: white;

    text-align: center;
}

/* ==========================
   REVEAL RESULT SCREEN
========================== */

.reveal-card {

    max-width: 430px;
    padding: 34px 30px;
    background:
        radial-gradient(
            circle at top,
            rgba(236,72,153,.14),
            transparent 42%
        ),
        rgba(255,255,255,.075);
    border:
        1px solid rgba(255,255,255,.15);
    box-shadow:
        0 24px 70px rgba(0,0,0,.38),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.reveal-card .ai-status {

    margin-bottom: 22px;
    background:
        rgba(124,58,237,.18);
    border-color:
        rgba(255,255,255,.11);
}

.reveal-stats {

    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.reveal-stat {

    min-width: 0;
    padding: 12px 10px;
    border-radius: 18px;
    background:
        rgba(255,255,255,.055);
    border:
        1px solid rgba(255,255,255,.09);
}

.reveal-stat span {

    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,.58);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.reveal-stat strong {

    display: block;
    color: white;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
}

.reveal-stat-main strong {

    font-size: 22px;
}

.reveal-title {

    max-width: 370px;
    margin: 0 auto 16px;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: 0;
}

.reveal-description {

    max-width: 350px;
    margin: 0 auto 22px;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.48;
}

.meme-card {

    position: relative;
    overflow: hidden;
    text-align: center;
    background:
        rgba(255,255,255,.07);
    border:
        1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 18px 18px 17px;
    margin-bottom: 18px;
}

.reveal-payoff {

    text-align: center;
    margin: 0 auto 18px;
    padding: 16px 17px;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(236,72,153,.13),
            rgba(20,184,166,.09)
        );
    border:
        1px solid rgba(255,255,255,.12);
}

.reveal-payoff span {

    display: inline-flex;
    margin-bottom: 8px;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    font-weight: 800;
}

.reveal-payoff p {

    color: rgba(255,255,255,.9);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.42;
}

.meme-card::before {

    content: "";
    position: absolute;
    top: 0;
    right: 22%;
    left: 22%;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #ec4899
        );
}

.meme-label {

    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-bottom: 10px;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    font-weight: 700;
}

.meme-headline {

    color: white;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.32;
}

.meme-caption {

    max-width: 300px;
    margin: 9px auto 0;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.42;
}

.reveal-share-btn {

    padding: 17px 18px;
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            #25D366,
            #128C7E
        );
    box-shadow:
        0 14px 34px rgba(37,211,102,.22);
}

/* ==========================
   SORRY LINK FLOW
========================== */

.sorry-form-card {

    max-width:
        min(
            440px,
            calc(100vw - 32px)
        );
}

.form-group {

    text-align: left;
    margin-bottom: 14px;
}

.form-group label {

    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {

    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    color: white;
    padding: 14px 15px;
    font: inherit;
    outline: none;
}

.form-group textarea {

    resize: vertical;
    min-height: 110px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: rgba(255,255,255,.38);
}

.personal-message-card,
.link-box,
.final-response-box {

    text-align: left;
    margin: 16px 0;
    padding: 15px;
    border-radius: 20px;
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.1);
}

.personal-message-card span,
.link-box span,
.final-response-box span {

    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.personal-message-card p,
.link-box p {

    color: rgba(255,255,255,.84);
    font-size: 15px;
    line-height: 1.45;
    word-break: break-word;
}

.track-link-button {

    display: block;
    text-decoration: none;
    margin-top: 10px;
}

.track-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0;
}

.track-grid div {

    padding: 14px 10px;
    border-radius: 18px;
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.1);
}

.track-grid span {

    display: block;
    margin-bottom: 6px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    font-weight: 800;
}

.track-grid strong,
.final-response-box strong {

    color: white;
    font-size: 17px;
}

.final-response-panel {

    margin-bottom: 16px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
}

.final-response-panel p {

    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.final-response-actions {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.final-response-actions button {

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 12px 8px;
    background: rgba(255,255,255,.08);
    color: white;
    cursor: pointer;
    font-weight: 800;
}

.final-response-status {

    margin-top: 10px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.35;
}

.payment-summary {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0;
}

.payment-summary div {

    padding: 15px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.1);
}

.payment-summary span {

    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.payment-summary strong {

    color: white;
    font-size: 17px;
}

.payment-note {

    margin-top: 14px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.45;
}

@media(max-width:520px) {

    .sorry-form-card {

        max-width: calc(100vw - 32px);
        padding-left: 20px;
        padding-right: 20px;
    }

    .payment-summary {

        grid-template-columns: 1fr;
    }

    .reveal-card {

        padding: 28px 20px;
    }

    .reveal-title {

        font-size: 29px;
    }

    .reveal-stats {

        gap: 7px;
    }

    .reveal-stat {

        padding: 10px 7px;
    }

    .reveal-stat span {

        font-size: 10px;
    }

    .reveal-stat strong {

        font-size: 13px;
    }

    .reveal-stat-main strong {

        font-size: 19px;
    }
}

@media(max-height:760px) {

    .page-wrapper:has(.reveal-card) {

        align-items: flex-start;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .reveal-card {

        padding: 24px;
    }

    .reveal-stats {

        margin-bottom: 18px;
    }

    .reveal-title {

        font-size: 30px;
        margin-bottom: 12px;
    }

    .reveal-description {

        margin-bottom: 16px;
        font-size: 15px;
    }

    .meme-card {

        padding: 15px;
        margin-bottom: 14px;
    }
}

/* ==========================
   HOME LANDING
========================== */

.home-page {

    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    background:
        linear-gradient(
            135deg,
            #120915 0%,
            #23113a 42%,
            #0e3132 100%
        );
    color: white;
}

.home-nav {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px clamp(18px, 4vw, 58px);
    background:
        rgba(11, 8, 22, .58);
    backdrop-filter: blur(18px);
    border-bottom:
        1px solid rgba(255,255,255,.08);
}

.home-brand {

    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.home-brand span {

    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background:
        linear-gradient(
            135deg,
            #ec4899,
            #14b8a6
        );
    font-size: 13px;
}

.home-nav-actions {

    display: flex;
    align-items: center;
    gap: 10px;
}

.home-nav-actions a {

    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 999px;
}

.home-nav-actions a:last-child {

    color: white;
    background:
        rgba(255,255,255,.1);
    border:
        1px solid rgba(255,255,255,.1);
}

.home-hero {

    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: center;
    padding:
        112px clamp(18px, 5vw, 72px)
        52px;
    overflow: hidden;
    isolation: isolate;
}

.home-hero::after {

    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 22vh;
    background:
        linear-gradient(
            0deg,
            rgba(18,9,21, .9),
            rgba(18,9,21, 0)
        );
    z-index: -1;
}

.home-hero-backdrop {

    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.home-hero-backdrop::before {

    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 68% 22%,
            rgba(236,72,153,.34),
            transparent 32%
        ),
        radial-gradient(
            circle at 22% 78%,
            rgba(20,184,166,.26),
            transparent 34%
        );
}

.preview-phone {

    position: absolute;
    width: min(320px, 42vw);
    min-height: 390px;
    padding: 28px;
    border-radius: 32px;
    background:
        linear-gradient(
            160deg,
            rgba(255,255,255,.18),
            rgba(255,255,255,.055)
        );
    border:
        1px solid rgba(255,255,255,.16);
    box-shadow:
        0 34px 90px rgba(0,0,0,.38);
    backdrop-filter: blur(22px);
}

.preview-phone-one {

    right: 9vw;
    top: 112px;
    transform: rotate(5deg);
}

.preview-phone-two {

    right: 27vw;
    bottom: 12vh;
    transform: rotate(-8deg) scale(.86);
    opacity: .9;
}

.preview-pill {

    display: inline-flex;
    padding: 9px 13px;
    margin-bottom: 48px;
    border-radius: 999px;
    background:
        rgba(255,255,255,.1);
    color: rgba(255,255,255,.76);
    font-size: 12px;
    font-weight: 800;
}

.preview-phone strong {

    display: block;
    max-width: 250px;
    font-family: 'Sora', sans-serif;
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 18px;
}

.preview-phone span {

    display: inline-flex;
    padding: 9px 12px;
    margin-bottom: 16px;
    border-radius: 14px;
    background:
        rgba(20,184,166,.14);
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 800;
}

.preview-phone p {

    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.5;
}

.preview-strip {

    position: absolute;
    left: clamp(18px, 5vw, 72px);
    right: clamp(18px, 5vw, 72px);
    bottom: 22px;
    display: flex;
    gap: 10px;
    overflow: hidden;
    mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 8%,
            #000 92%,
            transparent
        );
}

.preview-strip span {

    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 999px;
    background:
        rgba(255,255,255,.1);
    border:
        1px solid rgba(255,255,255,.11);
    color: rgba(255,255,255,.78);
    font-weight: 800;
    font-size: 13px;
}

.home-hero-content {

    max-width: 720px;
    position: relative;
    z-index: 2;
}

.home-kicker {

    display: inline-flex;
    padding: 9px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    background:
        rgba(255,255,255,.1);
    border:
        1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.82);
    font-size: 13px;
    font-weight: 800;
}

.home-hero h1 {

    font-family: 'Sora', sans-serif;
    font-size: clamp(52px, 9vw, 112px);
    line-height: .92;
    letter-spacing: 0;
    margin-bottom: 22px;
}

.home-hero p {

    max-width: 590px;
    color: rgba(255,255,255,.8);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.45;
    margin-bottom: 28px;
}

.home-hero-actions {

    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.home-primary-action,
.home-secondary-action,
.home-conversion-band a {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
}

.home-primary-action {

    color: white;
    background:
        linear-gradient(
            135deg,
            #ec4899,
            #14b8a6
        );
    box-shadow:
        0 18px 42px rgba(20,184,166,.22);
}

.home-secondary-action {

    color: white;
    background:
        rgba(255,255,255,.1);
    border:
        1px solid rgba(255,255,255,.13);
}

.home-proof-row {

    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.home-proof-row span {

    padding: 9px 12px;
    border-radius: 999px;
    color: rgba(255,255,255,.74);
    background:
        rgba(0,0,0,.18);
    border:
        1px solid rgba(255,255,255,.09);
    font-size: 12px;
    font-weight: 800;
}

.home-template-section {

    padding:
        56px clamp(18px, 5vw, 72px)
        72px;
    background:
        linear-gradient(
            180deg,
            rgba(18,9,21,.96),
            #101b23
        );
}

.home-section-head {

    max-width: 720px;
    margin-bottom: 28px;
}

.home-section-head span,
.home-conversion-band span {

    display: inline-flex;
    margin-bottom: 12px;
    color: #6ee7b7;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-section-head h2,
.home-conversion-band h2 {

    font-family: 'Sora', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.home-section-head p {

    max-width: 560px;
    margin-top: 12px;
    color: rgba(255,255,255,.68);
    font-size: 17px;
    line-height: 1.5;
}

.home-template-grid {

    display: grid;
    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );
    gap: 14px;
}

.home-template-card {

    display: flex;
    flex-direction: column;
    min-height: 286px;
    padding: 20px;
    border-radius: 8px;
    background:
        rgba(255,255,255,.075);
    border:
        1px solid rgba(255,255,255,.11);
    box-shadow:
        0 18px 44px rgba(0,0,0,.18);
}

.home-template-card.is-featured {

    background:
        linear-gradient(
            150deg,
            rgba(236,72,153,.22),
            rgba(20,184,166,.12)
        ),
        rgba(255,255,255,.08);
    border-color:
        rgba(255,255,255,.18);
}

.home-card-top {

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.home-card-icon {

    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background:
        rgba(255,255,255,.1);
    font-size: 24px;
}

.home-card-top div:last-child {

    text-align: right;
}

.home-card-top span,
.home-card-top strong {

    display: block;
}

.home-card-top span {

    margin-bottom: 4px;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-card-top strong {

    color: white;
    font-size: 18px;
    font-weight: 900;
}

.home-template-card h3 {

    font-family: 'Sora', sans-serif;
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.home-template-card p {

    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.46;
    margin-bottom: 20px;
}

.home-card-link {

    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: auto;
    border-radius: 8px;
    color: white;
    background:
        rgba(255,255,255,.1);
    border:
        1px solid rgba(255,255,255,.12);
    text-decoration: none;
    font-weight: 900;
}

.home-template-card.is-featured .home-card-link {

    background:
        linear-gradient(
            135deg,
            #ec4899,
            #14b8a6
        );
    border-color:
        transparent;
}

.home-conversion-band {

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding:
        48px clamp(18px, 5vw, 72px)
        58px;
    background:
        #0f1820;
    border-top:
        1px solid rgba(255,255,255,.08);
}

.home-conversion-band div {

    max-width: 760px;
}

.home-conversion-band a {

    flex: 0 0 auto;
    color: #071516;
    background:
        #6ee7b7;
}

.home-footer {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding:
        24px clamp(18px, 5vw, 72px)
        32px;
    background:
        #0c141a;
    border-top:
        1px solid rgba(255,255,255,.08);
}

.home-footer div {

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.home-footer strong {

    color: white;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
}

.home-footer span {

    color: rgba(255,255,255,.55);
    font-size: 13px;
}

.home-footer nav {

    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 14px;
}

.home-footer a {

    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.home-footer a:hover {

    color: white;
}

/* ==========================
   ANALYTICS DASHBOARD
========================== */

.analytics-page {

    min-height: 100vh;
    padding:
        38px clamp(16px, 5vw, 64px)
        58px;
    background:
        linear-gradient(
            135deg,
            #0f0b1f,
            #13242b
        );
    color: white;
}

.analytics-header {

    margin-bottom: 24px;
}

.analytics-header span {

    color: #6ee7b7;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.analytics-header h1 {

    margin-top: 8px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
}

.analytics-header p {

    margin-top: 10px;
    color: rgba(255,255,255,.68);
    font-size: 17px;
}

.analytics-grid {

    display: grid;
    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );
    gap: 12px;
    margin-bottom: 18px;
}

.analytics-grid article,
.analytics-panel {

    border-radius: 8px;
    background:
        rgba(255,255,255,.075);
    border:
        1px solid rgba(255,255,255,.1);
}

.analytics-grid article {

    padding: 17px;
}

.analytics-grid span {

    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.analytics-grid strong {

    font-size: 32px;
    font-weight: 900;
}

.analytics-panel {

    margin-top: 14px;
    padding: 18px;
}

.analytics-panel h2 {

    margin-bottom: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 22px;
}

.analytics-table-wrap {

    overflow-x: auto;
}

.analytics-panel table {

    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.analytics-panel th,
.analytics-panel td {

    padding: 12px 10px;
    border-bottom:
        1px solid rgba(255,255,255,.08);
    text-align: left;
    font-size: 14px;
}

.analytics-panel th {

    color: rgba(255,255,255,.62);
    font-size: 12px;
    text-transform: uppercase;
}

.analytics-panel td {

    color: rgba(255,255,255,.86);
}

@media(max-width:1100px) {

    .home-template-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .preview-phone-two {

        display: none;
    }
}

@media(max-width:760px) {

    .home-nav {

        position: absolute;
        padding:
            15px 16px;
        overflow: hidden;
    }

    .home-brand {

        font-size: 17px;
    }

    .home-brand span {

        width: 32px;
        height: 32px;
    }

    .home-nav-actions a:first-child {

        display: none;
    }

    .home-nav-actions {

        display: none;
    }

    .home-hero {

        min-height: auto;
        width: 100%;
        overflow: hidden;
        padding:
            92px 16px
            42px;
    }

    .home-hero-backdrop {

        opacity: .55;
    }

    .preview-phone {

        display: none;
    }

    .preview-strip {

        bottom: 12px;
        left: 16px;
        right: 16px;
    }

    .home-hero-content {

        width: 100%;
        max-width: 340px;
    }

    .home-hero h1 {

        font-size: 40px;
        line-height: 1;
    }

    .home-hero p {

        max-width: 330px;
        font-size: 17px;
    }

    .home-hero-actions a {

        width: 100%;
    }

    .home-template-section {

        width: 100%;
        overflow: hidden;
        padding:
            36px 16px
            46px;
    }

    .home-section-head,
    .home-section-head h2,
    .home-section-head p {

        width: 100%;
        max-width: 340px;
    }

    .home-section-head h2 {

        font-size: 28px;
        overflow-wrap: break-word;
    }

    .home-template-grid {

        width: 100%;
        grid-template-columns: 1fr;
    }

    .home-template-card {

        min-height: 238px;
    }

    .home-conversion-band {

        align-items: stretch;
        flex-direction: column;
        padding:
            36px 16px
            44px;
    }

    .home-conversion-band a {

        width: 100%;
    }

    .home-footer {

        align-items: flex-start;
        flex-direction: column;
        padding:
            24px 16px
            32px;
    }

    .home-footer nav {

        justify-content: flex-start;
    }

    .analytics-grid {

        grid-template-columns: 1fr 1fr;
    }

    .analytics-page {

        padding:
            26px 14px
            42px;
    }
}
