:root {
    --bg: #0f1115;
    --surface: #161a22;
    --surface-soft: #1d2230;
    --text: #f5f6fb;
    --muted: #bec4d5;
    --line: #2b3244;
    --brand: #8c6ff7;
    --brand-2: #ff7cb8;
    --success: #9ef5cf;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: radial-gradient(circle at 15% 10%, #23273a 0, var(--bg) 35%) fixed;
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 17, 21, 0.75);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.brand img {
    display: block;
    height: 64px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    transition: color 0.25s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: white;
    box-shadow: 0 12px 30px rgba(140, 111, 247, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(140, 111, 247, 0.48);
}

.btn-small {
    padding: 0.6rem 1rem;
    font-size: 0.92rem;
}

.btn-ghost {
    background: transparent;
    box-shadow: inset 0 0 0 1px var(--line);
}

.btn-ghost:hover {
    box-shadow: inset 0 0 0 1px var(--brand);
}

.hero {
    padding: 4.5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--success);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.65rem, 3.5vw, 2.5rem);
}

.hero-copy p {
    color: var(--muted);
    max-width: 60ch;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.6rem;
    flex-wrap: wrap;
}

.hero-media {
    position: relative;
}

.hero-media img {
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.floating-card {
    position: absolute;
    right: -1rem;
    bottom: 1.2rem;
    background: rgba(16, 18, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    box-shadow: var(--shadow);
}

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

section {
    padding: 4rem 0;
}

.section-head {
    margin-bottom: 1.5rem;
}

.section-head h2 {
    margin-top: 0.4rem;
}

.feature-grid,
.product-grid {
    display: grid;
    gap: 1rem;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.product-card,
.stockist-card,
.contact-form,
.contact-copy {
    background: linear-gradient(180deg, var(--surface-soft), var(--surface));
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 1.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.55rem;
}

.feature-card p {
    color: var(--muted);
}

.branded-showcase {
    padding-top: 1rem;
}

.branded-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-areas:
        "large top"
        "large bottom";
    gap: 1rem;
}

.brand-panel {
    background: linear-gradient(180deg, var(--surface-soft), var(--surface));
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    isolation: isolate;
}

.brand-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.35), rgba(140, 111, 247, 0.4), rgba(255, 124, 184, 0.25));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.brand-panel-large {
    grid-area: large;
}

.brand-panel:nth-child(2) {
    grid-area: top;
}

.brand-panel:nth-child(3) {
    grid-area: bottom;
}

.brand-panel img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.brand-panel:hover img {
    transform: scale(1.04);
}

.brand-panel-caption {
    position: absolute;
    left: 0.8rem;
    bottom: 0.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #f9fbff;
    background: rgba(10, 12, 18, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 0.28rem 0.75rem;
}

.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
    padding: 1.3rem;
}

.product-card h3 {
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.product-card p {
    color: var(--muted);
    font-size: 0.95rem;
    min-height: 72px;
}

.badge {
    display: inline-block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
    background: rgba(140, 111, 247, 0.2);
    border: 1px solid rgba(140, 111, 247, 0.55);
    color: #d8ceff;
    border-radius: 999px;
    padding: 0.3rem 0.6rem;
}

.badge-monthly {
    background: rgba(255, 124, 184, 0.18);
    border-color: rgba(255, 124, 184, 0.65);
    color: #ffd8ea;
}

.price-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 0.6rem;
    margin-top: 0.6rem;
}

.price-row span {
    color: var(--muted);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.2rem;
    align-items: stretch;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--line);
}

.about-copy {
    padding: 2rem;
    background: linear-gradient(180deg, #1a2030, #141922);
    border: 1px solid var(--line);
    border-radius: 20px;
}

.about-copy p {
    color: var(--muted);
    margin-top: 1rem;
}

.stockist-card {
    padding: 2rem;
    text-align: center;
}

.stockist-card p {
    color: var(--muted);
    margin-top: 0.8rem;
}

.stockist-card a {
    color: var(--brand);
    text-decoration: underline;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-copy {
    padding: 2rem;
}

.contact-copy h2 {
    margin: 0.5rem 0;
}

.contact-copy p,
.contact-copy li {
    color: var(--muted);
}

.contact-copy ul {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.8rem;
}

.contact-form {
    padding: 1.35rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #0f131c;
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--brand);
}

.form-note {
    margin-top: 0.8rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 1.75rem 0 2.25rem;
}

.footer-bottom {
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.55rem;
}

.footer-policy-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-policy-links a:hover {
    color: var(--text);
}

.footer-policy-sep {
    margin: 0 0.4rem;
    color: var(--line);
}

.form-note a {
    color: var(--brand);
    text-decoration: underline;
}

.norbit-link {
    color: inherit;
    text-decoration: underline;
    transition: color 0.2s ease;
}

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

/* Legal / policy pages */
.legal-page {
    padding: 3rem 0 4rem;
}

.legal-content {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 0.35rem;
}

.legal-updated {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 1.75rem;
}

.legal-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    margin: 1.75rem 0 0.65rem;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
    margin-bottom: 0.7rem;
}

.legal-content ul {
    margin: 0 0 1rem 1.2rem;
}

.legal-content a {
    color: var(--brand);
    text-decoration: underline;
}

.legal-back {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
}

.legal-back:hover {
    text-decoration: underline;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.14s;
}

.delay-2 {
    transition-delay: 0.24s;
}

@media (max-width: 980px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .branded-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "large"
            "top"
            "bottom";
    }

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

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

/* Pay page (direct link only — not in main nav) */
.pay-page main {
    padding: 3rem 0 4rem;
}

.pay-hero {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.pay-hero .eyebrow {
    justify-content: center;
    gap: 0.45rem;
}

.pay-hero h1 span {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pay-hero > p {
    color: var(--muted);
    margin-top: 0.75rem;
}

.pay-panel__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.25rem;
    align-items: start;
}

.pay-panel__steps,
.pay-panel__card {
    background: linear-gradient(180deg, var(--surface-soft), var(--surface));
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 1.75rem;
}

.pay-panel__steps h2,
.pay-panel__card h2 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.pay-panel__steps h2 i,
.pay-panel__payee h3 i {
    color: var(--brand);
}

.pay-panel__steps-lead {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.pay-panel__steps-list {
    list-style: none;
    counter-reset: pay-step;
    display: grid;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.pay-panel__steps-list li {
    counter-increment: pay-step;
    padding-left: 2.5rem;
    position: relative;
}

.pay-panel__steps-list li::before {
    content: counter(pay-step);
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 800;
    background: rgba(140, 111, 247, 0.2);
    border: 1px solid rgba(140, 111, 247, 0.55);
    color: #d8ceff;
}

.pay-panel__steps-list strong {
    display: block;
    margin-bottom: 0.25rem;
}

.pay-panel__steps-list span {
    color: var(--muted);
    font-size: 0.92rem;
}

.pay-panel__steps-callout {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(140, 111, 247, 0.12);
    border: 1px solid rgba(140, 111, 247, 0.35);
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pay-panel__steps-callout i {
    color: var(--brand);
    margin-top: 0.15rem;
}

.pay-panel__payee {
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.pay-panel__payee h3 {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
}

.pay-panel__payee p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 0.55rem;
}

.pay-panel__payee-tagline {
    font-size: 0.88rem;
    color: var(--text);
    opacity: 0.85;
    margin-top: 0.75rem;
}

.pay-panel__card {
    text-align: center;
}

.pay-panel__title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.pay-panel__subtitle {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}

.pay-panel__qr {
    margin: 0 auto 1.25rem;
}

.pay-panel__qr img {
    width: min(290px, 72vw);
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 0.5rem;
}

.pay-panel__qr figcaption {
    margin-top: 0.65rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.pay-panel__cta {
    width: 100%;
    max-width: 320px;
    gap: 0.5rem;
}

.pay-panel__cta-hint {
    margin-top: 0.65rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.pay-panel__methods {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pay-panel__methods-icons {
    display: flex;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: var(--text);
    opacity: 0.75;
}

.pay-panel__note {
    text-align: center;
    margin-top: 2rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.pay-panel__note a {
    color: var(--brand);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .pay-panel__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        padding: 1rem;
        background: rgba(12, 15, 22, 0.98);
        border-bottom: 1px solid var(--line);
    }

    .nav-links.open {
        display: flex;
    }

    .btn-small {
        display: none;
    }

    .feature-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 0;
    }
}
