:root {
  --bg: #f7fbfd;
  --ink: #10202a;
  --muted: #5c7180;
  --line: #d7e6ee;
  --cyan: #05bfd6;
  --teal: #00a88f;
  --blue: #2c7df0;
  --panel: #ffffff;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.hero {
  min-height: 92vh;
  padding: 112px clamp(18px, 4vw, 64px) 48px;
  background: radial-gradient(circle at 82% 10%, rgba(5, 191, 214, 0.18), transparent 28%), linear-gradient(180deg, #fff 0%, #eef8fb 100%);
  overflow: hidden;
  position: relative;
}

/* Signature element: concentric shearography rings, echoing the interference
   fringes in the product's own optical scans. */
.rings {
  position: absolute;
  top: 8%;
  right: -6%;
  width: min(52vw, 680px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
}

.rings .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(5, 191, 214, 0.35);
  animation: ring-pulse 6s cubic-bezier(.2,.6,.35,1) infinite;
  opacity: 0;
}

.rings .r1 { animation-delay: 0s; }
.rings .r2 { animation-delay: 1.5s; }
.rings .r3 { animation-delay: 3s; }
.rings .r4 { animation-delay: 4.5s; }

@keyframes ring-pulse {
  0% { transform: scale(0.15); opacity: 0; border-color: rgba(0, 168, 143, 0.55); }
  12% { opacity: 0.9; }
  100% { transform: scale(1); opacity: 0; border-color: rgba(5, 191, 214, 0.05); }
}

.nav {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(16, 32, 42, 0.08);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  left: 50%;
  margin: 0;
  max-width: 1180px;
  padding: 14px;
  position: fixed;
  top: 16px;
  transform: translateX(-50%);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  width: min(1180px, calc(100% - 36px));
  z-index: 50;
}

.nav-links {
  display: flex;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.brand {
  align-items: center;
  border: none;
  background: none;
  display: flex;
  flex: none;
  gap: 12px;
  padding: 4px 2px;
  text-decoration: none;
}

.brand-mark {
  flex: none;
  height: 51px;
  transition: transform 0.6s ease;
  width: 51px;
}

.brand-mark circle {
  fill: none;
  stroke-width: 7;
  mix-blend-mode: multiply;
}

.ring-a { stroke: var(--teal); }
.ring-b { stroke: var(--blue); }
.ring-c { stroke: var(--cyan); }

.brand-mark .ring-core {
  fill: #fff;
  stroke: none;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 3px rgba(255,255,255,0.9));
}

.brand-word {
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-word em {
  color: var(--cyan);
  font-style: normal;
}

.nav a,
.button {
  border: 1px solid var(--line);
  border-radius: 999px;
  flex: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 16px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.nav a,
.button {
  background: #fff;
}

.nav:hover,
.nav:focus-within,
.nav:has(.nav-links a:hover) {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(16, 32, 42, 0.12);
}

.nav:hover .brand-mark,
.nav:focus-within .brand-mark,
.nav:has(.nav-links a:hover) .brand-mark {
  transform: rotate(24deg);
}

.nav .brand {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 4px 2px;
}

.nav .brand::after {
  display: none;
}

.nav .brand:hover {
  box-shadow: none;
  transform: none;
}

.nav a {
  overflow: hidden;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.2s ease, transform 0.3s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav a:hover,
.nav a:focus-visible,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(16, 32, 42, 0.14);
}

.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.primary svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.button.primary:hover svg {
  transform: translateX(4px);
}

.button.primary:hover {
  box-shadow: 0 14px 30px rgba(5, 191, 214, 0.35);
}

.hero-grid,
.split,
.portfolio {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.hero-grid {
  align-items: center;
  grid-template-columns: minmax(0, 760px);
  position: relative;
  z-index: 1;
}

.eyebrow {
  align-items: center;
  color: var(--teal);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.dot-ping {
  fill: var(--cyan);
  flex: none;
  animation: dot-ping 2s ease-in-out infinite;
}

@keyframes dot-ping {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.35); }
}

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

h1 {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 900px;
}

h2 {
  font-size: 42px;
  line-height: 1.12;
  margin-bottom: 22px;
  max-width: 920px;
}

.section-title-sm {
  font-size: 42px;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
}

p,
.lede {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.visual,
.wide-image {
  background: #dfeff4;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(27, 73, 90, 0.18);
  margin: 0;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.visual:hover,
.wide-image:hover {
  box-shadow: 0 36px 90px rgba(27, 73, 90, 0.26);
  transform: translateY(-5px);
}

.visual img,
.wide-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  width: 100%;
}

.visual:hover img,
.wide-image:hover img {
  transform: scale(1.025);
}

.product-overview {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(231, 247, 250, 0.98)),
    radial-gradient(circle at 85% 12%, rgba(5, 191, 214, 0.14), transparent 34%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
}

.product-overview-head h3 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-overview-head p {
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 0;
}

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

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

.product-overview-grid article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(48, 84, 99, 0.08);
}

.product-overview-grid article {
  padding: 18px;
}

.product-overview-grid h4 {
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
}

.product-overview-grid p {
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
  margin-bottom: 0;
}

.product-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px auto 0;
  max-width: 1180px;
}

.product-capabilities span {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 12px;
  line-height: 1.25;
  padding: 14px 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-capabilities span:hover {
  border-color: var(--cyan);
  box-shadow: 0 16px 32px rgba(5, 191, 214, 0.16);
  transform: translateY(-4px);
}

.product-capabilities svg {
  color: var(--teal);
  fill: none;
  flex: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.product-image {
  align-self: stretch;
  align-items: center;
  background: #03080d;
  display: flex;
  justify-content: center;
}

.product-image img {
  height: 100%;
  min-height: 0;
  object-fit: contain;
  width: 100%;
}

.hero-showcase {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  margin: 88px auto 0;
  max-width: 1180px;
  overflow: hidden;
  padding: clamp(22px, 4vw, 44px);
  position: relative;
  z-index: 1;
}

.hero-showcase::after {
  background: linear-gradient(90deg, transparent, rgba(5, 191, 214, 0.2), transparent);
  content: "";
  height: 2px;
  left: clamp(22px, 4vw, 44px);
  position: absolute;
  right: clamp(22px, 4vw, 44px);
  top: calc(clamp(22px, 4vw, 44px) + 110px);
}

.showcase-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.showcase-copy h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.showcase-visual {
  align-self: end;
  background:
    radial-gradient(circle at 50% 54%, rgba(10, 23, 29, 0.2), rgba(10, 23, 29, 0.82) 58%),
    #0b151b;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(16, 32, 42, 0.18);
  grid-column: 1 / -1;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.showcase-visual img {
  aspect-ratio: 3 / 2;
  display: block;
  height: auto;
  margin: auto;
  object-fit: contain;
  width: 100%;
}

.showcase-visual::before,
.showcase-visual::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.showcase-visual::before {
  background:
    linear-gradient(90deg, rgba(5, 191, 214, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 191, 214, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mix-blend-mode: screen;
  opacity: 0.22;
}

.showcase-visual::after {
  animation: hero-scan 3.8s ease-in-out infinite;
  background:
    linear-gradient(90deg, transparent 0%, rgba(5, 191, 214, 0.12) 45%, rgba(5, 191, 214, 0.62) 50%, rgba(5, 191, 214, 0.12) 55%, transparent 100%);
  box-shadow: 0 0 32px rgba(5, 191, 214, 0.45);
  inset: 0 auto 0 0;
  transform: translateX(-120%);
  width: 28%;
}

@keyframes hero-scan {
  0%,
  12% {
    transform: translateX(-120%);
  }
  58% {
    transform: translateX(360%);
  }
  100% {
    transform: translateX(360%);
  }
}

.showcase-cards {
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.showcase-cards article {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(48, 84, 99, 0.08);
  display: flex;
  gap: 12px;
  padding: 16px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
}

.showcase-cards article:hover {
  border-color: var(--cyan);
  box-shadow: 0 22px 46px rgba(5, 191, 214, 0.16);
  transform: translateY(-6px);
}

.showcase-cards svg {
  color: var(--teal);
  fill: none;
  flex: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.showcase-cards span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 64px);
}

.section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

/* Scroll reveal: elements fade + rise into place as they enter view. */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  will-change: auto;
}

[data-reveal][data-reveal-delay="1"] { transition-delay: 0.12s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.24s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.36s; }

.list-card,
.grid article,
.cards article,
.architecture article,
.team article,
.compare article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(48, 84, 99, 0.08);
  padding: 22px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
}

.grid article:hover,
.cards article:hover,
.architecture article:hover,
.team article:hover {
  border-color: var(--cyan);
  box-shadow: 0 22px 46px rgba(5, 191, 214, 0.16);
  transform: translateY(-6px);
}

.list-card p {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  font-weight: 700;
  gap: 14px;
  margin-bottom: 0;
  padding: 16px 0;
}

.list-card p:last-child {
  border-bottom: 0;
}

.icon-badge {
  align-items: center;
  background: linear-gradient(135deg, rgba(5, 191, 214, 0.14), rgba(0, 168, 143, 0.14));
  border-radius: 50%;
  color: var(--teal);
  display: flex;
  flex: none;
  height: 40px;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  width: 40px;
}

.list-card p:hover .icon-badge {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}

.icon-badge svg,
.card-icon,
.avatar-ring svg,
.grid article svg,
.architecture h3 svg,
.market span svg,
.tech-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.steps,
.grid,
.cards,
.architecture,
.market,
.compare {
  display: grid;
  gap: 16px;
}

.steps {
  gap: 44px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 26px;
  position: relative;
}

.solution-intro {
  margin-bottom: 18px;
}

.steps article {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  text-align: center;
}

.steps article:not(:last-child)::after {
  align-items: center;
  color: var(--teal);
  content: "→";
  display: flex;
  font-size: 38px;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -48px;
  top: 50%;
  text-shadow: 0 2px 0 rgba(0, 83, 95, 0.45);
  transform: translateY(-50%) perspective(90px) rotateX(8deg);
  width: 64px;
  z-index: 2;
}

#solution.dark .steps article:not(:last-child)::after {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(5, 191, 214, 0.55);
}

.process-image {
  aspect-ratio: 16 / 9;
  background: #101b21;
  border-radius: 8px;
  display: block;
  margin: 0 0 18px;
  object-fit: cover;
  width: 100%;
}

.steps article h3 {
  font-size: 18px;
  padding: 0 14px 18px;
}

.solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.solution-features span {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 12px;
  padding: 14px 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.solution-features span:hover {
  border-color: var(--cyan);
  box-shadow: 0 16px 32px rgba(5, 191, 214, 0.16);
  transform: translateY(-4px);
}

.solution-features svg {
  color: var(--teal);
  fill: none;
  flex: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.tint {
  background: #eaf7f9;
}

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

.grid article {
  border-left: 5px solid var(--cyan);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.grid article svg {
  color: var(--teal);
  flex: none;
}

.architecture {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.architecture h3 {
  align-items: center;
  display: flex;
  gap: 10px;
}

.architecture h3 svg {
  color: var(--cyan);
  flex: none;
}

.architecture p {
  background: #f3fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 8px;
  padding: 10px 12px;
}

.portfolio {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.cards p {
  font-size: 16px;
  line-height: 1.55;
}

.cards h3 {
  align-items: center;
  display: flex;
  gap: 10px;
}

.card-icon {
  color: var(--cyan);
  flex: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.cards article:hover .card-icon {
  color: var(--teal);
  transform: scale(1.15) rotate(-4deg);
}

.market {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.market span {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  display: flex;
  flex: 0 1 auto;
  font-weight: 800;
  gap: 12px;
  padding: 14px 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.market span:hover {
  border-color: var(--cyan);
  box-shadow: 0 16px 32px rgba(5, 191, 214, 0.16);
  transform: translateY(-4px);
}

.market span svg {
  color: var(--teal);
  flex: none;
}

.dark {
  background: linear-gradient(135deg, #10202a, #163946);
  color: white;
  overflow: hidden;
  position: relative;
}

.dark h2,
.dark h3 {
  color: white;
}

.dark p {
  color: #d9eef4;
}

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

.compare article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.compare article:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
  transform: translateY(-4px);
}

.compare p {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 10px;
  line-height: 1.35;
  margin-bottom: 14px;
}

.mark {
  border-radius: 50%;
  flex: none;
  padding: 3px;
  stroke-width: 2.4;
}

.mark.cross {
  background: rgba(255, 99, 99, 0.16);
  color: #ff8686;
}

.mark.check {
  background: rgba(5, 191, 214, 0.18);
  color: var(--cyan);
}

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

.team article {
  text-align: left;
}

.avatar-ring {
  align-items: center;
  background: linear-gradient(135deg, rgba(5, 191, 214, 0.14), rgba(0, 168, 143, 0.14));
  border: 1px dashed rgba(5, 191, 214, 0.5);
  border-radius: 50%;
  color: var(--teal);
  display: flex;
  height: 56px;
  justify-content: center;
  margin-bottom: 16px;
  width: 56px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team article:hover .avatar-ring {
  border-color: var(--cyan);
  transform: rotate(-8deg) scale(1.06);
}

.team strong {
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .nav {
    gap: 8px;
    justify-content: space-between;
    top: 12px;
    width: calc(100% - 24px);
  }

  .nav-links {
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 24px), transparent);
  }

  .nav a,
  .button {
    padding: 10px 13px;
  }

  .brand-word {
    font-size: 17px;
  }

  .hero-grid,
  .hero-showcase,
  .split,
  .portfolio,
  .compare {
    grid-template-columns: 1fr;
  }

  .showcase-visual {
    grid-row: auto;
  }

  .showcase-cards {
    grid-template-columns: 1fr;
  }

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

  .steps {
    gap: 16px;
  }

  .steps article::after {
    display: none;
  }

  .product-overview-grid {
    grid-template-columns: 1fr;
  }

  .rings {
    width: 70vw;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
    padding-top: 210px;
  }

  .nav {
    align-items: stretch;
    border-radius: 18px;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand {
    gap: 7px;
    justify-content: center;
    padding: 0;
  }

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

  .brand-word {
    font-size: 18px;
  }

  .nav-links {
    border-top: 1px solid rgba(215, 230, 238, 0.8);
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
    margin: 0 -4px;
    overflow-x: visible;
    padding: 10px 4px 0;
    width: calc(100% + 8px);
  }

  .nav-links a {
    font-size: 13px;
    padding: 9px 10px;
  }

  .button {
    font-size: 13px;
    padding: 9px 11px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .steps,
  .grid,
  .architecture,
  .team {
    grid-template-columns: 1fr;
  }

  .rings {
    opacity: 0.6;
  }
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(16, 32, 42, 0.12);
}

/* ---------- Technology section ---------- */
.section-intro {
  max-width: 760px;
  text-align: left;
}

#technology .section-intro {
  max-width: 1180px;
}

#solution .section-intro {
  max-width: 1180px;
}

.tech-feature {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  margin-bottom: 40px;
}

.tech-feature.reverse .tech-photo {
  order: 2;
}

.tech-feature.reverse .tech-copy {
  order: 1;
}

.tech-photo img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.beam-photo {
  position: relative;
}

.beam-svg {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.beam-path {
  animation: beam-dash 1.1s linear infinite;
  fill: none;
  mix-blend-mode: screen;
  opacity: 0.9;
  stroke: #a8ffc2;
  stroke-dasharray: 10 26;
  stroke-linecap: round;
  stroke-width: 5;
}

.beam-path-a {
  animation-duration: 1.7s;
}

.beam-path-b {
  animation-duration: 1.35s;
}

@keyframes beam-dash {
  to {
    stroke-dashoffset: -36;
  }
}

.beam-node {
  animation: beam-node-pulse 1.15s ease-out infinite;
  fill: #d3ffdf;
  mix-blend-mode: screen;
  opacity: 0;
}

@keyframes beam-node-pulse {
  0% {
    opacity: 0;
    r: 4;
  }
  12% {
    opacity: 0.95;
  }
  45%,
  100% {
    opacity: 0;
    r: 20;
  }
}

.tech-heading {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.tech-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex: none;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.tech-copy h3 {
  font-size: 30px;
  margin-bottom: 0;
}

.tech-sub {
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.tech-copy > p {
  margin-bottom: 20px;
}

.tech-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.tech-grid h4 {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(48, 84, 99, 0.07);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  padding: 11px 12px 11px 36px;
  position: relative;
}

.check-list li::before {
  color: var(--teal);
  content: "";
  position: absolute;
  left: 14px;
  top: 15px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0, 168, 143, 0.16);
  box-shadow: inset 0 0 0 1px rgba(0, 168, 143, 0.4);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.chip-list li {
  background: #f3fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
}

.application-list {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.application-list li,
.application-line {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(48, 84, 99, 0.07);
  color: var(--ink);
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  padding: 11px 12px;
}

.muted-line:not(.application-line) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.compare-table-wrap {
  background:
    linear-gradient(135deg, rgba(5, 191, 214, 0.08), transparent 34%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(48, 84, 99, 0.1);
  margin-top: 24px;
  overflow-x: auto;
  padding: 12px;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  border-collapse: separate;
  border-spacing: 0 8px;
  min-width: 680px;
  width: 100%;
}

.compare-table caption {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  padding: 10px 12px 12px;
  text-align: left;
}

.compare-table th,
.compare-table td {
  font-size: 15px;
  padding: 16px 18px;
  text-align: left;
}

.compare-table thead th {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.compare-table thead th:first-child {
  border-radius: 8px 0 0 8px;
}

.compare-table thead th:last-child {
  border-radius: 0 8px 8px 0;
}

.compare-table tbody th {
  background: #f4fbfd;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 8px 0 0 8px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.compare-table tbody td {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
}

.compare-table tbody td:last-child {
  border-radius: 0 8px 8px 0;
  border-right: 1px solid var(--line);
}

.compare-table tbody tr:nth-child(even) th,
.compare-table tbody tr:nth-child(even) td {
  background: #fbfdfe;
}

.compare-table tbody tr:hover th,
.compare-table tbody tr:hover td {
  border-color: rgba(5, 191, 214, 0.45);
  box-shadow: inset 0 0 0 1px rgba(5, 191, 214, 0.08);
}

@media (max-width: 900px) {
  .tech-feature,
  .tech-feature.reverse {
    grid-template-columns: 1fr;
  }

  .tech-feature.reverse .tech-photo,
  .tech-feature.reverse .tech-copy {
    order: initial;
  }

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

/* ---------- Footer / contact ---------- */
.footer {
  background: linear-gradient(135deg, #10202a, #163946);
  color: #fff;
  overflow: hidden;
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 64px) 40px;
  position: relative;
  text-align: center;
}

.footer-inner {
  margin: 0 auto;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.footer .eyebrow {
  color: var(--cyan);
  justify-content: center;
}

.footer h2 {
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}

.footer p {
  color: #d9eef4;
  margin-left: auto;
  margin-right: auto;
}

.footer .actions {
  justify-content: center;
}

.footer-rings {
  left: 50%;
  top: -20%;
  transform: translateX(-50%);
  width: min(70vw, 620px);
}

.footer-rings .ring {
  border-color: rgba(5, 191, 214, 0.3);
}

.footer-fine {
  color: rgba(217, 238, 244, 0.6) !important;
  font-size: 13px !important;
  margin-top: 56px !important;
  position: relative;
  z-index: 1;
}

.footer .button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-color: transparent;
  color: var(--ink);
}

.footer .button.primary:hover {
  box-shadow: 0 16px 34px rgba(5, 191, 214, 0.4);
}

.footer-brand {
  justify-content: center;
  margin: 44px auto 18px;
  position: relative;
  z-index: 1;
}

.footer-brand .brand-word {
  color: #fff;
}

.footer-brand .brand-mark circle {
  mix-blend-mode: screen;
}

.scroll-top {
  align-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border: 0;
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 18px 36px rgba(5, 191, 214, 0.28);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  height: 52px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 22px;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  width: 52px;
  z-index: 20;
}

.scroll-top:hover {
  box-shadow: 0 22px 44px rgba(5, 191, 214, 0.36);
  transform: translateY(-3px);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top.is-visible:hover {
  transform: translateY(-3px);
}

.scroll-top svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}
