:root {
  color-scheme: dark;
  --bg: #02070b;
  --panel: rgba(4, 18, 28, 0.76);
  --panel-strong: rgba(5, 24, 39, 0.92);
  --line: rgba(111, 205, 239, 0.24);
  --line-soft: rgba(255, 255, 255, 0.11);
  --text: #f7fbff;
  --muted: rgba(247, 251, 255, 0.72);
  --cyan: #79d8f2;
  --blue: #2b8cff;
  --max: 1480px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 20%, rgba(43, 140, 255, 0.2), transparent 27rem),
    radial-gradient(circle at 18% 74%, rgba(121, 216, 242, 0.1), transparent 31rem),
    linear-gradient(180deg, #02070b 0%, #03111c 48%, #02070b 100%);
}

.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(121, 216, 242, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 216, 242, 0.14) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 70%, transparent);
  animation: digitalDrift 18s linear infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.32));
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: clamp(176px, 18vw, 270px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  text-shadow: 0 0 18px rgba(121, 216, 242, 0.46);
}

.nav-links .pill {
  padding: 12px 25px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.language-switcher select {
  min-width: 58px;
  height: 38px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  background: #07111a;
  color: #fff;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  touch-action: manipulation;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 132px 0 84px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.78) 100%), var(--hero-image) center / cover no-repeat;
  filter: saturate(1.08) contrast(1.08);
}

.hero::after,
.visual-band::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(2, 7, 11, 0.96), transparent);
}

.hero .container::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 52%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(121, 216, 242, 0.8), transparent);
  opacity: 0.5;
  animation: signalSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 8vw;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.74rem, 1vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 8.2vw, 8.2rem);
  line-height: 0.98;
  font-family: var(--display);
  font-weight: 500;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1;
  font-family: var(--display);
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2vw, 2.05rem);
  line-height: 1.12;
  font-family: var(--display);
  font-weight: 600;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.58;
}

.side-manifesto {
  justify-self: end;
  max-width: 230px;
  color: #fff;
  font-weight: 800;
  line-height: 1.82;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.side-manifesto::after,
.mini-rule::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 20px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(121, 216, 242, 0.72);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: rgba(121, 216, 242, 0.12);
}

.btn.light {
  background: #fff;
  color: #02070b;
}

.btn.cyan {
  border-color: var(--cyan);
  color: var(--cyan);
}

.section {
  padding: clamp(54px, 7vw, 108px) 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

.cyan-text {
  color: var(--cyan);
}

.products-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.84fr;
  gap: 18px;
}

.featured-app,
.product-card,
.process-step,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(7, 29, 49, 0.82), rgba(3, 12, 18, 0.78));
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.34);
}

.featured-app {
  min-height: 380px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
  overflow: hidden;
}

.featured-app::after,
.content-card::after,
.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 36%, rgba(121, 216, 242, 0.14) 49%, transparent 62%);
  transform: translateX(-140%);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-app:hover::after,
.content-card:hover::after,
.process-step:hover::before {
  transform: translateX(140%);
}

.featured-app::before,
.product-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--abstract-image, var(--hero-image)) center / cover no-repeat;
  opacity: 0.28;
  z-index: 0;
}

.featured-app > *,
.product-card > *,
.contact-card > * {
  position: relative;
  z-index: 1;
}

.app-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 14px;
  background: linear-gradient(145deg, #194dff, #79d8f2);
  font-size: 2.5rem;
  font-weight: 900;
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin: 2px 0 22px;
  padding: 8px 17px;
  border-radius: 8px;
  background: rgba(121, 216, 242, 0.95);
  color: #041018;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-tag {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(121, 216, 242, 0.54);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(121, 216, 242, 0.08);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-copy {
  min-width: 0;
}

.phone {
  align-self: center;
  justify-self: center;
  width: min(210px, 42vw);
  aspect-ratio: 9 / 18;
  border: 10px solid #080b10;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(121, 216, 242, 0.16), rgba(2, 7, 11, 0.95)), var(--hero-image) center / cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 20px 55px rgba(0, 0, 0, 0.58);
  padding: 22px;
}

.phone-title {
  font-weight: 900;
}

.phone-copy {
  margin-top: 72px;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
}

.product-list {
  display: grid;
  gap: 14px;
}

.product-card {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 52px 1fr 42px;
  gap: 18px;
  align-items: center;
  padding: 20px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateX(5px);
  border-color: rgba(121, 216, 242, 0.72);
}

.product-symbol {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
}

.visual-band {
  position: relative;
  min-height: 274px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
  margin: 0;
}

.visual-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.76)), var(--abstract-image, var(--hero-image)) center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 600ms ease;
}

.visual-interactive::before {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72)), url("assets/interactive-experience.png");
}

.visual-immersive::before {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.76)), url("assets/immersive-experience.png");
}

.visual-vr::before {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.7)), url("assets/virtual-reality.png");
}

.visual-dome::before {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)), url("assets/dome-shows.png");
}

.visual-band:hover::before {
  transform: scale(1.08);
}

.band-content {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 44px;
  align-items: center;
}

.band-content p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.55;
}

.kicker-link {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 18px;
  background: transparent;
  border: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.process-intro,
.process-step {
  min-height: 250px;
  padding: clamp(22px, 3vw, 38px);
  background-color: rgba(2, 7, 11, 0.78);
}

.process-intro {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(6, 24, 36, 0.95), rgba(2, 7, 11, 0.72));
}

.process-intro h2 {
  font-size: clamp(2.2rem, 3.4vw, 4rem);
  line-height: 1.04;
}

.step-number {
  color: #fff;
  font-weight: 900;
}

.step-icon {
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: 2.2rem;
}

.process-step {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(121, 216, 242, 0.72);
  background: rgba(6, 24, 36, 0.82);
}

.process-step::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(121, 216, 242, 0.18);
  transform: rotate(18deg);
}

.process-step svg {
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  color: var(--cyan);
  stroke-width: 1.55;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 92px);
  border: 1px solid rgba(121, 216, 242, 0.32);
  background:
    linear-gradient(120deg, rgba(3, 10, 16, 0.94), rgba(8, 35, 54, 0.72)),
    var(--abstract-image, var(--hero-image)) center / cover no-repeat;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(121, 216, 242, 0.16) 46%, transparent 58%);
  transform: translateX(-120%);
  animation: lightSweep 5.8s ease-in-out infinite;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta .lead {
  max-width: 780px;
}

.page-hero {
  min-height: 64vh;
}

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

.content-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(4, 18, 28, 0.7);
  transition: transform 180ms ease, border-color 180ms ease;
}

.content-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 227, 255, 0.7);
}

.content-card p {
  color: var(--muted);
  line-height: 1.55;
}

.content-card .status-tag {
  margin: 6px 0 24px;
}

.content-card .kicker-link {
  display: inline-flex;
  margin-top: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.contact-team {
  position: relative;
  grid-column: 1 / -1;
  min-height: clamp(260px, 36vw, 520px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #031019;
}

.contact-team::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 11, 0.05), rgba(2, 7, 11, 0.34)),
    linear-gradient(90deg, rgba(2, 7, 11, 0.44), transparent 42%, rgba(2, 7, 11, 0.35));
  pointer-events: none;
}

.contact-team img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-team:hover img {
  transform: scale(1.035);
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  min-height: 430px;
}

.contact-list {
  display: grid;
  gap: 18px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  padding: 17px 18px;
  border-radius: 0;
  font: inherit;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.site-footer {
  padding: 46px 0;
  background: #02070b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
}

.footer-brand img {
  width: 230px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-links {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  justify-content: end;
  gap: 22px;
}

html:not(.js) .reveal,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 29;
    background: #02070b;
  }

  .nav {
    width: min(var(--max), calc(100% - 32px));
    height: 72px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .language-switcher {
    margin-left: auto;
    margin-right: 2px;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
    z-index: 50;
    padding: 112px 28px 42px;
    isolation: isolate;
    background: #02070b;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.84);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.22;
    background-image:
      linear-gradient(rgba(121, 216, 242, 0.16) 1px, transparent 1px),
      linear-gradient(90deg, rgba(121, 216, 242, 0.14) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, transparent 0, black 24%, black 84%, transparent 100%);
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
  }

  .hero-grid,
  .products-grid,
  .band-content,
  .contact-grid,
  .footer-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .side-manifesto {
    justify-self: start;
  }

  .featured-app,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .visual-band {
    width: calc(100% - 32px);
    margin: 18px auto;
    min-height: 360px;
    border: 1px solid var(--line);
  }

  .visual-interactive::before {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.88)), url("assets/interactive-experience.png");
  }

  .visual-immersive::before {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.9)), url("assets/immersive-experience.png");
  }

  .visual-vr::before {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.88)), url("assets/virtual-reality.png");
  }

  .visual-dome::before {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.88)), url("assets/dome-shows.png");
  }

  .band-content {
    padding: 44px 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links {
    justify-content: start;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: 92vh;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(2.86rem, 14vw, 4.35rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.25rem);
    line-height: 1.04;
  }

  .eyebrow {
    letter-spacing: 0.28em;
    line-height: 1.45;
  }

  .section-heading {
    display: block;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .nav-links {
    padding: 104px 20px 42px;
    align-items: stretch;
    text-align: center;
  }

  .nav-links a {
    width: 100%;
    padding: 15px 16px;
  }

  .product-card {
    grid-template-columns: 38px 1fr;
    padding: 20px;
  }

  .product-card .arrow {
    grid-column: 2;
    width: 36px;
    height: 36px;
  }

  .visual-band {
    width: calc(100% - 28px);
    margin: 14px auto;
    min-height: 420px;
  }

  .band-content {
    gap: 24px;
    padding: 38px 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 34px 22px;
  }
}

@keyframes digitalDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 80px 80px, 80px 80px;
  }
}

@keyframes lightSweep {
  0%,
  42% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes signalSweep {
  0%,
  100% {
    opacity: 0;
    transform: translateY(-14%);
  }
  35%,
  65% {
    opacity: 0.55;
    transform: translateY(14%);
  }
}
