:root {
  --bg: #05070d;
  --bg-soft: #0b1020;
  --panel: rgba(13, 19, 36, .82);
  --panel-solid: #0d1324;
  --line: rgba(148, 163, 184, .16);
  --text: #f8fafc;
  --muted: #9aabc3;
  --cyan: #19c8ff;
  --blue: #4f7cff;
  --violet: #8b5cf6;
  --pink: #ec4899;
  --green: #29d39a;
  --gradient: linear-gradient(120deg, var(--cyan), var(--violet) 54%, var(--pink));
  --display: "Outfit", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --shadow: 0 30px 90px rgba(0, 0, 0, .5);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 25% 0%, rgba(25, 200, 255, .08), transparent 30rem),
    radial-gradient(circle at 100% 20%, rgba(139, 92, 246, .07), transparent 34rem),
    var(--bg);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #05070d;
  background: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(25, 200, 255, .85);
  outline-offset: 4px;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(148, 163, 184, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.page-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(255, 255, 255, .04);
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gradient);
  box-shadow: 0 0 18px rgba(139, 92, 246, .8);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(148, 163, 184, .1);
  background: rgba(4, 7, 16, .72);
  backdrop-filter: blur(18px);
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.scrolled {
  background: rgba(4, 7, 16, .94);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .3);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: block;
  width: 155px;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 100%;
  height: 58px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  color: #bac6d8;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform .18s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(25, 200, 255, .28);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(120deg, rgba(25, 200, 255, .18), rgba(139, 92, 246, .22));
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(25, 200, 255, .12);
  transition: transform .18s ease, border-color .18s ease;
}

.header-cta:hover {
  border-color: rgba(25, 200, 255, .58);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(139, 92, 246, .35);
  border-radius: 12px;
  background: rgba(139, 92, 246, .12);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: #fff;
  transition: transform .18s ease, opacity .18s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 78px;
  right: 0;
  left: 0;
  display: grid;
  padding: 20px;
  border-top: 1px solid var(--line);
  background: rgba(4, 7, 16, .98);
  box-shadow: 0 30px 50px rgba(0, 0, 0, .45);
  gap: 6px;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 13px 16px;
  border-radius: 10px;
}

.mobile-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .05);
}

.section {
  position: relative;
  padding: 112px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #aab7cb;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.eyebrow span {
  width: 25px;
  height: 2px;
  background: var(--gradient);
  box-shadow: 0 0 10px var(--cyan);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.07;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.95rem, 3.7vw, 3.55rem);
  letter-spacing: -.045em;
}

.section-heading h2 {
  color: transparent;
  background: linear-gradient(105deg, #f7f9ff 0%, #f7f9ff 48%, #26bcff 66%, #7d67ff 82%, #e450aa 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-wrap: balance;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  margin-bottom: 16px;
}

.section-heading p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered p {
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 38px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  align-items: center;
  gap: 72px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero-orb-one {
  top: 6%;
  right: -14rem;
  width: 48rem;
  height: 48rem;
  background: radial-gradient(circle, rgba(90, 74, 255, .19), transparent 66%);
}

.hero-orb-two {
  bottom: -12rem;
  left: -12rem;
  width: 35rem;
  height: 35rem;
  background: radial-gradient(circle, rgba(25, 200, 255, .12), transparent 65%);
}

.breadcrumbs {
  display: flex;
  margin-bottom: 34px;
  align-items: center;
  gap: 8px;
  color: #718198;
  font-size: .76rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.hero-copy .eyebrow {
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.5vw, 5.55rem);
  letter-spacing: -.06em;
}

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

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #b4c0d3;
  font-size: clamp(1rem, 1.4vw, 1.17rem);
}

.hero-actions {
  display: flex;
  margin-bottom: 38px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 49px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gradient);
  box-shadow: 0 13px 34px rgba(92, 70, 255, .28), inset 0 1px rgba(255, 255, 255, .22);
}

.button.primary:hover {
  box-shadow: 0 18px 42px rgba(92, 70, 255, .4), inset 0 1px rgba(255, 255, 255, .25);
}

.button.secondary {
  border-color: rgba(148, 163, 184, .28);
  background: rgba(255, 255, 255, .035);
}

.button.secondary:hover {
  border-color: rgba(25, 200, 255, .5);
  background: rgba(25, 200, 255, .06);
}

.button.full {
  width: 100%;
}

.hero-facts {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.hero-facts div {
  min-width: 0;
  padding: 15px 17px;
  background: rgba(8, 12, 23, .92);
}

.hero-facts dt {
  margin-bottom: 4px;
  color: #718198;
  font-size: .69rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: .97rem;
  font-weight: 800;
}

.hero-facts small {
  display: block;
  color: #8fa0b7;
  font-size: .65rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  perspective: 1200px;
}

.device-halo {
  position: absolute;
  width: 455px;
  height: 455px;
  border: 1px solid rgba(25, 200, 255, .16);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(25, 200, 255, .12), rgba(139, 92, 246, .04) 46%, transparent 66%),
    conic-gradient(from 45deg, transparent, rgba(25, 200, 255, .14), transparent, rgba(236, 72, 153, .14), transparent);
  box-shadow: inset 0 0 80px rgba(25, 200, 255, .04);
}

.device-halo::before,
.device-halo::after {
  position: absolute;
  content: "";
  border: 1px dashed rgba(139, 92, 246, .2);
  border-radius: inherit;
  inset: 35px;
}

.device-halo::after {
  border-color: rgba(25, 200, 255, .14);
  inset: 80px;
}

.hero-device {
  position: relative;
  z-index: 3;
  width: 250px;
  height: 500px;
  padding: 4px;
  border-radius: 28px;
  background: var(--gradient);
  box-shadow: 0 45px 90px rgba(0, 0, 0, .68), 0 0 42px rgba(25, 200, 255, .2);
  transform: rotateY(-5deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform .2s ease, box-shadow .2s ease;
  will-change: transform;
}

.hero-device:hover,
.hero-device:focus-within {
  box-shadow: 0 52px 105px rgba(0, 0, 0, .72), 0 0 55px rgba(139, 92, 246, .3);
}

.device-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #02040a;
}

.demo-poster,
.demo-poster img,
.device-screen video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.demo-poster {
  z-index: 1;
  transition: opacity .2s ease;
}

.device-screen video {
  z-index: 2;
  opacity: 0;
  transition: opacity .2s ease;
}

.hero-device.is-playing video {
  opacity: 1;
}

.hero-device.is-playing .demo-poster {
  opacity: 0;
}

.speaker,
.camera {
  position: absolute;
  z-index: 5;
  top: 8px;
  background: rgba(2, 6, 23, .82);
}

.speaker {
  left: 50%;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.camera {
  right: 12px;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(25, 200, 255, .55);
  border-radius: 50%;
}

.side-button {
  position: absolute;
  z-index: 4;
  width: 4px;
  border-radius: 4px;
  background: #111a2d;
  box-shadow: inset 0 0 1px rgba(255, 255, 255, .5);
}

.volume-one {
  top: 92px;
  left: -4px;
  height: 35px;
}

.volume-two {
  top: 138px;
  left: -4px;
  height: 35px;
}

.power {
  top: 120px;
  right: -4px;
  height: 58px;
}

.demo-control {
  position: absolute;
  z-index: 6;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  color: #fff;
  background: rgba(2, 6, 23, .72);
  backdrop-filter: blur(10px);
  font-size: .65rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease;
}

.demo-control:hover {
  background: rgba(2, 6, 23, .92);
}

.play-symbol {
  font-size: .62rem;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(148, 163, 184, .13);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-a {
  width: 525px;
  height: 350px;
  transform: rotate(-18deg);
}

.orbit-b {
  width: 390px;
  height: 535px;
  transform: rotate(28deg);
}

.orbit span {
  position: absolute;
  padding: 6px 9px;
  border: 1px solid rgba(25, 200, 255, .22);
  border-radius: 999px;
  color: var(--cyan);
  background: #080d18;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.orbit-a span {
  top: 28px;
  left: 80px;
}

.orbit-b span {
  right: -4px;
  bottom: 80px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  max-width: 170px;
  padding: 11px 13px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 13px;
  align-items: center;
  gap: 9px;
  background: rgba(10, 15, 28, .8);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .38);
  backdrop-filter: blur(15px);
  pointer-events: none;
}

.floating-card b {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 8px;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  font-family: var(--display);
  font-size: .72rem;
}

.floating-card span {
  color: #c9d3e2;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.25;
}

.card-ai {
  top: 100px;
  right: -5px;
}

.card-install {
  bottom: 96px;
  left: -4px;
}

.card-secure {
  right: 10px;
  bottom: 36px;
}

.platform-strip {
  display: flex;
  min-height: 65px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #b3bfd1;
  background: rgba(12, 17, 31, .72);
}

.platform-strip > span {
  color: #718198;
  font-size: .73rem;
}

.platform-strip div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
}

.platform-strip b {
  color: var(--cyan);
}

.answer-section {
  background: linear-gradient(to bottom, transparent, rgba(15, 22, 41, .42), transparent);
}

.answer-grid {
  display: grid;
  margin-bottom: 38px;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 48px;
}

.answer-grid .section-heading h2 {
  max-width: 520px;
  font-size: clamp(2.55rem, 4.4vw, 4.4rem);
  line-height: .98;
}

.answer-copy {
  padding: 24px 0 24px 32px;
  border-left: 1px solid rgba(25, 200, 255, .28);
}

.answer-lead {
  color: #e9eef7;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
  font-weight: 600;
  line-height: 1.35;
}

.answer-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit-card,
.case-card,
.process-grid li {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(17, 25, 46, .82), rgba(7, 11, 21, .9));
  box-shadow: 0 20px 45px rgba(0, 0, 0, .17);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.benefit-card {
  min-height: 190px;
  padding: 20px;
}

.benefit-card::after,
.case-card::after {
  position: absolute;
  content: "";
  right: -45px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .16), transparent 68%);
}

.benefit-card:hover,
.case-card:hover {
  border-color: rgba(25, 200, 255, .32);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .3), 0 0 24px rgba(25, 200, 255, .06);
  transform: translateY(-5px);
}

.benefit-card > span,
.benefit-card > i {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border: 1px solid rgba(25, 200, 255, .28);
  border-radius: 11px;
  place-items: center;
  color: var(--cyan);
  background: linear-gradient(145deg, rgba(25, 200, 255, .13), rgba(139, 92, 246, .1));
  box-shadow: 0 10px 24px rgba(25, 200, 255, .08);
  font-family: var(--display);
  font-size: .68rem;
  font-style: normal;
  font-weight: 800;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.benefit-card p,
.case-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .86rem;
}

.story-section {
  background:
    radial-gradient(circle at 26% 55%, rgba(25, 200, 255, .08), transparent 28rem),
    #070a12;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.story-visual {
  position: sticky;
  top: 120px;
  display: grid;
  height: min(620px, calc(100vh - 150px));
  place-items: center;
}

.story-phone {
  position: relative;
  width: 280px;
  height: 570px;
  padding: 4px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--gradient);
  box-shadow: 0 45px 100px rgba(0, 0, 0, .68), 0 0 45px rgba(25, 200, 255, .12);
}

.story-screen {
  position: absolute;
  z-index: 1;
  inset: 4px;
  display: flex;
  padding: 26px 20px 20px;
  border-radius: 26px;
  flex-direction: column;
  background:
    radial-gradient(circle at 80% 15%, rgba(139, 92, 246, .2), transparent 12rem),
    linear-gradient(155deg, #10192d, #060911);
  opacity: 0;
  transform: translateY(24px) scale(.98);
  transition: opacity .38s ease, transform .38s ease;
}

.story-screen.active {
  z-index: 2;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mini-top {
  display: flex;
  margin-bottom: 45px;
  align-items: center;
  gap: 8px;
  color: #9aabc3;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.mini-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
}

.screen-hero {
  display: flex;
  margin: auto 0;
  flex-direction: column;
}

.screen-hero small {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.screen-hero strong,
.story-screen > strong {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1.07;
}

.screen-hero em,
.story-screen > em {
  color: #93a4bc;
  font-size: .78rem;
  font-style: normal;
}

.screen-bars {
  display: grid;
  margin-top: auto;
  gap: 8px;
}

.screen-bars i {
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(25, 200, 255, .13), rgba(139, 92, 246, .06));
}

.catalog-ui {
  display: grid;
  margin: 15px 0 30px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.catalog-ui div {
  height: 125px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background:
    linear-gradient(to top, rgba(6, 10, 20, .85), transparent),
    linear-gradient(145deg, rgba(25, 200, 255, .2), rgba(139, 92, 246, .15));
}

.catalog-ui div:nth-child(2),
.catalog-ui div:nth-child(3) {
  background:
    linear-gradient(to top, rgba(6, 10, 20, .85), transparent),
    linear-gradient(145deg, rgba(236, 72, 153, .15), rgba(139, 92, 246, .18));
}

.conversion-ring {
  display: grid;
  width: 185px;
  height: 185px;
  margin: 45px auto 55px;
  border: 1px solid rgba(25, 200, 255, .35);
  border-radius: 50%;
  place-content: center;
  text-align: center;
  background: radial-gradient(circle, rgba(25, 200, 255, .15), transparent 66%);
  box-shadow: 0 0 50px rgba(25, 200, 255, .09);
}

.conversion-ring b {
  font-family: var(--display);
  font-size: 4rem;
  line-height: .9;
}

.conversion-ring span {
  color: var(--cyan);
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.node-map {
  position: relative;
  height: 250px;
  margin: 25px 0 40px;
}

.node-map::before,
.node-map::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  background: linear-gradient(90deg, transparent, rgba(25, 200, 255, .45), transparent);
  transform: translate(-50%, -50%) rotate(30deg);
}

.node-map::before {
  width: 230px;
  height: 1px;
}

.node-map::after {
  width: 220px;
  height: 1px;
  transform: translate(-50%, -50%) rotate(-35deg);
}

.node-map i {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(25, 200, 255, .4);
  border-radius: 10px;
  background: #0e1729;
  box-shadow: 0 0 22px rgba(25, 200, 255, .12);
}

.node-map i:nth-child(1) { top: 10px; left: 98px; }
.node-map i:nth-child(2) { top: 92px; left: 10px; }
.node-map i:nth-child(3) { top: 100px; left: 100px; width: 50px; height: 50px; background: linear-gradient(145deg, #1ab6ec, #704bea); }
.node-map i:nth-child(4) { top: 88px; right: 10px; }
.node-map i:nth-child(5) { right: 45px; bottom: 5px; }

.story-steps {
  padding: 48px 0;
}

.story-step {
  min-height: clamp(390px, 52vh, 520px);
  padding: 42px 0 42px 35px;
  border-left: 1px solid rgba(148, 163, 184, .16);
  opacity: .38;
  transition: opacity .25s ease, border-color .25s ease;
}

.story-step.active {
  border-left-color: var(--cyan);
  opacity: 1;
}

.story-step span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 26px;
  border: 1px solid rgba(25, 200, 255, .3);
  border-radius: 9px;
  place-items: center;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 800;
}

.story-step h3 {
  max-width: 440px;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
}

.story-step p {
  max-width: 510px;
  color: var(--muted);
  font-size: 1rem;
}

.comparison-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(9, 14, 27, .76);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}

th,
td {
  padding: 19px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

thead th {
  color: #aebbd0;
  background: rgba(255, 255, 255, .025);
  font-family: var(--display);
  font-size: .86rem;
}

thead th.recommended {
  color: #fff;
  background: linear-gradient(135deg, rgba(25, 200, 255, .13), rgba(139, 92, 246, .15));
}

thead small {
  display: block;
  color: var(--cyan);
  font-family: var(--body);
  font-size: .58rem;
  text-transform: uppercase;
}

tbody th {
  color: #d8e0ec;
  font-size: .82rem;
}

tbody td {
  color: #9eacc1;
  font-size: .8rem;
}

tbody td:nth-child(2) {
  color: #ddf8ff;
  background: rgba(25, 200, 255, .035);
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

tr th:last-child,
tr td:last-child {
  border-right: 0;
}

.package-section {
  background: linear-gradient(140deg, rgba(13, 21, 41, .7), rgba(7, 9, 16, .35));
}

.package-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: 70px;
}

.package-copy {
  position: sticky;
  top: 120px;
}

.package-copy .eyebrow {
  margin-bottom: 18px;
}

.package-copy p {
  color: var(--muted);
}

.price-panel {
  display: flex;
  margin: 34px 0 26px;
  padding: 21px;
  border: 1px solid rgba(25, 200, 255, .25);
  border-radius: 16px;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(25, 200, 255, .08), rgba(139, 92, 246, .08));
}

.price-panel small,
.price-panel span {
  color: #8fa0b7;
  font-size: .72rem;
}

.price-panel strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.price-panel em {
  color: var(--cyan);
  font-size: .75rem;
  font-style: normal;
}

.included-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(9, 14, 27, .85);
  box-shadow: var(--shadow);
}

.included-card h3 {
  margin-bottom: 25px;
  font-size: 1.45rem;
}

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

.check-list li {
  display: flex;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, .1);
  border-radius: 13px;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .018);
}

.check-list li > b {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 9px;
  place-items: center;
  color: var(--cyan);
  background: rgba(25, 200, 255, .09);
  font-size: .65rem;
}

.check-list span {
  display: flex;
  flex-direction: column;
  color: #91a1b7;
  font-size: .75rem;
}

.check-list strong {
  color: #edf3fa;
  font-size: .85rem;
}

.scope-note {
  margin-top: 18px;
  padding: 16px;
  border-left: 2px solid var(--pink);
  color: #92a2b9;
  background: rgba(236, 72, 153, .05);
  font-size: .78rem;
}

.scope-note strong {
  color: #f8fafc;
}

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

.case-card {
  min-height: 215px;
  padding: 25px;
}

.case-card > span {
  display: inline-block;
  margin-bottom: 45px;
  color: var(--cyan);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.case-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.builder-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(139, 92, 246, .08), transparent 35rem),
    #070a12;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  min-width: 0;
  align-items: start;
  gap: 24px;
}

.module-picker,
.builder-summary,
.quote-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(10, 15, 28, .78);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .3);
}

.module-picker {
  padding: 24px;
}

.module-tabs {
  display: flex;
  margin-bottom: 22px;
  padding-bottom: 4px;
  overflow-x: auto;
  gap: 7px;
  scrollbar-width: thin;
}

.module-tab {
  padding: 8px 12px;
  border: 1px solid rgba(148, 163, 184, .15);
  border-radius: 999px;
  flex: 0 0 auto;
  color: #93a4bc;
  background: rgba(255, 255, 255, .025);
  font-size: .7rem;
  font-weight: 700;
  cursor: pointer;
}

.module-tab.active {
  border-color: rgba(25, 200, 255, .4);
  color: #fff;
  background: linear-gradient(110deg, rgba(25, 200, 255, .16), rgba(139, 92, 246, .16));
}

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

.module-card {
  display: flex;
  min-width: 0;
  min-height: 68px;
  padding: 9px 10px;
  border: 1px solid rgba(148, 163, 184, .12);
  border-radius: 13px;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: rgba(255, 255, 255, .018);
  text-align: left;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.module-card:hover {
  border-color: rgba(25, 200, 255, .32);
  transform: translateY(-2px);
}

.module-card[aria-pressed="true"] {
  border-color: rgba(25, 200, 255, .5);
  background: linear-gradient(115deg, rgba(25, 200, 255, .1), rgba(139, 92, 246, .1));
  box-shadow: inset 0 0 25px rgba(25, 200, 255, .03);
}

.module-card[hidden] {
  display: none;
}

.module-card > i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(25, 200, 255, .2);
  background: linear-gradient(145deg, rgba(25, 200, 255, .13), rgba(139, 92, 246, .09));
  font-family: var(--display);
  font-size: .78rem;
  font-style: normal;
}

.module-card > span {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.module-card strong {
  overflow: hidden;
  font-size: .7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.module-card small {
  color: #7f91a9;
  font-size: .58rem;
  line-height: 1.3;
}

.module-card > b {
  display: grid;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(148, 163, 184, .15);
  border-radius: 7px;
  place-items: center;
  color: #9cadc4;
  font-size: .8rem;
}

.module-card[aria-pressed="true"] > b {
  color: #06101a;
  background: var(--cyan);
}

.module-card[aria-pressed="true"] > b::before {
  content: "✓";
}

.module-card[aria-pressed="true"] > b {
  font-size: 0;
}

.module-card[aria-pressed="true"] > b::before {
  font-size: .72rem;
}

.builder-summary {
  position: sticky;
  top: 105px;
  overflow: hidden;
}

.summary-phone {
  display: flex;
  min-height: 340px;
  padding: 18px;
  flex-direction: column;
  background:
    radial-gradient(circle at 90% 0%, rgba(139, 92, 246, .25), transparent 12rem),
    linear-gradient(150deg, #111a30, #070b14);
}

.summary-top {
  display: flex;
  margin-bottom: 35px;
  align-items: center;
  gap: 8px;
  color: #a8b5c8;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.summary-top i,
.summary-top b {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.summary-top span {
  flex: 1;
}

.summary-top b {
  width: 5px;
  height: 5px;
  background: var(--pink);
}

.summary-hero {
  display: flex;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  flex-direction: column;
  background: rgba(255, 255, 255, .035);
}

.summary-hero small {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.summary-hero strong {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.1;
}

.summary-modules {
  display: flex;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 6px;
}

.summary-modules span {
  padding: 5px 8px;
  border: 1px solid rgba(25, 200, 255, .16);
  border-radius: 999px;
  color: #aab9cd;
  background: rgba(25, 200, 255, .05);
  font-size: .56rem;
}

.summary-action {
  display: flex;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 10px;
  justify-content: space-between;
  color: #fff;
  background: var(--gradient);
  font-size: .58rem;
  font-weight: 800;
}

.summary-copy {
  padding: 21px;
}

.summary-copy > div {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, .1);
  align-items: center;
  justify-content: space-between;
  color: #8fa0b7;
  font-size: .68rem;
}

.summary-copy > div strong {
  color: #fff;
  font-family: var(--display);
  font-size: .82rem;
}

.summary-copy .summary-price {
  align-items: flex-end;
}

.summary-copy .summary-price strong {
  text-align: right;
  font-size: 1rem;
}

.summary-price small {
  display: block;
  color: var(--cyan);
  font-family: var(--body);
  font-size: .52rem;
}

.summary-copy p {
  margin: 15px 0;
  color: #7f91a9;
  font-size: .64rem;
}

.clear-selection {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border: 0;
  color: #8294ab;
  background: transparent;
  font-size: .65rem;
  cursor: pointer;
}

.clear-selection:hover {
  color: #fff;
}

.quote-panel {
  display: grid;
  margin-top: 28px;
  padding: 34px;
  grid-template-columns: .7fr 1.3fr;
  gap: 50px;
}

.quote-intro .eyebrow {
  margin-bottom: 17px;
}

.quote-intro h3 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.quote-intro p,
.quote-intro li {
  color: var(--muted);
}

.quote-intro ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.quote-intro li {
  padding: 7px 0;
  font-size: .76rem;
}

.quote-intro li::before {
  margin-right: 9px;
  color: var(--green);
  content: "✓";
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid label {
  display: flex;
  color: #c8d2e0;
  flex-direction: column;
  font-size: .7rem;
  font-weight: 700;
  gap: 7px;
}

.form-grid label > span {
  color: var(--pink);
}

.form-grid label.wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, .19);
  border-radius: 11px;
  color: #fff;
  background: rgba(2, 6, 15, .62);
  transition: border-color .16s ease, box-shadow .16s ease;
}

.form-grid input,
.form-grid select {
  height: 46px;
  padding: 0 13px;
}

.form-grid textarea {
  min-height: 105px;
  padding: 12px 13px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--cyan);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(25, 200, 255, .1);
}

.form-grid input[aria-invalid="true"],
.form-grid select[aria-invalid="true"] {
  border-color: #fb7185;
}

.form-grid .trap {
  position: absolute;
  left: -9999px;
}

.selected-inline {
  margin: 15px 0;
  padding: 12px;
  border: 1px dashed rgba(25, 200, 255, .22);
  border-radius: 10px;
  color: #8fa0b7;
  background: rgba(25, 200, 255, .035);
  font-size: .68rem;
}

.consent {
  display: flex;
  margin: 12px 0 18px;
  align-items: flex-start;
  gap: 9px;
  color: #8fa0b7;
  font-size: .65rem;
}

.consent input {
  margin-top: 3px;
  accent-color: var(--cyan);
}

.consent a {
  color: #c3d2e7;
}

.submit-button {
  width: 100%;
  border: 0;
}

.submit-button:disabled {
  cursor: wait;
  opacity: .65;
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: #aab9cd;
  font-size: .72rem;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #fb7185;
}

.security-section {
  background:
    radial-gradient(circle at 75% 50%, rgba(25, 200, 255, .08), transparent 30rem),
    linear-gradient(to bottom, #070a12, #080d18);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 75px;
}

.security-copy .eyebrow {
  margin-bottom: 18px;
}

.security-copy > p {
  color: var(--muted);
}

.security-points {
  display: grid;
  margin-top: 30px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.security-points article {
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, .11);
  border-radius: 12px;
  background: rgba(255, 255, 255, .02);
}

.security-points b {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: .8rem;
}

.security-points span {
  color: #8799b0;
  font-size: .68rem;
}

.data-flow {
  display: flex;
  min-height: 610px;
  padding: 35px;
  border: 1px solid rgba(25, 200, 255, .16);
  border-radius: 28px;
  align-items: center;
  flex-direction: column;
  background:
    linear-gradient(rgba(25, 200, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 200, 255, .025) 1px, transparent 1px),
    rgba(7, 12, 23, .85);
  background-size: 30px 30px;
  box-shadow: var(--shadow);
}

.flow-node,
.flow-core {
  display: flex;
  width: min(280px, 100%);
  padding: 19px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 15px;
  align-items: center;
  flex-direction: column;
  background: #0c1426;
  text-align: center;
}

.flow-node i,
.flow-core i {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 8px;
  border-radius: 11px;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  font-style: normal;
}

.flow-node strong,
.flow-core strong {
  font-family: var(--display);
  font-size: .9rem;
}

.flow-node span,
.flow-core span {
  color: #8294ab;
  font-size: .62rem;
}

.flow-line {
  position: relative;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--cyan), var(--violet));
}

.flow-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 4px 7px;
  border: 1px solid rgba(25, 200, 255, .25);
  border-radius: 99px;
  color: var(--cyan);
  background: #080d18;
  font-size: .52rem;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.flow-core {
  border-color: rgba(25, 200, 255, .28);
  box-shadow: 0 0 35px rgba(25, 200, 255, .08);
}

.flow-branches {
  position: relative;
  display: grid;
  width: 100%;
  margin-top: 55px;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.flow-branches::before {
  position: absolute;
  content: "";
  top: -28px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--cyan), transparent);
}

.flow-branches div {
  display: flex;
  padding: 11px 5px;
  border: 1px solid rgba(148, 163, 184, .12);
  border-radius: 10px;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  background: #0b1221;
}

.flow-branches i {
  color: var(--cyan);
  font-style: normal;
}

.flow-branches span {
  color: #91a1b7;
  font-size: .57rem;
}

.data-flow > p {
  margin: auto 0 0;
  color: #7f91a9;
  font-size: .65rem;
  text-align: center;
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  gap: 10px;
}

.process-grid li {
  min-height: 172px;
  padding: 20px;
}

.process-grid li > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border: 1px solid rgba(25, 200, 255, .25);
  border-radius: 10px;
  place-items: center;
  color: var(--cyan);
  background: rgba(25, 200, 255, .07);
  font-size: .68rem;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}

.timeline-note {
  max-width: 760px;
  margin: 30px auto 0;
  color: #8fa0b7;
  font-size: .78rem;
  text-align: center;
}

.timeline-note strong {
  color: #fff;
}

.faq-section {
  background: #070a12;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 80px;
}

.faq-layout > .section-heading {
  position: sticky;
  top: 115px;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .02);
  transition: border-color .18s ease, background .18s ease;
}

.faq-list details[open] {
  border-color: rgba(25, 200, 255, .3);
  background: rgba(25, 200, 255, .035);
}

.faq-list summary {
  display: flex;
  padding: 19px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border: 1px solid rgba(148, 163, 184, .15);
  border-radius: 7px;
  place-items: center;
  color: var(--cyan);
  transition: transform .18s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 19px 19px;
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}

.final-cta {
  padding-top: 70px;
}

.final-panel {
  position: relative;
  display: flex;
  padding: 55px;
  overflow: hidden;
  border: 1px solid rgba(25, 200, 255, .22);
  border-radius: 26px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background:
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, .24), transparent 23rem),
    linear-gradient(130deg, rgba(25, 200, 255, .1), rgba(139, 92, 246, .08) 60%, rgba(236, 72, 153, .08)),
    #0b1222;
  box-shadow: var(--shadow);
}

.final-panel::before {
  position: absolute;
  content: "";
  width: 260px;
  height: 260px;
  border: 1px solid rgba(25, 200, 255, .15);
  border-radius: 50%;
  top: -150px;
  right: 25%;
}

.final-panel > div {
  position: relative;
  max-width: 700px;
}

.final-panel > div > span {
  color: var(--cyan);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.final-panel h2 {
  margin: 12px 0;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
}

.final-panel p {
  margin: 0;
  color: #9aabc3;
}

footer {
  padding: 80px 0 25px;
  border-top: 1px solid rgba(148, 163, 184, .1);
  background: #04060b;
}

.footer-grid {
  display: grid;
  padding-bottom: 55px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand img {
  display: block;
  width: 170px;
  height: 70px;
  margin-bottom: 15px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 310px;
  color: #708197;
  font-size: .72rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid strong {
  margin-bottom: 7px;
  color: #fff;
  font-family: var(--display);
  font-size: .8rem;
}

.footer-grid a,
.footer-grid span,
.footer-bottom {
  color: #718198;
  font-size: .69rem;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, .1);
  justify-content: space-between;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .75, .25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-paused *,
body.page-hidden * {
  animation-play-state: paused !important;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-button {
    display: flex;
    margin-left: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr .8fr;
    gap: 35px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    transform: scale(.88);
  }

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

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

@media (max-width: 820px) {
  .section {
    padding: 85px 0;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .breadcrumbs {
    justify-content: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-facts {
    max-width: 560px;
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

  .hero-visual {
    min-height: 585px;
    transform: none;
  }

  .platform-strip {
    flex-wrap: wrap;
    justify-content: center;
  }

  .platform-strip > span {
    width: 100%;
    text-align: center;
  }

  .answer-grid,
  .package-grid,
  .security-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .package-copy,
  .faq-layout > .section-heading {
    position: static;
  }

  .story-layout {
    grid-template-columns: .8fr 1.2fr;
    gap: 30px;
  }

  .story-phone {
    width: 230px;
    height: 470px;
  }

  .story-visual {
    top: 110px;
    height: calc(100vh - 135px);
  }

  .story-step {
    padding-left: 25px;
  }

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

  .builder-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .builder-summary {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .quote-panel {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    width: 135px;
  }

  .brand img {
    height: 52px;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav {
    top: 70px;
  }

  .section {
    padding: 72px 0;
  }

  h2 {
    font-size: 2.3rem;
  }

  .hero {
    min-height: auto;
    padding: 105px 0 28px;
  }

  .breadcrumbs {
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-lead {
    font-size: .94rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    min-height: 515px;
    margin-top: 5px;
  }

  .hero-device {
    width: 205px;
    height: 410px;
    border-radius: 24px;
    transform: none !important;
  }

  .device-screen {
    border-radius: 20px;
  }

  .device-halo {
    width: 340px;
    height: 340px;
  }

  .orbit-a {
    width: 365px;
    height: 260px;
  }

  .orbit-b {
    width: 270px;
    height: 400px;
  }

  .floating-card {
    max-width: 145px;
    padding: 9px;
  }

  .floating-card b {
    width: 24px;
    height: 24px;
  }

  .floating-card span {
    font-size: .58rem;
  }

  .card-ai {
    top: 55px;
    right: -2px;
  }

  .card-install {
    bottom: 52px;
    left: -5px;
  }

  .card-secure {
    right: 0;
    bottom: 5px;
  }

  .platform-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .platform-strip > span {
    grid-column: 1 / -1;
  }

  .answer-grid {
    margin-bottom: 35px;
  }

  .answer-copy {
    padding: 22px;
    border: 1px solid rgba(25, 200, 255, .2);
    border-radius: 15px;
    background: rgba(25, 200, 255, .035);
  }

  .benefit-grid,
  .case-grid,
  .security-points,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 155px;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-visual {
    position: sticky;
    z-index: 3;
    top: 82px;
    height: 360px;
    margin-bottom: 25px;
    padding: 18px 0;
    background: linear-gradient(to bottom, #070a12 84%, transparent);
  }

  .story-phone {
    width: 165px;
    height: 335px;
    border-radius: 21px;
  }

  .story-screen {
    padding: 18px 13px 13px;
    border-radius: 18px;
  }

  .mini-top {
    margin-bottom: 22px;
    font-size: .42rem;
  }

  .screen-hero strong,
  .story-screen > strong {
    font-size: 1.08rem;
  }

  .screen-hero em,
  .story-screen > em {
    font-size: .54rem;
  }

  .screen-bars i {
    height: 25px;
  }

  .catalog-ui {
    margin: 5px 0 17px;
    gap: 5px;
  }

  .catalog-ui div {
    height: 72px;
  }

  .conversion-ring {
    width: 115px;
    height: 115px;
    margin: 20px auto 25px;
  }

  .conversion-ring b {
    font-size: 2.5rem;
  }

  .node-map {
    height: 150px;
    margin: 5px 0 18px;
    transform: scale(.7);
  }

  .story-steps {
    padding: 0;
  }

  .story-step {
    min-height: 260px;
    padding: 30px 10px 30px 22px;
  }

  .included-card,
  .module-picker,
  .quote-panel {
    padding: 20px;
  }

  .builder-summary,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .module-card {
    position: relative;
    min-height: 98px;
    padding: 12px 10px;
    align-items: flex-start;
    flex-direction: column;
  }

  .module-card > span {
    padding-right: 20px;
  }

  .module-card strong {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .module-card small {
    display: none;
  }

  .module-card > b {
    position: absolute;
    top: 12px;
    right: 10px;
  }

  .summary-phone {
    min-height: 300px;
  }

  .form-grid label.wide {
    grid-column: auto;
  }

  .data-flow {
    min-height: 550px;
    padding: 25px 15px;
  }

  .flow-branches {
    grid-template-columns: 1fr 1fr;
  }

  .flow-branches::before {
    display: none;
  }

  .process-grid li {
    min-height: 145px;
  }

  .process-grid li > span {
    margin-bottom: 22px;
  }

  .final-panel {
    padding: 35px 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .final-panel .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-device {
    transform: none !important;
  }
}
