:root {
  --bg: #000000;
  --surface: rgba(18, 12, 28, 0.65);
  --border: rgba(168, 85, 247, 0.22);
  --text: #ffffff;
  --muted: #a1a1aa;
  --purple: #a855f7;
  --magenta: #e879f9;
  --blue-accent: #6366f1;
  --spark-red: #ff0054;
  --spark-mint: #5dfdcb;
  --spark-gold: #f4b942;
  --spark-sky: #96cdff;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #c026d3 55%, #e879f9 100%);
  --radius: 16px;
  --max: 1120px;
  --font-display: "Roboto Mono", ui-monospace, monospace;
  --font-body: "Open Sans", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

h3 {
  font-size: 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
}

.site-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.65), transparent);
  backdrop-filter: blur(12px);
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.site-header .logo,
.footer-brand .logo {
  line-height: 0;
}

.site-header .logo img,
.footer-brand .logo img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.nav-backdrop {
  display: none;
}

.nav-drawer {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 201;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.nav-toggle-bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(232, 121, 249, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

/* Animated dot field: positions mimic SCSS random spread; colors cycle through palette tokens */
.hero::before,
.hero::after {
  content: ".";
}

.hero::before,
.hero::after,
.hero > .hero-dots-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 3em;
  height: 3em;
  margin: 0;
  padding: 0;
  overflow: visible;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1;
  color: transparent;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: screen;
  text-shadow:
    -0.5em -0.5em 7px rgb(from var(--purple) r g b / 0.9),
    0.914em 1.445em 7px rgb(from var(--magenta) r g b / 0.9),
    1.828em 0.39em 7px rgb(from var(--blue-accent) r g b / 0.9),
    0.241em 2.335em 7px rgb(from var(--spark-red) r g b / 0.9),
    2.155em 1.28em 7px rgb(from var(--spark-mint) r g b / 0.9),
    0.569em 0.225em 7px rgb(from var(--spark-gold) r g b / 0.9),
    1.983em 2.17em 7px rgb(from var(--spark-sky) r g b / 0.9),
    0.397em 1.115em 7px rgb(from var(--purple) r g b / 0.9),
    1.81em -0.236em 7px rgb(from var(--magenta) r g b / 0.9),
    0.224em 2.005em 7px rgb(from var(--blue-accent) r g b / 0.9),
    1.638em 0.984em 7px rgb(from var(--spark-red) r g b / 0.9),
    2.121em -0.038em 7px rgb(from var(--spark-mint) r g b / 0.9),
    1.776em 1.907em 7px rgb(from var(--spark-gold) r g b / 0.9),
    1.431em 0.555em 7px rgb(from var(--spark-sky) r g b / 0.9),
    1.086em 2.467em 7px rgb(from var(--purple) r g b / 0.9),
    0.241em 1.115em 7px rgb(from var(--magenta) r g b / 0.9),
    0.397em -0.236em 7px rgb(from var(--blue-accent) r g b / 0.9),
    0.052em 1.775em 7px rgb(from var(--spark-red) r g b / 0.9),
    -0.293em 0.423em 7px rgb(from var(--spark-mint) r g b / 0.9),
    2.362em 2.368em 7px rgb(from var(--spark-gold) r g b / 0.9),
    2.017em 1.016em 7px rgb(from var(--spark-sky) r g b / 0.9),
    1.672em -0.335em 7px rgb(from var(--purple) r g b / 0.9),
    1.328em 1.61em 7px rgb(from var(--magenta) r g b / 0.9),
    0.983em 0.258em 7px rgb(from var(--blue-accent) r g b / 0.9),
    0.638em 2.203em 7px rgb(from var(--spark-red) r g b / 0.9),
    0.293em 0.852em 7px rgb(from var(--spark-mint) r g b / 0.9),
    0.259em 2.071em 7px rgb(from var(--spark-gold) r g b / 0.9),
    1.672em 1.445em 7px rgb(from var(--spark-sky) r g b / 0.9),
    0.086em 0.093em 7px rgb(from var(--purple) r g b / 0.9),
    1.5em 1.907em 7px rgb(from var(--magenta) r g b / 0.9),
    -0.086em 0.852em 7px rgb(from var(--blue-accent) r g b / 0.9),
    1.328em -0.203em 7px rgb(from var(--spark-red) r g b / 0.9),
    -0.259em 1.742em 7px rgb(from var(--spark-mint) r g b / 0.9),
    1.155em 0.687em 7px rgb(from var(--spark-gold) r g b / 0.9),
    -0.431em -0.368em 7px rgb(from var(--spark-sky) r g b / 0.9),
    0.983em 1.672em 7px rgb(from var(--purple) r g b / 0.9),
    2.397em 0.569em 7px rgb(from var(--magenta) r g b / 0.9),
    0.81em 2.467em 7px rgb(from var(--blue-accent) r g b / 0.9),
    2.224em 1.5em 7px rgb(from var(--spark-red) r g b / 0.9),
    0.638em -0.143em 7px rgb(from var(--spark-mint) r g b / 0.9);
  animation: hero-dots-move 44s -27s infinite ease-in-out alternate;
}

.hero::after {
  animation-duration: 43s;
  animation-delay: -32s;
}

.hero > .hero-dots-layer:nth-of-type(1) {
  animation-duration: 42s;
  animation-delay: -23s;
}

.hero > .hero-dots-layer:nth-of-type(2) {
  animation-duration: 41s;
  animation-delay: -19s;
}

.hero > .hero-dots-layer {
  display: block;
}

@keyframes hero-dots-move {
  from {
    transform: rotate(0deg) scale(12) translateX(-20px);
  }
  to {
    transform: rotate(360deg) scale(18) translateX(20px);
  }
}

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

.hero h1 {
  font-size: 96px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero-lead {
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Trust strip */
.trust-strip {
  position: relative;
  padding: 1.15rem 0;
  border-block: 1px solid var(--border);
  background:
    radial-gradient(ellipse 100% 140% at 50% 50%, rgba(124, 58, 237, 0.1), transparent 65%),
    rgba(12, 10, 18, 0.72);
  backdrop-filter: blur(8px);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2rem;
}

.trust-strip-inner span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
}

/* Sections */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(124, 58, 237, 0.12), transparent 55%);
}

#how {
  background:
    radial-gradient(ellipse 58% 46% at 86% 14%, rgba(124, 58, 237, 0.118), transparent 62%),
    radial-gradient(ellipse 44% 40% at 8% 68%, rgba(99, 102, 241, 0.105), transparent 58%),
    radial-gradient(ellipse 32% 36% at 52% 92%, rgba(192, 38, 211, 0.095), transparent 65%);
}

#pricing {
  background:
    radial-gradient(ellipse 72% 40% at 52% 8%, rgba(168, 85, 247, 0.11), transparent 60%),
    radial-gradient(ellipse 48% 56% at 96% 52%, rgba(124, 58, 237, 0.105), transparent 54%),
    radial-gradient(ellipse 40% 46% at 10% 84%, rgba(99, 102, 241, 0.098), transparent 64%);
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

#gallery .grid-2 {
  grid-template-columns: repeat(2, calc(0.3 * (100% - 1.5rem)));
  justify-content: center;
}

.showcase-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.08);
  transition: box-shadow 0.3s ease, transform 0.42s ease-out,
    opacity 0.75s ease-in-out;
}

.showcase-card:nth-child(2) {
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.12);
}

.showcase-card:nth-child(3) {
  box-shadow: 0 0 40px rgba(192, 38, 211, 0.1);
}

#gallery .showcase-card {
  padding-top: 1.25rem;
  opacity: 0;
  transform: translateX(-2.75rem);
}

#gallery .showcase-card:nth-child(even) {
  transform: translateX(2.75rem);
}

#gallery .showcase-card.showcase-card--visible {
  opacity: 1;
  transform: translateX(0);
}

#gallery .showcase-card.showcase-card--visible:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 48px rgba(168, 85, 247, 0.2);
}

.showcase-card figure {
  margin: 0 1.25rem;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.showcase-card img,
.showcase-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-card video {
  border-radius: calc(var(--radius) / 2);
}

.showcase-body {
  padding: 1.1rem 1.25rem 1.35rem;
}

.showcase-body h3 {
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.showcase-body p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

/* How it works */
.grid-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

#how .grid-features {
  counter-reset: how-step;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(12, 10, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

#how .feature-card {
  counter-increment: how-step;
  opacity: 0;
  transform: translateY(2.25rem);
  transition: opacity 0.4s ease-out,
    transform 0.4s ease-out;
}

#how .feature-row.is-revealed .feature-card {
  opacity: 1;
  transform: translateY(0);
}

#how .feature-row.is-revealed .feature-card:nth-child(1) {
  transition-delay: 0ms;
}

#how .feature-row.is-revealed .feature-card:nth-child(2) {
  transition-delay: 70ms;
}

#how .feature-row.is-revealed .feature-card:nth-child(3) {
  transition-delay: 140ms;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.feature-icon.purple {
  background: rgba(168, 85, 247, 0.2);
  color: var(--purple);
}

.feature-icon.magenta {
  background: rgba(232, 121, 249, 0.18);
  color: var(--magenta);
}

.feature-icon.blue {
  background: rgba(99, 102, 241, 0.2);
  color: var(--blue-accent);
}

#how .feature-icon::before {
  content: counter(how-step);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.feature-card h3 {
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.feature-card p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  background: rgba(10, 8, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

#pricing .pricing-card {
  opacity: 0;
  transform: translateY(2.25rem);
  transition: opacity 0.4s ease-out,
    transform 0.4s ease-out;
}

#pricing .pricing-grid.is-revealed .pricing-card {
  opacity: 1;
  transform: translateY(0);
}

#pricing .pricing-grid.is-revealed .pricing-card:nth-child(2) {
  transition-delay: 80ms;
}

#pricing .pricing-grid.is-revealed .pricing-card:nth-child(1),
#pricing .pricing-grid.is-revealed .pricing-card:nth-child(3) {
  transition-delay: 165ms;
}

.pricing-card.featured {
  border: 1px solid rgba(168, 85, 247, 0.55);
  box-shadow: 0 0 50px rgba(192, 38, 211, 0.25), 0 0 80px rgba(124, 58, 237, 0.15);
  background: linear-gradient(160deg, rgba(30, 20, 50, 0.95), rgba(8, 6, 14, 0.95));
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gradient);
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h3 {
  margin: 0 0 0.5rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.pricing-card ul {
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.pricing-card li svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--purple);
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 16px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(109, 40, 217, 0.15), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  max-width: 280px;
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}

.socials a:hover {
  color: var(--text);
  background: rgba(168, 85, 247, 0.2);
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 1rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 16px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-col address {
  font-style: normal;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  color: var(--muted);
}

/* Responsive — desktop first */
@media (max-width: 991px) {
  #how .grid-features {
    display: grid;
    grid-template-columns: repeat(
      auto-fit,
      minmax(min(100%, 280px), 1fr)
    );
    gap: 1.25rem;
  }

  #how .feature-row {
    display: contents;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 200;
    align-items: stretch;
    justify-content: flex-end;
    pointer-events: none;
  }

  .nav.is-open {
    pointer-events: auto;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.26s ease, visibility 0.26s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .nav.is-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(22rem, 100vw);
    max-width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 1.75rem;
    padding: calc(5rem + env(safe-area-inset-top, 0px)) 1.5rem
      calc(2rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(8, 6, 16, 0.98) 0%, rgba(14, 12, 22, 0.98) 100%);
    border-left: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .nav.is-open .nav-drawer {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.05rem;
  }

  .body--nav-open {
    overflow: hidden;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero-lead {
    font-size: 22px;
  }

  .section-head h2 {
    font-size: 48px;
  }

  #how .grid-features {
    grid-template-columns: 1fr;
  }

  .grid-2,
  #gallery .grid-2,
  .feature-row,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  #gallery .grid-2 {
    justify-items: center;
  }

  #gallery .showcase-card {
    width: 70%;
  }
}

@media (max-width: 576px) {
  .trust-strip-inner {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.75rem;
  }

  .trust-strip-inner span {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-backdrop,
  .nav-drawer,
  .nav-toggle-bar {
    transition: none;
  }

  #gallery .showcase-card {
    opacity: 1;
    transform: none;
    transition: box-shadow 0.3s ease;
  }

  #how .feature-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #pricing .pricing-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}