:root {
  --bg: #0b0616;
  --bg-deep: #120822;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --text: #f8f4ff;
  --muted: rgba(240, 230, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --accent: #9f61ff;
  --accent-2: #7b5cff;
  --accent-3: #dd7cff;
  --ink: #0e0e14;
  --shadow: 0 32px 80px rgba(21, 8, 38, 0.45);
  --glass: blur(24px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(146, 79, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #090510 0%, #120822 34%, #0b0616 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(194, 133, 255, 0.12), transparent 20%),
    radial-gradient(circle at 80% 30%, rgba(118, 97, 255, 0.14), transparent 18%);
  pointer-events: none;
  z-index: -2;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.aurora,
.grid-haze {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.aurora {
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
}

.aurora-a {
  top: -8rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(148, 96, 255, 0.75), rgba(148, 96, 255, 0));
}

.aurora-b {
  left: -12rem;
  top: 30rem;
  background: radial-gradient(circle, rgba(221, 124, 255, 0.42), rgba(221, 124, 255, 0));
}

.grid-haze {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
  opacity: 0.28;
}

.topbar,
main,
.feature-strip,
.showcase,
.download {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 8, 28, 0.55);
  backdrop-filter: var(--glass);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark,
.logo-badge,
.call-avatar,
.shot-avatar {
  display: grid;
  place-items: center;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(102, 56, 170, 0.35);
}

.brand-mark {
  width: 50px;
  height: 50px;
}

.unitalk-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy small,
.topnav a,
.hero-text,
.glass-stat span,
.feature-card p,
.section-heading p,
.download-card small,
.call-meta span {
  color: var(--muted);
}

.topnav {
  display: flex;
  gap: 18px;
}

.topnav a {
  text-decoration: none;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 56px 0 32px;
}

.eyebrow,
.glass-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: var(--glass);
  color: rgba(255, 255, 255, 0.9);
}

.hero h1,
.section-heading h2,
.feature-card h2 {
  margin: 18px 0;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.6rem);
}

.hero-text,
.section-heading p {
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 18px;
  border: 1px solid transparent;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-dark {
  background: #09090f;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 34px rgba(113, 79, 180, 0.24);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.glass-stat,
.feature-card,
.shot-card,
.download-card,
.device,
.section-heading {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(26px);
  box-shadow: var(--shadow);
}

.glass-stat {
  padding: 18px 20px;
  border-radius: 24px;
}

.glass-stat strong,
.download-card strong,
.call-meta strong,
.feature-card h2 {
  display: block;
  margin-bottom: 8px;
}

.hero-stage {
  position: relative;
  min-height: 720px;
}

.orbital {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.75;
}

.orbital-a {
  width: 520px;
  height: 520px;
  top: 70px;
  right: 12px;
  animation: pulse 10s ease-in-out infinite;
}

.orbital-b {
  width: 300px;
  height: 300px;
  right: 140px;
  bottom: 54px;
  animation: pulse 8s ease-in-out infinite reverse;
}

.device {
  position: absolute;
  overflow: hidden;
}

.desktop-card {
  top: 110px;
  left: 0;
  width: min(100%, 560px);
  border-radius: 30px;
  padding: 16px;
}

.device-top {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.device-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.chat-layout {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
}

.chat-sidebar,
.chat-main,
.shot-content,
.call-screen,
.phone-splash {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(7, 6, 15, 0.5), rgba(52, 25, 92, 0.32));
}

.chat-sidebar {
  padding: 18px 14px;
}

.sidebar-title {
  margin-bottom: 16px;
  font-weight: 700;
}

.thread,
.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
}

.thread + .thread,
.list-item + .list-item {
  margin-top: 10px;
}

.thread-active {
  background: rgba(161, 97, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.thread small,
.list-item small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
}

.thread-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: 0 0 auto;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.pink { background: radial-gradient(circle at 30% 30%, #ffd7fb, #c459ff 55%, #6a22d8); }
.blue { background: radial-gradient(circle at 30% 30%, #cde9ff, #4694ff 55%, #1f4ce3); }
.green { background: radial-gradient(circle at 30% 30%, #d4ffe6, #3de9b3 55%, #139f74); }
.gold { background: radial-gradient(circle at 30% 30%, #fff0c5, #ffb347 55%, #f46d18); }

.chat-main {
  padding: 18px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-end;
}

.message {
  max-width: 85%;
  padding: 16px 18px;
  border-radius: 24px;
  line-height: 1.5;
}

.incoming {
  background: rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 10px;
}

.outgoing {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(144, 92, 255, 0.98), rgba(196, 101, 255, 0.84));
  border-bottom-right-radius: 10px;
}

.phone-card {
  width: 236px;
  height: 488px;
  border-radius: 36px;
  padding: 14px;
}

.phone-primary {
  top: 0;
  right: 18px;
}

.phone-secondary {
  right: 220px;
  bottom: 0;
}

.phone-notch {
  width: 92px;
  height: 24px;
  margin: 0 auto 14px;
  border-radius: 20px;
  background: rgba(3, 3, 8, 0.85);
}

.phone-splash,
.call-screen {
  height: calc(100% - 38px);
}

.phone-splash {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #5b22a9 0%, #4a1f8a 100%);
}

.logo-badge {
  width: 132px;
  height: 132px;
}

.element-badge {
  width: 148px;
  height: 148px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 44px rgba(14, 102, 56, 0.35);
}

.logo-badge.small {
  width: 96px;
  height: 96px;
}

.call-screen {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 20px 22px;
  background:
    radial-gradient(circle at center, rgba(245, 221, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(24, 15, 35, 0.95), rgba(34, 20, 52, 0.92));
}

.call-avatar,
.shot-avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 800;
}

.call-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.call-actions button {
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 22px rgba(0, 0, 0, 0.25);
}

.call-actions button:first-child {
  background: #ff5d5d;
}

.call-actions button:last-child {
  background: #5d61ff;
}

.feature-strip,
.showcase,
.download {
  padding: 72px 0 24px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 28px;
  border-radius: 28px;
}

.feature-index {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  color: rgba(235, 220, 255, 0.6);
}

.section-heading {
  margin-bottom: 22px;
  padding: 26px;
  border-radius: 28px;
}

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

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 250px;
  gap: 18px;
}

.shot-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 18px;
}

.shot-wide {
  grid-column: span 2;
}

.shot-tall {
  grid-row: span 2;
}

.shot-label {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 700;
}

.shot-content {
  height: 100%;
  padding: 24px;
}

.shot-chat {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(215, 108, 255, 0.2), transparent 20%),
    radial-gradient(circle at 20% 100%, rgba(59, 104, 255, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(38, 16, 79, 0.96), rgba(26, 26, 90, 0.9));
}

.shot-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.75;
  pointer-events: none;
}

.shot-glow-a {
  top: 72px;
  left: 48px;
  width: 120px;
  height: 120px;
  background: rgba(227, 102, 255, 0.34);
}

.shot-glow-b {
  right: 70px;
  bottom: 56px;
  width: 140px;
  height: 140px;
  background: rgba(114, 97, 255, 0.28);
}

.shot-nav {
  position: relative;
  z-index: 1;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.shot-bubble {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 78%;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 20px;
}

.shot-bubble.left {
  background: rgba(255, 255, 255, 0.1);
}

.shot-bubble.right {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(140, 90, 255, 0.95), rgba(189, 101, 255, 0.85));
}

.shot-splash {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #6a27c8, #431a80);
}

.shot-call {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at center, rgba(149, 97, 255, 0.15), transparent 32%),
    linear-gradient(180deg, rgba(20, 14, 28, 0.92), rgba(36, 25, 52, 0.92));
}

.shot-list {
  background:
    radial-gradient(circle at top, rgba(162, 103, 255, 0.14), transparent 25%),
    linear-gradient(180deg, rgba(18, 19, 31, 0.96), rgba(29, 32, 47, 0.92));
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.download-card {
  display: block;
  min-height: 220px;
  padding: 24px;
  border-radius: 28px;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.download-card span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  font-weight: 700;
}

.download-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 167, 255, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(175, 96, 255, 0.09));
}

.ios-page .topbar,
.ios-main {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.ios-main {
  padding: 54px 0 40px;
}

.ios-hero h1 {
  margin: 16px 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.ios-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: stretch;
}

.ios-phone-card {
  position: relative;
  border-radius: 38px;
  padding: 14px;
}

.ios-phone-screen {
  position: relative;
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 660px;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(220, 255, 236, 0.18), transparent 24%),
    radial-gradient(circle at 80% 80%, rgba(100, 255, 191, 0.14), transparent 26%),
    linear-gradient(180deg, #1ebd79 0%, #148456 56%, #0f5e40 100%);
}

.ios-gradient-ring {
  position: absolute;
  inset: 18% 12%;
  border-radius: 50%;
  border: 0;
  box-shadow: none;
}

.ring-secondary {
  display: none;
}

.ios-app-chip,
.ios-status-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.ios-app-chip {
  background: rgba(255, 255, 255, 0.12);
  color: #ecfff4;
  font-weight: 700;
}

.ios-status-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.ios-status-pill {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(248, 255, 251, 0.9);
  font-size: 0.92rem;
}

.ios-phone-screen strong,
.ios-phone-screen small {
  position: relative;
  z-index: 1;
}

.ios-steps {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(26px);
  box-shadow: var(--shadow);
}

.ios-intro-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(65, 225, 126, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(27, 18, 49, 0.92), rgba(54, 28, 92, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ios-intro-card h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.ios-intro-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ios-intro-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.mini-logo {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(18, 18, 32, 0.3);
}

.ios-arrow {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}

.ios-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(22, 13, 40, 0.9), rgba(58, 28, 96, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ios-step span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(162, 101, 255, 1), rgba(219, 109, 255, 0.86));
  font-size: 1.4rem;
  font-weight: 800;
}

.ios-step strong {
  display: block;
  margin-bottom: 8px;
}

.ios-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ios-step code {
  padding: 4px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
}

.reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.tilt-card {
  --parallax-y: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: translate3d(0, var(--parallax-y), 0) perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
  will-change: transform;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .hero-stage {
    min-height: 820px;
  }

  .feature-strip,
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ios-layout {
    grid-template-columns: 1fr;
  }

  .ios-intro-card {
    grid-template-columns: 1fr;
  }

  .shot-wide,
  .shot-tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .topnav {
    justify-content: space-between;
  }

  .stats-row,
  .feature-strip,
  .showcase-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .ios-phone-screen {
    min-height: 560px;
  }

  .aurora {
    width: 28rem;
    height: 28rem;
    filter: blur(38px);
    opacity: 0.42;
  }

  .grid-haze {
    opacity: 0.16;
  }

  .glass-stat,
  .feature-card,
  .shot-card,
  .download-card,
  .device,
  .section-heading,
  .ios-steps {
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 44px rgba(21, 8, 38, 0.28);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .hero-stage {
    min-height: 960px;
  }

  .desktop-card {
    position: relative;
    width: 100%;
  }

  .phone-primary,
  .phone-secondary {
    width: min(44vw, 240px);
    height: 430px;
  }

  .phone-primary {
    top: 460px;
    right: 0;
  }

  .phone-secondary {
    right: auto;
    left: 0;
    bottom: 12px;
  }
}

@media (max-width: 560px) {
  .topbar,
  main,
  .feature-strip,
  .showcase,
  .download {
    width: min(100% - 20px, 1180px);
  }

  .topnav {
    gap: 12px;
    font-size: 0.92rem;
  }

  .chat-layout {
    grid-template-columns: 1fr;
  }

  .chat-sidebar {
    display: none;
  }

  .hero-stage {
    min-height: 1080px;
  }

  .ios-main {
    padding-top: 34px;
  }

  .phone-primary,
  .phone-secondary {
    width: min(62vw, 240px);
    height: 420px;
  }

  .phone-primary {
    top: 510px;
  }

  .phone-secondary {
    bottom: 0;
  }

  .button {
    width: 100%;
  }

  .ios-step {
    grid-template-columns: 54px 1fr;
    padding: 16px;
  }

  .ios-step span {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }

  .element-badge,
  .logo-badge {
    width: 112px;
    height: 112px;
  }

  .ios-phone-screen {
    min-height: 580px;
  }
}

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

  .reveal,
  .tilt-card,
  .orbital,
  .aurora {
    transition: none;
    animation: none;
    transform: none !important;
    opacity: 1;
  }
}
