/* QuickTik — homepage stylesheet.
   Brand: Royal Purple Satin. Canonical reference: ../QuickTik Homepage FINAL.html (v42)
   and ../QuickTik Visual Design System.docx. Palette mirrored in CLAUDE.md. */

:root {
    /* Foreground palette */
    --orchid: #F0ABFC;       /* headline 1, primary CTA background */
    --periwinkle: #A5B4FC;   /* headline 2 */
    --hot-pink: #F472B6;     /* headline 3 — key value-prop line */
    --lilac: #E2A9F0;        /* kicker text, soundwave line */
    --pale-lilac: #EAD6F5;   /* body / sub-text */
    --indigo-ink: #1E1B4B;   /* text ON the CTA button */
    --white: #FFFFFF;

    /* Outer page behind the homepage card */
    --page-bg: #050510;

    /* Signature background — Royal Purple Satin (layered radial gradient) */
    --satin-gradient:
        radial-gradient(ellipse 55% 48% at 27% 28%, rgba(200, 52, 166, 0.26) 0%, rgba(200, 52, 166, 0) 62%),
        radial-gradient(ellipse 62% 54% at 80% 72%, rgba(140, 24, 148, 0.26) 0%, rgba(140, 24, 148, 0) 66%),
        radial-gradient(ellipse 48% 40% at 62% 14%, rgba(214, 96, 190, 0.16) 0%, rgba(214, 96, 190, 0) 60%),
        radial-gradient(ellipse 135% 105% at 50% 36%, #5E1063 0%, #4E0D58 22%, #3C0A46 42%, #2A0834 62%, #150520 82%, #050208 100%);

    /* Soft-glow used on CTAs */
    --cta-glow: 0 0 15px rgba(240, 171, 252, 0.40), 0 0 30px rgba(240, 171, 252, 0.18);

    --font-display: "Geist", system-ui, -apple-system, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", monospace;
}

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

html, body {
    min-height: 100vh;
    background: var(--page-bg);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body {
    padding: 32px 0;
}

/* ---- Homepage card ---- */

.homepage {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 1160px;
    min-height: 760px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    background: var(--satin-gradient);
}

/* ---- Decorative layers ---- */

.wave {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
    opacity: 0.8;
    filter: drop-shadow(0 0 12px var(--lilac));
}

.star {
    position: absolute;
    z-index: 2;
    background: var(--white);
    border-radius: 50%;
}

/* ---- Header (centred wordmark) ---- */

.hp-header {
    position: relative;
    z-index: 6;
    display: flex;
    justify-content: center;
    padding: 28px 48px 0;
}

.hp-logo-link {
    display: inline-flex;
}

.hp-logo {
    height: 112px;
    width: auto;
}

/* ---- Nav ---- */

.hp-nav {
    position: relative;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 48px;
}

.ticket-el {
    display: flex;
    transform: rotate(-8deg);
    position: relative;
    top: 6px;
    filter: drop-shadow(0 0 30px #C026D3);
}

.hp-nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
}

.hp-nav-links a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.hp-nav-links a:hover {
    color: var(--white);
}

.hp-nav-links a.hp-nav-cta {
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12.5px;
    background: var(--orchid);
    color: var(--indigo-ink);
    box-shadow: var(--cta-glow);
}

.hp-nav-links a.hp-nav-cta:hover {
    color: var(--indigo-ink);
}

/* ---- Hero ---- */

.hp-hero {
    position: relative;
    z-index: 6;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px 48px 44px;
}

.hp-kicker {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--lilac);
}

.hp-headline {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
}

.hp-headline .line {
    font-size: clamp(2.5rem, 11vw, 80px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -2.8px;
    text-transform: uppercase;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.line-orchid { color: var(--orchid); }
.line-periwinkle { color: var(--periwinkle); }
.line-pink { color: var(--hot-pink); }

.hp-sub {
    max-width: 490px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--pale-lilac);
}

.hp-cta {
    display: inline-block;
    padding: 17px 38px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-decoration: none;
    background: var(--orchid);
    color: var(--indigo-ink);
    box-shadow: var(--cta-glow);
}

.hp-coming {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.78);
}

/* ---- Footer ---- */

.hp-footer {
    position: relative;
    z-index: 6;
    padding: 20px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
    .hp-header { padding: 22px 28px 0; }
    .hp-nav { padding: 12px 28px; }
    .hp-hero { padding: 32px 28px 36px; }
    .hp-footer { padding: 18px 28px; }
    .hp-headline .line { letter-spacing: -1.4px; }
}

@media (max-width: 560px) {
    body { padding: 0; }

    .homepage {
        min-height: 100vh;
        border-radius: 0;
    }

    .hp-header { padding: 20px 20px 0; }
    .hp-logo { height: 96px; }

    .hp-nav {
        flex-wrap: wrap;
        gap: 14px 18px;
        padding: 8px 20px;
    }

    .hp-nav-links {
        gap: 16px;
        font-size: 12.5px;
    }

    .hp-hero {
        gap: 22px;
        padding: 26px 20px 32px;
    }

    .hp-kicker { letter-spacing: 2px; }
    .hp-headline .line { letter-spacing: -0.8px; }
    .hp-sub { font-size: 15px; }
    .hp-cta { padding: 15px 30px; }
    .hp-footer { padding: 16px 20px; }
}

@media (max-width: 380px) {
    .hp-nav-links a:not(.hp-nav-cta) { display: none; }
}
