:root {
  color-scheme: dark;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
  --bg-a: #0b132c;
  --bg-b: #173f5d;
  --cyan: #5ef6df;
  --cyan-deep: #17c7d6;
  --blue: #2442f4;
  --purple: #7a20f6;
  --glass: rgba(133, 172, 187, 0.72);
  --glass-strong: rgba(139, 179, 193, 0.86);
  --max-width: 1680px;
  --header-height: 132px;
  --display-font: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  --body-font: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: radial-gradient(circle at 15% 8%, #111b3d 0, var(--bg-a) 28%, var(--bg-b) 100%);
  font-family: var(--body-font);
  overflow-x: hidden;
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 46px clamp(24px, 6.25vw, 120px) 24px;
  pointer-events: none;
}

.logo-link,
.site-nav,
.menu-toggle {
  pointer-events: auto;
}

.logo-link {
  display: block;
  width: clamp(118px, 10.4vw, 198px);
  height: clamp(55px, 4.75vw, 92px);
  overflow: hidden;
  background: rgba(55, 77, 238, 0.9);
}

.logo-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(42px, 6.2vw, 115px);
  font-size: clamp(21px, 1.7vw, 33px);
  font-weight: 400;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  line-height: 1;
  color: rgba(255, 255, 255, 0.94);
}

.site-nav a.is-active {
  font-weight: 800;
  color: #fff;
}

.site-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  padding: 13px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 999px;
}

.snap-shell {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

.panel {
  position: relative;
  min-height: 100vh;
  scroll-snap-align: start;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 0%, rgba(15, 22, 55, 0.92) 0 15%, transparent 42%),
    radial-gradient(circle at 80% 32%, rgba(37, 79, 111, 0.55) 0 10%, transparent 42%),
    linear-gradient(115deg, var(--bg-a), var(--bg-b));
}

.panel::before {
  position: absolute;
  z-index: -4;
  inset: 0;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.32) 0 1.5px, transparent 2.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(95, 246, 223, 0.12) 0 1.5px, transparent 2.5px);
  background-size: 116px 98px, 173px 151px, 241px 217px;
  background-position: 16px 18px, 66px 9px, 28px 76px;
  opacity: 0.62;
}

.panel::after {
  position: absolute;
  z-index: -3;
  inset: auto auto -34vh -48vw;
  width: clamp(560px, 62vw, 1160px);
  height: clamp(560px, 62vw, 1160px);
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple) 78%);
  opacity: 0.98;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), calc(100% - clamp(36px, 10vw, 220px)));
  min-height: 100vh;
  margin: 0 auto;
  padding-top: var(--header-height);
}

.center-stage {
  display: grid;
  place-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

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

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(64px, 9.8vw, 185px);
}

h2 {
  font-size: clamp(58px, 8.2vw, 156px);
}

h1 span,
h2 span {
  display: block;
}

h1 span:nth-child(2),
h2 span:nth-child(2),
.section-title h2 span:last-child,
.copy-stack h2 span:last-child {
  color: var(--cyan);
}

.split-layout,
.media-layout,
.overview-layout,
.software-layout,
.left-copy-layout,
.right-copy-layout,
.emerging-layout,
.contact-layout {
  display: grid;
  align-items: center;
  gap: clamp(28px, 4vw, 76px);
}

.split-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
}

.about-copy {
  max-width: 650px;
  justify-self: end;
}

.glass-panel {
  width: 100%;
  border-radius: clamp(34px, 4.2vw, 88px);
  padding: clamp(28px, 4vw, 68px) clamp(34px, 5vw, 88px);
  background: var(--glass);
  color: #fff;
  font-size: clamp(22px, 2vw, 38px);
  font-weight: 400;
  line-height: 1.35;
}

.glass-panel p {
  margin: 0;
}

.overview-layout {
  align-content: center;
  text-align: center;
}

.headline-block h2 {
  font-size: clamp(58px, 7vw, 132px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 80px);
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(26px, 2.5vw, 38px);
}

.service-card h3 {
  display: grid;
  place-items: center;
  min-height: clamp(56px, 6vw, 86px);
  margin: 0;
  border-radius: 999px;
  padding: 12px 22px;
  background: linear-gradient(90deg, var(--blue), #27c3da);
  font-size: clamp(18px, 1.65vw, 31px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-card p {
  min-height: clamp(150px, 16vw, 228px);
  margin: 0;
  border-radius: clamp(30px, 3.4vw, 64px);
  padding: clamp(28px, 4vw, 62px) clamp(24px, 3vw, 48px);
  background: var(--glass);
  font-size: clamp(20px, 1.7vw, 34px);
  line-height: 1.25;
}

.media-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.8fr);
}

.copy-stack {
  display: grid;
  gap: clamp(28px, 4vw, 58px);
}

.copy-stack .glass-panel {
  max-width: 900px;
}

.image-frame {
  position: relative;
  margin: 0;
  border: clamp(12px, 1.4vw, 24px) solid #22f2ec;
  border-radius: clamp(34px, 3.8vw, 72px);
  overflow: hidden;
  background: #07111f;
  box-shadow: 0 24px 90px rgba(2, 243, 236, 0.14);
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tall-frame {
  height: min(58vh, 590px);
}

.wide-frame {
  aspect-ratio: 16 / 9;
}

.software-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-template-rows: auto auto 1fr;
}

.software-layout .copy-stack {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.top-image {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.bottom-image {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
  align-self: end;
}

.software-copy {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.compact-panel .glass-panel {
  font-size: clamp(21px, 1.85vw, 34px);
}

.left-copy-layout {
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  align-content: center;
}

.left-copy-layout h2 {
  grid-column: 1 / 3;
}

.left-copy-layout .glass-panel {
  grid-column: 1 / 2;
}

.right-copy-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-content: center;
}

.right-copy-layout h2,
.right-copy-layout .glass-panel {
  grid-column: 2 / 3;
}

.emerging-layout {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  grid-template-rows: auto auto;
}

.emerging-layout figure {
  grid-row: 1 / 2;
}

.emerging-layout .copy-stack {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.emerging-layout .glass-panel {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.contact-layout {
  align-content: center;
  justify-items: center;
  text-align: center;
}

.products-layout {
  display: grid;
  align-content: center;
  gap: clamp(26px, 3.4vw, 64px);
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 28px);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(18px, 1.6vw, 28px);
  min-height: clamp(430px, 38vw, 560px);
  border-radius: clamp(28px, 2.8vw, 54px);
  padding: clamp(28px, 2.8vw, 46px);
  background: rgba(133, 172, 187, 0.72);
  text-align: left;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
}

.product-price {
  margin: 0 0 12px;
  color: var(--cyan);
  font-family: var(--display-font);
  font-size: clamp(38px, 3.6vw, 70px);
  font-weight: 700;
  line-height: 0.9;
}

.product-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.25vw, 28px);
  font-weight: 800;
  line-height: 1.12;
}

.product-subtitle {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 0.9vw, 18px);
  font-weight: 700;
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 0.92vw, 18px);
  line-height: 1.35;
}

.buy-link {
  display: inline-grid;
  place-items: center;
  min-height: clamp(46px, 4vw, 58px);
  border-radius: 999px;
  padding: 12px 22px;
  background: linear-gradient(90deg, var(--blue), #27c3da);
  color: #fff;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.buy-link:hover {
  filter: brightness(1.08);
}

.featured-product {
  background: rgba(139, 179, 193, 0.86);
}

.contact-layout h2 {
  font-size: clamp(64px, 8.3vw, 156px);
}

.contact-layout p {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 1.7vw, 34px);
  line-height: 1.34;
}

.contact-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 5vw, 120px);
  width: min(100%, 1700px);
  min-height: clamp(76px, 9vw, 104px);
  border-radius: 999px;
  padding: 20px clamp(24px, 4vw, 44px);
  background: var(--glass-strong);
  font-size: clamp(18px, 1.75vw, 34px);
  font-weight: 800;
  line-height: 1.1;
}

.contact-link {
  display: inline-grid;
  place-items: center;
  min-height: 58px;
  border-radius: 999px;
  padding: 16px 32px;
  background: #fff;
  color: #0f4b48;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 700;
}

.legal-links a {
  border-bottom: 2px solid rgba(94, 246, 223, 0.6);
  padding-bottom: 4px;
}

.legal-links a:hover {
  color: #fff;
  border-bottom-color: var(--cyan);
}

.next-button {
  position: absolute;
  z-index: 5;
  right: clamp(28px, 5.6vw, 108px);
  bottom: clamp(28px, 8.8vh, 96px);
  display: grid;
  place-items: center;
  width: clamp(64px, 5vw, 96px);
  height: clamp(64px, 5vw, 96px);
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #0e514b;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.next-button::before {
  content: "";
  width: 32%;
  height: 32%;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.next-button::after {
  position: absolute;
  content: "";
  width: 34%;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

.next-button:hover {
  transform: translateX(5px);
  box-shadow: 0 16px 42px rgba(255, 255, 255, 0.18);
}

.orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan-deep));
  opacity: 0.96;
}

.orb-a {
  width: clamp(560px, 34vw, 720px);
  height: clamp(560px, 34vw, 720px);
  right: -14vw;
  top: -18vh;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
}

.orb-b {
  width: clamp(86px, 8vw, 146px);
  height: clamp(86px, 8vw, 146px);
  left: 6vw;
  top: 42vh;
}

.orb-c {
  width: clamp(98px, 7.5vw, 148px);
  height: clamp(98px, 7.5vw, 148px);
  right: 11.5vw;
  top: 20vh;
  background: linear-gradient(135deg, #2f95f1, var(--cyan));
}

.orb-d {
  width: 44vw;
  height: 44vw;
  left: -30vw;
  bottom: -12vh;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.orb-e {
  width: 11vw;
  height: 11vw;
  right: -2vw;
  top: 17vh;
  background: linear-gradient(135deg, #2d8ff0, var(--cyan));
}

.orb-f {
  width: 38vw;
  height: 38vw;
  right: -21vw;
  top: -7vh;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.orb-g {
  width: 9vw;
  height: 9vw;
  left: 4vw;
  top: 31vh;
  background: linear-gradient(135deg, #2d9ff1, var(--cyan));
}

.orb-h {
  width: 43vw;
  height: 43vw;
  right: -14vw;
  top: -1vh;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
}

.orb-i {
  width: 9vw;
  height: 9vw;
  right: 6vw;
  top: 34vh;
}

.orb-j {
  width: 35vw;
  height: 35vw;
  right: -14vw;
  top: -11vh;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.orb-k {
  width: 42vw;
  height: 42vw;
  left: -20vw;
  bottom: -19vh;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.orb-l {
  width: 29vw;
  height: 29vw;
  left: 15vw;
  bottom: 5vh;
}

.orb-m {
  width: 34vw;
  height: 34vw;
  right: -5vw;
  bottom: -12vh;
  background: linear-gradient(135deg, #36a6f4, var(--cyan));
}

.orb-n {
  width: 31vw;
  height: 31vw;
  right: 7vw;
  top: 23vh;
}

.orb-o {
  width: 47vw;
  height: 47vw;
  right: -18vw;
  bottom: -26vh;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.orb-p {
  width: 31vw;
  height: 31vw;
  left: 8vw;
  top: 24vh;
  background: linear-gradient(135deg, #2b9df1, var(--cyan));
}

.orb-q {
  width: 45vw;
  height: 45vw;
  left: -22vw;
  bottom: -22vh;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
}

.orb-r {
  width: 43vw;
  height: 43vw;
  left: -19vw;
  top: -22vh;
}

.orb-s {
  width: 18vw;
  height: 18vw;
  right: 15vw;
  bottom: 14vh;
  background: linear-gradient(135deg, #2d95f0, var(--cyan));
}

.orb-t {
  width: 16vw;
  height: 16vw;
  left: 10vw;
  top: 33vh;
}

.orb-u {
  width: 16vw;
  height: 16vw;
  right: 10vw;
  top: 23vh;
  background: linear-gradient(135deg, #2da2f1, var(--cyan));
}

.orb-v {
  width: 34vw;
  height: 34vw;
  left: -13vw;
  bottom: -16vh;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
}

.orb-w {
  width: 26vw;
  height: 26vw;
  right: -10vw;
  top: -8vh;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.about-panel::after,
.cyber-panel::after,
.contact-panel::after {
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.overview-panel::after,
.consulting-panel::after,
.analytics-panel::after,
.emerging-panel::after,
.products-panel::after {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
}

.policy-body {
  overflow: auto;
  min-height: 100vh;
}

.policy-body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 88% 0%, rgba(94, 246, 223, 0.55) 0 11%, transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(122, 32, 246, 0.75) 0 16%, transparent 32%),
    linear-gradient(115deg, var(--bg-a), var(--bg-b));
}

.policy-body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 0 1.5px, transparent 2.5px),
    radial-gradient(circle, rgba(95, 246, 223, 0.1) 0 1.5px, transparent 2.5px);
  background-size: 116px 98px, 241px 217px;
  background-position: 16px 18px, 28px 76px;
  opacity: 0.62;
}

.policy-header {
  background: linear-gradient(180deg, rgba(9, 18, 42, 0.9), rgba(9, 18, 42, 0));
}

.policy-page {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 44px) 0 80px;
}

.policy-document {
  border-radius: 34px;
  padding: clamp(28px, 5vw, 72px);
  background: rgba(11, 25, 48, 0.82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.88);
}

.policy-document h1,
.policy-document h2,
.policy-document h3 {
  letter-spacing: 0;
  text-transform: none;
}

.policy-document h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
}

.policy-document h2 {
  margin: 42px 0 14px;
  color: var(--cyan);
  font-family: var(--body-font);
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 800;
  line-height: 1.18;
}

.policy-document h3 {
  margin: 26px 0 10px;
  color: #fff;
  font-family: var(--body-font);
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 800;
  line-height: 1.22;
}

.policy-document p,
.policy-document li {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
}

.policy-document p {
  margin: 0 0 16px;
}

.policy-document ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 24px;
}

.policy-document strong {
  color: #fff;
}

@media (min-width: 1181px) {
  :root {
    --max-width: 840px;
    --header-height: 66px;
  }

  .site-header {
    gap: 20px;
    padding: 23px clamp(12px, 3.125vw, 60px) 12px;
  }

  .logo-link {
    width: clamp(59px, 5.2vw, 99px);
    height: clamp(28px, 2.375vw, 46px);
  }

  .site-nav {
    gap: clamp(21px, 3.1vw, 58px);
    font-size: clamp(11px, 0.85vw, 17px);
  }

  .site-nav a {
    padding: 6px 0;
  }

  .site-nav a::after {
    height: 2px;
  }

  .panel::before {
    background-size: 58px 49px, 87px 76px, 121px 109px;
    background-position: 8px 9px, 33px 5px, 14px 38px;
  }

  .panel::after {
    inset: auto auto -17vh -24vw;
    width: clamp(280px, 31vw, 580px);
    height: clamp(280px, 31vw, 580px);
  }

  .section-inner {
    width: min(var(--max-width), calc(100% - clamp(18px, 5vw, 110px)));
    padding-top: var(--header-height);
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: clamp(20px, 2vw, 34px);
  }

  h1 {
    font-size: clamp(32px, 4.9vw, 93px);
  }

  h2 {
    font-size: clamp(29px, 4.1vw, 78px);
  }

  .split-layout,
  .media-layout,
  .overview-layout,
  .software-layout,
  .left-copy-layout,
  .right-copy-layout,
  .emerging-layout,
  .products-layout,
  .contact-layout {
    gap: clamp(14px, 2vw, 38px);
  }

  .split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.82fr);
  }

  .about-copy {
    max-width: 325px;
  }

  .glass-panel {
    border-radius: clamp(17px, 2.1vw, 44px);
    padding: clamp(14px, 2vw, 34px) clamp(17px, 2.5vw, 44px);
    font-size: clamp(11px, 1vw, 19px);
  }

  .headline-block h2 {
    font-size: clamp(29px, 3.5vw, 66px);
  }

  .service-grid {
    gap: clamp(14px, 2vw, 40px);
  }

  .service-card {
    gap: clamp(13px, 1.25vw, 19px);
  }

  .service-card h3 {
    min-height: clamp(28px, 3vw, 43px);
    padding: 6px 11px;
    font-size: clamp(9px, 0.825vw, 16px);
  }

  .service-card p {
    min-height: clamp(75px, 8vw, 114px);
    border-radius: clamp(15px, 1.7vw, 32px);
    padding: clamp(14px, 2vw, 31px) clamp(12px, 1.5vw, 24px);
    font-size: clamp(10px, 0.85vw, 17px);
  }

  .media-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.8fr);
  }

  .copy-stack {
    gap: clamp(14px, 2vw, 29px);
  }

  .copy-stack .glass-panel {
    max-width: 450px;
  }

  .image-frame {
    border-width: clamp(6px, 0.7vw, 12px);
    border-radius: clamp(17px, 1.9vw, 36px);
    box-shadow: 0 12px 45px rgba(2, 243, 236, 0.14);
  }

  .tall-frame {
    height: min(29vh, 295px);
  }

  .compact-panel .glass-panel {
    font-size: clamp(11px, 0.925vw, 17px);
  }

  .emerging-layout {
    grid-template-columns: minmax(160px, 0.8fr) minmax(0, 1.2fr);
  }

  .contact-layout h2 {
    font-size: clamp(32px, 4.15vw, 78px);
  }

  .products-grid {
    gap: clamp(10px, 1vw, 16px);
  }

  .product-card {
    gap: clamp(9px, 0.8vw, 14px);
    min-height: clamp(170px, 18vw, 240px);
    border-radius: clamp(14px, 1.4vw, 27px);
    padding: clamp(13px, 1.25vw, 21px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  }

  .product-price {
    margin-bottom: 6px;
    font-size: clamp(19px, 1.8vw, 35px);
  }

  .product-card h3 {
    font-size: clamp(12px, 0.8vw, 16px);
  }

  .product-subtitle {
    margin-top: 6px;
    font-size: clamp(8px, 0.55vw, 11px);
  }

  .product-card ul {
    gap: 5px;
    padding-left: 10px;
    font-size: clamp(8px, 0.55vw, 11px);
  }

  .buy-link {
    min-height: clamp(23px, 2vw, 29px);
    padding: 6px 11px;
    font-size: clamp(7px, 0.5vw, 9px);
  }

  .contact-layout p {
    max-width: 900px;
    font-size: clamp(22px, 1.7vw, 34px);
  }

  .contact-strip {
    gap: clamp(20px, 5vw, 120px);
    width: min(100%, 1700px);
    min-height: clamp(76px, 9vw, 104px);
    padding: 20px clamp(24px, 4vw, 44px);
    font-size: clamp(18px, 1.75vw, 34px);
  }

  .contact-link {
    min-height: 58px;
    padding: 16px 32px;
    font-size: 20px;
  }

  .legal-links {
    gap: clamp(14px, 2vw, 28px);
    font-size: clamp(14px, 1vw, 18px);
  }

  .policy-page {
    width: min(840px, calc(100% - 80px));
    padding-top: calc(var(--header-height) + 32px);
  }

  .policy-document {
    border-radius: 24px;
    padding: clamp(28px, 3vw, 48px);
  }

  .policy-document h1 {
    font-size: clamp(36px, 3.8vw, 56px);
  }

  .policy-document h2 {
    font-size: clamp(18px, 1.45vw, 24px);
  }

  .policy-document h3 {
    font-size: clamp(15px, 1.15vw, 19px);
  }

  .policy-document p,
  .policy-document li {
    font-size: clamp(13px, 0.9vw, 16px);
  }

  .next-button {
    right: clamp(14px, 2.8vw, 54px);
    bottom: clamp(14px, 4.4vh, 48px);
    width: clamp(32px, 2.5vw, 48px);
    height: clamp(32px, 2.5vw, 48px);
  }

  .next-button::before {
    border-top-width: 2px;
    border-right-width: 2px;
  }

  .next-button::after {
    height: 2px;
  }

  .orb-a {
    width: clamp(280px, 17vw, 360px);
    height: clamp(280px, 17vw, 360px);
  }

  .orb-b {
    width: clamp(43px, 4vw, 73px);
    height: clamp(43px, 4vw, 73px);
  }

  .orb-c {
    width: clamp(49px, 3.75vw, 74px);
    height: clamp(49px, 3.75vw, 74px);
  }

  .orb-d {
    width: 22vw;
    height: 22vw;
  }

  .orb-e {
    width: 5.5vw;
    height: 5.5vw;
  }

  .orb-f {
    width: 19vw;
    height: 19vw;
  }

  .orb-g,
  .orb-i {
    width: 4.5vw;
    height: 4.5vw;
  }

  .orb-h {
    width: 21.5vw;
    height: 21.5vw;
  }

  .orb-j {
    width: 17.5vw;
    height: 17.5vw;
  }

  .orb-k {
    width: 21vw;
    height: 21vw;
  }

  .orb-l {
    width: 14.5vw;
    height: 14.5vw;
  }

  .orb-m {
    width: 17vw;
    height: 17vw;
  }

  .orb-n,
  .orb-p {
    width: 15.5vw;
    height: 15.5vw;
  }

  .orb-o {
    width: 23.5vw;
    height: 23.5vw;
  }

  .orb-q {
    width: 22.5vw;
    height: 22.5vw;
  }

  .orb-r {
    width: 21.5vw;
    height: 21.5vw;
  }

  .orb-s {
    width: 9vw;
    height: 9vw;
  }

  .orb-t,
  .orb-u {
    width: 8vw;
    height: 8vw;
  }

  .orb-v {
    width: 17vw;
    height: 17vw;
  }

  .orb-w {
    width: 13vw;
    height: 13vw;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 112px;
  }

  .site-header {
    padding: 28px 28px 16px;
  }

  .site-nav {
    gap: 24px;
    font-size: 18px;
  }

  .section-inner {
    width: min(100% - 44px, 980px);
  }

  .split-layout,
  .media-layout,
  .software-layout,
  .left-copy-layout,
  .right-copy-layout,
  .emerging-layout,
  .products-layout {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .about-copy,
  .copy-stack .glass-panel,
  .left-copy-layout .glass-panel,
  .right-copy-layout h2,
  .right-copy-layout .glass-panel {
    max-width: none;
    justify-self: stretch;
    grid-column: auto;
  }

  .left-copy-layout h2 {
    grid-column: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .featured-product {
    grid-column: 1 / -1;
  }

  .service-card {
    grid-template-columns: minmax(220px, 0.44fr) 1fr;
    grid-template-rows: auto;
    align-items: stretch;
  }

  .service-card h3,
  .service-card p {
    min-height: 110px;
  }

  .software-layout .copy-stack,
  .top-image,
  .bottom-image,
  .software-copy,
  .emerging-layout figure,
  .emerging-layout .copy-stack,
  .emerging-layout .glass-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .tall-frame {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .contact-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 92px;
  }

  body {
    overflow: auto;
    overflow-x: hidden;
  }

  .snap-shell {
    scroll-snap-type: none;
  }

  .site-header {
    align-items: flex-start;
    padding: 18px 18px 12px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    display: grid;
    gap: 6px;
    width: min(260px, calc(100vw - 32px));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 14px;
    background: rgba(8, 18, 38, 0.94);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .site-nav a.is-active {
    background: rgba(94, 246, 223, 0.14);
  }

  .site-nav a::after {
    display: none;
  }

  .logo-link {
    width: 112px;
    height: 52px;
  }

  .panel {
    min-height: auto;
  }

  .section-inner {
    min-height: auto;
    width: calc(100vw - 32px);
    max-width: 620px;
    padding-top: 110px;
    padding-bottom: 92px;
  }

  .home-panel .section-inner {
    min-height: 100vh;
    padding-inline: 4px;
  }

  h1 {
    font-size: clamp(34px, 10.8vw, 43px);
    line-height: 0.98;
  }

  .home-panel .orb-a {
    width: 112vw;
    height: 112vw;
    right: -42vw;
    top: -11vh;
  }

  .home-panel .orb-b {
    width: 86px;
    height: 86px;
    left: 30px;
    top: 42vh;
  }

  .home-panel .orb-c {
    width: 92px;
    height: 92px;
    right: -34px;
    top: 20vh;
  }

  .home-panel::after {
    width: 116vw;
    height: 116vw;
    left: -42vw;
    bottom: -22vh;
  }

  h2,
  .headline-block h2,
  .contact-layout h2 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .glass-panel,
  .compact-panel .glass-panel {
    width: calc(100vw - 32px);
    max-width: 100%;
    border-radius: 28px;
    padding: 26px;
    font-size: 16px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card h3,
  .service-card p {
    min-height: auto;
  }

  .service-card p {
    font-size: 17px;
  }

  .products-layout {
    align-content: start;
    padding-top: 116px;
  }

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

  .featured-product {
    grid-column: auto;
  }

  .product-card {
    min-height: auto;
    border-radius: 28px;
    padding: 24px;
  }

  .product-price {
    font-size: 36px;
  }

  .product-card h3 {
    font-size: 20px;
  }

  .product-subtitle,
  .product-card ul {
    font-size: 14px;
  }

  .buy-link {
    min-height: 48px;
    font-size: 14px;
  }

  .image-frame {
    border-width: 10px;
    border-radius: 28px;
  }

  .next-button {
    display: none;
  }

  .orb {
    opacity: 0.72;
  }

  .contact-layout p {
    font-size: 18px;
  }

  .contact-strip {
    border-radius: 28px;
    font-size: 16px;
  }

  .contact-strip span {
    display: none;
  }

  .legal-links {
    font-size: 14px;
  }

  .policy-body {
    overflow: auto;
    overflow-x: hidden;
  }

  .policy-header {
    position: sticky;
    height: auto;
    min-height: var(--header-height);
    pointer-events: auto;
  }

  .policy-header .site-nav {
    display: none;
  }

  .policy-page {
    width: calc(100% - 32px);
    padding: 34px 0 54px;
  }

  .policy-document {
    border-radius: 24px;
    padding: 24px;
  }

  .policy-document h1 {
    font-size: 38px;
  }

  .policy-document h2 {
    margin-top: 34px;
    font-size: 22px;
  }

  .policy-document h3 {
    font-size: 18px;
  }

  .policy-document p,
  .policy-document li {
    font-size: 15px;
  }
}
