:root {
  --bg: #fbf8f1;
  --bg-soft: #fffdf8;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #1d2233;
  --text-soft: #55607a;
  --line: rgba(78, 88, 120, 0.16);
  --accent: #6658ff;
  --accent-2: #ff7b78;
  --accent-3: #22b7a3;
  --accent-4: #ffca61;
  --shadow: 0 20px 60px rgba(63, 71, 106, 0.12);
  --shadow-soft: 0 14px 34px rgba(63, 71, 106, 0.08);
  --radius-lg: 2rem;
  --radius-md: 1.5rem;
  --radius-sm: 1rem;
  --container: min(1180px, calc(100vw - 2rem));
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(102, 88, 255, 0.09), transparent 28%),
    radial-gradient(circle at 95% 12%, rgba(255, 123, 120, 0.12), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(34, 183, 163, 0.08), transparent 28%),
    var(--bg);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(102, 88, 255, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 999;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
}

.skip-link:focus {
  left: 1rem;
}

.site-shell {
  position: relative;
  overflow-x: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 4.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 780px;
}

.section-kicker,
.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(102, 88, 255, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.section-head h2,
.hero h1 {
  margin: 0.75rem 0 0;
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", "Nunito Sans", sans-serif;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-head p,
.hero-intro,
.hero-role,
.about-copy p,
.card p,
.contact-copy p {
  color: var(--text-soft);
}

.hero {
  padding-top: 7rem;
  padding-bottom: 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3.6rem, 12vw, 7.5rem);
}

.headline-accent {
  display: inline-block;
  position: relative;
}

.headline-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 104%;
  height: 0.22em;
  background: linear-gradient(90deg, rgba(255, 123, 120, 0.28), rgba(255, 202, 97, 0.36));
  z-index: -1;
  border-radius: 999px;
  transform: rotate(-1.5deg);
}

.hero-role {
  margin: 1rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-intro {
  margin: 1.1rem 0 0;
  max-width: 58ch;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero-actions,
.project-links,
.pet-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary,
.nav-cta,
.button--secondary {
  background: linear-gradient(135deg, var(--accent), #856cff);
  color: white;
  box-shadow: 0 16px 40px rgba(102, 88, 255, 0.28);
}

.button--secondary {
  background: linear-gradient(135deg, var(--accent-3), #1f9f90);
  box-shadow: 0 14px 30px rgba(34, 183, 163, 0.26);
}

.button--ghost {
  border-color: rgba(102, 88, 255, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.hero-badges,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-badges {
  margin-top: 1.5rem;
}

.hero-badge,
.tag,
.pet-chip,
.placeholder-tag,
.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-badge,
.tag,
.pet-chip {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.tag--soft {
  background: rgba(102, 88, 255, 0.08);
  color: var(--accent);
}

.placeholder-tag,
.project-badge {
  background: rgba(255, 123, 120, 0.12);
  color: #b74a49;
}

.hero-visual {
  position: relative;
}

.portrait-stage {
  position: relative;
  width: min(100%, 33rem);
  margin-inline: auto;
}

.portrait-card {
  position: relative;
  z-index: 2;
  margin: 0;
  border-radius: 2.4rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82));
  border: 1px solid rgba(102, 88, 255, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26, 34, 50, 0.34));
  pointer-events: none;
}

.portrait-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  width: calc(100% - 2rem);
  margin: 1rem auto 0;
  background: radial-gradient(circle at 30% 30%, rgba(102, 88, 255, 0.14), rgba(255, 255, 255, 0.6));
  border: 14px solid rgba(255,255,255,0.9);
  box-shadow: inset 0 0 0 2px rgba(102,88,255,0.1), 0 20px 40px rgba(63, 71, 106, 0.13);
}

.portrait-card figcaption {
  position: absolute;
  inset-inline: 1.2rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: white;
  font-weight: 700;
  z-index: 1;
  font-size: 0.95rem;
}

.portrait-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(102, 88, 255, 0.22);
}

.portrait-orbit--one {
  inset: 1rem -1rem -1rem 1rem;
}

.portrait-orbit--two {
  inset: -1.6rem 1.6rem 2.5rem -1.6rem;
}

.floating-note {
  position: absolute;
  z-index: 3;
  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(102, 88, 255, 0.14);
  box-shadow: var(--shadow-soft);
  max-width: 14rem;
  backdrop-filter: blur(12px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  font-size: 0.9rem;
}

.floating-note span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.floating-note--left {
  left: -0.8rem;
  top: 2rem;
}

.floating-note--right {
  right: -1rem;
  bottom: 3rem;
}

.dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 0 0.35rem rgba(34, 183, 163, 0.14);
  margin-bottom: 0.55rem;
}

.hero-stats {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.fact-card,
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.66));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.fact-card::before,
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 7rem;
  height: 7rem;
  background: radial-gradient(circle, rgba(102, 88, 255, 0.12), transparent 65%);
  pointer-events: none;
}

.fact-card {
  padding: 1rem 1.2rem;
}

.fact-card span {
  display: block;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.fact-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.05rem;
}

.card {
  padding: 1.4rem;
}

.about-grid,
.contact-shell,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.about-values ul,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.about-values li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(78, 88, 120, 0.12);
}

.check-mark {
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(34, 183, 163, 0.12);
  color: var(--accent-3);
  font-weight: 800;
}

.about-values__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(102, 88, 255, 0.28), rgba(255, 123, 120, 0.18));
}

.timeline-card {
  display: grid;
  gap: 1rem;
  padding-left: 4.4rem;
}

.timeline-card__marker {
  position: absolute;
  top: 1.35rem;
  left: 0.6rem;
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(102, 88, 255, 0.25);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.timeline-card__meta,
.project-card__meta,
.hobby-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.timeline-card__period,
.project-category {
  color: var(--accent);
  font-weight: 700;
}

.timeline-card__mode {
  color: var(--text-soft);
}

.timeline-card__company {
  font-weight: 700;
}

.timeline-card__location {
  margin-top: -0.55rem;
  font-size: 0.95rem;
}

.hobbies-grid,
.projects-grid,
.references-grid {
  display: grid;
  gap: 1rem;
}

.hobby-card,
.project-card,
.reference-card,
.contact-shell {
  min-height: 100%;
}

.hobby-card h3,
.project-card h3,
.reference-card blockquote,
.timeline-card h3,
.contact-shell h2 {
  margin-top: 0.9rem;
}

.hobby-icon {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(102, 88, 255, 0.14), rgba(255, 123, 120, 0.12));
  color: var(--accent);
}

.hobby-icon svg,
.social-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.hobby-card--pets {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.68)),
    radial-gradient(circle at 90% 10%, rgba(34,183,163,0.12), transparent 28%);
}

.pet-showcase {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.pet-showcase figure {
  margin: 0;
}

.pet-showcase img {
  width: 100%;
  border-radius: 1.3rem;
  border: 1px solid rgba(34, 183, 163, 0.18);
  background: linear-gradient(180deg, rgba(239, 254, 251, 0.8), rgba(255, 255, 255, 0.86));
}

.pet-showcase figcaption {
  margin-top: 0.6rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.project-card--featured {
  outline: 1px solid rgba(102, 88, 255, 0.18);
}

.project-links a,
.footer-links a,
.footer-mail,
.contact-actions a,
.site-nav a {
  position: relative;
}

.project-links a::after,
.footer-links a::after,
.footer-mail::after,
.contact-actions a::after,
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.14rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.project-links a:hover::after,
.footer-links a:hover::after,
.footer-mail:hover::after,
.contact-actions a:hover::after,
.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.reference-card blockquote {
  margin: 1rem 0 1.2rem;
  font-size: 1.05rem;
}

.reference-card footer {
  display: grid;
  gap: 0.1rem;
  color: var(--text-soft);
}

.contact-shell {
  align-items: center;
  overflow: hidden;
}

.section--contact {
  padding-bottom: 5rem;
}

.contact-shell::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 202, 97, 0.26), transparent 72%);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(102, 88, 255, 0.26);
}

.social-links--compact {
  margin-top: 1rem;
}

.social-label {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 0.9rem;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(251, 248, 241, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 12px 28px rgba(102, 88, 255, 0.28);
}

.site-nav {
  display: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text-soft);
  font-weight: 700;
}

.nav-cta {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.site-footer {
  padding: 1rem 0 3rem;
}

.footer-grid,
.footer-meta {
  padding-top: 1rem;
}

.footer-grid h2,
.footer-grid h3 {
  margin-top: 0;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.floating-background,
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.floating-background {
  z-index: 0;
}

.noise-overlay {
  z-index: 1;
  opacity: 0.12;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(29, 34, 51, 0.03) calc(100% - 1px)),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(29, 34, 51, 0.03) calc(100% - 1px));
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.floating-shape {
  position: absolute;
  opacity: 0.9;
  will-change: transform;
  transition: opacity 400ms ease;
}

.floating-shape--sm { width: 2.8rem; height: 2.8rem; }
.floating-shape--md { width: 4.5rem; height: 4.5rem; }
.floating-shape--lg { width: 7rem; height: 7rem; }

.floating-shape--ring {
  border: 2px solid rgba(102, 88, 255, 0.18);
  border-radius: 50%;
}

.floating-shape--dot-grid {
  background-image: radial-gradient(circle, rgba(102, 88, 255, 0.45) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
}

.floating-shape--code-pill {
  width: 5rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(102, 88, 255, 0.18);
  box-shadow: var(--shadow-soft);
}

.floating-shape--code-pill::before {
  content: "</>";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.floating-shape--spark,
.floating-shape--plus {
  background: transparent;
}

.floating-shape--spark::before,
.floating-shape--plus::before,
.floating-shape--plus::after,
.floating-shape--spark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(255, 123, 120, 0.46);
  border-radius: 999px;
}

.floating-shape--spark::before,
.floating-shape--plus::before {
  width: 100%;
  height: 2px;
}

.floating-shape--spark::after,
.floating-shape--plus::after {
  width: 2px;
  height: 100%;
}

.floating-shape--spark {
  transform: rotate(45deg);
}

.floating-shape--hex {
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  border: 2px solid rgba(34, 183, 163, 0.24);
  background: rgba(34, 183, 163, 0.08);
}

.floating-shape--arc {
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(255, 202, 97, 0.35);
  border-left-color: rgba(255, 202, 97, 0.35);
  transform: rotate(-18deg);
}

.floating-shape--orbit {
  border-radius: 999px;
  border: 1px dashed rgba(102, 88, 255, 0.22);
}

.floating-shape--orbit::before {
  content: "";
  position: absolute;
  width: 0.65rem;
  height: 0.65rem;
  right: -0.1rem;
  top: 50%;
  border-radius: 50%;
  background: var(--accent);
}

.floating-shape--chip {
  border-radius: 1rem;
  border: 1px solid rgba(29, 34, 51, 0.09);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-soft);
}

.floating-shape--chip::before,
.floating-shape--chip::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(102, 88, 255, 0.18);
  border-radius: 0.6rem;
}

.floating-shape--wave {
  width: 7rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(102, 88, 255, 0.14);
  background: rgba(255,255,255,0.66);
}

.floating-shape--wave::before,
.floating-shape--wave::after {
  content: "";
  position: absolute;
  inset: 0.55rem 0.8rem;
  border-top: 2px solid rgba(102, 88, 255, 0.32);
  border-radius: 999px;
}

.floating-shape--wave::after {
  top: 1.1rem;
}

.progress-bar {
  position: fixed;
  left: 0;
  top: 0;
  height: 3px;
  width: var(--scroll-progress, 0%);
  z-index: 30;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-4));
  box-shadow: 0 0 18px rgba(102, 88, 255, 0.24);
}

.motion-permission {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1rem;
  background: rgba(29, 34, 51, 0.92);
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .hero-grid,
  .about-grid,
  .contact-shell,
  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero-stats,
  .hobbies-grid,
  .projects-grid,
  .references-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-note--left {
    left: -2.5rem;
  }
}

@media (min-width: 980px) {
  .section {
    padding: 6rem 0;
  }

  .site-nav {
    display: block;
  }

  .hero {
    padding-top: 8rem;
  }

  .hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 3rem;
  }

  .hero-stats,
  .hobbies-grid,
  .projects-grid,
  .references-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .references-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline {
    gap: 1.4rem;
    padding-left: 1rem;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-card {
    width: calc(50% - 2rem);
    padding-left: 1.5rem;
  }

  .timeline-card:nth-child(odd) {
    margin-right: auto;
  }

  .timeline-card:nth-child(even) {
    margin-left: auto;
  }

  .timeline-card__marker {
    left: auto;
    right: -3rem;
  }

  .timeline-card:nth-child(even) .timeline-card__marker {
    right: auto;
    left: -3rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .floating-shape,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
