/* ============================================================
   Stephan Raabe — Personal Profile
   Design tokens
   ============================================================ */
:root {
  --ink:        #0b1220;
  --ink-soft:   #33405a;
  --muted:      #64708a;
  --line:       #e6e9f0;
  --bg:         #f7f8fb;
  --surface:    #ffffff;
  --surface-2:  #f0f3f9;

  --brand:      #2563eb;
  --brand-2:    #06b6d4;
  --brand-3:    #7c3aed;
  --accent-grad: linear-gradient(120deg, #2563eb 0%, #06b6d4 55%, #7c3aed 110%);

  --shadow-sm:  0 2px 10px rgba(16, 24, 40, .05);
  --shadow-md:  0 18px 45px -20px rgba(16, 24, 40, .28);
  --shadow-lg:  0 40px 90px -35px rgba(16, 24, 40, .40);

  --radius:     20px;
  --radius-sm:  12px;
  --wrap:       1160px;

  --font-body:  'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-disp:  'Space Grotesk', var(--font-body);

  --ease:       cubic-bezier(.22, 1, .36, 1);
}

/* ============================================================
   Reset / base
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

.section { padding-block: clamp(72px, 10vw, 140px); position: relative; }

.section-tag {
  font-family: var(--font-disp);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.section-tag.light { color: rgba(255,255,255,.75); }

.section-title {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.section-title.small { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

.section-sub { color: var(--muted); font-size: 1.05rem; margin-top: 16px; max-width: 46ch; }
.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }

.grad {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --pad-y: 15px; --pad-x: 26px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 100px;
  font-weight: 600; font-size: .98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 30px -12px rgba(37, 99, 235, .7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(37, 99, 235, .75); }
.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--brand); color: var(--brand); box-shadow: var(--shadow-sm); }
.btn-ghost.light { color: #fff; border-color: rgba(255,255,255,.35); background: transparent; }
.btn-ghost.light:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* ============================================================
   Scroll progress + header
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--accent-grad);
  z-index: 1000;
  transition: width .1s linear;
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.site-header.scrolled {
  background: rgba(247, 248, 251, .8);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 11px;
  font-family: var(--font-disp); font-weight: 700; font-size: .95rem; color: #fff;
  background: var(--accent-grad);
  box-shadow: 0 8px 20px -8px rgba(37,99,235,.7);
}
.brand-mark.small { width: 30px; height: 30px; font-size: .8rem; border-radius: 9px; }
.brand-name { font-family: var(--font-disp); letter-spacing: -.01em; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color .25s; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--brand); transition: width .3s var(--ease);
}
.nav a:not(.nav-cta):hover { color: var(--ink); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  padding: 9px 18px; border-radius: 100px; color: #fff !important;
  background: var(--ink); transition: background .3s, transform .3s;
}
.nav-cta:hover { background: var(--brand); transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: 140px; padding-bottom: 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.blob-1 { width: 480px; height: 480px; top: -120px; right: -80px; background: radial-gradient(circle at 30% 30%, #4f8bff, transparent 70%); animation: float1 14s ease-in-out infinite; }
.blob-2 { width: 420px; height: 420px; bottom: -160px; left: -120px; background: radial-gradient(circle at 30% 30%, #22d3ee, transparent 70%); opacity: .4; animation: float2 18s ease-in-out infinite; }
.blob-3 { width: 320px; height: 320px; top: 40%; left: 45%; background: radial-gradient(circle at 30% 30%, #a78bfa, transparent 70%); opacity: .32; animation: float1 20s ease-in-out infinite reverse; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 0%, transparent 75%);
  opacity: .55;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 6vw, 70px);
  align-items: center; min-height: min(78vh, 720px);
}
.eyebrow {
  font-family: var(--font-disp); font-weight: 600; font-size: .9rem;
  letter-spacing: .04em; color: var(--brand);
  display: inline-block; padding: 7px 16px; border-radius: 100px;
  background: rgba(37, 99, 235, .08); border: 1px solid rgba(37,99,235,.16);
}
.hero-title {
  font-family: var(--font-disp); font-weight: 700;
  font-size: clamp(2.6rem, 6.2vw, 4.7rem); line-height: 1.02; letter-spacing: -.035em;
  margin: 22px 0 24px;
}
.hero-title .line { display: block; }
.hero-lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-soft); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta { list-style: none; display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: var(--muted); font-size: .95rem; }
.hero-meta li { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta a { color: var(--brand); font-weight: 600; }
.hero-meta a:hover { text-decoration: underline; }

/* Portrait */
.hero-portrait { position: relative; justify-self: center; width: min(100%, 420px); aspect-ratio: 1; }
.portrait-frame {
  position: relative; z-index: 2; width: 100%; height: 100%;
  border-radius: 32px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid #fff;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.portrait-ring {
  position: absolute; inset: -18px; z-index: 1; border-radius: 44px;
  background: var(--accent-grad); opacity: .9;
  filter: blur(2px);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 3px;
  animation: spinHue 8s linear infinite;
}
.portrait-badge {
  position: absolute; z-index: 3; bottom: 18px; left: -26px;
  background: var(--surface); border-radius: 16px; padding: 14px 20px;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column; line-height: 1.2;
  border: 1px solid var(--line);
}
.portrait-badge strong { font-family: var(--font-disp); font-size: 1.25rem; color: var(--ink); }
.portrait-badge span { font-size: .8rem; color: var(--muted); }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid var(--muted); border-radius: 100px;
  display: grid; justify-items: center; padding-top: 8px; opacity: .7;
}
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--brand); animation: cue 1.6s var(--ease) infinite; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--surface); padding: 20px 0; }
.marquee-track {
  display: flex; align-items: center; gap: 28px; width: max-content;
  font-family: var(--font-disp); font-weight: 600; font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--ink); white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-track span[aria-hidden] { color: var(--brand); }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============================================================
   About
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 6vw, 80px); align-items: start; }
.about-body p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 18px; }
.about-body strong { color: var(--ink); }
.stat-row { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 54px); margin-top: 36px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-disp); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: .9rem; color: var(--muted); margin-top: 8px; max-width: 18ch; }

/* ============================================================
   Focus cards
   ============================================================ */
.focus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 56px; }
.focus-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px 34px; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  transform-style: preserve-3d;
}
.focus-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(37,99,235,.08), transparent 45%);
  transition: opacity .4s;
}
.focus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.focus-card:hover::before { opacity: 1; }
.focus-icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  font-size: 1.6rem; background: var(--surface-2); margin-bottom: 22px;
  transition: transform .5s var(--ease);
}
.focus-card:hover .focus-icon { transform: scale(1.08) rotate(-4deg); }
.focus-card h3 { font-family: var(--font-disp); font-size: 1.4rem; letter-spacing: -.01em; margin-bottom: 12px; }
.focus-card p { color: var(--muted); font-size: 1rem; }
.focus-index {
  position: absolute; top: 26px; right: 30px;
  font-family: var(--font-disp); font-weight: 700; font-size: 1rem;
  color: var(--line); transition: color .4s;
}
.focus-card:hover .focus-index { color: var(--brand); }

/* ============================================================
   Experience timeline
   ============================================================ */
.timeline { list-style: none; margin-top: 56px; position: relative; padding-left: 4px; }
.timeline::before {
  content: ""; position: absolute; left: 15px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--brand), var(--brand-2), transparent);
}
.tl-item { position: relative; padding-left: 56px; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 8px; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--brand);
  box-shadow: 0 0 0 5px rgba(37,99,235,.12);
}
.tl-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 30px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tl-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.tl-date {
  display: inline-block; font-family: var(--font-disp); font-weight: 600; font-size: .8rem;
  letter-spacing: .05em; text-transform: uppercase; color: var(--brand);
  background: rgba(37,99,235,.08); padding: 5px 12px; border-radius: 100px; margin-bottom: 12px;
}
.tl-card h3 { font-family: var(--font-disp); font-size: 1.3rem; letter-spacing: -.01em; }
.tl-role { color: var(--ink-soft); font-weight: 600; margin: 4px 0 10px; }
.tl-card > p:not(.tl-role) { color: var(--muted); }
.tl-points { list-style: none; margin: 12px 0 0; display: grid; gap: 9px; }
.tl-points li {
  position: relative; padding-left: 22px; color: var(--muted); font-size: .96rem; line-height: 1.55;
}
.tl-points li::before {
  content: ""; position: absolute; left: 4px; top: .58em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--brand);
}
.tl-place { display: inline-block; margin-top: 14px; font-size: .85rem; color: var(--muted); }
.edit-note { display: none; }

/* ============================================================
   Credentials
   ============================================================ */
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 48px); }
.cred-list { list-style: none; margin-top: 22px; }
.cred-list li {
  display: flex; flex-direction: column; gap: 3px;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.cred-list li:last-child { border-bottom: 1px solid var(--line); }
.cred-list.plain li:last-child { border-bottom: 0; }
.cred-list strong { font-size: 1.02rem; }
.cred-list span { font-size: .88rem; color: var(--muted); }

/* ============================================================
   Contact
   ============================================================ */
.contact { padding-bottom: clamp(90px, 12vw, 160px); }
.contact-inner {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(135deg, #0b1220 0%, #131c34 60%, #1b2a52 100%);
  color: #fff; border-radius: 32px; padding: clamp(50px, 8vw, 90px) clamp(24px, 6vw, 80px);
  box-shadow: var(--shadow-lg);
}
.contact-glow {
  position: absolute; inset: 0;
  background: radial-gradient(500px circle at 30% 0%, rgba(37,99,235,.5), transparent 60%),
              radial-gradient(400px circle at 80% 100%, rgba(6,182,212,.35), transparent 60%);
  pointer-events: none;
}
.contact-inner > * { position: relative; z-index: 1; }
.contact-title { font-family: var(--font-disp); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -.02em; margin-bottom: 16px; }
.contact-sub { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 52ch; margin: 0 auto 34px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Two-column layout: intro + form */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center; text-align: left;
}
.contact-intro .contact-title { text-align: left; }
.contact-intro .contact-sub { margin: 0 0 26px; }
.contact-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-links a,
.contact-links .ci-note { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; }
.contact-links a { color: rgba(255,255,255,.85); transition: color .25s, transform .25s; }
.contact-links .ci-note { color: rgba(255,255,255,.66); font-weight: 500; }
.contact-links span[aria-hidden] { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.1); font-size: .8rem; flex-shrink: 0; }
.contact-links a:hover { color: #fff; transform: translateX(3px); }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px; padding: clamp(22px, 3vw, 32px); backdrop-filter: blur(6px);
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; text-align: left; }
.field label { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.82); }
.contact-form input,
.contact-form textarea {
  width: 100%; font: inherit; color: #fff;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px; padding: 13px 15px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.4); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--brand-2); background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, .25);
}
.contact-form textarea { resize: vertical; min-height: 112px; }
.field.has-error input,
.field.has-error textarea { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248, 113, 113, .2); }
.field-error { font-size: .8rem; color: #fca5a5; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-hint { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 14px; text-align: center; }
.form-hint a { color: #fff; text-decoration: underline; }

/* Alerts */
.form-alert { border-radius: 14px; padding: 15px 18px; font-size: .95rem; margin-bottom: 4px; }
.form-alert.success { background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.4); color: #bbf7d0; }
.form-alert.error { background: rgba(248,113,113,.14); border: 1px solid rgba(248,113,113,.4); color: #fecaca; }
.form-alert a { color: inherit; text-decoration: underline; }

/* Honeypot — visually hidden, off-screen */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-block: 30px; }
.footer-inner p { color: var(--muted); font-size: .9rem; }
.to-top { font-weight: 600; font-size: .9rem; color: var(--ink-soft); transition: color .25s; }
.to-top:hover { color: var(--brand); }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal { opacity: 0; transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--delay, 0s); will-change: opacity, transform; }
.reveal[data-reveal="up"]    { transform: translateY(40px); }
.reveal[data-reveal="left"]  { transform: translateX(-40px); }
.reveal[data-reveal="right"] { transform: translateX(40px); }
.reveal[data-reveal="scale"] { transform: scale(.94); }
.reveal.in-view { opacity: 1; transform: none; }

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -30px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-24px, 26px); } }
@keyframes spinHue { to { filter: blur(2px) hue-rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero-copy { order: 2; }
  .hero-portrait { order: 1; width: min(78%, 340px); }
  .eyebrow, .hero-actions, .hero-meta { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; text-align: center; }
  .contact-intro .contact-title { text-align: center; }
  .contact-intro .contact-sub { margin: 0 auto 26px; }
  .contact-links { align-items: center; }
}

@media (max-width: 760px) {
  .nav { position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(247,248,251,.97); backdrop-filter: blur(14px);
    padding: 10px 24px 24px; border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .4s var(--ease); }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 10px; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .focus-grid { grid-template-columns: 1fr; }
  .portrait-badge { left: 0; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .blob, .marquee-track, .portrait-ring, .scroll-cue span { animation: none !important; }
}
