@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════
   EMBER GLASS — graf-its.de
   Dunkles Anthrazit · Feuer-Mesh (Rot/Orange/Amber) · Glassmorphism
   ═══════════════════════════════════════════════════════ */

:root {
  --bg:        #08070a;
  --bg-raise:  #120e0e;

  /* Glas-Flächen */
  --glass:        rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.13);
  --glass-border-hi: rgba(255, 255, 255, 0.28);

  --text:      #f3ece9;
  --muted:     #a89c96;
  --dim:       #5c534f;

  /* Feuer-Akzente */
  --red:       #ff5c5c;
  --orange:    #ff9f43;
  --amber:     #ffc857;

  --red-glow:    rgba(255, 92, 92, 0.35);
  --orange-glow: rgba(255, 159, 67, 0.30);

  --grad-fire: linear-gradient(120deg, var(--red), var(--orange) 55%, var(--amber));

  --mono:      'JetBrains Mono', monospace;
  --sans:      'Space Grotesk', sans-serif;

  --radius:    10px;
  --radius-lg: 16px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: rgba(255, 92, 92, 0.25); color: var(--text); }

/* ── EMBER-MESH HINTERGRUND ── */
.aurora-bg {
  position: fixed; inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.aurora-bg::before,
.aurora-bg::after {
  content: '';
  position: absolute;
  width: 60vmax; height: 60vmax;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  will-change: transform;
}
.aurora-bg::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 92, 92, 0.14), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(255, 159, 67, 0.12), transparent 55%);
  top: -20vmax; left: -15vmax;
  animation: aurora-drift-a 26s ease-in-out infinite alternate;
}
.aurora-bg::after {
  background:
    radial-gradient(circle at 60% 40%, rgba(255, 200, 87, 0.09), transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(255, 92, 92, 0.10), transparent 55%);
  bottom: -25vmax; right: -18vmax;
  animation: aurora-drift-b 32s ease-in-out infinite alternate;
}
@keyframes aurora-drift-a {
  from { transform: translate(0, 0) rotate(0deg); }
  to   { transform: translate(10vmax, 6vmax) rotate(40deg); }
}
@keyframes aurora-drift-b {
  from { transform: translate(0, 0) rotate(0deg); }
  to   { transform: translate(-8vmax, -7vmax) rotate(-35deg); }
}

/* Feines Grain über allem — verhindert Banding im Gradient */
.noise {
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── SUCCESS TOAST ── */
#popup-success {
  position: fixed; top: 24px; right: 24px;
  background: rgba(18, 14, 14, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--red-glow);
  box-shadow: 0 0 32px rgba(255, 92, 92, 0.15);
  padding: 14px 22px;
  border-radius: var(--radius);
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.85rem;
  z-index: 10000;
  opacity: 0;
  transform: translateX(120%);
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
#popup-success.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* ── COOKIE-HINWEIS ── */
#cookie-hinweis {
  position: fixed; bottom: 20px; left: 20px;
  background: rgba(18, 14, 14, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  z-index: 5000;
  animation: fadeUp 0.8s 1.4s ease both;
}

/* ── NAVIGATION ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  height: 62px;
  background: rgba(8, 7, 10, 0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
nav.scrolled {
  background: rgba(8, 7, 10, 0.8);
  border-bottom-color: var(--glass-border);
}

.logo {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}
.logo .logo-dot {
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex; gap: 4px;
}
.nav-links a {
  position: relative;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 13px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--glass);
}
.nav-links a.active { color: var(--red); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 13px; right: 13px; bottom: 2px;
  height: 1px;
  background: var(--grad-fire);
}

.hamburger {
  display: none;
  background: none; border: none;
  color: var(--muted); font-size: 1.35rem;
  cursor: pointer; padding: 4px;
}

/* ── HERO ── */
#home {
  min-height: calc(100vh - 62px);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 32px;
  position: relative;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 720px; text-align: center;
}

/* Gestaffelter Einstieg */
.hero-pre  { animation: fadeUp 0.7s 0.15s ease both; }
.hero-h1   { animation: fadeUp 0.7s 0.95s ease both; }
.hero-sub  { animation: fadeUp 0.7s 1.15s ease both; }
.hero-btns { animation: fadeUp 0.7s 1.35s ease both; }

.hero-pre {
  display: inline-flex; align-items: center; gap: 2px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 30px;
  padding: 8px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  letter-spacing: 0.03em;
}
.hero-pre .prompt { color: var(--amber); }
.hero-pre .path   { color: var(--dim); margin-right: 7px; }
.hero-pre .cmd    { color: var(--red); min-width: 1px; }

.cursor {
  display: inline-block;
  width: 8px; height: 1.1em;
  background: var(--red);
  vertical-align: text-bottom;
  margin-left: 2px;
  border-radius: 1px;
  box-shadow: 0 0 8px var(--red-glow);
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-h1 {
  font-family: var(--sans);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.hero-h1 .hl {
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 16.5px;
  color: var(--muted);
  margin-bottom: 42px;
  line-height: 1.8;
}
.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-prim {
  position: relative;
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  color: #1a0605;
  background: linear-gradient(120deg, var(--red), #ff8a5c);
  padding: 11px 24px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 0 0 rgba(255, 92, 92, 0);
}
.btn-prim:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 28px var(--red-glow);
}
/* Licht-Sweep beim Hover */
.btn-prim::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
  transform: translateX(-110%);
  transition: transform 0.5s ease;
}
.btn-prim:hover::after { transform: translateX(110%); }

.btn-sec {
  font-family: var(--mono); font-size: 13px;
  color: var(--muted);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 11px 24px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.25s, transform 0.2s;
}
.btn-sec:hover {
  color: var(--text);
  border-color: var(--orange);
  box-shadow: 0 4px 24px var(--orange-glow);
  transform: translateY(-2px);
}

/* ── SEKTIONEN ── */
section {
  padding: 88px 32px;
  position: relative;
}

/* Scroll-Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--i, 0) * 90ms);
}
section.visible .reveal {
  opacity: 1;
  transform: translateY(0);
}

.container { max-width: 940px; margin: 0 auto; }

.section-eyebrow {
  font-family: var(--mono); font-size: 12px;
  color: var(--red);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--sans);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 44px;
}
/* Gradient-Unterstrich */
.section-title::after {
  content: '';
  display: block;
  width: 56px; height: 3px;
  margin-top: 12px;
  border-radius: 2px;
  background: var(--grad-fire);
}

/* ── GLASS-CARD (Basis mit Maus-Spotlight) ── */
.glass-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.25s, box-shadow 0.3s, transform 0.25s;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%),
              rgba(255, 92, 92, 0.09), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover {
  border-color: var(--glass-border-hi);
  box-shadow: 0 8px 40px rgba(255, 92, 92, 0.08);
}
.glass-card > * { position: relative; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 52px; align-items: start;
}
.about-text { color: var(--muted); line-height: 1.9; font-size: 15.5px; }
.about-text p { margin-bottom: 16px; }
.about-text a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 92, 92, 0.3);
  transition: border-color 0.2s, text-shadow 0.2s;
}
.about-text a:hover {
  border-bottom-color: var(--red);
  text-shadow: 0 0 14px var(--red-glow);
}

.about-stack {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 22px;
}
.stack-chip {
  font-family: var(--mono); font-size: 11px;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.stack-chip:hover {
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 16px var(--orange-glow);
}

.about-stats {
  display: flex; flex-direction: column; gap: 16px;
}
.stat-card { padding: 18px 20px; }
.stat-num {
  font-family: var(--sans); font-size: 1.9rem; font-weight: 700;
  line-height: 1.1;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 11.5px; color: var(--muted); margin-top: 4px;
  font-family: var(--mono);
}

/* ── TIMELINE ── */
.timeline { position: relative; }

.tl-item {
  display: grid;
  grid-template-columns: 52px 28px 1fr;
  gap: 0 18px;
  position: relative;
}

.tl-item .tl-line {
  position: relative;
  display: flex;
  justify-content: center;
}
/* Leuchtende Verlaufslinie */
.tl-item .tl-line::before {
  content: '';
  position: absolute;
  top: 0; bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg,
    rgba(255, 92, 92, 0.5),
    rgba(255, 159, 67, 0.45),
    rgba(255, 200, 87, 0.4));
  box-shadow: 0 0 12px rgba(255, 159, 67, 0.25);
}
.tl-item--first .tl-line::before {
  top: 18px;
  border-radius: 2px 2px 0 0;
}
.tl-item--last .tl-line::before {
  bottom: auto; height: 28px;
  border-radius: 0 0 2px 2px;
}

.tl-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  margin-top: 18px;
  position: relative; z-index: 1;
  flex-shrink: 0;
  border: 2px solid var(--bg);
}
.tl-dot--fire    { background: var(--amber);   box-shadow: 0 0 12px rgba(255, 200, 87, 0.55); }
.tl-dot--project { background: var(--red);     box-shadow: 0 0 12px var(--red-glow); }
.tl-dot--work    { background: var(--orange);  box-shadow: 0 0 12px var(--orange-glow); }
.tl-dot--mini    { background: var(--dim);     width: 9px; height: 9px; margin-top: 20px; }

.tl-year {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--dim);
  padding-top: 16px;
  text-align: right;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.tl-item:hover .tl-year { color: var(--red); }

.tl-card {
  padding: 20px 22px;
  margin-bottom: 16px;
}
.tl-card--mini { padding: 14px 18px; }
.tl-card--mini .tl-title { font-size: 13.5px; }
.tl-card--mini .tl-desc  { font-size: 12.5px; }

.tl-card--link {
  display: block;
  text-decoration: none; color: inherit;
  cursor: pointer;
}
.tl-card--link:hover { transform: translateX(4px); }
.tl-card--link:hover .tl-arrow {
  color: var(--red);
  transform: translateX(3px);
}

.tl-arrow {
  margin-left: auto;
  color: var(--dim);
  font-size: 15px;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.tl-logo {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--bg-raise);
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
  object-fit: contain;
  padding: 3px;
}
.tl-logo--sm { width: 24px; height: 24px; }

.tl-card-header {
  display: flex; align-items: flex-start; gap: 13px;
  margin-bottom: 10px;
}

.tl-title {
  font-family: var(--sans); font-size: 15.5px; font-weight: 600;
  color: var(--text); line-height: 1.3;
  letter-spacing: -0.01em;
}
.tl-sub {
  font-size: 11.5px; color: var(--muted);
  font-family: var(--mono); margin-top: 2px;
}

.tl-badge {
  font-family: var(--mono); font-size: 10.5px;
  padding: 3px 10px; border-radius: 999px;
  margin-left: auto; flex-shrink: 0;
}
.tl-badge--active {
  color: var(--red);
  border: 1px solid rgba(255, 92, 92, 0.35);
  background: rgba(255, 92, 92, 0.07);
  box-shadow: inset 0 0 12px rgba(255, 92, 92, 0.06);
}

.tl-desc {
  font-size: 13.5px; color: var(--muted); line-height: 1.7;
}

.tl-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px;
}
.tl-tag {
  font-family: var(--mono); font-size: 10.5px;
  padding: 3px 10px; border-radius: 6px;
  background: rgba(255, 159, 67, 0.08);
  border: 1px solid rgba(255, 159, 67, 0.22);
  color: var(--orange);
}

/* ── KONTAKT ── */
.kontakt-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px; align-items: start;
}
.kontakt-info { color: var(--muted); font-size: 15px; }
.kontakt-info p { margin-bottom: 14px; }
.kontakt-info a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 92, 92, 0.3);
  transition: border-color 0.2s, text-shadow 0.2s;
}
.kontakt-info a:hover {
  border-bottom-color: var(--red);
  text-shadow: 0 0 14px var(--red-glow);
}

.kontakt-formular { padding: 28px; }
.kontakt-formular input,
.kontakt-formular textarea {
  width: 100%; padding: 12px 14px;
  margin-bottom: 12px;
  background: rgba(8, 7, 10, 0.55);
  color: var(--text);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  font-family: var(--mono); font-size: 13px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.25s;
  resize: none;
}
.kontakt-formular input:focus,
.kontakt-formular textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 92, 92, 0.12), 0 0 20px rgba(255, 92, 92, 0.08);
}
.kontakt-formular input::placeholder,
.kontakt-formular textarea::placeholder { color: var(--dim); }

.kontakt-formular button {
  width: 100%;
}

/* ── FOOTER ── */
footer {
  text-align: center; padding: 28px 24px;
  border-top: 1px solid var(--glass-border);
  background: rgba(8, 7, 10, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--mono); font-size: 11.5px;
  color: var(--dim);
}
footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: var(--red); }

/* ── POPUPS (Impressum / Datenschutz) ── */
.overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(5, 4, 4, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
}
.popup {
  display: none; position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(18, 14, 14, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-hi);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 159, 67, 0.06);
  padding: 30px;
  border-radius: var(--radius-lg);
  color: var(--text);
  max-width: 92%; width: 360px;
  z-index: 10001;
}
#datenschutz-popup {
  width: 500px; max-height: 80vh;
  overflow-y: auto;
}
.popup h3 {
  font-family: var(--sans); font-size: 1.15rem;
  font-weight: 600; margin-bottom: 16px;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}
.popup h4 {
  font-family: var(--mono); font-size: 0.85rem;
  font-weight: 500; color: var(--text);
  margin: 18px 0 6px;
}
.popup p {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.8; margin-bottom: 10px;
}
.popup a { color: var(--red); text-decoration: none; }
.popup a:hover { text-decoration: underline; }
.popup .close-btn {
  position: absolute; top: 14px; right: 14px;
  background: var(--glass); color: var(--muted);
  border: 1px solid var(--glass-border);
  width: 28px; height: 28px;
  border-radius: 8px; cursor: pointer;
  font-size: 12px; font-family: var(--mono);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.popup .close-btn:hover {
  color: var(--text);
  border-color: var(--amber);
  box-shadow: 0 0 14px rgba(255, 200, 87, 0.25);
}

/* ── ANIMATIONEN ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 18px; }
  .hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 62px; left: 0; right: 0;
    background: rgba(8, 7, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
  }
  .nav-links.active { display: flex; }
  .nav-links a { display: block; padding: 12px 20px; border-radius: 0; }
  .nav-links a.active::after { display: none; }

  #home { padding: 48px 18px; }
  section { padding: 60px 18px; }

  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 110px; }

  .kontakt-wrapper { grid-template-columns: 1fr; gap: 30px; }

  #datenschutz-popup { width: 92vw; max-height: 75vh; }

  /* Ember-Mesh auf Mobile dezenter — spart GPU */
  .aurora-bg::before,
  .aurora-bg::after { opacity: 0.35; filter: blur(45px); }
}

@media (max-width: 600px) {
  .tl-item { grid-template-columns: 40px 20px 1fr; gap: 0 10px; }
  .tl-year { font-size: 10.5px; }
  .hero-pre { font-size: 11px; padding: 7px 13px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-prim, .btn-sec { text-align: center; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora-bg::before,
  .aurora-bg::after { animation: none; }
  .hero-pre, .hero-h1, .hero-sub, .hero-btns { animation-duration: 0.01ms; animation-delay: 0ms; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .cursor { animation: none; }
  .btn-prim::after { display: none; }
}
