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

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: #050507;
}

.canvas {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: stretch;
    background: #050507;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Diagonal stripe texture overlay */
.canvas::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -52deg,
        transparent 0px,
        transparent 14px,
        rgba(255, 255, 255, 0.014) 14px,
        rgba(255, 255, 255, 0.014) 15px
    );
    pointer-events: none;
    z-index: 1;
}


/* ─── CLEAN STRIP LINES ─── */
.neon-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 95, 55, 0.3) 15%,
        rgba(255, 95, 55, 0.85) 50%,
        rgba(255, 95, 55, 0.3) 85%,
        transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.neon-line-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 95, 55, 0.15) 20%,
        rgba(255, 95, 55, 0.45) 50%,
        rgba(255, 95, 55, 0.15) 80%,
        transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* ─── SPECTACULAR HUD LAYERS ─── */
.canvas::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 95, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 95, 55, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 90%);
}

.noise {
    position: absolute;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scanline {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 95, 55, 0.04) 50%,
        transparent 100%
    );
    background-size: 100% 4px;
    z-index: 51;
    pointer-events: none;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* ─── LEFT COLUMN ─── */
.left {
    width: 520px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 56px 0 56px 64px;
    overflow: visible;
    background: rgba(10, 9, 12, 0.85);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(28, 28, 34, 0.5);
    z-index: 5;
}

.left::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 95, 55, 0.10) 0%, transparent 65%);
    pointer-events: none;
}

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #FF5F37;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: #FF5F37;
    flex-shrink: 0;
}

.stat-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid #22223A;
}

.stat-item:first-child {
    border-top: 1px solid #22223A;
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 90px;
    line-height: 0.88;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.stat-num .acc {
    background: repeating-linear-gradient(
        180deg,
        #FF5F37 0px,
        #FF5F37 65%,
        rgba(100, 28, 8, 0.35) 65%,
        rgba(100, 28, 8, 0.35) 100%
    );
    background-size: 100% 13px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-num .dim {
    color: #505070;
    font-size: 56px;
}

.stat-label {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #9898B8;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 8px;
}

/* proof pill */
.proof-pill {
    margin-top: 36px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 95, 55, 0.35);
    background: rgba(255, 95, 55, 0.08);
    max-width: 440px;
}

.proof-icon {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #FF5F37;
    flex-shrink: 0;
    margin-top: 1px;
}

.proof-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: #C0C0D8;
    line-height: 1.7;
}

.proof-text strong {
    color: #FFFFFF;
    font-weight: 700;
}

.proof-text .hi {
    color: #FF5F37;
    font-weight: 700;
}

/* ─── MIDDLE COLUMN ─── */
.middle {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 56px 48px 72px;
    overflow: visible;
    z-index: 2;
}

.middle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(255, 95, 55, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.headline-kicker {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #5858A0;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 108px;
    line-height: 0.86;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.headline .hl {
    background: repeating-linear-gradient(
        180deg,
        #FF5F37 0px,
        #FF5F37 68%,
        rgba(120, 32, 10, 0.45) 68%,
        rgba(120, 32, 10, 0.45) 100%
    );
    background-size: 100% 9px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.headline .dim {
    color: #404060;
}

.headline .md {
    color: #888899;
}

.headline-sub {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #9898B8;
    letter-spacing: 0.06em;
    margin-top: 20px;
    line-height: 1.55;
    position: relative;
    z-index: 2;
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 95, 55, 0.4), rgba(255, 95, 55, 0.05) 60%, transparent);
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.features {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.feature-arrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #FF5F37;
    flex-shrink: 0;
}

.feature-text {
    font-family: 'Barlow', sans-serif;
    font-size: 14.5px;
    color: #A0A0C8;
    line-height: 1.4;
}

.feature-text strong {
    color: #E8E8FF;
    font-weight: 600;
}

.speaker-block {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 26px;
    border-top: 1px solid #181820;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 95, 55, 0.5);
    background: #10101A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-txt {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #FF5F37;
    letter-spacing: 0.05em;
}

.speaker-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #DDDDF0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.speaker-creds {
    font-family: 'Barlow', sans-serif;
    font-size: 11.5px;
    color: #7070A0;
    letter-spacing: 0.05em;
    margin-top: 3px;
}

/* ─── MASTERCLASS BRAND ELEMENTS ─── */
.masterclass-eyebrow {
    position: relative;
    z-index: 2;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #FF5F37;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF5F37;
    flex-shrink: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

.mc-sep {
    color: #303050;
    font-size: 7px;
}

.masterclass-tagline {
    position: relative;
    z-index: 2;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6060A0;
    margin-top: 10px;
    margin-bottom: 2px;
}

.audience-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.aud-chip {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #404065;
    padding: 3px 9px;
    border: 1px solid #1C1C2C;
    background: #0A0A12;
}

.aud-sep {
    color: #252535;
    font-size: 8px;
}

/* eyebrow sub */
.eyebrow-sub {
    font-size: 8px;
    color: #404060;
    letter-spacing: 0.18em;
    font-weight: 400;
}

/* origin story */
.origin-story {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    margin-bottom: 4px;
    padding: 14px 16px;
    border-left: 2px solid rgba(255, 95, 55, 0.4);
    background: rgba(255, 95, 55, 0.03);
}

.origin-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    color: #FF5F37;
    letter-spacing: 0.14em;
    opacity: 0.7;
    margin-bottom: 10px;
}

.origin-log {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.origin-line {
    font-family: 'Barlow', sans-serif;
    font-size: 11.5px;
    color: #707090;
    line-height: 1.55;
}

.origin-line em { color: #9090b8; font-style: italic; }

.origin-line.highlight {
    color: #a0a0c0;
    padding: 6px 10px;
    border: 1px solid rgba(255, 95, 55, 0.15);
    background: rgba(255, 95, 55, 0.04);
    margin-top: 2px;
}

.origin-line.highlight strong {
    color: #FF5F37;
    font-weight: 700;
}

.origin-token-bar {
    position: relative;
    height: 3px;
    background: #111120;
    margin-top: 14px;
    overflow: hidden;
}

.origin-token-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(255,95,55,0.3), #FF5F37);
    animation: token-bar-fill 2.5s cubic-bezier(0.16,1,0.3,1) 1s forwards;
}

@keyframes token-bar-fill {
    to { width: 100%; }
}

.origin-token-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 7px;
    color: #404060;
    letter-spacing: 0.12em;
    margin-top: 5px;
    display: block;
}

/* why block */
.why-block {
    position: relative;
    z-index: 2;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: #70709A;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 520px;
}

.why-block strong {
    color: #A0A0C8;
    font-weight: 600;
}

/* 5 W block */
.five-w-block {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.five-w-grid {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0;
    margin-top: 10px;
    border: 1px solid #1a1a2e;
}

.w-item {
    display: contents;
}

.w-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #FF5F37;
    padding: 9px 10px;
    border-bottom: 1px solid #1a1a2e;
    border-right: 1px solid #1a1a2e;
    display: flex;
    align-items: flex-start;
    background: rgba(255, 95, 55, 0.03);
}

.w-val {
    font-family: 'Barlow', sans-serif;
    font-size: 11.5px;
    color: #9090b0;
    line-height: 1.5;
    padding: 9px 12px;
    border-bottom: 1px solid #1a1a2e;
}

.w-item:last-child .w-label,
.w-item:last-child .w-val {
    border-bottom: none;
}

/* section label row */
.section-label-row {
    position: relative;
    z-index: 2;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #8080aa;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label-row::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #282840;
}

/* tools section */
.tools-section {
    position: relative;
    z-index: 2;
    margin-top: 22px;
}

.tools-header {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: #404068;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tools-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #181820;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.tool-chip {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #7070A0;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border: 1px solid #1E1E2E;
    background: #0A0A12;
}

.tool-chip.primary {
    color: #FF5F37;
    border-color: rgba(255, 95, 55, 0.3);
    background: rgba(255, 95, 55, 0.06);
}

.tools-meta {
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    color: #505075;
    line-height: 1.55;
    font-style: italic;
}

/* wisdom strip */
.wisdom-strip {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    padding: 13px 18px;
    border-left: 2px solid rgba(255, 95, 55, 0.3);
    background: rgba(255, 95, 55, 0.03);
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.wisdom-cc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(255, 95, 55, 0.45);
    flex-shrink: 0;
}

.wisdom-text {
    font-family: 'Barlow', sans-serif;
    font-size: 12.5px;
    color: #70709A;
    line-height: 1.55;
    font-style: italic;
    letter-spacing: 0.02em;
}

.wisdom-text em {
    color: #9090C0;
    font-style: normal;
}

/* target label (replaces hidden kicker) */
.target-label {
    visibility: visible !important;
    color: #404068 !important;
    margin-bottom: 22px !important;
}

/* speaker bio line */
.speaker-bio-line {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: #404065;
    letter-spacing: 0.09em;
    margin-top: 5px;
}

/* credential badges */
.cred-badges {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #12121C;
}

.cred-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8.5px;
    color: #606090;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid #1E1E2E;
    background: #0A0A12;
}

.cred-badge.lit {
    color: rgba(255, 95, 55, 0.8);
    border-color: rgba(255, 95, 55, 0.25);
    background: rgba(255, 95, 55, 0.06);
}

/* workshop date row */
.workshop-date-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 4px;
    padding: 8px 12px;
    border: 1px solid #222230;
    background: rgba(255, 95, 55, 0.04);
}

.workshop-date-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.12em;
    color: #FF5F37;
    opacity: 0.8;
    white-space: nowrap;
}

.workshop-date-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #c0c0d8;
    letter-spacing: 0.04em;
    flex: 1;
}

.workshop-seats {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    color: #FF5F37;
    letter-spacing: 0.08em;
    opacity: 0.7;
    white-space: nowrap;
}

.tz-chip {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #e0e0f0;
    background: rgba(255, 255, 255, 0.05);
    padding: 1px 6px;
    border: 1px solid #222230;
    letter-spacing: 0.04em;
}

.tz-sep {
    color: #404058;
    margin: 0 2px;
}

/* pricing row */
.pricing-row {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.price-tag {
    padding: 14px 18px;
    border: 1px solid #222230;
    background: #0E0E18;
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    flex: 1;
}

.price-tag:hover {
    border-color: #505070;
    transform: translateY(-2px);
    background: #151525;
}

.price-tag.hot {
    border-color: rgba(255, 95, 55, 0.35);
    background: rgba(255, 95, 55, 0.07);
}

.price-tag.hot:hover {
    border-color: rgba(255, 95, 55, 0.8);
    background: rgba(255, 95, 55, 0.15);
}

.price-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1;
}

.price-tag.hot .price-amount {
    font-size: 15px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.price-tag.hot .price-amount {
    color: #FF5F37;
}

.price-tier {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: #7070A0;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.price-tag.hot .price-tier {
    color: #DD7055;
}

/* ─── RIGHT COLUMN ─── */
.right {
    width: 268px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 56px 28px 0 28px;
    position: relative;
    overflow: hidden;
    border-left: 1px solid rgba(28, 28, 34, 0.5);
    background: rgba(8, 8, 16, 0.85);
    backdrop-filter: blur(12px);
    z-index: 5;
}

.right::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 95, 55, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.right-header {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: #6868A0;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.right-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #2A2A40;
}

.adr-stream {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.adr-card {
    border: 1px solid #252538;
    padding: 11px 13px;
    background: #10101E;
    position: relative;
    overflow: hidden;
}

.adr-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
}

.adr-card.accepted::before {
    background: #3DCC52;
}

.adr-card.proposed::before {
    background: #F5C242;
}

.adr-card.superseded::before {
    background: #2E2E40;
}

.adr-card.top::before {
    background: #FF5F37;
}

.adr-card.top {
    border-color: rgba(255, 95, 55, 0.3);
}

.adr-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: #6060A0;
    letter-spacing: 0.14em;
}

.adr-card.top .adr-num {
    color: #FF5F37;
}

.adr-title {
    font-family: 'Barlow', sans-serif;
    font-size: 11.5px;
    color: #C8C8E8;
    margin-top: 4px;
    line-height: 1.35;
}

.adr-card.top .adr-title {
    color: #FFFFFF;
    font-weight: 600;
}

.adr-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.12em;
    margin-top: 7px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.adr-card.accepted .adr-status {
    color: #3DCC52;
}

.adr-card.proposed .adr-status {
    color: #F5C242;
}

.adr-card.superseded.adr-status {
    color: #2E2E40;
}

.adr-card.top .adr-status {
    color: #FF5F37;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 5px #FF5F37); }
    50% { opacity: 0.6; filter: drop-shadow(0 0 2px #FF5F37); }
}

.adr-card.superseded .adr-status {
    color: #303045;
}

.stream-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #080810);
    z-index: 3;
}

.stream-bottom {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 4;
}

.stream-big {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 58px;
    color: #FF5F37;
    letter-spacing: -0.02em;
    line-height: 1;
    opacity: 0.15;
}

.stream-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8.5px;
    color: #505078;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* corner brackets */
.br-tl {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 22px;
    height: 22px;
    border-top: 1px solid #FF5F3730;
    border-left: 1px solid #FF5F3730;
    z-index: 6;
}

.br-tr {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 22px;
    height: 22px;
    border-top: 1px solid #FF5F3730;
    border-right: 1px solid #FF5F3730;
    z-index: 6;
}

.br-bl {
    position: absolute;
    bottom: 22px;
    left: 22px;
    width: 22px;
    height: 22px;
    border-bottom: 1px solid #FF5F3730;
    border-left: 1px solid #FF5F3730;
    z-index: 6;
}

.br-br {
    position: absolute;
    bottom: 22px;
    right: 22px;
    width: 22px;
    height: 22px;
    border-bottom: 1px solid #FF5F3730;
    border-right: 1px solid #FF5F3730;
    z-index: 6;
}

/* live badge */
.live-badge {
    position: absolute;
    top: 28px;
    right: 290px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: #FF5F37;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 95, 55, 0.10);
    border: 1px solid rgba(255, 95, 55, 0.45);
    padding: 5px 14px;
    box-shadow: 0 0 20px rgba(255, 95, 55, 0.15);
}

.live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FF5F37;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ─── DEMO LINKS SECTION ─── */
.demo-links-section {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
    max-width: 440px;
}

.demo-header {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #505078;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #1C1C28;
}

.demo-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.demo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #0D0D14;
    border: 1px solid #1C1C28;
    text-decoration: none;
    transition: all 0.2s ease;
}

.demo-item:hover {
    border-color: rgba(255, 95, 55, 0.6);
    background: rgba(255, 95, 55, 0.12);
    transform: translateX(4px);
    box-shadow: 0 0 15px rgba(255, 95, 55, 0.1);
    animation: jitter 0.2s linear infinite;
}

@keyframes jitter {
    0% { transform: translateX(4px) translateY(0); }
    25% { transform: translateX(5px) translateY(1px); }
    50% { transform: translateX(3px) translateY(-1px); }
    75% { transform: translateX(4px) translateY(1px); }
    100% { transform: translateX(4px) translateY(0); }
}

.demo-details {
    display: flex;
    flex-direction: column;
}

.demo-title {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: #A0A0C8;
    font-weight: 500;
}

.demo-context {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #505078;
    margin-top: 2px;
}

.demo-item:hover .demo-title {
    color: #FFFFFF;
}

.demo-item:hover .demo-context {
    color: #FF5F3780;
}

.demo-item.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.demo-item.disabled:hover {
    transform: none;
    border-color: #1C1C28;
    background: #0D0D14;
}

/* ─── RESPONSIVE — MOBILE FIRST ─── */

/* ── Large desktop: slim columns slightly ── */
@media (max-width: 1600px) {
    .left {
        width: 400px;
        padding: 40px 0 40px 48px;
    }
    .right {
        width: 220px;
        padding: 40px 20px 0 20px;
    }
    .middle {
        padding: 40px 40px 40px 48px;
    }
    .headline {
        font-size: 84px;
    }
    .stat-num {
        font-size: 72px;
    }
    .demo-links-section {
        max-width: 340px;
    }
    .proof-pill {
        max-width: 360px;
    }
}

/* ── Medium desktop: drop right panel, two-col ── */
@media (max-width: 1280px) {
    .right {
        width: 200px;
        padding: 32px 16px 0 16px;
    }
    .left {
        width: 360px;
        padding: 36px 0 36px 40px;
    }
    .headline {
        font-size: 72px;
    }
    .stat-num {
        font-size: 64px;
    }
}

/* ── Tablet: go single column, middle first ── */
@media (max-width: 1024px) {
    .canvas {
        flex-direction: column;
        overflow: visible;
    }

    .left, .middle, .right {
        width: 100%;
        flex-shrink: unset;
        border: none;
        padding: 40px 36px;
    }

    .middle {
        order: -1;
        padding: 48px 36px 40px;
        border-bottom: 1px solid #1C1C22;
        justify-content: flex-start;
    }

    .left {
        border-bottom: 1px solid #1C1C22;
        background: rgba(8, 8, 14, 0.6);
    }

    .right {
        padding-bottom: 60px;
        background: rgba(6, 6, 12, 0.6);
        min-height: unset;
    }

    .headline {
        font-size: 76px;
    }

    .masterclass-tagline {
        font-size: 18px;
    }

    .stat-num {
        font-size: 70px;
    }

    .live-badge {
        top: 18px;
        right: 18px;
    }

    .proof-pill {
        max-width: 100%;
    }

    .demo-links-section {
        max-width: 100%;
    }

    .why-block {
        max-width: 100%;
    }

    /* flatten stream on tablet — no absolute bottom element */
    .stream-bottom {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        text-align: left;
        margin-top: 16px;
        padding: 0 4px;
    }

    .stream-fade {
        height: 80px;
        position: relative;
        bottom: auto;
        margin-top: -80px;
    }

    /* safe-area support for notched phones */
    .canvas {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ── Mobile landscape / large phone ── */
@media (max-width: 768px) {
    .left, .middle, .right {
        padding: 28px 24px;
    }

    .middle {
        padding: 40px 24px 32px;
        text-align: center;
    }

    .masterclass-eyebrow {
        justify-content: center;
    }

    .headline {
        font-size: 58px;
        line-height: 0.9;
        text-align: center;
    }

    .masterclass-tagline {
        font-size: 16px;
        text-align: center;
    }

    .headline-sub {
        font-size: 13px;
        text-align: center;
        max-width: 100%;
    }

    .audience-row {
        justify-content: center;
    }

    .why-block {
        font-size: 12.5px;
        text-align: left;
    }

    .five-w-block {
        text-align: left;
    }

    .section-label-row {
        text-align: center;
    }

    .features {
        gap: 10px;
    }

    .feature-row {
        justify-content: flex-start;
    }

    .feature-text {
        font-size: 13px;
        text-align: left;
    }

    .stat-num {
        font-size: 60px;
    }

    .stat-item {
        padding: 14px 0;
        text-align: center;
    }

    .stat-label {
        text-align: center;
    }

    .live-badge {
        top: 14px;
        right: 14px;
        font-size: 7.5px;
        padding: 4px 10px;
        letter-spacing: 0.15em;
        gap: 6px;
    }

    /* pricing: stack vertically, full width */
    .pricing-row {
        flex-direction: column;
        gap: 8px;
    }

    .price-tag {
        width: 100%;
        padding: 14px 18px;
        align-items: center;
        text-align: center;
    }

    .price-amount {
        font-size: 28px;
    }

    .workshop-date-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 10px 14px;
    }

    /* speaker block: stack avatar above */
    .speaker-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }

    .speaker-name {
        text-align: center;
    }

    .speaker-creds,
    .speaker-bio-line {
        text-align: center;
    }

    /* cred badges centered */
    .cred-badges {
        justify-content: center;
        gap: 5px;
        margin-top: 14px;
    }

    /* tools grid: 2 per row */
    .tools-grid {
        gap: 6px;
        justify-content: center;
    }

    .tool-chip {
        flex: 1 1 calc(50% - 6px);
        text-align: center;
    }

    .tools-meta {
        text-align: center;
    }

    .wisdom-strip {
        text-align: center;
        justify-content: center;
    }

    .demo-links-section {
        max-width: 100%;
    }

    .demo-item {
        padding: 9px 12px;
    }

    .proof-pill {
        max-width: 100%;
        padding: 14px 16px;
    }

    .stream-big {
        font-size: 44px;
    }

    /* flatten stream on tablet — no absolute bottom element */
    .right {
        min-height: unset;
    }

    .stream-bottom {
        position: static;
        margin-top: 16px;
        text-align: center;
    }
}

/* ── Small mobile (iPhone SE, 375px) ── */
@media (max-width: 480px) {
    .middle {
        padding: 32px 20px 28px;
    }

    .headline {
        font-size: 44px;
    }

    .masterclass-tagline {
        font-size: 13px;
    }

    .stat-num {
        font-size: 52px;
    }

    .audience-row {
        gap: 5px;
        justify-content: center;
    }

    .price-amount {
        font-size: 24px;
    }

    /* live badge: hide verbose text, keep dot + LIVE */
    .live-badge-text-system {
        display: none;
    }

    .br-tl, .br-tr, .br-bl, .br-br {
        width: 14px;
        height: 14px;
        top: 12px;
        left: 12px;
    }

    .br-tr {
        left: auto;
        right: 12px;
    }

    .br-bl {
        top: auto;
        bottom: 12px;
    }

    .br-br {
        top: auto;
        bottom: 12px;
        left: auto;
        right: 12px;
    }

    .cred-badge {
        font-size: 7.5px;
        padding: 3px 8px;
    }

    .tool-chip {
        font-size: 9px;
        padding: 5px 10px;
    }

    .adr-stream {
        gap: 6px;
    }
}

/* ════════════════════════════════════════════
   ANIMATIONS — ADR-0005
   ════════════════════════════════════════════ */

/* ── Boot overlay ── */
.boot-overlay {
    position: fixed;
    inset: 0;
    background: #050510;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease;
}
.boot-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}
.boot-terminal {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #FF5F37;
    letter-spacing: 0.1em;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 340px;
    max-width: 90vw;
}
.boot-line {
    min-height: 16px;
    opacity: 0.9;
}
.boot-line.dim { color: #505070; }
.boot-line.bright { color: #fff; }
.boot-cursor {
    color: #FF5F37;
    animation: blink 0.6s step-end infinite;
    margin-top: 4px;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ── Headline word-by-word reveal ── */
.hl-line {
    display: block;
    overflow: hidden;
    line-height: 0.92;
}
.hl-line-inner {
    display: block;
    transform: translateY(110%);
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.hl-line-inner.in {
    transform: translateY(0);
}

/* ── Glitch effect on headline ── */
@keyframes glitch-container {
    0%   { transform: translate(0); filter: none; }
    15%  { transform: translate(-4px, 1px) skewX(-1deg); filter: hue-rotate(80deg) brightness(1.4); }
    30%  { transform: translate(4px, -2px) skewX(1deg); filter: hue-rotate(-60deg) contrast(1.3); }
    45%  { transform: translate(-3px, 2px); filter: brightness(0.7) saturate(2); }
    60%  { transform: translate(3px, -1px) skewX(-0.5deg); filter: hue-rotate(30deg); }
    75%  { transform: translate(-1px, 1px); filter: none; }
    100% { transform: translate(0); filter: none; }
}
.headline.glitching {
    animation: glitch-container 0.35s steps(1);
}

/* ── ADR new card slide-in ── */
@keyframes adr-slide-in {
    from {
        opacity: 0;
        transform: translateX(-16px);
        border-left-width: 3px;
        border-left-color: #FF5F37;
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.adr-card.new-entry {
    animation: adr-slide-in 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── Hot seat breathing glow ── */
@keyframes hot-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 95, 55, 0);
        border-color: rgba(255, 95, 55, 0.35);
    }
    50% {
        box-shadow: 0 0 20px 4px rgba(255, 95, 55, 0.18), inset 0 0 12px rgba(255, 95, 55, 0.05);
        border-color: rgba(255, 95, 55, 0.85);
    }
}
.price-tag.hot {
    animation: hot-pulse 2.4s ease-in-out infinite;
}

/* ── Section entrance ── */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.anim-ready {
    opacity: 0;
}
.anim-ready.anim-in {
    animation: fade-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


/* ── Stream big number entrance ── */
@keyframes big-num-in {
    from { opacity: 0; transform: scale(0.85); filter: blur(6px); }
    to   { opacity: 1; transform: scale(1);    filter: blur(0); }
}
.stream-big {
    animation: big-num-in 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.4s;
}

/* ── Corner brackets draw in ── */
@keyframes br-draw {
    from { width: 0; height: 0; opacity: 0; }
    to   { opacity: 1; }
}
.br-tl { animation: br-draw 0.5s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
.br-tr { animation: br-draw 0.5s cubic-bezier(0.16,1,0.3,1) 0.2s both; }
.br-bl { animation: br-draw 0.5s cubic-bezier(0.16,1,0.3,1) 0.3s both; }
.br-br { animation: br-draw 0.5s cubic-bezier(0.16,1,0.3,1) 0.4s both; }

/* ── ADR latest status blink ── */
@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.25; }
}
.adr-card.top .adr-status {
    animation: status-blink 2s ease-in-out infinite;
}

/* ── Neon line shimmer ── */
@keyframes line-shimmer {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1; }
}
.neon-line        { animation: line-shimmer 3s ease-in-out infinite; }
.neon-line-bottom { animation: line-shimmer 3s ease-in-out 1.5s infinite; }

/* ── Proof pill pulse ── */
@keyframes pill-pulse {
    0%, 100% { border-color: rgba(255, 95, 55, 0.2); }
    50%       { border-color: rgba(255, 95, 55, 0.55); }
}
.proof-pill { animation: pill-pulse 3s ease-in-out infinite; }

/* ── mc-dot enhanced (override existing) ── */
@keyframes dot-ping {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 95, 55, 0.5);
    }
    50% {
        transform: scale(1.4);
        box-shadow: 0 0 0 5px rgba(255, 95, 55, 0);
    }
}
.mc-dot { animation: dot-ping 1.5s ease-in-out infinite !important; }

/* ── Feature row hover slide ── */
.feature-row {
    transition: transform 0.2s ease, background 0.2s ease;
    border-radius: 2px;
}
.feature-row:hover {
    transform: translateX(5px);
    background: rgba(255, 95, 55, 0.04);
}

/* ── Demo item hover enhance ── */
.demo-item:not(.disabled) {
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.demo-item:not(.disabled):hover {
    transform: translateX(7px);
    border-color: rgba(255, 95, 55, 0.4) !important;
    background: rgba(255, 95, 55, 0.05);
}

/* ── Price tag hover colour pop ── */
.price-tag:hover .price-amount {
    color: #FF5F37;
    transition: color 0.2s ease;
}

/* ── Scanline faster ── */
.scanline { animation: scanline 5s linear infinite !important; }

/* ════════════════════════════════════════════
   SURPRISE LAYER — 5 EXTRAS
   ════════════════════════════════════════════ */

/* 1. Custom cursor */
*, *::before, *::after { cursor: none !important; }

.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 6px;
    height: 6px;
    background: #FF5F37;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
    mix-blend-mode: screen;
}

.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 95, 55, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    will-change: transform;
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.clicking {
    width: 14px;
    height: 14px;
    border-color: #FF5F37;
}

/* Click ripple */
.cursor-ripple {
    position: fixed;
    top: 0; left: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 95, 55, 0.6);
    pointer-events: none;
    z-index: 99997;
    opacity: 0;
}
.cursor-ripple.pop {
    animation: ripple-pop 0.5s ease-out forwards;
}
@keyframes ripple-pop {
    0%   { width: 0; height: 0; opacity: 0.8; }
    100% { width: 80px; height: 80px; opacity: 0; }
}

/* 2. Uptime strip */
.uptime-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 22px;
    background: rgba(5, 5, 16, 0.95);
    border-bottom: 1px solid #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 8.5px;
    color: #505070;
    letter-spacing: 0.1em;
    z-index: 9000;
    padding: 0 20px;
}
.uptime-dot {
    width: 5px;
    height: 5px;
    background: #22cc55;
    border-radius: 50%;
    animation: uptime-blink 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes uptime-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px #22cc55; }
    50%       { opacity: 0.4; box-shadow: none; }
}
.uptime-label { color: #22cc55; letter-spacing: 0.14em; }
.uptime-sep   { color: #282840; }

/* Push canvas down to make room for uptime strip */
body { padding-top: 22px; box-sizing: border-box; }

/* 3. Marquee ticker */
.marquee-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 24px;
    background: rgba(5, 5, 16, 0.95);
    border-top: 1px solid #1a1a2e;
    overflow: hidden;
    z-index: 9000;
}
.marquee-track {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-scroll 40s linear infinite;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.marquee-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    color: #303050;
    letter-spacing: 0.1em;
    padding: 0 28px;
    flex-shrink: 0;
}
.marquee-item .m-num  { color: #FF5F37; opacity: 0.6; }
.marquee-item .m-sep  { color: #222238; margin: 0 8px; }

/* Push canvas up to make room for marquee */
.canvas { padding-bottom: 24px; }

/* 4. Parallax — handled via JS transform on .canvas */

/* 5. Tab title — pure JS, no CSS needed */

/* ── Spark particles ── */
.spark {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    animation: spark-fly 0.55s ease-out forwards;
}
@keyframes spark-fly {
    0%   { transform: translate(0,0) scale(1); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* ── Konami overlay ── */
.konami-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 16, 0.97);
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.konami-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.konami-box {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #FF5F37;
    letter-spacing: 0.08em;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 480px;
    width: 90vw;
}
.konami-line { min-height: 18px; line-height: 1.6; }
.konami-line.dim    { color: #505070; }
.konami-line.bright { color: #ffffff; font-size: 15px; }
.konami-dismiss {
    font-size: 8px;
    color: #303050;
    letter-spacing: 0.2em;
    margin-top: 20px;
    animation: blink 1s step-end infinite;
}

/* ── ADR card 3D tilt transition ── */
.adr-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.adr-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: #050510; }
::-webkit-scrollbar-thumb { background: #222238; border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: #FF5F37; }

@media (max-width: 768px) {
    .uptime-strip { display: none; }
    .marquee-strip { display: none; }
    body { padding-top: 0; }
    *, *::before, *::after { cursor: auto !important; }
}

/* ════════════════════════════════════════════
   10 MORE LAYER
   ════════════════════════════════════════════ */

/* 1. Matrix rain canvas */
.matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh; /* cap to viewport — was 100% (full 2100px column) */
    pointer-events: none;
    z-index: 0;
    opacity: 0.75;
    display: block;
}

/* Lift all left-column content above the canvas */
.left > :not(.matrix-canvas) {
    position: relative;
    z-index: 1;
}

/* 2. Cursor ghost trail */
.trail-dot {
    position: fixed;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FF5F37;
    pointer-events: none;
    z-index: 99996;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    transition: opacity 0.05s linear;
}

/* 3. Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 22px;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #FF5F37, #ff9f37);
    z-index: 9001;
    transition: width 0.08s linear;
    box-shadow: 0 0 6px rgba(255, 95, 55, 0.6);
}

/* 4. Live decisions — inline in uptime strip, styled via JS */
#liveDecisions {
    color: #22cc55;
    font-size: 8px;
    letter-spacing: 0.12em;
    animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* 5. Mouse spotlight */
.mouse-spotlight {
    position: fixed;
    top: 0; left: 0;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 95, 55, 0.055) 0%, transparent 68%);
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

/* 6. Rage click overlay */
.rage-overlay {
    position: fixed;
    inset: 0;
    background: rgba(200, 10, 10, 0.12);
    z-index: 99985;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}
.rage-overlay.active {
    opacity: 1;
}
.rage-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #ff3333;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: glitch 0.15s infinite;
}
.rage-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    color: rgba(255, 51, 51, 0.5);
    letter-spacing: 0.2em;
}
@keyframes page-shake {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20%       { transform: translate(-3px, 2px) rotate(-0.5deg); }
    40%       { transform: translate(3px, -2px) rotate(0.5deg); }
    60%       { transform: translate(-2px, 3px) rotate(-0.3deg); }
    80%       { transform: translate(2px, -1px) rotate(0.3deg); }
}
.page-shake {
    animation: page-shake 0.35s ease !important;
}

/* ── CTA Block ── */
.cta-block {
    position: relative;
    margin-top: 32px;
    padding: 24px 24px 20px;
    border: 1px solid rgba(255, 95, 55, 0.25);
    background: rgba(255, 95, 55, 0.03);
    box-shadow: 0 0 40px rgba(255, 95, 55, 0.06), inset 0 0 30px rgba(255, 95, 55, 0.03);
    animation: cta-pulse 3s ease-in-out infinite;
}
@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 95, 55, 0.06), inset 0 0 30px rgba(255, 95, 55, 0.03); border-color: rgba(255, 95, 55, 0.25); }
    50%       { box-shadow: 0 0 60px rgba(255, 95, 55, 0.14), inset 0 0 40px rgba(255, 95, 55, 0.07); border-color: rgba(255, 95, 55, 0.55); }
}
.cta-header {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: #FF5F37;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.cta-subheader {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #505070;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
}
.price-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 7px;
    letter-spacing: 0.3em;
    color: #505070;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hot-badge {
    color: #FF5F37;
}
.spots-left {
    background: rgba(255, 95, 55, 0.15);
    color: #FF5F37;
    padding: 0 5px;
    border: 1px solid rgba(255, 95, 55, 0.35);
    font-size: 6px;
    letter-spacing: 0.2em;
    animation: blink 1.4s step-end infinite;
}
.price-cta-btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.25em;
    color: #505070;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #1a1a2e;
    transition: color 0.2s ease;
}
.hot-btn {
    color: #FF5F37;
}
.price-tag:hover .price-cta-btn { color: #ffffff; }
.price-tag.hot:hover .price-cta-btn { color: #ffffff; }
.cta-trust {
    font-family: 'JetBrains Mono', monospace;
    font-size: 7.5px;
    color: #2a2a44;
    letter-spacing: 0.18em;
    margin-top: 14px;
    text-align: center;
}

/* ── Scroll indicator ── */
.scroll-indicator {
    position: fixed;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 8999;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.scroll-indicator.hidden {
    opacity: 0;
}
.scroll-matrix-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.smi-char {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: rgba(255, 95, 55, 0.4);
    line-height: 1.3;
    display: block;
    transition: none;
}
.scroll-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 7px;
    letter-spacing: 0.4em;
    color: rgba(255, 95, 55, 0.3);
    animation: blink 2s step-end infinite;
}

/* 7. Copy easter egg — no CSS needed (clipboard only) */

/* 8. Idle screensaver */
body.idle-mode .middle {
    filter: brightness(0.15) blur(2px);
    transition: filter 0.8s ease;
}
body.idle-mode::after {
    content: 'SYSTEM IDLE · MOVE TO RESUME';
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.35em;
    color: rgba(255, 95, 55, 0.3);
    z-index: 99980;
    pointer-events: none;
    animation: blink 2s step-end infinite;
}
@media (max-width: 768px) {
    body.idle-mode .middle { filter: none; }
    body.idle-mode::after { display: none; }
}

/* 9. Command reference modal (? key) */
.cmd-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 16, 0.88);
    backdrop-filter: blur(6px);
    z-index: 99988;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.cmd-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.cmd-box {
    font-family: 'JetBrains Mono', monospace;
    border: 1px solid #222238;
    background: rgba(5, 5, 16, 0.96);
    padding: 28px 32px;
    max-width: 420px;
    width: 88vw;
    box-shadow: 0 0 40px rgba(255, 95, 55, 0.08);
}
.cmd-title {
    font-size: 8.5px;
    color: #FF5F37;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.cmd-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 20px;
    align-items: baseline;
}
.cmd-key {
    font-size: 9px;
    color: #ffffff;
    background: #1a1a2e;
    border: 1px solid #222238;
    padding: 2px 8px;
    letter-spacing: 0.1em;
    text-align: center;
    white-space: nowrap;
}
.cmd-desc {
    font-size: 8.5px;
    color: #505070;
    letter-spacing: 0.08em;
    line-height: 1.6;
}
.cmd-dismiss {
    font-size: 7.5px;
    color: #303050;
    letter-spacing: 0.2em;
    margin-top: 22px;
    animation: blink 1s step-end infinite;
}

/* 10. Sound toggle button */
.sound-toggle {
    background: none;
    border: 1px solid #222238;
    color: #303050;
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    padding: 1px 6px;
    cursor: none;
    letter-spacing: 0.1em;
    transition: color 0.2s ease, border-color 0.2s ease;
    line-height: 1.4;
}
.sound-toggle:hover,
.sound-toggle.active {
    color: #FF5F37;
    border-color: #FF5F37;
}
@media (max-width: 768px) {
    .sound-toggle { cursor: auto; }
    .scroll-progress { top: 0; }
    .matrix-canvas { display: none; }
    .mouse-spotlight { display: none; }
    .trail-dot { display: none; }
    .cmd-overlay { display: none; }
    .scroll-indicator { display: none; }
    .cta-block { padding: 16px; }
}
