﻿:root {
    --color-black: #0A0A0A;
    --color-yellow: #FFD600;
    --color-white: #FFFFFF;
    --color-muted: rgba(255, 255, 255, 0.72);
    --color-muted-strong: rgba(255, 255, 255, 0.9);
    --color-surface: rgba(255, 255, 255, 0.06);
    --color-surface-strong: rgba(255, 255, 255, 0.12);
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 32px;
    --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.28);
    --shadow-raised: 0 20px 60px rgba(0, 0, 0, 0.22);
    --max-width: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    background-size: 100%;
    

}
/* Partnership section (landing page specific adjustments) */
.partnership-section { padding: 28px 0; }
.partnership-container { text-align: center; }


/* Ambient animated background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    /* moving stripe gradient between yellow and black */
    background: linear-gradient(120deg, rgba(255,214,0,0.06) 0%, rgba(10,10,10,1) 45%, rgba(255,214,0,0.04) 100%);
    background-size: 100%;
    filter: blur(36px);
    mix-blend-mode: screen;
    animation: bgMove 14s linear infinite;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    /* soft yellow glow to pulse */
    background: radial-gradient(circle at 12% 18%, rgba(255,214,0,0.14) 0%, transparent 18%),
                radial-gradient(circle at 86% 80%, rgba(255,214,0,0.08) 0%, transparent 14%);
    filter: blur(56px);
    mix-blend-mode: screen;
    opacity: 0.55;
    animation: pulse 3.8s ease-in-out infinite;
}

@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0% { opacity: 0.42; transform: scale(1); }
    50% { opacity: 0.78; transform: scale(1.02); }
    100% { opacity: 0.42; transform: scale(1); }
}

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

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

button {
    font: inherit;
    border: none;
    background: none;
    color: inherit;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(24px, 4vw, 48px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: transparent;
  
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    padding: 0 4px;
    transition: background 0.35s ease, box-shadow 0.35s ease;
    width: 100%;
}

.navbar-solid {
    background: rgba(10, 10, 10, 0.96);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.nav-container {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
}

.brand-mark {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--color-yellow);
}

.brand-sub {
    color: var(--color-muted);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.24s ease;
}

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

.hamburger {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 54px;
    border: none;
    border-radius: 15%;
    background: transparent;
    box-shadow: none;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: #FFD600;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition:
        stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
    transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

.nav-toggle {
    display: none;
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.hero {
    padding: 140px 0 100px;
    position: relative;
}

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

.eyebrow,
.section-head p,
.pricing-panel-copy p,
.trust-card p,
.faq-panel h3,
.faq-question {
    font-family: var(--font-body);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    margin-bottom: 18px;
}

.hero h1,
.section-head h2,
.cta h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 0.95;
    max-width: 680px;
    margin-bottom: 28px;
}

.hero-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 42px;
    list-style: none;
}

.hero-list li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.hero-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-yellow);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

/* Dedicated auth actions (Login / Register) below the primary CTA row */
.auth-actions {
    margin-top: 24px;
}

.auth-actions-label {
    margin-top: 28px;
    margin-bottom: -8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    font-weight: 600;
}

.btn {
    border-radius: 999px;
    padding: 16px 28px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-yellow) 0%, #f7d400 100%);
    color: var(--color-black);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--color-white);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 36px;
    padding: 36px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
    position: relative;
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.hero-card-label {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 12px;
}

.hero-card h2 {
    font-size: 1.7rem;
    line-height: 1.15;
    max-width: 280px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--color-yellow);
    color: var(--color-black);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.hero-card-body {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    padding: 22px;
    text-align: center;
}

.hero-stat span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-stat small {
    color: rgba(255, 255, 255, 0.7);
}

.hero-card-footer span {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
}

.hero-floating-card {
    position: absolute;
    width: 180px;
    border-radius: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-floating-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-floating-card strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.hero-floating-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-size: 0.9rem;
}

.hero-floating-card.card-one { top: 10%; left: 6%; }
.hero-floating-card.card-two { bottom: 12%; left: 8%; }
.hero-floating-card.card-three { top: 10%; right: 6%; }
.hero-floating-card.card-four { bottom: 14%; right: 8%; }

/* Box to contain the small feature cards inside the hero visual */

.hero-features-box {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    /* ensure at least 2px gap from box edges */
    padding: 8px;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 2fr));
    gap: 8px;
    align-items: center;
    justify-items: center;
    margin-top: 18px;
}

/* When the floating cards are inside the box, make them fit as regular cards */
.hero-features-box .hero-floating-card {
    position: relative;
    width: 12.5rem;
    box-sizing: border-box;
    padding: 7px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
    transform: none;
    opacity: 1;
    margin: 0;
}

.hero-features-box .hero-floating-card strong {
    font-size: 0.98rem;
    margin-bottom: 6px;
}

.hero-features-box .hero-floating-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.74);
    margin: 0;
}

@media (max-width: 860px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
    }
}

.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.section-head h2,
.cta h2 {
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-top: 6px;
    background-image: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.98) 58%,
        rgba(255, 214, 0, 0.9) 62%,
        rgba(255, 214, 0, 0.5) 72%,
        rgba(255, 255, 255, 0.95) 90%
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.cards-grid,
.why-grid,
.trust-grid {
    display: grid;
    gap: 24px;
}

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

.pricing-card,
.why-card,
.trust-card,
.pricing-panel,
.faq-panel,
.cta-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    box-shadow: var(--shadow-raised);
}

.pricing-card,
.why-card,
.trust-card {
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover,
.why-card:hover,
.trust-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.16);
}

.pricing-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 24px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card h3,
.why-card h3,
.trust-card h3,
.pricing-panel-copy h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.pricing-card p,
.why-card p,
.trust-card p,
.pricing-panel-copy p,
.faq-answer p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

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

.why-card {
    min-height: 220px;
}

.icon,
.trust-icon {
    color: var(--color-yellow);
}

.icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 22px;
}

.trust-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 0, 'opsz' 36;
    font-size: 1.4rem;
}

.footer-social svg {
    width: 26px;
    height: 26px;
    min-width: 26px;
    fill: var(--color-yellow);
    color: var(--color-yellow); /* FIX: makes currentColor (used by the Instagram icon's stroke) render yellow too */
    stroke: currentColor; /* ensure stroke-based SVGs (like X) appear in the same color */
    vector-effect: non-scaling-stroke;
}

/* Font Awesome sizing for footer social icons to match inline SVGs */
.footer-social i,
.footer-social .fa-brands {
    font-size: 20px;
    width: 26px;
    height: 26px;
    min-width: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    line-height: 1;
}

.footer-social a:hover svg {
    filter: drop-shadow(0 0 6px rgba(255, 214, 0, 0.45));
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.timeline-item {
    position: relative;
    padding: 32px;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-6px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 3px;
    height: calc(100% - 56px);
    background: linear-gradient(180deg, rgba(255, 214, 0, 0.35), transparent);
    top: 56px;
    left: 28px;
    border-radius: 999px;
}

.timeline-item:last-child::before {
    display: none;
}

.step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 24px;
}

.timeline-item {
    padding-left: 52px;
}

.pricing-table {
    padding: 60px 0 40px;
}

.pricing-panel {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    padding: 40px;
}

.pricing-panel-copy {
    max-width: 500px;
}

.pricing-panel-grid {
    display: grid;
    gap: 16px;
}

.pricing-panel-grid div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-panel-grid div strong {
    color: var(--color-yellow);
}

.trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 40px;
}

.trust-card {
    min-height: 196px;
}

.trust-icon {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.faq-panel {
    padding: 32px;
}

.faq-panel h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:first-child {
    border-top: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
}

.faq-question[aria-expanded="true"]::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 260px;
}

.cta {
    padding: 100px 0;
    background: var(--color-black);
}

.cta-panel {
    padding: 64px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.cta h2 {
    font-size: clamp(3rem, 4vw, 4.5rem);
    line-height: 1.02;
    margin: 24px 0 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer {
    padding: 60px 0 36px;
    background: #020202;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
    position: relative;
    padding-top: 36px;
}

.site-footer {
    padding: 60px 0 36px;
    background: #020202;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 214, 0, 0.16);
    top: -50px;
    right: -50px;
    filter: blur(34px);
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    width: calc(100% - 96px);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 214, 0, 0.36) 50%, transparent 100%);
    top: 42px;
    left: 48px;
    pointer-events: none;
}

.footer-brand-block a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--color-yellow);
}

.footer-brand-block p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.76);
    max-width: 320px;
}

/* FIX: style the "InsyT" footer brand - yellow, bold, and double the size
   of the navbar brand (1.4rem -> 2.8rem). Applied to the footer brand link. */
.brand.footer-brand {
    color: var(--color-yellow);
    font-weight: 800;
    font-size: 2.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-yellow);
    background: rgba(255, 214, 0, 0.14);
    border: 1px solid rgba(255, 214, 0, 0.22);
    box-shadow: 0 20px 40px rgba(255, 214, 0, 0.08);
}

.footer-links,
.footer-social {
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.24s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--color-yellow);
}

.footer-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 12px;
    background: rgba(255, 214, 0, 0.16);
    color: var(--color-yellow);
    font-size: 0.95rem;
}

.footer-links a,
.footer-social a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--color-yellow);
}

.footer-bottom {
    margin-top: 48px;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    font-size: 0.95rem;
}

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

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


@media (max-width: 1120px) {
    .hero-grid,
    .pricing-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid,
    .why-grid,
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        inset: 84px 0 0;
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 20px;
        background: rgba(10, 10, 10, 0.96);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-list {
        grid-template-columns: 1fr;
    }

    .hero-card-body {
        grid-template-columns: 1fr;
    }

    .hero-floating-card {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 20px;
    }

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

    .timeline-item {
        padding-left: 32px;
    }

    .timeline-item::before {
        left: 18px;
    }
}

@media (max-width: 560px) {
    /* FIX: prevent horizontal overflow so content stays centered and
       doesn't shift left when pinching/zooming on mobile. */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .container {
        padding: 0 16px;
        margin-inline: auto;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-card,
    .pricing-card,
    .why-card,
    .trust-card,
    .faq-panel,
    .cta-panel {
        padding: 24px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

.pricing-card,
    .why-card,
    .trust-card {
        padding: 24px;
    }

/* --- Mobile background fix ---
       Constrain the ambient background so it hugs the content
       instead of overflowing loose around the sections. */
    /* FIX: switched from position:fixed to position:absolute so the glow
       sizes to the document height (matches the sections) instead of the
       full viewport. body already has position:relative. */
    body::before,
    body::after {
        position: absolute;
        inset: 0;
        border-radius: 32px;
        min-height: 100%;
    }

    /* stop the glow from scaling larger than the screen */
    /* FIX: lowered blur from 24px to 16px to shrink edge bleed past the screen */
    body::after {
        animation: none;
        transform: scale(1);
        opacity: 0.4;
        filter: blur(16px);
        background-size: cover;
    }

    /* stop the gradient from sliding sideways */
    /* FIX: lowered blur to 16px to match above and reduce glow overflow */
    body::before {
        animation: none;
        background-position: center;
        filter: blur(16px);
    }
}
