:root {
  --page: #eef2f6;
  --panel: #ffffff;
  --panel-soft: #fbfbfd;
  --google-panel: #f8f9fb;
  --hero-blue: #dff3fd;
  --ink: #1d1d1f;
  --ink-blue: #16364c;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.12);
  --line-dark: rgba(29, 29, 31, 0.28);
  --block: #eaf2f7;
  --block-dark: #111111;
  --blue: #0071e3;
  --google-blue: #1a73e8;
  --green: #29a84a;
  --orange: #d64a25;
  --purple: #a142f4;
  --yellow: #fbbc04;
  --nokia-blue: #124ee8;
  --footer: #f6f6f6;
  --radius: 8px;
  --gutter: 48px;
  --bleed-gutter: 8px;
  --max-width: 1280px;
  --shadow-soft: 0 1px 2px rgba(16, 40, 60, 0.04), 0 8px 24px rgba(16, 40, 60, 0.06);
  --shadow-lift: 0 2px 5px rgba(16, 40, 60, 0.06), 0 16px 40px rgba(16, 40, 60, 0.1);
  --shadow-media: 0 1px 2px rgba(16, 40, 60, 0.05), 0 14px 34px rgba(16, 40, 60, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.45);
  outline-offset: 3px;
}

.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;
}

.wire-nav {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
}

body.nav-open .wire-nav {
  background: transparent;
}

.wire-nav-inner {
  position: relative;
  width: min(100%, var(--max-width));
  min-height: 74px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.wire-nav-logo {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.wire-nav-logo svg {
  width: 31px;
  height: 31px;
  display: block;
}

.wire-nav-logo path {
  fill: none;
  stroke: url("#sprout-shine");
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wire-nav-logo:hover,
.wire-nav-logo:focus-visible {
  color: var(--blue);
  transform: translateY(-1px);
}

.wire-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  color: rgba(255, 255, 255, 0.92);
}

.wire-nav-links {
  position: absolute;
  top: calc(100% + 8px);
  right: var(--gutter);
  width: min(260px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  backdrop-filter: blur(28px) saturate(190%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 18px 44px rgba(15, 20, 32, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.wire-nav-links.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.wire-nav-links a {
  width: 100%;
  min-height: 46px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink-blue);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.wire-nav-links a::after {
  content: "›";
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}

.wire-nav-links a:hover,
.wire-nav-links a:focus-visible {
  background: rgba(0, 113, 227, 0.09);
  color: var(--blue);
}

.nav-toggle {
  position: relative;
  z-index: 3;
  display: inline-grid;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  place-items: center;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: var(--blue);
  transform: translateY(-1px);
}

.nav-toggle-line {
  display: none;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  width: 25px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff 0%, #8fc8ff 36%, #bf5af2 72%, #ffffff 100%);
  background-size: 220% 100%;
  box-shadow: 0 0 18px rgba(10, 132, 255, 0.26);
  animation: text-shine 3.8s ease-in-out infinite;
}

.nav-toggle::before {
  transform: translateY(5px);
}

.nav-toggle::after {
  transform: translateY(-5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line {
  opacity: 1;
  transform: none;
}

.wireframe-page {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  overflow: hidden;
  background: var(--panel);
  border-inline: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(16, 40, 60, 0.07);
}

.placeholder {
  border: 1.5px dashed var(--line-dark);
  background:
    linear-gradient(135deg, transparent 49.4%, rgba(70, 104, 127, 0.18) 49.8%, rgba(70, 104, 127, 0.18) 50.2%, transparent 50.6%),
    linear-gradient(45deg, transparent 49.4%, rgba(70, 104, 127, 0.18) 49.8%, rgba(70, 104, 127, 0.18) 50.2%, transparent 50.6%),
    var(--block);
}

.label,
.mini-label {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-label {
  font-size: 11px;
}

.line {
  display: block;
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: var(--line);
}

.line.medium {
  width: 72%;
}

.line.short {
  width: 48%;
}

.line.light {
  background: rgba(255, 255, 255, 0.62);
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

@keyframes text-shine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes team-carousel {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes portfolio-carousel-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--portfolio-loop)));
  }
}

@keyframes hero-glow {
  0% {
    background-position: 0% 50%, 100% 0%, 0 0;
  }
  50% {
    background-position: 100% 50%, 0% 100%, 0 0;
  }
  100% {
    background-position: 0% 50%, 100% 0%, 0 0;
  }
}

@keyframes hero-sheen {
  0% {
    transform: translateX(-120%) skewX(-18deg);
  }
  48%,
  100% {
    transform: translateX(130%) skewX(-18deg);
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    filter: saturate(1);
    text-shadow: 0 0 0 rgba(0, 113, 227, 0);
  }
  50% {
    filter: saturate(1.22);
    text-shadow: 0 10px 34px rgba(0, 113, 227, 0.18);
  }
}

@keyframes metric-rise {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes metric-section-rise {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(42px) scale(0.985);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes metric-scan {
  from {
    transform: translateX(-130%) skewX(-18deg);
  }
  to {
    transform: translateX(150%) skewX(-18deg);
  }
}

.hero-wire {
  padding: 108px var(--gutter) 48px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, #dff3fd 0%, #edf8ff 28%, #d8f4ff 48%, #f2e9ff 68%, #dff3fd 100%),
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.72) 44%, rgba(255, 255, 255, 0) 58%),
    var(--hero-blue);
  background-size: 260% 260%, 220% 100%, auto;
  border-bottom: 0;
  animation: hero-glow 9s ease-in-out infinite;
  isolation: isolate;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 9px 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #1f2b33;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

/* Shiny animated gradient border */
.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.6px;
  background: linear-gradient(92deg, #0a84ff, #bf5af2, #ff375f, #0a84ff);
  background-size: 220% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: cta-shine 3.4s ease-in-out infinite;
}

@keyframes cta-shine {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.78);
}

.hero-wire::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 66%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 92px);
  opacity: 0.62;
  transform: translateX(-100%) skewX(-18deg);
  animation: hero-sheen 5.8s ease-in-out infinite;
}

.hero-wire h1 {
  margin-top: 18px;
  background: linear-gradient(92deg, #102d44 0%, #0a84ff 32%, #bf5af2 52%, #ff375f 68%, #102d44 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(40px, 5vw, 62px);
  animation: text-shine 4.8s ease-in-out infinite, soft-pulse 5.2s ease-in-out infinite;
}

.hero-wire .label {
  color: #1f2b33;
  text-shadow: 0 8px 28px rgba(10, 132, 255, 0.12);
}

.hero-media {
  width: min(100%, 1088px);
  aspect-ratio: 1090 / 455;
  margin-top: 36px;
  border-radius: 8px;
  box-shadow: var(--shadow-media);
  position: relative;
  overflow: hidden;
}

.hero-puzzle {
  width: min(100%, 860px);
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.88), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(191, 90, 242, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(10, 132, 255, 0.2), rgba(191, 90, 242, 0.18)),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(16, 40, 60, 0.05),
    0 20px 54px rgba(16, 40, 60, 0.14);
  isolation: isolate;
}

.hero-puzzle::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 3;
  border-radius: 7px;
  box-shadow: inset 0 -36px 80px rgba(10, 132, 255, 0.12);
  pointer-events: none;
}

.puzzle-tile {
  position: absolute;
  z-index: 1;
  --float-x: 0px;
  --float-y: -4px;
  --float-scale: 1.01;
  margin: 0;
  overflow: hidden;
  border-radius: 9px;
  background: #dff3fd;
  border: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 30px rgba(16, 40, 60, 0.14);
  transform: translate3d(0, 0, 0) scale(1);
  animation: puzzle-drift 8.5s ease-in-out infinite;
  will-change: transform;
}

.puzzle-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.03) contrast(1.02);
}

.puzzle-tile-a {
  --float-x: 3px;
  --float-y: -5px;
  top: 7%;
  left: 6%;
  width: 58%;
  height: 57%;
  z-index: 2;
}

.puzzle-tile-b {
  --float-x: -3px;
  --float-y: 4px;
  animation-delay: -2s;
  top: 12%;
  left: 68%;
  width: 26%;
  height: 46%;
  z-index: 4;
}

.puzzle-tile-c {
  --float-x: -4px;
  --float-y: -3px;
  animation-delay: -4s;
  top: 60%;
  left: 32%;
  width: 62%;
  height: 31%;
  z-index: 2;
}

.puzzle-tile-d {
  --float-x: 2px;
  --float-y: 3px;
  animation-delay: -6s;
  top: 67%;
  left: 7%;
  width: 23%;
  height: 23%;
  z-index: 5;
}

@keyframes puzzle-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(var(--float-x), var(--float-y), 0) scale(var(--float-scale));
  }
}

.hero-media.placeholder {
  border: 1px solid rgba(10, 132, 255, 0.24);
  background:
    linear-gradient(135deg, transparent 49.4%, rgba(10, 132, 255, 0.12) 49.8%, rgba(10, 132, 255, 0.12) 50.2%, transparent 50.6%),
    linear-gradient(45deg, transparent 49.4%, rgba(191, 90, 242, 0.12) 49.8%, rgba(191, 90, 242, 0.12) 50.2%, transparent 50.6%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(223, 243, 253, 0.72), rgba(255, 255, 255, 0.78));
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -28%;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.72) 48%, transparent 62%);
  transform: translateX(-120%) skewX(-16deg);
  animation: hero-sheen 4.6s ease-in-out infinite;
}

.caption {
  margin: 28px 0 0;
  background: linear-gradient(92deg, #0a84ff 0%, #bf5af2 52%, #ff375f 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 22px;
  font-weight: 800;
  animation: text-shine 3.8s ease-in-out infinite, soft-pulse 4.4s ease-in-out infinite;
}

.metrics-strip {
  position: relative;
  margin-top: -28px;
  padding: 64px var(--gutter) 46px;
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, #f7f9fb 28%, #fcfcfd 64%, #ffffff 100%);
  border-radius: 28px 28px 0 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow: 0 -18px 42px rgba(16, 40, 60, 0.05);
  isolation: isolate;
}

.metrics-strip::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 150px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(10, 132, 255, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(223, 243, 253, 0.5), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.metrics-strip::after {
  content: "";
  position: absolute;
  inset: 12px -20% auto;
  height: 72px;
  z-index: -1;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.74) 48%, transparent 68%);
  opacity: 0;
  transform: translateX(-130%) skewX(-18deg);
}

.metrics-reveal.is-visible::after {
  opacity: 1;
  animation: metric-scan 1.15s ease-out both;
}

.metrics-intro {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.metrics-intro .mini-label,
.metric-block .mini-label {
  color: rgba(29, 29, 31, 0.56);
  font-weight: 600;
  letter-spacing: 0;
}

.metrics-intro h2 {
  max-width: 12ch;
  margin: 0 auto;
  background: linear-gradient(92deg, #173950 0%, #1568bd 48%, #4587ff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 640;
  line-height: 1.07;
  animation: text-shine 5s ease-in-out infinite;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-card-primary {
  grid-column: 1 / -1;
}

.metric-card {
  position: relative;
  min-height: 144px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.07);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 253, 0.98)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 1px 2px rgba(16, 40, 60, 0.04),
    0 10px 24px rgba(16, 40, 60, 0.055);
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.34), rgba(191, 90, 242, 0.2), rgba(29, 29, 31, 0.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.metric-card-primary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  text-align: left;
}

.metric-card-primary > p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.22;
}

/* Scroll-linked hero -> main transition.
   --enter (0..1) is set on the main section, --leave (0..1) on the hero,
   updated per scroll frame in the inline script. Fallbacks keep everything
   visible when JS is off or reduced motion is preferred. */
.js-ready .metrics-reveal {
  --enter: 1;
  opacity: var(--enter);
  transform: translateY(calc((1 - var(--enter)) * 48px)) scale(calc(0.985 + var(--enter) * 0.015));
  filter: blur(calc((1 - var(--enter)) * 12px));
  will-change: opacity, transform, filter;
}

.js-ready .metrics-reveal .metrics-intro,
.js-ready .metrics-reveal .metric-card {
  transform: translateY(calc((1 - var(--enter, 1)) * 16px));
}

.js-ready .hero-wire {
  --leave: 0;
}

.js-ready .hero-wire > * {
  transform: translateY(calc(var(--leave) * -30px));
  opacity: calc(1 - var(--leave) * 0.6);
  will-change: opacity, transform;
}

.chip-placeholder {
  width: 96px;
  height: 96px;
  border: 3px solid transparent;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 620;
  line-height: 1;
  text-align: center;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(120deg, #223b4b 0%, #0a84ff 46%, #bf5af2 74%, #2f243d 100%) border-box;
  box-shadow: 0 10px 24px rgba(22, 54, 76, 0.07);
}

.chip-placeholder span,
.chip-placeholder small {
  background: linear-gradient(90deg, #223b4b 0%, #0a84ff 52%, #8c67f4 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shine 4s ease-in-out infinite;
}

.chip-placeholder span {
  font-size: 31px;
  font-weight: 640;
  letter-spacing: 0;
}

.chip-placeholder small {
  display: block;
  margin-top: 0;
  font-size: 14px;
  font-weight: 600;
}

.metric-block strong {
  display: block;
  margin: 8px 0 10px;
  background: linear-gradient(92deg, #1765aa 0%, #0a84ff 52%, #7866f4 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 640;
  letter-spacing: 0;
  line-height: 0.94;
  animation: text-shine 4.6s ease-in-out infinite;
}

.metric-copy {
  display: block;
  max-width: 190px;
  color: rgba(22, 54, 76, 0.72);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.16;
}

.metric-block .line + .line {
  margin-top: 8px;
}

.wide-media {
  height: 300px;
  background-color: var(--page);
  border-inline: 0;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -1px 0 rgba(16, 40, 60, 0.06);
}

.legacy-search {
  padding: 68px var(--gutter) 64px;
  background: #ffffff;
  text-align: center;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.legacy-search h2 {
  max-width: 780px;
  margin: 0 auto 44px;
  background: linear-gradient(92deg, #102d44 0%, #0a84ff 34%, #bf5af2 66%, #ff2d78 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 560;
  line-height: 1.04;
  animation: text-shine 5s ease-in-out infinite;
}

.legacy-stage {
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 1 / 0.92;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
  box-shadow: 0 22px 52px rgba(16, 40, 60, 0.1);
  isolation: isolate;
}

.legacy-world {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  border-radius: inherit;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.56s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.56s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.legacy-world.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.legacy-world.is-leaving {
  z-index: 1;
  opacity: 1;
  transform: translate3d(0, -100%, 0);
}

.legacy-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}

.legacy-search-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: min(78%, 520px);
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  background:
    linear-gradient(100deg, rgba(12, 45, 72, 0.16), rgba(255, 255, 255, 0.06) 46%, rgba(112, 76, 225, 0.16)),
    rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(6px) saturate(180%);
  backdrop-filter: blur(6px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(255, 255, 255, 0.16),
    0 8px 18px rgba(16, 40, 60, 0.08);
  transform: translate(-50%, -50%);
}

.legacy-search-icon {
  position: relative;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
}

.legacy-search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 1.6px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.legacy-keyword {
  min-width: 0;
  overflow: hidden;
  font-size: clamp(14px, 1.9vw, 19px);
  font-weight: 560;
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(16, 40, 60, 0.18);
}

.legacy-keyword.is-switching {
  animation: legacy-keyword-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes legacy-keyword-rise {
  from {
    opacity: 0.45;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legacy-search > p {
  max-width: 760px;
  margin: 44px auto 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 500;
  line-height: 1.16;
}

.center-copy {
  position: relative;
  min-height: 748px;
  padding: 82px var(--gutter) 50px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 0 68%, #f7fbff 68% 100%),
    radial-gradient(circle at 18% 24%, rgba(223, 243, 253, 0.34), transparent 26%),
    radial-gradient(circle at 88% 56%, rgba(191, 90, 242, 0.34), transparent 28%),
    linear-gradient(180deg, #102d44 0%, #0d6fcf 48%, #426fff 75%, #8c67f4 100%);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.center-copy::before {
  content: "";
  position: absolute;
  inset: 0 0 32%;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.1)),
    radial-gradient(circle at 28% 38%, rgba(255, 255, 255, 0.24), transparent 19%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(7, 34, 58, 0.24));
  pointer-events: none;
}

.center-copy::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 126px;
  z-index: 1;
  width: min(82%, 350px);
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(7, 34, 58, 0.26), transparent 66%);
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}

.center-copy .label {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(7, 34, 58, 0.38);
}

.center-copy h2 {
  position: relative;
  z-index: 2;
  max-width: 9.4ch;
  margin-top: 20px;
  color: #ffffff;
  font-size: clamp(48px, 9.4vw, 78px);
  font-weight: 780;
  line-height: 0.94;
  text-shadow: 0 18px 44px rgba(7, 34, 58, 0.48);
}

.about-echo {
  position: relative;
  z-index: 1;
  height: 94px;
  margin-top: -4px;
  display: grid;
  justify-items: center;
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(28px, 6.3vw, 48px);
  font-weight: 760;
  line-height: 0.72;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 82%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 82%);
}

.about-echo span {
  display: block;
}

.about-object {
  position: relative;
  z-index: 3;
  width: min(74vw, 300px);
  min-height: 264px;
  margin-top: 4px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 31px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  padding: 9px 9px 20px;
  color: #16364c;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(239, 247, 253, 0.94)),
    #ffffff;
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -18px 38px rgba(10, 132, 255, 0.08),
    0 18px 28px rgba(7, 34, 58, 0.18),
    0 42px 84px rgba(7, 34, 58, 0.28);
}

.about-object::before {
  content: "";
  position: absolute;
  inset: 9px 9px auto;
  height: 166px;
  z-index: 2;
  border-radius: 25px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%, rgba(7, 34, 58, 0.4));
  pointer-events: none;
}

.about-object-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 166px;
  border-radius: 25px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 14px 28px rgba(7, 34, 58, 0.12);
}

.about-object-copy {
  position: relative;
  z-index: 3;
  max-width: 210px;
  margin-top: 2px;
  color: rgba(22, 54, 76, 0.86);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.18;
}

.about-object-copy::before {
  content: "";
  display: block;
  width: 88px;
  height: 6px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a84ff, #8c67f4);
  opacity: 0.36;
}

.copy-lines {
  width: min(100%, 850px);
  margin-top: 48px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.body-copy {
  position: relative;
  z-index: 4;
  max-width: 850px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.center-copy a,
.split-copy a,
.feature-side a,
.story-card a {
  margin-top: 28px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.split-promo {
  padding: 62px var(--gutter);
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 80px;
  background: var(--panel-soft);
  border-bottom: 1px solid var(--line);
}

.split-copy {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.split-copy h2 {
  max-width: 470px;
  font-size: clamp(32px, 3.7vw, 44px);
}

.split-copy .body-copy,
.feature-side .body-copy {
  max-width: 460px;
  margin: 0;
  text-align: left;
}

.portfolio-carousel {
  --portfolio-card: 300px;
  --portfolio-gap: 14px;
  --portfolio-loop: calc((var(--portfolio-card) + var(--portfolio-gap)) * 4);
  width: var(--portfolio-card);
  min-height: 280px;
  justify-self: center;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
  position: relative;
  display: flex;
  align-items: center;
}

.portfolio-carousel::before,
.portfolio-carousel::after {
  content: none;
}

.portfolio-track {
  width: max-content;
  display: flex;
  gap: var(--portfolio-gap);
  padding: 0;
  animation: portfolio-carousel-scroll 18s linear infinite;
  will-change: transform;
}

.portfolio-carousel:hover .portfolio-track,
.portfolio-carousel:focus-within .portfolio-track {
  animation-play-state: paused;
}

.portfolio-name-card {
  flex: 0 0 var(--portfolio-card);
  min-height: 280px;
  padding: 30px 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(7, 20, 32, 0.22) 0%, rgba(7, 20, 32, 0.14) 38%, rgba(7, 20, 32, 0.66) 100%),
    linear-gradient(135deg, rgba(10, 132, 255, 0.24), rgba(191, 90, 242, 0.22)),
    var(--portfolio-bg) center / cover no-repeat,
    rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 42px rgba(16, 40, 60, 0.16);
  display: grid;
  align-content: space-between;
  gap: 18px;
  overflow: hidden;
}

.portfolio-name-card p,
.portfolio-name-card h3,
.portfolio-name-card span {
  margin: 0;
}

.portfolio-name-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.portfolio-name-card h3 {
  background: linear-gradient(92deg, #ffffff 0%, #dff3fd 30%, #8fc8ff 54%, #f1d7ff 82%, #ffffff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(29px, 3.5vw, 42px);
  font-weight: 620;
  line-height: 1.02;
  animation: text-shine 5s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.24));
}

.portfolio-name-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 560;
  line-height: 1.3;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.34);
}

.card-section {
  padding: 48px var(--gutter) 56px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.card-section h2 {
  max-width: 570px;
  margin-bottom: 42px;
  font-size: clamp(36px, 4vw, 50px);
}

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

.benefit-set {
  display: contents;
}

.benefit-set-clone {
  display: none;
}

.benefit-card {
  min-height: 252px;
  padding: 40px 24px 32px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: var(--radius);
  background: var(--google-panel);
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.benefit-card:hover,
.benefit-card:focus-within {
  border-color: rgba(0, 113, 227, 0.2);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.icon-placeholder {
  width: 42px;
  height: 42px;
  border: 2px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(52, 168, 83, 0.14);
  display: grid;
  place-items: center;
  color: #34a853;
  font-size: 18px;
  font-weight: 900;
}

.benefit-card:nth-child(2) .icon-placeholder {
  background: rgba(161, 66, 244, 0.14);
  color: var(--purple);
}

.benefit-card:nth-child(3) .icon-placeholder {
  background: rgba(251, 188, 4, 0.18);
  color: #c08300;
}

.benefit-text {
  min-height: 43px;
  margin: 0;
  color: #3c4043;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.18;
}

.benefit-card button,
.banner-actions a,
.footer-action button {
  min-width: 82px;
  padding: 8px 16px;
  border: 1.5px solid #5f6368;
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.banner-section {
  padding: 16px var(--bleed-gutter) 0;
  background: var(--page);
}

.banner-media {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--block-dark);
  border-color: #3a3a3a;
  box-shadow: var(--shadow-media);
}

.banner-media.placeholder {
  background:
    linear-gradient(135deg, transparent 49.4%, rgba(255, 255, 255, 0.12) 49.8%, rgba(255, 255, 255, 0.12) 50.2%, transparent 50.6%),
    linear-gradient(45deg, transparent 49.4%, rgba(255, 255, 255, 0.12) 49.8%, rgba(255, 255, 255, 0.12) 50.2%, transparent 50.6%),
    linear-gradient(120deg, #153e75 0%, #786f82 52%, #f2ac60 100%);
}

.banner-copy {
  position: absolute;
  left: 42px;
  bottom: 42px;
  width: min(360px, calc(100% - 84px));
  display: grid;
  gap: 12px;
}

.banner-copy h2 {
  background: linear-gradient(92deg, #ffffff 0%, #e8f3ff 28%, #ffffff 48%, #ffd7a5 76%, #ffffff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 44px;
  animation: text-shine 5s ease-in-out infinite;
}

.banner-copy > p:not(.label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.banner-copy .label {
  color: rgba(255, 255, 255, 0.72);
}

.banner-actions {
  position: absolute;
  right: 38px;
  bottom: 42px;
  display: flex;
  gap: 9px;
}

.banner-actions a {
  background: #ffffff;
  color: #6a4d3a;
}

.banner-actions a:last-child {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.feature-section {
  padding: 56px var(--gutter) 64px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.feature-section > h2 {
  max-width: 700px;
  margin-bottom: 58px;
  font-size: clamp(38px, 4.4vw, 52px);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 840px) 350px;
  gap: 24px;
  align-items: start;
}

.feature-main {
  position: relative;
  height: 620px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-media);
}

.feature-main.placeholder {
  background:
    linear-gradient(135deg, transparent 49.4%, rgba(32, 33, 36, 0.16) 49.8%, rgba(32, 33, 36, 0.16) 50.2%, transparent 50.6%),
    linear-gradient(45deg, transparent 49.4%, rgba(32, 33, 36, 0.16) 49.8%, rgba(32, 33, 36, 0.16) 50.2%, transparent 50.6%),
    #f2f5fa;
}

.feature-main-copy {
  position: absolute;
  left: 32px;
  bottom: 34px;
  width: min(360px, calc(100% - 88px));
  display: grid;
  gap: 10px;
}

.feature-main-copy h3 {
  color: #202124;
  font-size: clamp(36px, 5vw, 58px);
}

.feature-main-copy p:not(.label) {
  margin: 0;
  color: #3c4043;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.feature-main button {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(60, 64, 67, 0.25);
  border-radius: 50%;
  background: var(--panel);
  color: #5f6368;
  font-size: 25px;
  line-height: 1;
}

.feature-side a,
.story-card a {
  color: var(--google-blue);
}

.story-card p,
.faq-list summary,
.faq-section h2,
.feature-section > h2,
.card-section h2,
.stories-section h2,
.feature-side h3 {
  color: #202124;
}

:is(.split-copy h2, .card-section h2, .feature-section > h2, .feature-main-copy h3, .stories-section h2, .faq-section h2, .footer-logo) {
  background: linear-gradient(92deg, #16364c 0%, #0a84ff 34%, #bf5af2 58%, #ff6a33 78%, #16364c 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shine 5.4s ease-in-out infinite;
}

.feature-side {
  display: grid;
  gap: 18px;
}

.side-media {
  width: 350px;
  height: 470px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-media);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-side h3 {
  font-size: 26px;
  line-height: 1.13;
}

.stories-section {
  padding: 48px var(--gutter) 56px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.stories-section h2 {
  margin-bottom: 52px;
  font-size: clamp(34px, 3.8vw, 46px);
}

.story-frame {
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 340px);
  justify-content: space-between;
  gap: 26px;
}

.story-card {
  text-align: center;
}

.story-card:hover .story-media,
.story-card:focus-within .story-media,
.feature-side:hover .side-media,
.feature-side:focus-within .side-media {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.story-media {
  width: 340px;
  height: 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-media);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.story-card p {
  min-height: 42px;
  max-width: 300px;
  margin: 21px auto 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.arrow {
  position: absolute;
  top: 98px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 1px solid #f1f3f4;
  border-radius: 50%;
  background: #f1f3f4;
  color: #5f6368;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
}

.arrow-left {
  left: -62px;
}

.arrow-right {
  right: -62px;
}

.dots {
  margin-top: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8c8ca;
}

.dots span:first-child {
  background: #202124;
}

.faq-section {
  padding: 58px var(--gutter) 54px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 88px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.faq-section h2 {
  font-size: 28px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 73px;
  padding: 24px 48px 22px 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 20px;
  color: var(--muted);
  font-size: 25px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 50px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 42px var(--gutter) 46px;
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 120px repeat(3, minmax(120px, 1fr)) minmax(180px, 1.4fr);
  gap: 35px;
  align-items: start;
}

.footer-logo {
  color: var(--nokia-blue);
  font-size: 22px;
  font-weight: 800;
}

.footer-action > a {
  color: var(--nokia-blue);
}

.footer-action button {
  border-color: var(--nokia-blue);
  color: var(--nokia-blue);
}

.footer-grid h3 {
  margin: 0 0 15px;
  font-size: 12px;
  font-weight: 800;
}

.footer-grid nav,
.footer-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a,
.footer-bottom {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}

.footer-grid a {
  margin-bottom: 8px;
}

.footer-action button {
  margin: 8px 0 18px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row span {
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: var(--block);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
}

.footer-logo {
  background: linear-gradient(92deg, #124ee8 0%, #0a84ff 34%, #bf5af2 58%, #ff6a33 78%, #124ee8 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shine 5.4s ease-in-out infinite;
}

@media (max-width: 1100px) {
  :root {
    --gutter: 40px;
  }

  .metrics-strip {
    gap: 36px;
  }

  .split-promo {
    gap: 56px;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .side-media {
    width: 320px;
  }

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

  .story-media {
    width: 100%;
  }

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

@media (max-width: 820px) {
  :root {
    --gutter: 28px;
    --bleed-gutter: 6px;
  }

  .wire-nav {
    transform: translate3d(0, 0, 0);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease, box-shadow 0.24s ease;
    will-change: transform;
  }

  .wire-nav-inner {
    min-height: 52px;
    padding: 0 22px 0 14px;
  }

  body.nav-hidden:not(.nav-open) .wire-nav {
    opacity: 0;
    pointer-events: none;
    box-shadow: none;
    transform: translate3d(0, -112%, 0);
  }

  .wire-nav-logo {
    width: 42px;
    height: 42px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border-radius: 50%;
  }

  .wire-nav-logo svg {
    width: 34px;
    height: 34px;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
    background: transparent;
    box-shadow: none;
  }

  .wire-nav-actions {
    gap: 0;
  }

  .nav-toggle-line {
    display: none;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    width: 25px;
    height: 2px;
    background: currentColor;
  }

  .nav-toggle::before {
    transform: translateY(5px);
  }

  .nav-toggle::after {
    transform: translateY(-5px);
  }

  .wire-nav-links {
    position: absolute;
    top: calc(100% + 7px);
    left: 12px;
    right: 12px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    backdrop-filter: blur(28px) saturate(190%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.85),
      0 18px 44px rgba(15, 20, 32, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .wire-nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .wire-nav-links a {
    width: 100%;
    min-height: 46px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.42);
    color: var(--ink-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .wire-nav-links a::after {
    content: "›";
    color: var(--blue);
    font-size: 18px;
    line-height: 1;
  }

  .wire-nav-links a:hover,
  .wire-nav-links a:focus-visible {
    background: var(--panel-soft);
    border-color: rgba(0, 113, 227, 0.18);
  }

  .hero-wire {
    min-height: auto;
    padding: 96px var(--gutter) 42px;
  }

  .hero-media {
    margin-top: 22px;
    aspect-ratio: auto;
    height: 30vh;
  }

  .hero-puzzle {
    width: min(100%, 540px);
    height: auto;
    aspect-ratio: 1.14 / 1;
  }

  .legacy-search {
    padding: 50px var(--gutter) 46px;
  }

  .legacy-search h2 {
    margin-bottom: 34px;
    font-size: clamp(40px, 11vw, 58px);
  }

  .legacy-stage {
    aspect-ratio: 1 / 1.08;
    border-radius: 20px;
  }

  .legacy-image {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }

  .legacy-search-pill {
    width: 82%;
    min-height: 32px;
    padding: 0 12px;
    gap: 6px;
  }

  .legacy-search-icon {
    width: 11px;
    height: 11px;
    border-width: 1.5px;
  }

  .legacy-keyword {
    font-size: clamp(12px, 3.4vw, 16px);
  }

  .legacy-search > p {
    margin-top: 34px;
    font-size: clamp(23px, 6.2vw, 34px);
  }

  .caption {
    margin-top: 22px;
    max-width: 290px;
    font-size: 18px;
    line-height: 1.24;
    text-align: center;
  }

  .metrics-strip,
  .benefit-grid,
  .feature-grid,
  .story-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .metrics-strip {
    margin-top: -24px;
    padding: 54px var(--gutter) 44px;
    gap: 22px;
    border-radius: 22px 22px 0 0;
  }

  .metrics-intro {
    text-align: center;
  }

  .metrics-intro h2 {
    max-width: 12ch;
    font-size: 27px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 374px);
    margin-inline: auto;
    gap: 12px;
  }

  .metric-card {
    min-height: auto;
    padding: 14px;
  }

  .metric-card-primary {
    min-height: 96px;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .metric-card-primary > p {
    max-width: 135px;
    font-size: 12px;
  }

  .chip-placeholder {
    width: 66px;
    height: 66px;
    gap: 5px;
  }

  .chip-placeholder span {
    font-size: 23px;
  }

  .chip-placeholder small {
    font-size: 10px;
  }

  .metric-block strong {
    margin: 7px 0 8px;
    font-size: clamp(28px, 7vw, 36px);
    white-space: nowrap;
  }

  .metric-copy {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.2;
  }

  .metric-block.metric-card {
    display: block;
    text-align: center;
  }

  .metric-block.metric-card .mini-label,
  .metric-block.metric-card .metric-copy {
    grid-column: auto;
  }

  .metric-block.metric-card strong {
    grid-column: auto;
    grid-row: auto;
    text-align: center;
  }

  .chip-block,
  .metric-block {
    text-align: center;
  }

  .metric-block .line {
    margin-inline: auto;
  }

  .split-promo {
    padding: 46px var(--gutter);
    grid-template-columns: 1fr;
    text-align: left;
  }

  .portfolio-carousel {
    --portfolio-card: 260px;
    --portfolio-gap: 12px;
    width: var(--portfolio-card);
    min-height: 245px;
    border-radius: 16px;
  }

  .portfolio-track {
    padding: 0;
    animation-duration: 16s;
  }

  .portfolio-name-card {
    min-height: 245px;
    padding: 24px 22px 22px;
  }

  .card-section {
    padding: 42px var(--gutter) 50px;
  }

  .card-section h2 {
    margin-bottom: 28px;
  }

  .benefit-grid {
    display: flex;
    width: max-content;
    gap: 0;
    animation: team-carousel 22s linear infinite;
    will-change: transform;
  }

  .benefit-grid:hover,
  .benefit-grid:focus-within {
    animation-play-state: paused;
  }

  .benefit-set,
  .benefit-set-clone {
    display: flex;
    gap: 16px;
    padding-right: 16px;
  }

  .benefit-card {
    flex: 0 0 min(78vw, 310px);
    min-height: 230px;
    padding: 32px 22px 28px;
  }

  .banner-media {
    height: auto;
    min-height: 440px;
    padding: 0 22px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .banner-copy {
    position: static;
    width: 100%;
    gap: 10px;
  }

  .banner-copy h2 {
    max-width: 10ch;
    font-size: clamp(42px, 15vw, 58px);
    line-height: 0.96;
  }

  .banner-copy > p:not(.label) {
    max-width: 280px;
    font-size: 14px;
    line-height: 1.28;
  }

  .banner-actions {
    position: static;
    margin-top: 18px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .feature-section,
  .stories-section,
  .faq-section,
  .site-footer {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .feature-section {
    min-height: auto;
    padding-bottom: 48px;
  }

  .feature-main {
    height: 430px;
  }

  .feature-main-copy {
    bottom: 84px;
    width: calc(100% - 64px);
  }

  .feature-main button {
    right: 24px;
    bottom: 24px;
  }

  .side-media {
    width: 100%;
    height: 360px;
  }

  .arrow {
    display: none;
  }

  .faq-section {
    gap: 28px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 820px) and (prefers-reduced-motion: reduce) {
  .wire-nav {
    transition-duration: 0.01ms;
  }

  .metrics-strip::after,
  .metrics-reveal,
  .metrics-intro,
  .metric-card {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 24px;
  }

  .banner-actions {
    left: 22px;
    right: auto;
    bottom: 92px;
  }

  .banner-copy h2 {
    font-size: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) and (prefers-reduced-motion: reduce) {
  .benefit-grid {
    width: auto;
    overflow-x: auto;
    animation: none;
    scroll-snap-type: x mandatory;
  }

  .benefit-set-clone {
    display: none;
  }

  .benefit-card {
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .puzzle-tile,
  .hero-media::after,
  .portfolio-track,
  .legacy-world {
    animation: none !important;
  }

  .legacy-world {
    opacity: 0;
    transform: none !important;
  }

  .legacy-world.is-active {
    opacity: 1;
    z-index: 1;
  }

  .puzzle-tile {
    transform: none !important;
    filter: none !important;
  }
}

/* Published site lock:
   the design was built and reviewed as a premium phone-first experience.
   Keep the public desktop view in that same narrow composition so Hostinger
   never stretches the hero into an empty desktop slab. */
@media (min-width: 821px) {
  :root {
    --gutter: 28px;
    --bleed-gutter: 6px;
    --max-width: 430px;
  }

  body {
    background:
      linear-gradient(90deg, #101112 0, #2e3032 10%, #f4f5f7 10%, #f4f5f7 90%, #2e3032 90%, #101112 100%);
  }

  .wireframe-page {
    width: min(100%, var(--max-width));
    border-inline: 1px solid rgba(29, 29, 31, 0.16);
    box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0.34),
      0 0 0 13px rgba(22, 24, 26, 0.64),
      0 22px 70px rgba(0, 0, 0, 0.28);
  }

  .wire-nav {
    left: 50%;
    right: auto;
    width: min(100%, var(--max-width));
    transform: translateX(-50%);
  }

  .wire-nav-inner {
    min-height: 52px;
    padding: 0 22px 0 14px;
  }

  .wire-nav-logo {
    width: 42px;
    height: 42px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
  }

  .wire-nav-logo svg {
    width: 34px;
    height: 34px;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
  }

  .nav-toggle-line {
    display: none;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    width: 25px;
    height: 2px;
    background: currentColor;
  }

  .nav-toggle::before {
    transform: translateY(5px);
  }

  .nav-toggle::after {
    transform: translateY(-5px);
  }

  .wire-nav-links {
    left: 12px;
    right: 12px;
    width: auto;
  }

  .hero-wire {
    min-height: auto;
    padding: 96px var(--gutter) 42px;
  }

  .hero-wire h1 {
    font-size: clamp(46px, 13vw, 64px);
  }

  .hero-media {
    margin-top: 22px;
    aspect-ratio: auto;
    height: 30vh;
  }

  .hero-puzzle {
    width: min(100%, 540px);
    height: auto;
    aspect-ratio: 1.14 / 1;
  }

  .caption {
    margin-top: 22px;
    max-width: 290px;
    font-size: 18px;
    line-height: 1.24;
    text-align: center;
  }

  .metrics-strip,
  .benefit-grid,
  .feature-grid,
  .story-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .metrics-strip {
    margin-top: -24px;
    padding: 54px var(--gutter) 44px;
    gap: 22px;
    border-radius: 22px 22px 0 0;
  }

  .metrics-intro {
    text-align: center;
  }

  .metrics-intro h2 {
    max-width: 12ch;
    font-size: 27px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 374px);
    margin-inline: auto;
    gap: 12px;
  }

  .metric-card {
    min-height: auto;
    padding: 14px;
  }

  .metric-card-primary {
    min-height: 96px;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .metric-card-primary > p {
    max-width: 135px;
    font-size: 12px;
  }

  .chip-placeholder {
    width: 66px;
    height: 66px;
    gap: 5px;
  }

  .chip-placeholder span {
    font-size: 23px;
  }

  .chip-placeholder small {
    font-size: 10px;
  }

  .metric-block strong {
    margin: 7px 0 8px;
    font-size: clamp(28px, 7vw, 36px);
    white-space: nowrap;
  }

  .metric-copy {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.2;
  }

  .metric-block.metric-card {
    display: block;
  }

  .legacy-search {
    padding: 50px var(--gutter) 46px;
  }

  .legacy-search h2 {
    margin-bottom: 34px;
    font-size: clamp(40px, 11vw, 58px);
  }

  .legacy-stage {
    aspect-ratio: 1 / 1.08;
    border-radius: 20px;
  }

  .legacy-image {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }

  .legacy-search-pill {
    width: 82%;
    min-height: 32px;
    padding: 0 12px;
    gap: 6px;
  }

  .legacy-search-icon {
    width: 11px;
    height: 11px;
    border-width: 1.5px;
  }

  .legacy-keyword {
    font-size: clamp(12px, 3.4vw, 16px);
  }

  .legacy-search > p {
    margin-top: 34px;
    font-size: clamp(23px, 6.2vw, 34px);
  }

  .center-copy,
  .split-promo,
  .feature-grid,
  .discover,
  .story-grid,
  .faq-section,
  .footer {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .split-promo {
    gap: 28px;
  }

  .portfolio-carousel {
    width: 100%;
  }

  .feature-grid,
  .story-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium portfolio treatment */
.split-promo {
  position: relative;
  overflow: hidden;
  padding: 60px var(--gutter) 64px;
  background:
    radial-gradient(circle at 84% 18%, rgba(10, 132, 255, 0.1), transparent 28%),
    radial-gradient(circle at 8% 82%, rgba(191, 90, 242, 0.1), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
}

.split-promo::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 132, 255, 0.22), transparent);
}

.split-copy {
  position: relative;
  z-index: 2;
  gap: 16px;
}

.split-copy .label {
  color: rgba(29, 29, 31, 0.56);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.split-copy h2 {
  max-width: 9.4ch;
  background: linear-gradient(92deg, #16364c 0%, #0a84ff 42%, #8c67f4 72%, #16364c 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(34px, 7.8vw, 46px);
  font-weight: 760;
  line-height: 0.98;
  animation: text-shine 5.4s ease-in-out infinite;
}

.split-copy .body-copy {
  max-width: 310px;
  color: rgba(29, 29, 31, 0.62);
  font-size: 15px;
  font-weight: 690;
  line-height: 1.38;
}

.portfolio-carousel {
  --portfolio-card: min(300px, calc(100vw - 92px));
  --portfolio-gap: 14px;
  width: 100%;
  min-height: 320px;
  margin-top: 8px;
  border-radius: 28px;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 44px rgba(16, 40, 60, 0.08);
}

.portfolio-carousel::-webkit-scrollbar {
  display: none;
}

.portfolio-track {
  width: max-content;
  gap: var(--portfolio-gap);
  padding: 10px max(0px, calc((100% - var(--portfolio-card)) / 2)) 14px;
  animation: none;
  will-change: auto;
}

.portfolio-name-card[aria-hidden="true"] {
  display: none;
}

.portfolio-name-card {
  flex-basis: var(--portfolio-card);
  min-height: 286px;
  padding: 22px;
  border-radius: 24px;
  scroll-snap-align: center;
  background:
    linear-gradient(180deg, rgba(7, 20, 32, 0.1) 0%, rgba(7, 20, 32, 0.18) 42%, rgba(7, 20, 32, 0.78) 100%),
    var(--portfolio-bg) center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 16px 34px rgba(16, 40, 60, 0.14);
}

.portfolio-name-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.portfolio-name-card h3 {
  max-width: 8.6ch;
  color: #ffffff;
  background: none;
  font-size: clamp(34px, 8vw, 42px);
  font-weight: 760;
  line-height: 0.98;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
  animation: none;
}

.portfolio-name-card span {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 680;
}

/* Premium auto-moving team rail */
.card-section {
  position: relative;
  padding: 58px 0 62px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(10, 132, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.card-section h2 {
  max-width: 9.2ch;
  margin: 0 0 34px;
  padding: 0 var(--gutter);
  background: linear-gradient(92deg, #16364c 0%, #0a84ff 48%, #8c67f4 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(42px, 9vw, 56px);
  font-weight: 780;
  line-height: 0.98;
  animation: text-shine 5.4s ease-in-out infinite;
}

.benefit-grid {
  display: flex;
  width: max-content;
  gap: 0;
  padding-left: 0;
  animation: team-carousel 24s linear infinite;
  will-change: transform;
}

.benefit-grid:hover,
.benefit-grid:focus-within {
  animation-play-state: paused;
}

.benefit-set,
.benefit-set-clone {
  display: flex;
  gap: 16px;
  padding-left: var(--gutter);
  padding-right: 0;
}

.benefit-card {
  position: relative;
  flex: 0 0 min(76vw, 292px);
  min-height: 300px;
  padding: 10px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  overflow: hidden;
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 14px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 247, 252, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 32px rgba(16, 40, 60, 0.1),
    0 32px 62px rgba(16, 40, 60, 0.08);
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 10px 10px auto;
  height: 168px;
  border-radius: 20px;
  background: linear-gradient(180deg, transparent 44%, rgba(7, 34, 58, 0.42));
  pointer-events: none;
}

.benefit-photo {
  width: 100%;
  height: 168px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
  box-shadow: 0 12px 24px rgba(16, 40, 60, 0.12);
}

.benefit-text {
  min-height: auto;
  margin: 2px 8px 0;
  color: rgba(22, 54, 76, 0.9);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.14;
}

.benefit-card button {
  margin: 0 8px;
  min-width: 0;
  padding: 8px 14px;
  border: 1px solid rgba(10, 132, 255, 0.24);
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.08);
  color: #0b65bf;
  font-size: 12px;
  font-weight: 820;
}

@media (prefers-reduced-motion: reduce) {
  .benefit-grid {
    width: auto;
    overflow-x: auto;
    animation: none;
    scroll-snap-type: x mandatory;
  }

  .benefit-set-clone {
    display: none;
  }

  .benefit-card {
    scroll-snap-align: start;
  }
}

/* Premium image carousels for careers and enquiries */
@keyframes premium-card-loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.feature-section {
  padding: 44px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(10, 132, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.feature-section > h2 {
  max-width: 10.2ch;
  margin: 0 0 28px;
  padding: 0 var(--gutter);
  background: linear-gradient(92deg, #16364c 0%, #0a84ff 50%, #8c67f4 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(36px, 8.6vw, 48px);
  font-weight: 780;
  line-height: 0.98;
  animation: text-shine 5.4s ease-in-out infinite;
}

.feature-grid {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-left: var(--gutter);
  animation: premium-card-loop 26s linear infinite;
  will-change: transform;
}

.feature-grid:hover,
.feature-grid:focus-within {
  animation-play-state: paused;
}

.feature-main,
.feature-side {
  flex: 0 0 min(72vw, 280px);
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 20, 32, 0.04), rgba(7, 20, 32, 0.72)),
    var(--feature-bg) center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 18px 38px rgba(16, 40, 60, 0.14);
}

.feature-main {
  height: auto;
}

.feature-main::after,
.feature-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(7, 20, 32, 0.8) 100%);
  pointer-events: none;
}

.feature-main-copy {
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 20px;
  width: auto;
}

.feature-main-copy .label {
  color: rgba(255, 255, 255, 0.72);
}

.feature-main-copy h3 {
  color: #ffffff;
  background: none;
  font-size: clamp(27px, 6.8vw, 36px);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.32));
  animation: none;
}

.feature-main-copy p:not(.label) {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
}

.feature-main button {
  z-index: 3;
  right: 18px;
  bottom: 18px;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.feature-side {
  position: relative;
  display: grid;
  align-content: end;
  gap: 11px;
  padding: 10px 10px 18px;
  text-align: left;
}

.feature-side .side-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  box-shadow: none;
}

.feature-side h3,
.feature-side .body-copy,
.feature-side a {
  position: relative;
  z-index: 2;
  margin-inline: 12px;
}

.feature-side h3 {
  color: #ffffff;
  font-size: clamp(25px, 6.4vw, 34px);
  line-height: 1;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.32));
}

.feature-side .body-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
}

.feature-side a {
  width: fit-content;
  margin-top: 4px;
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.72);
}

.stories-section {
  padding: 58px 0 62px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(191, 90, 242, 0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.stories-section h2 {
  max-width: 9.6ch;
  margin: 0 0 34px;
  padding: 0 var(--gutter);
  background: linear-gradient(92deg, #16364c 0%, #0a84ff 50%, #8c67f4 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(42px, 9.4vw, 58px);
  font-weight: 780;
  line-height: 1;
  animation: text-shine 5.4s ease-in-out infinite;
}

.story-frame {
  overflow: visible;
}

.story-grid {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-left: var(--gutter);
  animation: premium-card-loop 28s linear infinite;
  will-change: transform;
}

.story-grid:hover,
.story-grid:focus-within {
  animation-play-state: paused;
}

.story-card {
  position: relative;
  flex: 0 0 min(78vw, 310px);
  min-height: 364px;
  padding: 10px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  overflow: hidden;
  text-align: left;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 38px rgba(16, 40, 60, 0.12);
}

.story-media {
  width: 100%;
  height: 204px;
  border-radius: 22px;
  display: block;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 28px rgba(16, 40, 60, 0.12);
}

.story-card p {
  min-height: auto;
  max-width: none;
  margin: 18px 12px 0;
  color: rgba(29, 29, 31, 0.86);
  font-size: 17px;
  font-weight: 780;
  line-height: 1.18;
  text-align: left;
}

.story-card a {
  display: inline-block;
  margin: 18px 12px 0;
  color: #0b65bf;
}

.stories-section .arrow,
.stories-section .dots {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .feature-grid,
  .story-grid {
    width: auto;
    overflow-x: auto;
    animation: none;
    scroll-snap-type: x mandatory;
  }

  .feature-main,
  .feature-side,
  .story-card {
    scroll-snap-align: start;
  }
}

/* Premium image responsibility panel and editorial footer */
.banner-section {
  padding: 18px var(--bleed-gutter) 0;
  background:
    linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.banner-media {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  overflow: hidden;
  background: #102d44;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 18px 44px rgba(16, 40, 60, 0.14);
}

.banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
}

.banner-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 34, 58, 0.05) 0%, rgba(7, 34, 58, 0.34) 44%, rgba(7, 34, 58, 0.82) 100%),
    radial-gradient(circle at 82% 14%, rgba(251, 188, 4, 0.28), transparent 22%);
  pointer-events: none;
}

.banner-copy {
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 86px;
  width: auto;
}

.banner-copy h2 {
  max-width: 9ch;
  color: #ffffff;
  background: none;
  font-size: clamp(36px, 9vw, 48px);
  font-weight: 780;
  line-height: 0.98;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.32));
  animation: none;
}

.banner-copy > p:not(.label) {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.banner-actions {
  z-index: 2;
  left: 28px;
  right: auto;
  bottom: 28px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 48px var(--gutter) 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(223, 243, 253, 0.9), transparent 30%),
    radial-gradient(circle at 12% 76%, rgba(10, 132, 255, 0.12), transparent 24%),
    radial-gradient(circle at 88% 64%, rgba(191, 90, 242, 0.12), transparent 25%),
    linear-gradient(180deg, #fbfdff 0%, #edf6fb 100%);
}

.footer-statement {
  position: relative;
  z-index: 2;
  max-width: 11.5ch;
  margin: 0 auto;
  background: linear-gradient(92deg, #16364c 0%, #0a84ff 46%, #8c67f4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(34px, 9.4vw, 48px);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
}

.footer-brand-row {
  position: relative;
  z-index: 2;
  margin: 34px auto 46px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 12px;
}

.footer-brand-row a,
.footer-brand-row span {
  color: rgba(22, 54, 76, 0.5);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-topline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 14px;
}

.footer-social-text,
.footer-legal-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-legal-text {
  justify-content: center;
}

.footer-topline a {
  color: rgba(22, 54, 76, 0.5);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-sprout {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #16364c, #0a84ff 58%, #8c67f4);
  box-shadow: 0 12px 24px rgba(10, 132, 255, 0.18);
}

.footer-word {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 48px auto -4px;
  background: linear-gradient(92deg, #16364c 0%, #0a84ff 46%, #8c67f4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(54px, 18vw, 82px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-align: center;
  white-space: nowrap;
  transform: none;
}

.footer-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(22, 54, 76, 0.12);
}

.footer-logo {
  grid-column: 1 / -1;
  font-size: 21px;
}

.footer-grid h3 {
  color: rgba(22, 54, 76, 0.82);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-bottom {
  color: rgba(22, 54, 76, 0.58);
  font-size: 11px;
  font-weight: 680;
}

.footer-action button {
  width: 100%;
  max-width: 190px;
  margin: 10px 0 16px;
  padding: 11px 18px;
  background: linear-gradient(92deg, #16364c, #0a84ff 58%, #8c67f4);
  border-color: transparent;
  color: #ffffff;
}

.social-row span {
  border: 1px solid rgba(22, 54, 76, 0.1);
  background: rgba(255, 255, 255, 0.68);
  color: rgba(22, 54, 76, 0.6);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(22, 54, 76, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

/* Desktop restore: keep the phone layout for mobile, but let wider screens use
   the full desktop composition instead of the published phone frame. */
@media (min-width: 821px) {
  :root {
    --gutter: clamp(44px, 5vw, 72px);
    --bleed-gutter: 14px;
    --max-width: 1280px;
  }

  body {
    background: var(--page);
  }

  .wireframe-page {
    width: min(100%, var(--max-width));
    border-inline: 1px solid var(--line);
    box-shadow: 0 18px 55px rgba(16, 40, 60, 0.07);
  }

  .wire-nav {
    left: 0;
    right: 0;
    width: auto;
    transform: none;
  }

  .wire-nav-inner {
    min-height: 74px;
    padding: 0 var(--gutter);
  }

  .wire-nav-actions {
    display: none;
  }

  .wire-nav-logo {
    width: 42px;
    height: 42px;
  }

  .wire-nav-logo svg {
    width: 32px;
    height: 32px;
  }

  .wire-nav-links {
    position: static;
    width: auto;
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border-radius: 999px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .wire-nav-links a {
    width: auto;
    min-height: 34px;
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 12px;
    justify-content: center;
  }

  .wire-nav-links a::after {
    content: none;
  }

  .hero-wire {
    min-height: 720px;
    padding: 118px var(--gutter) 66px;
  }

  .hero-wire h1 {
    font-size: clamp(54px, 6vw, 82px);
  }

  .hero-media,
  .hero-puzzle {
    width: min(100%, 1088px);
    height: auto;
    aspect-ratio: 1090 / 455;
    margin-top: 40px;
  }

  .caption {
    max-width: none;
    font-size: 24px;
  }

  .metrics-strip {
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
    gap: 34px;
    padding: 70px var(--gutter) 56px;
  }

  .metrics-grid {
    width: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .metric-card-primary {
    grid-column: auto;
  }

  .legacy-search {
    padding: 76px var(--gutter) 70px;
  }

  .legacy-stage {
    width: min(100%, 820px);
    aspect-ratio: 16 / 9;
  }

  .center-copy {
    min-height: 748px;
    padding: 82px var(--gutter) 50px;
  }

  .about-object {
    width: min(38vw, 360px);
  }

  .split-promo {
    padding: 76px var(--gutter);
    display: grid;
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
    align-items: center;
    gap: 64px;
  }

  .split-copy h2 {
    max-width: 520px;
    font-size: clamp(40px, 4vw, 56px);
  }

  .split-copy .body-copy {
    max-width: 460px;
  }

  .portfolio-carousel {
    --portfolio-card: 250px;
    width: 100%;
    min-height: auto;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .portfolio-track {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
    animation: none;
  }

  .portfolio-name-card[aria-hidden="true"] {
    display: none;
  }

  .portfolio-name-card {
    min-height: 300px;
    flex-basis: auto;
    border-radius: 18px;
    scroll-snap-align: unset;
  }

  .portfolio-name-card h3 {
    max-width: 10ch;
    font-size: clamp(30px, 3vw, 42px);
  }

  .card-section,
  .feature-section,
  .stories-section {
    padding: 66px var(--gutter) 72px;
  }

  .card-section h2,
  .feature-section > h2,
  .stories-section h2 {
    max-width: 720px;
    padding: 0;
    margin-bottom: 44px;
    font-size: clamp(40px, 4.4vw, 58px);
  }

  .benefit-grid {
    width: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-left: 0;
    animation: none;
  }

  .benefit-set {
    display: contents;
    padding: 0;
  }

  .benefit-set-clone {
    display: none;
  }

  .benefit-card {
    flex: initial;
    min-height: 320px;
  }

  .banner-section {
    padding: 18px var(--bleed-gutter) 0;
  }

  .banner-media {
    min-height: 560px;
  }

  .banner-copy {
    left: 56px;
    right: auto;
    bottom: 56px;
    width: min(480px, calc(100% - 112px));
  }

  .banner-copy h2 {
    max-width: 10ch;
    font-size: clamp(46px, 5vw, 68px);
  }

  .banner-copy > p:not(.label) {
    max-width: 380px;
    font-size: 16px;
  }

  .banner-actions {
    right: 56px;
    left: auto;
    bottom: 56px;
  }

  .feature-grid {
    width: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
    gap: 24px;
    padding-left: 0;
    animation: none;
  }

  .feature-main,
  .feature-side {
    flex: initial;
    min-height: 520px;
  }

  .feature-main[aria-hidden="true"],
  .feature-side[aria-hidden="true"] {
    display: none;
  }

  .feature-main-copy {
    left: 32px;
    right: 32px;
    bottom: 34px;
  }

  .feature-main-copy h3 {
    font-size: clamp(38px, 4vw, 58px);
  }

  .feature-main-copy p:not(.label),
  .feature-side .body-copy {
    font-size: 14px;
  }

  .feature-side h3 {
    font-size: clamp(30px, 3vw, 42px);
  }

  .story-frame {
    overflow: visible;
  }

  .story-grid {
    width: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-left: 0;
    animation: none;
  }

  .story-card {
    flex: initial;
    min-height: 380px;
  }

  .story-card[aria-hidden="true"] {
    display: none;
  }

  .story-media {
    height: 230px;
  }

  .faq-section {
    padding: 66px var(--gutter);
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 88px;
  }

  .site-footer {
    padding: 64px var(--gutter) 46px;
  }

  .footer-statement {
    max-width: 14ch;
    font-size: clamp(42px, 5vw, 72px);
  }

  .footer-topline {
    grid-template-columns: 1fr auto 1fr;
    justify-items: stretch;
  }

  .footer-social-text {
    justify-content: flex-start;
  }

  .footer-legal-text {
    justify-content: flex-end;
  }

  .footer-word {
    font-size: clamp(92px, 13vw, 170px);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 150px repeat(3, minmax(120px, 1fr)) minmax(180px, 1.25fr);
    gap: 34px;
  }

  .footer-logo {
    grid-column: auto;
  }

  .footer-action button {
    width: auto;
  }
}
