/* ═══════════════════════════════════════════
 DESIGN SYSTEM — konraddalla.me
 ═══════════════════════════════════════════ */
:root {
 
 --bg: #08080c;
 --bg-surface: #0e0e14;
 --text: #e6e4e0;
 --text-muted: #8a8880;
 --text-dim: #4a4840;
 --accent-violet: #7c3aed;
 --accent-cyan: #06b6d4;
 --border: rgba(255, 255, 255, 0.06);
 
 --font-display: 'Syne', sans-serif;
 --font-body: 'Inter', sans-serif;
 --font-mono: 'Space Mono', monospace;
 
 --space-xs: 0.5rem;
 --space-sm: 1rem;
 --space-md: 2rem;
 --space-lg: 4rem;
 --space-xl: 8rem;
 --space-2xl: 12rem;
 
 --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
 --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
 --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
 --duration-fast: 0.3s;
 --duration-med: 0.6s;
 --duration-slow: 1.2s;
 
 --content-max: 900px;
 --content-padding: clamp(1.5rem, 5vw, 4rem);
 
}
/* ═══════════════════════════════════════════
 RESET & BASE
 ═══════════════════════════════════════════ */
*, *::before, *::after {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
html {
 font-size: 16px;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 scroll-behavior: auto;
 overscroll-behavior: none;
}
body {
 background: var(--bg);
 color: var(--text);
 font-family: var(--font-body);
 font-weight: 300;
 line-height: 1.7;
 overflow-x: clip;
 max-width: 100vw;
 scrollbar-width: none; 
 -ms-overflow-style: none; 
}
html {
 overflow-x: clip;
 scrollbar-width: none; 
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
 display: none; 
 width: 0;
 height: 0;
}
a {
 color: inherit;
 text-decoration: none;
}
::selection {
 background: var(--accent-violet);
 color: white;
}
/* ═══════════════════════════════════════════
 SMOKE CANVAS
 ═══════════════════════════════════════════ */
#smoke-canvas {
 position: absolute;
 top: 0;
 right: 0;
 width: clamp(200px, 35vw, 500px);
 z-index: 2;
 pointer-events: none;
 touch-action: auto;
 
 -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
 mask-image: linear-gradient(to right, transparent 0%, black 40%);
 contain: strict;
}
#wireframe-canvas {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 1;
 pointer-events: none;
 touch-action: auto;
 contain: strict;
}
/* ═══════════════════════════════════════════
 NOISE OVERLAY
 ═══════════════════════════════════════════ */
.noise-overlay {
 position: fixed;
 inset: 0;
 z-index: 100;
 pointer-events: none;
 touch-action: auto;
 opacity: 0.035;
 background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
 background-repeat: repeat;
 background-size: 256px 256px;
 contain: strict;
}
/* ═══════════════════════════════════════════
 NAVIGATION
 ═══════════════════════════════════════════ */
.nav {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 60;
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: var(--space-md) var(--content-padding);
 mix-blend-mode: difference;
}
.nav__logo {
 font-family: var(--font-display);
 font-weight: 800;
 font-size: 1.25rem;
 letter-spacing: -0.02em;
 transition: opacity var(--duration-fast) var(--ease-out);
}
.nav__logo:hover {
 opacity: 0.6;
}
.nav__epoch {
 font-family: var(--font-mono);
 font-size: 0.7rem;
 letter-spacing: 0.15em;
 text-transform: uppercase;
 opacity: 0.5;
 transition: opacity var(--duration-med) var(--ease-out);
}
/* ═══════════════════════════════════════════
 CURSOR TELEMETRY
 ═══════════════════════════════════════════ */
.cursor-tel {
 position: fixed;
 top: 0;
 left: 0;
 pointer-events: none;
 z-index: 9990;
 font-family: var(--font-mono);
 font-size: 9px !important;
 letter-spacing: 0.08em;
 color: var(--text-dim);
 opacity: 0;
 transition: opacity 0.8s ease;
 white-space: nowrap;
}
@media (max-width: 768px) {
 .cursor-tel { display: none; }
}
/* ═══════════════════════════════════════════
 SCROLL PROGRESS
 ═══════════════════════════════════════════ */
.scroll-progress {
 position: fixed;
 left: 0;
 bottom: 0;
 width: 3px;
 height: 100vh;
 z-index: 50;
 background: var(--border);
 contain: layout style;
}
.scroll-progress__fill {
 width: 100%;
 height: 0%;
 background: linear-gradient(to bottom, var(--accent-violet), var(--accent-cyan));
 transition: height 0.1s linear;
 border-radius: 0 0 2px 2px;
}
/* ═══════════════════════════════════════════
 MAIN & SECTIONS
 ═══════════════════════════════════════════ */
.main {
 position: relative;
 z-index: 1;
 overflow-x: clip;
 overflow-y: clip;
}
.section {
 position: relative;
 min-height: 100vh;
 display: flex;
 align-items: center;
 padding: var(--space-xl) 0;
}
.section__content {
 width: 100%;
 max-width: var(--content-max);
 margin: 0 auto;
 padding: 0 var(--content-padding);
}
.section__content--centered {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 text-align: center;
}
/* ═══════════════════════════════════════════
 TYPOGRAPHY
 ═══════════════════════════════════════════ */
.heading-1 {
 font-family: var(--font-display);
 font-weight: 800;
 font-size: clamp(3rem, 10vw, 8rem);
 line-height: 0.95;
 letter-spacing: -0.03em;
}
.heading-2 {
 font-family: var(--font-display);
 font-weight: 700;
 font-size: clamp(2rem, 5vw, 3.5rem);
 line-height: 1.1;
 letter-spacing: -0.02em;
 margin-bottom: var(--space-lg);
}
.body-text {
 font-size: clamp(1rem, 1.2vw, 1.15rem);
 color: var(--text-muted);
 max-width: 540px;
 margin-bottom: var(--space-md);
}
.body-text--wide {
 max-width: 640px;
}
.label {
 font-family: var(--font-mono);
 font-size: 0.75rem;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--text-muted);
}
.word {
 display: inline-block;
 overflow: clip;
 vertical-align: top;
 padding-bottom: 0.08em;
}
.word .char {
 display: inline-block;
 transform: translateY(110%);
}
.hero__hidden-name {
 display: flex;
 justify-content: space-between;
 font-family: var(--font-display);
 font-weight: 800;
 font-size: clamp(0.6rem, 1.5vw, 1rem);
 text-transform: uppercase;
 color: var(--text-dim);
 opacity: 0.4;
 line-height: 1;
 margin: 0.05em 0 -0.05em;
}
.hero__name-break {
 display: none;
}
/* ═══════════════════════════════════════════
 HERO
 ═══════════════════════════════════════════ */
.section--hero {
 min-height: 100vh;
 align-items: flex-end;
 padding-bottom: var(--space-2xl);
}
.hero__greeting {
 display: flex;
 align-items: center;
 gap: var(--space-sm);
 margin-bottom: var(--space-md);
}
.hero__line {
 display: block;
 width: 48px;
 height: 1px;
 background: var(--text-muted);
}
.hero__name {
 font-family: var(--font-display);
 font-weight: 800;
 font-size: clamp(3rem, 10vw, 8rem);
 line-height: 0.92;
 letter-spacing: -0.04em;
 margin-bottom: var(--space-md);
 width: fit-content;
}
.hero__tagline {
 font-size: clamp(1.1rem, 1.5vw, 1.3rem);
 color: var(--text-muted);
 line-height: 1.6;
}
.hero__scroll-hint {
 display: flex;
 align-items: center;
 gap: var(--space-sm);
 margin-top: var(--space-xl);
 font-family: var(--font-mono);
 font-size: 0.7rem;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: var(--text-dim);
}
.hero__scroll-hint svg {
 animation: float 2s var(--ease-in-out) infinite;
}
@keyframes float {
 0%, 100% { transform: translateY(0); }
 50% { transform: translateY(6px); }
}
/* ═══════════════════════════════════════════
 EPOCH MARKER
 ═══════════════════════════════════════════ */
.epoch-marker {
 display: flex;
 align-items: center;
 gap: var(--space-md);
 margin-bottom: var(--space-lg);
 padding-bottom: var(--space-sm);
 border-bottom: 1px solid var(--border);
}
.epoch-marker__label {
 font-family: var(--font-mono);
 font-size: 0.7rem;
 letter-spacing: 0.15em;
 text-transform: uppercase;
 color: var(--text-muted);
}
.epoch-marker__year {
 font-family: var(--font-mono);
 font-size: 0.7rem;
 letter-spacing: 0.1em;
 color: var(--text-dim);
 margin-left: auto;
}
/* ═══════════════════════════════════════════
 ABOUT GRID
 ═══════════════════════════════════════════ */
.about-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: var(--space-xl);
}
.about-grid__stats {
 display: flex;
 gap: var(--space-lg);
}
.stat {
 display: flex;
 flex-direction: column;
 gap: var(--space-xs);
}
.stat__number {
 font-family: var(--font-display);
 font-weight: 800;
 font-size: clamp(2.5rem, 5vw, 4rem);
 line-height: 1;
 letter-spacing: -0.02em;
}
.stat__label {
 font-family: var(--font-mono);
 font-size: 0.65rem;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--text-dim);
}
/* ═══════════════════════════════════════════
 DISCIPLINES
 ═══════════════════════════════════════════ */
.disciplines {
 display: flex;
 flex-direction: column;
 gap: 0;
}
.discipline {
 position: relative;
 padding: var(--space-lg) 0;
 cursor: default;
 transition: opacity var(--duration-fast) var(--ease-out);
}
.disciplines:hover .discipline {
 opacity: 0.3;
}
.disciplines:hover .discipline:hover {
 opacity: 1;
}
.discipline__number {
 font-family: var(--font-mono);
 font-size: 0.65rem;
 letter-spacing: 0.15em;
 color: var(--text-dim);
 display: block;
 margin-bottom: var(--space-sm);
}
.discipline__title {
 font-family: var(--font-display);
 font-weight: 700;
 font-size: clamp(1.5rem, 3vw, 2.2rem);
 letter-spacing: -0.01em;
 margin-bottom: var(--space-sm);
 transition: transform var(--duration-med) var(--ease-out);
}
.discipline:hover .discipline__title {
 transform: translateX(16px);
}
.discipline__desc {
 font-size: 0.95rem;
 color: var(--text-muted);
 max-width: 480px;
 transition: transform var(--duration-med) var(--ease-out);
}
.discipline:hover .discipline__desc {
 transform: translateX(16px);
}
.discipline__line {
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 height: 1px;
 background: var(--border);
}
.discipline__line::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 1px;
 background: var(--text-muted);
 transition: width var(--duration-slow) var(--ease-out);
}
.discipline:hover .discipline__line::after {
 width: 100%;
}
/* ═══════════════════════════════════════════
 STATEMENT / BREATHING SECTION
 ═══════════════════════════════════════════ */
.section--statement {
 min-height: 80vh;
}
.statement {
 font-family: var(--font-display);
 font-weight: 600;
 font-size: clamp(2rem, 6vw, 5rem);
 line-height: 1.15;
 letter-spacing: -0.02em;
 color: var(--text);
 text-align: center;
}
.statement--small {
 font-size: clamp(1.8rem, 4.5vw, 3.5rem);
 font-weight: 500;
 color: var(--text-muted);
}
/* ═══════════════════════════════════════════
 TIMELINE
 ═══════════════════════════════════════════ */
.section--timeline-header {
 min-height: 70vh;
}
.section--timeline {
 min-height: auto;
 padding: var(--space-lg) 0 var(--space-xl);
 align-items: flex-start;
}
.timeline {
 position: relative;
 padding-left: var(--space-lg);
}
.timeline::before {
 content: '';
 position: absolute;
 left: 6px;
 top: 0;
 bottom: 0;
 width: 1px;
 background: var(--border);
}
.timeline__item {
 position: relative;
 padding-bottom: var(--space-xl);
}
.timeline__item:last-child {
 padding-bottom: 0;
}
.timeline__dot {
 position: absolute;
 left: calc(-1 * var(--space-lg) + 2px);
 top: 6px;
 width: 9px;
 height: 9px;
 border-radius: 50%;
 background: var(--text-dim);
 border: 2px solid var(--bg);
 transition: background var(--duration-med) var(--ease-out),
 transform var(--duration-med) var(--ease-elastic);
}
.timeline__item:hover .timeline__dot {
 background: var(--accent-violet);
 transform: scale(1.5);
}
.timeline__year {
 font-family: var(--font-mono);
 font-size: 0.7rem;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--text-dim);
 margin-bottom: var(--space-xs);
}
.timeline__title {
 font-family: var(--font-display);
 font-weight: 600;
 font-size: clamp(1.2rem, 2.5vw, 1.6rem);
 letter-spacing: -0.01em;
 margin-bottom: var(--space-xs);
}
.timeline__desc {
 font-size: 0.95rem;
 color: var(--text-muted);
 max-width: 480px;
 line-height: 1.65;
}
/* ═══════════════════════════════════════════
 CHILDHOOD
 ═══════════════════════════════════════════ */
.childhood-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
 gap: var(--space-md);
 margin-top: var(--space-lg);
}
.childhood-card {
 background: rgba(255, 255, 255, 0.02);
 border: 1px solid var(--border);
 border-radius: 12px;
 padding: var(--space-lg) var(--space-md);
 transition: border-color var(--duration-med) var(--ease-out),
 background var(--duration-med) var(--ease-out),
 transform var(--duration-med) var(--ease-out);
}
.childhood-card:hover {
 border-color: rgba(255, 255, 255, 0.12);
 background: rgba(255, 255, 255, 0.04);
 transform: translateY(-4px);
}
.childhood-card__icon {
 display: block;
 font-size: 1.8rem;
 margin-bottom: var(--space-md);
 opacity: 0.6;
}
.childhood-card h3 {
 font-family: var(--font-display);
 font-weight: 600;
 font-size: 1.1rem;
 margin-bottom: var(--space-sm);
}
.childhood-card p {
 font-size: 0.9rem;
 color: var(--text-muted);
 line-height: 1.6;
}
/* ═══════════════════════════════════════════
 BIRTH
 ═══════════════════════════════════════════ */
.section--birth {
 min-height: 100vh;
 overflow: clip;
}
.birth-moment {
 position: relative;
 display: flex;
 flex-direction: column;
 align-items: center;
 z-index: 2;
}
.birth-moment__glow {
 position: absolute;
 width: 500px;
 height: 500px;
 border-radius: 50%;
 background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
 filter: blur(60px);
 z-index: -1;
 pointer-events: none;
 transition: transform 0.15s ease-out, opacity 0.3s ease;
}
@keyframes pulse-glow {
 0%, 100% { transform: scale(1); opacity: 0.6; }
 50% { transform: scale(1.2); opacity: 1; }
}
.birth-moment__text {
 --glow-x: 50%;
 --glow-y: 50%;
 background:
 radial-gradient(circle 600px at var(--glow-x) var(--glow-y), #ffffff 0%, #fbbf24 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}
/* ═══════════════════════════════════════════
 BEYOND
 ═══════════════════════════════════════════ */
.section--beyond {
 min-height: 60vh;
}
.beyond__text {
 font-family: var(--font-body);
 font-size: clamp(1rem, 1.5vw, 1.2rem);
 font-weight: 300;
 font-style: italic;
 color: var(--text-dim);
 line-height: 2;
 text-align: center;
}
.beyond__dots {
 display: flex;
 gap: 8px;
 margin-top: var(--space-lg);
}
.beyond__dots span {
 width: 4px;
 height: 4px;
 border-radius: 50%;
 background: var(--text-dim);
}
/* ═══════════════════════════════════════════
 FOOTER
 ═══════════════════════════════════════════ */
.footer {
 padding: var(--space-lg) 0;
 border-top: 1px solid var(--border);
}
.footer__inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
}
.footer__name {
 font-family: var(--font-display);
 font-weight: 600;
 font-size: 1rem;
}
.footer__copy {
 display: block;
 font-size: 0.75rem;
 color: var(--text-dim);
 margin-top: 2px;
}
.footer__right {
 display: flex;
 gap: var(--space-md);
}
.footer__link {
 font-family: var(--font-mono);
 font-size: 0.75rem;
 letter-spacing: 0.08em;
 color: var(--text-muted);
 position: relative;
 padding: var(--space-xs) 0;
 transition: color var(--duration-fast) var(--ease-out);
}
.footer__link::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 1px;
 background: var(--text);
 transition: width var(--duration-med) var(--ease-out);
}
.footer__link:hover {
 color: var(--text);
}
.footer__link:hover::after {
 width: 100%;
}
/* ═══════════════════════════════════════════
 MAGNETIC BUTTON
 ═══════════════════════════════════════════ */
.magnetic-btn {
 display: inline-block;
 transition: transform var(--duration-fast) var(--ease-elastic);
}
/* ═══════════════════════════════════════════
 RESPONSIVE
 ═══════════════════════════════════════════ */
@media (max-width: 768px) {
 :root {
 --content-padding: 1.5rem;
 }
 .hero__name {
 font-size: clamp(2.5rem, 11vw, 5rem);
 letter-spacing: -0.04em;
 }
 .hero__name .word {
 white-space: nowrap;
 }
 .about-grid__stats {
 flex-direction: column;
 align-items: center;
 text-align: center;
 gap: var(--space-md);
 }
 .childhood-grid {
 grid-template-columns: 1fr;
 }
 .footer__inner {
 flex-direction: column;
 gap: var(--space-md);
 text-align: center;
 }
 #smoke-canvas {
 width: 100%;
 opacity: 1;
 -webkit-mask-image: none;
 mask-image: none;
 }
 #wireframe-canvas {
 pointer-events: none;
 touch-action: none;
 }
}
@media (max-width: 480px) {
 .section {
 padding: var(--space-lg) 0;
 min-height: auto;
 }
 .section--hero,
 .section--birth {
 min-height: 100vh;
 }
}
/* ═══════════════════════════════════════════
 REDUCED MOTION
 ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
 *, *::before, *::after {
 animation-duration: 0.01ms !important;
 transition-duration: 0.01ms !important;
 }
 #smoke-canvas {
 display: none;
 }
}
/* ═══════════════════════════════════════════
 THEME TOGGLE BUTTON
 ═══════════════════════════════════════════ */
.theme-toggle {
 position: fixed;
 bottom: var(--space-md);
 right: var(--space-md);
 z-index: 60;
 width: 44px;
 height: 44px;
 border: 1px solid var(--border);
 border-radius: 50%;
 background: var(--bg-surface);
 color: var(--text-muted);
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.1rem;
 transition: background var(--duration-med) var(--ease-out),
 border-color var(--duration-med) var(--ease-out),
 color var(--duration-med) var(--ease-out),
 transform var(--duration-fast) var(--ease-elastic);
 backdrop-filter: blur(10px);
}
.theme-toggle:hover {
 border-color: var(--text-muted);
 transform: scale(1.1);
}
.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
 position: absolute;
 transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-toggle .icon-sun {
 opacity: 0;
 transform: rotate(-90deg) scale(0.5);
}
.theme-toggle .icon-moon {
 opacity: 1;
 transform: rotate(0deg) scale(1);
}
/* ═══════════════════════════════════════════
 LIGHT THEME
 ═══════════════════════════════════════════ */
body.theme-light {
 --bg: #faf8f5;
 --bg-surface: #ffffff;
 --text: #1a1a2e;
 --text-muted: #5a5a6e;
 --text-dim: #9a9aaa;
 --accent-violet: #7c3aed;
 --accent-cyan: #0891b2;
 --border: rgba(0, 0, 0, 0.08);
}
body.theme-light .noise-overlay {
 opacity: 0.02;
 mix-blend-mode: multiply;
}
body.theme-light ::selection {
 background: var(--accent-violet);
 color: white;
}
body.theme-light .childhood-card {
 background: rgba(0, 0, 0, 0.02);
}
body.theme-light .childhood-card:hover {
 background: rgba(0, 0, 0, 0.04);
 border-color: rgba(0, 0, 0, 0.15);
}
body.theme-light .timeline__dot {
 border-color: var(--bg);
}
body.theme-light .birth-moment__text {
 background:
 radial-gradient(circle 600px at var(--glow-x) var(--glow-y), #1a1a2e 0%, #d97706 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}
body.theme-light .birth-moment__glow {
 background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
}
body.theme-light .scroll-progress {
 background: rgba(0, 0, 0, 0.05);
}
body.theme-light .theme-toggle .icon-sun {
 opacity: 1;
 transform: rotate(0deg) scale(1);
}
body.theme-light .theme-toggle .icon-moon {
 opacity: 0;
 transform: rotate(90deg) scale(0.5);
}
/* ═══════════════════════════════════════════
 EASTER EGG STYLES
 ═══════════════════════════════════════════ */
.ee-toast {
 position: fixed;
 bottom: 80px;
 left: 50%;
 transform: translateX(-50%) translateY(20px);
 background: rgba(10, 10, 15, 0.92);
 color: #f0ede6;
 padding: 16px 28px;
 border-radius: 12px;
 font-family: var(--font-mono);
 font-size: 0.85rem;
 line-height: 1.5;
 text-align: center;
 z-index: 9999;
 opacity: 0;
 transition: opacity 0.4s, transform 0.4s;
 pointer-events: none;
 border: 1px solid rgba(124, 58, 237, 0.3);
 box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
 backdrop-filter: blur(10px);
}
body.theme-light .ee-toast {
 background: rgba(255, 255, 255, 0.95);
 color: #1a1a1a;
 border-color: rgba(124, 58, 237, 0.2);
 box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.ee-toast small {
 opacity: 0.5;
 display: block;
 margin-top: 4px;
}
.ee-toast--visible {
 opacity: 1;
 transform: translateX(-50%) translateY(0);
}
.ee-confetti {
 position: fixed;
 width: 6px;
 height: 6px;
 border-radius: 50%;
 z-index: 9998;
 pointer-events: none;
 animation: ee-confetti-pop 1s ease-out forwards;
}
@keyframes ee-confetti-pop {
 0% { transform: translate(0, 0) scale(1); opacity: 1; }
 100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}
.ee-matrix {
 position: fixed;
 top: 0;
 left: 0;
 width: 100vw;
 height: 100vh;
 z-index: 9997;
 pointer-events: none;
 opacity: 0.85;
}
.ee-wireframe * {
 outline: 1px solid rgba(124, 58, 237, 0.3) !important;
 background: transparent !important;
}
.ee-wireframe .ee-toast {
 outline: none !important;
 background: rgba(10, 10, 15, 0.92) !important;
}
.ee-rewind {
 animation: ee-rewind-anim 2.5s ease-in-out;
}
@keyframes ee-rewind-anim {
 0% { filter: none; }
 20% { filter: blur(3px) saturate(3) hue-rotate(-30deg); }
 50% { filter: blur(6px) saturate(0.3) hue-rotate(-90deg) brightness(1.5); }
 80% { filter: blur(2px) saturate(2) hue-rotate(-30deg); }
 100% { filter: none; }
}
.ee-secret-footer {
 text-align: center;
 padding: 60px var(--content-padding);
 font-family: var(--font-display);
 font-size: 1.1rem;
 color: var(--text-muted);
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 1.5s ease, transform 1.5s ease;
}
.ee-secret-footer--visible {
 opacity: 0.6;
 transform: translateY(0);
}
.ee-secret-footer span {
 display: inline-block;
}
.ee-hint { cursor: pointer; }
.ee-hint--bounce {
 transition: transform 0.3s ease;
}
.ee-hint--bounce:hover {
 animation: ee-bounce 0.5s ease;
}
@keyframes ee-bounce {
 0%, 100% { transform: translateY(0); }
 40% { transform: translateY(-4px); }
 60% { transform: translateY(-2px); }
}
.ee-hint--pulse {
 animation: ee-pulse 4s ease-in-out infinite;
}
@keyframes ee-pulse {
 0%, 85%, 100% { transform: scale(1); }
 90% { transform: scale(1.15); }
 95% { transform: scale(0.95); }
}
.ee-hint--shimmer {
 position: relative;
}
.ee-hint--shimmer::after {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 50%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
 animation: ee-shimmer 5s ease-in-out infinite;
}
@keyframes ee-shimmer {
 0%, 80%, 100% { left: -100%; }
 90% { left: 150%; }
}
.ee-hint--float {
 animation: ee-float 3s ease-in-out infinite;
}
@keyframes ee-float {
 0%, 100% { transform: translateY(0); }
 50% { transform: translateY(-6px); }
}
.ee-hint--glow {
 animation: ee-glow 3s ease-in-out infinite;
}
@keyframes ee-glow {
 0%, 100% { text-shadow: 0 0 0 transparent; color: inherit; }
 50% { color: #c4a0ff; text-shadow: 0 0 10px rgba(124, 58, 237, 1), 0 0 30px rgba(124, 58, 237, 0.9), 0 0 60px rgba(124, 58, 237, 0.5), 0 0 100px rgba(124, 58, 237, 0.3); }
}
.ee-hint--rainbow:hover {
 animation: ee-rainbow 1s linear infinite;
 border-color: transparent;
 box-shadow: 0 0 0 2px;
}
@keyframes ee-rainbow {
 0% { color: #ff0000; box-shadow: 0 0 8px #ff000044; }
 16% { color: #ff8800; box-shadow: 0 0 8px #ff880044; }
 33% { color: #ffff00; box-shadow: 0 0 8px #ffff0044; }
 50% { color: #00ff00; box-shadow: 0 0 8px #00ff0044; }
 66% { color: #0088ff; box-shadow: 0 0 8px #0088ff44; }
 83% { color: #8800ff; box-shadow: 0 0 8px #8800ff44; }
 100% { color: #ff0000; box-shadow: 0 0 8px #ff000044; }
}
.ee-cursor-hint {
 animation: ee-blink 1s step-end infinite;
 color: var(--accent, #7c3aed);
 font-family: var(--font-mono);
 margin-left: 4px;
}
@keyframes ee-blink {
 0%, 50% { opacity: 1; }
 51%, 100% { opacity: 0; }
}
.ee-footer-arrow {
 text-align: center;
 margin-top: 20px;
 opacity: 0.15;
 font-size: 1.5rem;
 animation: ee-float 2s ease-in-out infinite;
 letter-spacing: 4px;
}
