/* ============================================================
   IT Guru – Phishing Awareness Campaign
   Shared stylesheet
   ============================================================ */

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

:root {
    --ms-blue: #0078d4;
    --ms-blue-dark: #005a9e;
    --ms-blue-light: #deecf9;
    --red: #d13438;
    --red-light: #fde7e9;
    --yellow: #f7c948;
    --yellow-light: #fef9e7;
    --green: #107c10;
    --green-light: #dff6dd;
    --purple: #5c2d91;
    --purple-light: #ede4f5;
    --bg: #f0f2f5;
    --card: #ffffff;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .10);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, .16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── Animated background ─────────────────────────────────── */
.bg-bubbles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-bubbles span {
    position: absolute;
    bottom: -160px;
    border-radius: 50%;
    animation: rise 18s infinite ease-in;
    opacity: .12;
}

.bg-bubbles span:nth-child(1) {
    left: 5%;
    width: 80px;
    height: 80px;
    background: var(--ms-blue);
    animation-duration: 16s;
}

.bg-bubbles span:nth-child(2) {
    left: 15%;
    width: 40px;
    height: 40px;
    background: var(--yellow);
    animation-duration: 20s;
    animation-delay: 2s;
}

.bg-bubbles span:nth-child(3) {
    left: 30%;
    width: 120px;
    height: 120px;
    background: var(--ms-blue);
    animation-duration: 14s;
    animation-delay: 1s;
}

.bg-bubbles span:nth-child(4) {
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--green);
    animation-duration: 22s;
    animation-delay: 3s;
}

.bg-bubbles span:nth-child(5) {
    left: 65%;
    width: 90px;
    height: 90px;
    background: var(--purple);
    animation-duration: 17s;
    animation-delay: 1.5s;
}

.bg-bubbles span:nth-child(6) {
    left: 75%;
    width: 50px;
    height: 50px;
    background: var(--yellow);
    animation-duration: 19s;
    animation-delay: 4s;
}

.bg-bubbles span:nth-child(7) {
    left: 85%;
    width: 70px;
    height: 70px;
    background: var(--ms-blue);
    animation-duration: 15s;
    animation-delay: 2.5s;
}

.bg-bubbles span:nth-child(8) {
    left: 92%;
    width: 100px;
    height: 100px;
    background: var(--red);
    animation-duration: 21s;
    animation-delay: 0.5s;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: .12;
    }

    50% {
        transform: translateY(-40vh) scale(1.05);
    }

    100% {
        transform: translateY(-110vh) scale(.9);
        opacity: 0;
    }
}

/* ── Brand bar ───────────────────────────────────────────── */
.brand-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.brand-icon {
    font-size: 2rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ms-blue);
}

.brand-sub {
    font-size: .8rem;
    color: var(--text-muted);
}

/* ============================================================
    PROMO PAGE  (index.html)
    ============================================================ */

/* ─── Base ────────────────────────────────────────────────── */
.promo-page {
    background: #04040e;
    color: #eee9e1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* ─── Background depth orbs ───────────────────────────────── */
.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sky-sparkles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.sky-sparkles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 214, 140, 0.95) 0%, rgba(240, 214, 140, 0.15) 70%, transparent 100%);
    opacity: 0.08;
    transform: scale(var(--s, 1));
    animation: sky-twinkle var(--dur, 5s) ease-in-out var(--d, 0s) infinite;
    filter: drop-shadow(0 0 7px rgba(201, 168, 76, 0.35));
}

.sky-sparkles span::before,
.sky-sparkles span::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(240, 214, 140, 0.55);
    border-radius: 99px;
}

.sky-sparkles span::before {
    width: 1px;
    height: 12px;
}

.sky-sparkles span::after {
    width: 12px;
    height: 1px;
}

@keyframes sky-twinkle {

    0%,
    100% {
        opacity: 0.06;
        transform: scale(calc(var(--s, 1) * 0.78));
    }

    45% {
        opacity: 0.36;
        transform: scale(calc(var(--s, 1) * 1.15));
    }

    60% {
        opacity: 0.18;
        transform: scale(var(--s, 1));
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.orb-a {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(55, 15, 115, 0.85) 0%, transparent 70%);
    top: -120px;
    left: -100px;
    opacity: 0.7;
}

.orb-b {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 55, 135, 0.75) 0%, transparent 70%);
    top: 30%;
    right: -90px;
    opacity: 0.6;
}

.orb-c {
    width: 600px;
    height: 380px;
    background: radial-gradient(circle, rgba(110, 65, 0, 0.45) 0%, transparent 70%);
    bottom: -60px;
    left: 18%;
    opacity: 0.55;
}

/* ─── Header / logo ───────────────────────────────────────── */
.promo-header {
    position: relative;
    z-index: 2;
    padding: 30px 80px;
    display: flex;
    align-items: center;
    max-width: 1240px;
    width: 100%;
    margin: auto;
}

@media (max-width: 640px) {
    .promo-header {
        padding: 20px 24px;
    }
}

.logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 100px;
    padding: 8px 16px 8px 8px;
    backdrop-filter: blur(12px);
}

.logo-monogram {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #C9A84C, #8B6820);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .03em;
    flex-shrink: 0;
}

.logo-img {
    width: 100px;
    object-fit: contain;
    margin-left: 10px;
}

.logo-label-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-name {
    font-size: .88rem;
    font-weight: 600;
    color: #eee9e1;
}

.logo-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(238, 233, 225, 0.35);
    flex-shrink: 0;
}

.logo-project {
    font-size: .78rem;
    color: rgba(238, 233, 225, 0.5);
}

/* ─── Two-column layout ───────────────────────────────────── */
.promo-layout {
    position: relative;
    z-index: 2;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 48px 40px;
    align-items: center;
    gap: 60px;
}

@media (min-width: 900px) {
    .promo-layout {
        grid-template-columns: 1fr 1fr;
        padding: 20px 80px 60px;
    }
}

@media (max-width: 640px) {
    .promo-layout {
        padding: 20px 24px 40px;
        gap: 40px;
    }

    .promo-header {
        justify-content: center;
    }

    .promo-content {
        align-items: center;
        text-align: center;
    }

    .promo-sub {
        max-width: 100%;
    }

    .promo-rule {
        margin: 0 auto 24px;
    }

    .limited-drop {
        width: 100%;
        max-width: 560px;
        text-align: left;
    }

    .promo-cta {
        width: min(100%, 560px);
        justify-content: center;
        margin: 0 auto 20px;
    }

    .promo-fine {
        text-align: center;
        width: 100%;
    }

    .promo-h1 em {
        margin-left: 50%;
        width: 100%;
    }

    .reveal-topbar {
        justify-content: center !important;
        align-items: center !important;
    }
}

/* ─── Content column (left) ───────────────────────────────── */
.promo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* Event badge */
.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.10);
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: .75rem;
    font-weight: 500;
    color: #D4A840;
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.badge-live {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C9A84C;
    flex-shrink: 0;
    animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 5px rgba(201, 168, 76, 0);
    }
}

/* Headline */
.promo-h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1.05;
    color: #eee9e1;
    margin-bottom: 24px;
    letter-spacing: -.02em;
}

.h1-em {
    font-style: italic;
    background: linear-gradient(105deg, #C9A84C 10%, #F0D68C 55%, #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer-text 4s linear infinite;
    display: inline-block;
}

@keyframes shimmer-text {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Sub-headline */
.promo-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(238, 233, 225, 0.62);
    margin-bottom: 26px;
    max-width: 440px;
}

.promo-sub strong {
    color: #eee9e1;
    font-weight: 600;
}

/* Decorative rule */
.promo-rule {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, #C9A84C, rgba(201, 168, 76, 0));
    border: none;
    margin: 0 0 24px 0;
}

/* Event meta (dl) */
.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 40px;
}

.meta-item {
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid rgba(238, 233, 225, 0.1);
}

.meta-item:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}

.meta-item dt {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(238, 233, 225, 0.38);
    margin-bottom: 6px;
}

.meta-item dt svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.meta-item dd {
    font-size: .97rem;
    font-weight: 600;
    color: #eee9e1;
    margin-left: 0;
}

/* Limited drink block */
.limited-drop {
    width: min(520px, 100%);
    margin: 0 0 30px;
    padding: 16px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.10) 0%, rgba(201, 168, 76, 0.03) 100%);
    border: 1px solid rgba(201, 168, 76, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 248, 220, 0.06);
}

.limited-head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.limited-kicker {
    font-size: .67rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(238, 233, 225, 0.50);
}

.limited-name {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #F0D68C;
    letter-spacing: .01em;
}

.limited-note {
    font-size: .87rem;
    line-height: 1.55;
    color: rgba(238, 233, 225, 0.68);
    margin-bottom: 12px;
}

.limited-note strong {
    color: #eee9e1;
    font-weight: 600;
}

.limited-meter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meter-label {
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: #C9A84C;
    min-width: 46px;
}

.meter-track {
    position: relative;
    display: block;
    height: 6px;
    width: 100%;
    border-radius: 999px;
    background: rgba(238, 233, 225, 0.12);
    overflow: hidden;
}

.meter-fill {
    display: block;
    height: 100%;
    width: 13%;
    border-radius: inherit;
    background: linear-gradient(90deg, #F0D68C 0%, #C9A84C 100%);
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.45);
    animation: meter-glow 2.5s ease-in-out infinite;
}

@keyframes meter-glow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.12);
    }
}

@media (max-width: 480px) {
    .event-meta {
        flex-direction: column;
        gap: 20px;
    }

    .meta-item {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }
}

/* CTA button */
.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #C9A84C 0%, #8B6820 100%);
    color: #04040e;
    text-decoration: none;
    border-radius: 10px;
    font-size: .97rem;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.30), 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform .18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .18s ease;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    animation: cta-idle-pulse 3.4s ease-in-out infinite;
}

.promo-cta .cta-icon svg {
    color: #04040e;
    width: 22px;
    height: 22px;
    display: block;
    stroke: #04040e;
}

.promo-cta:hover .cta-icon svg {
    color: #222;
    stroke: #222;
}

.promo-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 50%);
    border-radius: inherit;
    pointer-events: none;
}

.promo-cta::after {
    content: '';
    position: absolute;
    top: -22%;
    left: -38%;
    width: 32%;
    height: 150%;
    transform: skewX(-18deg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
    opacity: 0;
    animation: cta-sheen 4.8s ease-in-out infinite;
}

.promo-cta:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 16px 48px rgba(201, 168, 76, 0.45), 0 4px 12px rgba(0, 0, 0, 0.4);
    animation-play-state: paused;
}

.promo-cta:active {
    transform: translateY(0) scale(0.99);
}

@keyframes cta-idle-pulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(201, 168, 76, 0.30), 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 12px 38px rgba(201, 168, 76, 0.36), 0 3px 10px rgba(0, 0, 0, 0.4);
    }
}

@keyframes cta-sheen {

    0%,
    64% {
        opacity: 0;
        transform: translateX(0) skewX(-18deg);
    }

    73% {
        opacity: 0.5;
    }

    88% {
        opacity: 0;
        transform: translateX(500%) skewX(-18deg);
    }

    100% {
        opacity: 0;
        transform: translateX(500%) skewX(-18deg);
    }
}

.cta-text {
    position: relative;
}

.cta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    transition: transform .18s ease;
    display: flex;
    align-items: center;
}

.promo-cta:hover .cta-icon {
    transform: translateX(4px);
}

/* Fine print */
.promo-fine {
    font-size: .78rem;
    line-height: 1.65;
    color: rgba(238, 233, 225, 0.30);
}

/* ─── Visual column (right) ───────────────────────────────── */
.promo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 480px) {
    .promo-visual {
        display: none;
    }
}

.glass-wrap {
    position: relative;
    width: min(320px, 78vw);
}

.glass-glow-bg {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
    filter: blur(35px);
    pointer-events: none;
}

.glass-svg {
    width: 100%;
    height: auto;
    animation: glass-float 5.5s ease-in-out infinite;
    filter: drop-shadow(0 0 22px rgba(201, 168, 76, 0.14));
}

@keyframes glass-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* Liquid surface oscillation */
.liq-surface {
    animation: wave-osc 4.2s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}

@keyframes wave-osc {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Bubbles rising */
.bbl {
    animation: bbl-rise linear infinite;
    opacity: 0;
}

@keyframes bbl-rise {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    8% {
        opacity: 0.8;
    }

    88% {
        opacity: 0.55;
    }

    100% {
        transform: translateY(-142px) translateX(var(--dx, 4px));
        opacity: 0;
    }
}

.bbl-1 {
    animation-duration: 3.0s;
    animation-delay: 0.0s;
    --dx: 4px;
}

.bbl-2 {
    animation-duration: 3.8s;
    animation-delay: 0.4s;
    --dx: -3px;
}

.bbl-3 {
    animation-duration: 3.3s;
    animation-delay: 0.8s;
    --dx: 6px;
}

.bbl-4 {
    animation-duration: 4.1s;
    animation-delay: 1.2s;
    --dx: -5px;
}

.bbl-5 {
    animation-duration: 3.6s;
    animation-delay: 1.6s;
    --dx: 3px;
}

.bbl-6 {
    animation-duration: 2.9s;
    animation-delay: 0.2s;
    --dx: -4px;
}

.bbl-7 {
    animation-duration: 3.5s;
    animation-delay: 2.0s;
    --dx: 5px;
}

.bbl-8 {
    animation-duration: 4.3s;
    animation-delay: 0.6s;
    --dx: -6px;
}

.bbl-9 {
    animation-duration: 3.1s;
    animation-delay: 1.4s;
    --dx: 2px;
}

.bbl-10 {
    animation-duration: 3.7s;
    animation-delay: 0.9s;
    --dx: -2px;
}

/* Sparkles */
.sp {
    animation: sp-twinkle ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}

@keyframes sp-twinkle {

    0%,
    100% {
        opacity: 0.10;
        transform: scale(0.65) rotate(0deg);
    }

    50% {
        opacity: 0.90;
        transform: scale(1.25) rotate(45deg);
    }
}

.sp-1 {
    animation-duration: 2.8s;
    animation-delay: 0.0s;
}

.sp-2 {
    animation-duration: 2.3s;
    animation-delay: 0.7s;
}

.sp-3 {
    animation-duration: 3.2s;
    animation-delay: 1.4s;
}

.sp-4 {
    animation-duration: 2.6s;
    animation-delay: 0.3s;
}

.sp-5 {
    animation-duration: 2.1s;
    animation-delay: 1.8s;
}

.sp-6 {
    animation-duration: 2.9s;
    animation-delay: 1.1s;
}

/* ─── Footer ──────────────────────────────────────────────── */
.promo-footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 24px 28px;
    font-size: .74rem;
    color: rgba(238, 233, 225, 0.20);
    letter-spacing: .04em;
}

/* ============================================================
   REVEAL PAGE  (caught.html)
   ============================================================ */
.reveal-page {
    background: #04040e;
    color: #eee9e1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.reveal-shell {
    position: relative;
    z-index: 2;
    width: min(1080px, 100%);
    margin: 0 auto;
    padding: 28px 48px 18px;
}

.reveal-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 42px;
}

.reveal-kicker {
    font-size: .73rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(238, 233, 225, 0.45);
}

.reveal-hero {
    max-width: 760px;
    margin-bottom: 34px;
}

.reveal-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #D4A840;
    border: 1px solid rgba(201, 168, 76, 0.34);
    background: rgba(201, 168, 76, 0.08);
    margin-bottom: 18px;
}

.reveal-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: 1.06;
    font-weight: 400;
    letter-spacing: -.02em;
    margin-bottom: 18px;
}

.reveal-title em {
    font-style: italic;
    background: linear-gradient(105deg, #C9A84C 10%, #F0D68C 55%, #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reveal-lead {
    max-width: 700px;
    font-size: 1.03rem;
    line-height: 1.7;
    color: rgba(238, 233, 225, 0.68);
    margin-bottom: 12px;
}

.reveal-safe {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    color: #eee9e1;
    background: rgba(45, 155, 105, 0.14);
    border: 1px solid rgba(45, 155, 105, 0.40);
    border-radius: 999px;
    padding: 8px 14px;
}

.reveal-safe::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6be59f;
    box-shadow: 0 0 10px rgba(107, 229, 159, 0.7);
    flex-shrink: 0;
    animation: live-pulse 1.6s ease-in-out infinite;
}

.reveal-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.reveal-card {
    grid-column: span 6;
    border: 1px solid rgba(238, 233, 225, 0.12);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 18px 18px 16px;
    backdrop-filter: blur(10px);
    transform: translateY(10px);
    opacity: 0;
    animation: reveal-card-in .6s ease forwards;
}

.reveal-card:nth-child(2) {
    animation-delay: .12s;
}

.reveal-card:nth-child(3) {
    animation-delay: .22s;
}

.reveal-card h2 {
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #eee9e1;
}

.reveal-card p,
.reveal-card li {
    font-size: .92rem;
    color: rgba(238, 233, 225, 0.65);
    line-height: 1.65;
}

.reveal-card ul {
    margin: 0;
    padding-left: 18px;
}

.reveal-card-emphasis {
    grid-column: span 12;
    border-color: rgba(201, 168, 76, 0.28);
    background: linear-gradient(120deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
}

.reveal-card-emphasis strong {
    color: #F0D68C;
}

.reveal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.reveal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 18px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.reveal-btn-secondary {
    color: #eee9e1;
    border: 1px solid rgba(238, 233, 225, 0.26);
    background: rgba(255, 255, 255, 0.03);
}

.reveal-btn-secondary:hover {
    border-color: rgba(238, 233, 225, 0.42);
}

.reveal-btn-primary {
    color: #04040e;
    background: linear-gradient(135deg, #C9A84C 0%, #8B6820 100%);
    box-shadow: 0 8px 26px rgba(201, 168, 76, 0.32);
}

.reveal-footer {
    position: relative;
    z-index: 2;
    margin-top: auto;
    text-align: center;
    padding: 10px 24px 24px;
    font-size: .73rem;
    line-height: 1.45;
    color: rgba(238, 233, 225, 0.28);
    letter-spacing: .04em;
}

@keyframes reveal-card-in {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 860px) {
    .reveal-shell {
        padding: 22px 24px 14px;
    }

    .reveal-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 28px;
    }

    .reveal-topbar .logo-label-wrap {
        flex-wrap: nowrap;
    }

    .reveal-topbar .logo-name,
    .reveal-topbar .logo-project {
        white-space: nowrap;
    }

    .reveal-kicker {
        font-size: .69rem;
        letter-spacing: .08em;
        line-height: 1.35;
        padding-left: 2px;
    }

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

    .reveal-card,
    .reveal-card-emphasis {
        grid-column: auto;
    }

    .reveal-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .reveal-btn {
        width: 100%;
        min-height: 46px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .reveal-actions {
        grid-template-columns: 1fr;
    }

    .reveal-footer {
        padding: 12px 18px 22px;
    }
}

/* ============================================================
   LOGIN PAGE  (old – kept for reference, not used)
   ============================================================ */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.login-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Promo banner */
.promo-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border: 2px solid var(--yellow);
    border-radius: var(--radius);
    padding: 14px 20px;
    width: 100%;
    box-shadow: 0 2px 12px rgba(247, 201, 72, .25);
    animation: pulse-border 2.5s ease-in-out infinite;
}

@keyframes pulse-border {

    0%,
    100% {
        box-shadow: 0 2px 12px rgba(247, 201, 72, .25);
    }

    50% {
        box-shadow: 0 2px 20px rgba(247, 201, 72, .55);
    }
}

.promo-emoji {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.promo-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.promo-copy strong {
    font-size: 1.05rem;
    color: #92600a;
}

.promo-copy span {
    font-size: .85rem;
    color: #7a5200;
}

/* Card */
.login-card {
    width: 100%;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 36px 40px 32px;
}

/* Microsoft header inside card */
.ms-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.ms-logo {
    width: 22px;
    height: 22px;
}

.ms-header span {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-sub {
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Fields */
.field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.field-group label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text);
}

.field-group input,
.password-wrap input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: .95rem;
    font-family: inherit;
    color: var(--text);
    background: #fafafa;
    transition: border-color .2s, box-shadow .2s, background .2s;
    outline: none;
}

.field-group input:focus,
.password-wrap input:focus {
    border-color: var(--ms-blue);
    box-shadow: 0 0 0 3px var(--ms-blue-light);
    background: #fff;
}

.password-wrap {
    position: relative;
}

.password-wrap input {
    padding-right: 44px;
}

.toggle-pw {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s;
}

.toggle-pw:hover,
.toggle-pw.active {
    color: var(--ms-blue);
}

.toggle-pw svg {
    width: 18px;
    height: 18px;
}

/* Options row */
.options-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: .84rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--ms-blue);
    width: 15px;
    height: 15px;
}

.forgot-link {
    color: var(--ms-blue);
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Primary button */
.btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--ms-blue) 0%, var(--ms-blue-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, opacity .2s;
    box-shadow: 0 4px 16px rgba(0, 120, 212, .35);
    margin-bottom: 16px;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 120, 212, .45);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: .75;
    cursor: not-allowed;
}

.btn-icon {
    font-size: 1.15rem;
}

.btn-primary.loading .btn-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Security note */
.security-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--text-muted);
    justify-content: center;
}

.lock-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

/* Footer */
.page-footer {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: .78rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    justify-content: center;
}

.page-footer a {
    color: var(--text-muted);
    text-decoration: none;
}

.page-footer a:hover {
    text-decoration: underline;
}

/* ============================================================
   CAUGHT PAGE
   ============================================================ */
.caught-page {
    background: linear-gradient(160deg, #0f0c29 0%, #302b63 45%, #24243e 100%);
    color: #f8fafc;
}

.caught-bg span {
    opacity: .07;
}

/* Hero */
.caught-hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 72px 24px 48px;
    max-width: 720px;
    margin: 0 auto;
}

.confetti-ring {
    font-size: 3.5rem;
    animation: spin 8s linear infinite;
    display: inline-block;
    margin-bottom: 8px;
}

.hero-emoji {
    font-size: 4.5rem;
    display: block;
    margin-bottom: 16px;
}

.animate-bounce {
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #f7c948, #ff6b6b, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-small {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    background: linear-gradient(90deg, #a8edea, #fed6e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-lead strong {
    color: #f7c948;
}

.good-news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 124, 16, .25);
    border: 1.5px solid rgba(16, 124, 16, .6);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: .9rem;
    color: #a3e9a4;
}

.good-news-badge strong {
    color: #d4f8d4;
}

/* Edu container */
.edu-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Edu cards */
.edu-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 36px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

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

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.edu-card h2 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.edu-card p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

/* Color accents for cards */
.card-red {
    border-left: 4px solid #ff6b6b;
}

.card-yellow {
    border-left: 4px solid var(--yellow);
}

.card-green {
    border-left: 4px solid #6bcb77;
}

.card-blue {
    border-left: 4px solid #74b9ff;
}

/* Stats */
.stat-row {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.stat {
    flex: 1;
    min-width: 120px;
    background: rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff6b6b;
}

.stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .65);
    margin-top: 4px;
    display: block;
}

/* Red flags list */
.red-flags {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.red-flags li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.flag {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.red-flags li div strong {
    color: #ffd572;
    font-size: .95rem;
    display: block;
    margin-bottom: 3px;
}

.red-flags li div p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .72);
}

.red-flags code {
    background: rgba(255, 255, 255, .12);
    padding: 1px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: .85em;
}

/* Tips grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.tip {
    background: rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 20px;
}

.tip-num {
    font-size: .75rem;
    font-weight: 700;
    color: #6bcb77;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tip h3 {
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    margin: 6px 0 6px;
}

.tip p {
    font-size: .84rem;
    color: rgba(255, 255, 255, .68);
}

/* Facts list */
.facts-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.fact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.fact-emoji {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.fact-item p {
    font-size: .93rem;
    color: rgba(255, 255, 255, .78);
}

.fact-item strong {
    color: #74b9ff;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(92, 45, 145, .35) 0%, rgba(0, 120, 212, .25) 100%);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    padding: 48px 36px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.final-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-trophy {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.final-cta h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.final-cta>p {
    font-size: .97rem;
    color: rgba(255, 255, 255, .78);
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.final-cta strong {
    color: #f7c948;
}

.cta-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: .84rem;
    font-weight: 600;
}

.badge-green {
    background: rgba(16, 124, 16, .3);
    color: #a3e9a4;
    border: 1px solid rgba(16, 124, 16, .5);
}

.badge-blue {
    background: rgba(0, 120, 212, .3);
    color: #90c8f8;
    border: 1px solid rgba(0, 120, 212, .5);
}

.badge-purple {
    background: rgba(92, 45, 145, .4);
    color: #c9b3f5;
    border: 1px solid rgba(92, 45, 145, .6);
}

.drink-consolation {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(247, 201, 72, .12);
    border: 1px solid rgba(247, 201, 72, .35);
    border-radius: 12px;
    padding: 14px 24px;
    font-size: .95rem;
    color: #fde68a;
}

.drink-consolation span {
    font-size: 1.8rem;
}

/* Edu footer */
.edu-footer {
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}

.edu-footer .brand-name {
    color: #a29bfe;
}

.edu-footer .brand-sub {
    color: rgba(255, 255, 255, .45);
}

/* ── Confetti pieces ─────────────────────────────────────── */
.confetti-piece {
    position: fixed;
    top: -50px;
    animation: fall 3.5s ease-in forwards;
    pointer-events: none;
    z-index: 9999;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) rotate(720deg);
        opacity: 0;
    }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 520px) {
    .login-card {
        padding: 28px 22px 24px;
    }

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

    .stat-row {
        flex-direction: column;
    }

    .options-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}