:root {
  --ink: #080b10;
  --ink-soft: #10151d;
  --surface: #151b24;
  --surface-light: #f2f6f7;
  --white: #f8fbfc;
  --text: #dce5e8;
  --muted: #8d9ba2;
  --cyan: #75d2e5;
  --cyan-bright: #9cecff;
  --cyan-deep: #35a9c3;
  --graphite: #4b4c50;
  --line: rgba(255, 255, 255, 0.12);
  --glow: rgba(117, 210, 229, 0.28);
  --page: min(1240px, calc(100vw - 48px));
  --radius-lg: 32px;
  --radius-md: 20px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 10%, rgba(117, 210, 229, 0.08), transparent 25%),
    var(--ink);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--cyan-bright);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--cyan);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--cyan-bright);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 11, 16, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.scroll-progress {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-deep), var(--cyan-bright));
  transform: scaleX(0);
  transform-origin: left center;
}

.nav-shell {
  width: var(--page);
  min-height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  width: 175px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .04em;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: #c7d0d4;
  transition: color .25s ease;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.main-nav > a:hover {
  color: var(--white);
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease;
}

.nav-cta:hover {
  color: var(--ink) !important;
  background: var(--cyan-bright);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
  transition: transform .3s ease;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 124px 0 76px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  z-index: -1;
  background: linear-gradient(transparent, var(--ink));
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .34;
  background-image:
    linear-gradient(rgba(117, 210, 229, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 210, 229, .09) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  transform: perspective(650px) rotateX(58deg) scale(1.65) translateY(8%);
  transform-origin: center 70%;
}

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

.hero-glow--one {
  top: 18%;
  right: 12%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(117, 210, 229, .18), rgba(117, 210, 229, .025) 48%, transparent 70%);
}

.hero-glow--two {
  bottom: 6%;
  left: -8%;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(53, 169, 195, .13), transparent 68%);
}

.hero-content {
  width: var(--page);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--cyan-bright);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 1px;
  background: currentColor;
}

.hero-title {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.7rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .92;
}

.hero-line {
  display: block;
}

.hero-line--accent {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan-bright), var(--cyan-deep));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 680px;
  margin: 32px 0 0;
  color: #aab7bd;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 750;
  letter-spacing: .025em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

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

.button--primary {
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 0 10px 42px rgba(117, 210, 229, .16);
}

.button--primary:hover {
  background: var(--cyan-bright);
}

.button--ghost,
.button--outline {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, .025);
}

.button--ghost:hover,
.button--outline:hover {
  border-color: rgba(117, 210, 229, .55);
  background: rgba(117, 210, 229, .08);
}

.text-link {
  margin-left: 8px;
  padding: 10px 0;
  color: var(--cyan-bright);
  font-size: .82rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(117, 210, 229, .35);
  transition: border-color .25s ease;
}

.text-link:hover {
  border-color: var(--cyan-bright);
}

.hero-system {
  position: relative;
  aspect-ratio: 1;
  max-width: 470px;
  width: 100%;
  justify-self: end;
}

.system-orbit {
  position: absolute;
  inset: 12%;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(117, 210, 229, .23);
  border-radius: 50%;
  animation: orbit-spin 20s linear infinite;
}

.orbit::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 6%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 24px var(--cyan);
}

.orbit--one {
  inset: 0;
}

.orbit--two {
  inset: 18%;
  animation-direction: reverse;
  animation-duration: 13s;
}

.orbit-core {
  width: 112px;
  height: 112px;
  border-radius: 38% 62% 55% 45%;
  background: radial-gradient(circle at 35% 30%, var(--cyan-bright), var(--cyan-deep) 34%, rgba(53, 169, 195, .08) 70%);
  box-shadow: 0 0 70px rgba(117, 210, 229, .27);
  animation: core-morph 8s ease-in-out infinite;
}

@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes core-morph { 50% { border-radius: 58% 42% 35% 65%; transform: scale(.92) rotate(12deg); } }

.system-card {
  position: absolute;
  min-width: 155px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  color: var(--white);
  background: rgba(15, 20, 28, .7);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
}

.system-card strong,
.system-card small {
  grid-column: 2;
}

.system-card strong {
  font-size: .83rem;
}

.system-card small {
  color: var(--muted);
  font-size: .66rem;
}

.system-index {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--cyan);
  font-size: .64rem;
}

.system-card--top { top: 3%; left: 8%; }
.system-card--right { top: 45%; right: -2%; }
.system-card--bottom { bottom: 4%; left: 5%; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 1px;
  height: 10px;
  background: var(--cyan);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse { 50% { transform: translateY(5px); opacity: .35; } }

.intro {
  padding: 150px 0 0;
}

.section-heading {
  max-width: 940px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.services-head h2,
.ai-copy h2,
.soon-content h2,
.contact-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.7rem, 5.5vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
}

.section-heading h2 em,
.soon-content h2 em,
.contact-copy h2 em {
  color: var(--cyan);
  font-style: normal;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cinematic-frame,
.ai-visual,
.product-stage {
  position: relative;
  width: min(72vw, 1120px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(117, 210, 229, .18);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .4);
  will-change: width, border-radius;
}

[data-expand-frame] {
  left: 50%;
  margin-inline: 0;
  transform: translateX(-50%);
}

.cinematic-frame {
  height: clamp(430px, 65vw, 720px);
}

.cinematic-frame::after,
.ai-visual::after,
.product-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 8, 12, .82));
}

.cinematic-frame img,
.ai-visual > img,
.product-stage > img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  will-change: transform;
}

.cinematic-frame figcaption {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: clamp(26px, 5vw, 72px);
  left: clamp(24px, 5vw, 80px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.cinematic-frame figcaption span {
  color: var(--cyan-bright);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cinematic-frame figcaption strong {
  max-width: 570px;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
  text-align: right;
}

.services {
  padding: 170px 0;
}

.section-kicker {
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.services-head {
  margin: 58px 0 72px;
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 70px;
  align-items: end;
}

.services-head h2 {
  max-width: 830px;
}

.services-head p,
.ai-copy > p,
.soon-content > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background: rgba(255, 255, 255, .026);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .4s var(--ease), border-color .4s ease, background .4s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -50%;
  height: 65%;
  opacity: 0;
  background: radial-gradient(circle, rgba(117, 210, 229, .16), transparent 68%);
  transition: opacity .4s ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-color: rgba(117, 210, 229, .35);
  background: rgba(255, 255, 255, .045);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--accent {
  background: linear-gradient(145deg, rgba(117, 210, 229, .15), rgba(255, 255, 255, .025));
  border-color: rgba(117, 210, 229, .32);
}

.service-number {
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .12em;
}

.service-symbol {
  width: 48px;
  height: 48px;
  margin: 45px 0 25px;
  display: grid;
  place-items: center;
  color: var(--cyan-bright);
  background: rgba(117, 210, 229, .08);
  border: 1px solid rgba(117, 210, 229, .2);
  border-radius: 14px;
  font-size: 1.35rem;
}

.service-card h3 {
  margin: 0 38px 12px 0;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.2;
}

.service-card p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.card-arrow {
  position: absolute;
  right: 28px;
  bottom: 27px;
  color: var(--cyan);
  transition: transform .3s var(--ease);
}

.service-card:hover .card-arrow {
  transform: translate(4px, -4px);
}

.statement {
  padding: 40px 0 60px;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.statement-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 40px;
  color: rgba(255, 255, 255, .12);
  font-size: clamp(3.4rem, 8vw, 8rem);
  font-weight: 550;
  letter-spacing: -.06em;
  line-height: .9;
  white-space: nowrap;
  transform: translateX(-4vw);
}

.statement-track i {
  color: var(--cyan);
  font-size: .28em;
  font-style: normal;
}

.ai-section {
  padding: 170px 0;
}

.ai-layout {
  margin-top: 70px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.ai-copy h2 {
  max-width: 600px;
}

.ai-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin-top: 25px;
}

.feature-list {
  margin: 40px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  padding: 15px 0;
  display: flex;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  color: #cbd5d9;
  font-size: .9rem;
}

.feature-list span {
  color: var(--cyan);
  font-size: .67rem;
}

.ai-visual {
  width: 100%;
  height: 650px;
}

.ai-visual > img {
  object-position: 70% center;
}

.ai-visual::after {
  background: linear-gradient(90deg, rgba(5, 8, 12, .3), transparent 45%), linear-gradient(0deg, rgba(5, 8, 12, .6), transparent 50%);
}

.ai-chip {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: rgba(8, 11, 16, .72);
  border: 1px solid rgba(117, 210, 229, .28);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: .7rem;
  font-weight: 650;
}

.ai-chip span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 14px var(--cyan);
}

.ai-chip--one { top: 15%; left: 8%; }
.ai-chip--two { right: 7%; bottom: 20%; }
.ai-chip--three { bottom: 7%; left: 13%; }

.product-section {
  position: relative;
  width: 100%;
  padding: 110px max(24px, calc((100vw - 1240px) / 2)) 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--cyan);
}

.product-section::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -200px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(8, 11, 16, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(8, 11, 16, .025), 0 0 0 160px rgba(8, 11, 16, .025);
}

.section-kicker--light {
  position: relative;
  z-index: 1;
  color: rgba(8, 11, 16, .58);
  border-color: rgba(8, 11, 16, .2);
}

.product-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 85px auto 70px;
  text-align: center;
}

.product-badge {
  width: max-content;
  margin: 0 auto 24px;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .32);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #167d62;
  box-shadow: 0 0 0 4px rgba(22, 125, 98, .14);
}

.product-copy h2 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  font-weight: 520;
  letter-spacing: -.065em;
  line-height: .92;
}

.product-copy > p:not(.product-badge) {
  max-width: 640px;
  margin: 28px auto 34px;
  color: rgba(8, 11, 16, .67);
  font-size: 1.04rem;
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: #202731;
}

.product-stage {
  width: min(82vw, 1220px);
  height: min(66vw, 710px);
  min-height: 460px;
  margin-bottom: -1px;
  border-color: rgba(8, 11, 16, .24);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 30px 90px rgba(8, 11, 16, .28);
}

.product-stage > img {
  opacity: .54;
  object-position: left center;
}

.product-stage::after {
  background: linear-gradient(180deg, rgba(6, 9, 13, .14), rgba(6, 9, 13, .65));
}

.dashboard-mockup {
  position: absolute;
  top: 13%;
  left: 50%;
  z-index: 3;
  width: min(78%, 860px);
  aspect-ratio: 1.55;
  overflow: hidden;
  color: var(--white);
  background: rgba(10, 15, 21, .92);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .42);
  transform: translateX(-50%) perspective(900px) rotateX(3deg);
  backdrop-filter: blur(18px);
}

.mockup-top {
  height: 9%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}

.mockup-top span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--graphite);
}

.mockup-top b {
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(.42rem, .7vw, .65rem);
  font-weight: 600;
}

.mockup-body {
  height: 91%;
  display: grid;
  grid-template-columns: 16% 84%;
}

.mockup-sidebar {
  padding: 13% 20%;
  border-right: 1px solid var(--line);
}

.mockup-sidebar i {
  display: block;
  width: 75%;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 9px;
  background: #3f4851;
}

.mockup-sidebar i:first-child {
  width: 100%;
  background: var(--cyan);
}

.mockup-content {
  padding: 6%;
}

.mockup-title {
  width: 28%;
  height: 13px;
  margin-bottom: 6%;
  border-radius: 10px;
  background: var(--white);
}

.mockup-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4%;
}

.mockup-metrics i {
  height: clamp(48px, 8vw, 100px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(117, 210, 229, .13), rgba(255, 255, 255, .02));
}

.mockup-chart {
  position: relative;
  height: 42%;
  margin-top: 5%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
}

.mockup-chart span {
  position: absolute;
  right: -5%;
  bottom: -12%;
  left: -5%;
  height: 70%;
  background: linear-gradient(150deg, transparent 0 26%, var(--cyan) 27% 29%, transparent 30% 42%, var(--cyan) 43% 45%, transparent 46% 59%, var(--cyan) 60% 62%, transparent 63%);
  filter: drop-shadow(0 0 8px rgba(117, 210, 229, .8));
}

.coming-soon {
  position: relative;
  min-height: 850px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.soon-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
}

.soon-content .eyebrow {
  justify-content: center;
}

.soon-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px auto 0;
  font-size: 1.04rem;
}

.soon-orbit {
  position: absolute;
  width: min(72vw, 830px);
  aspect-ratio: 1;
  opacity: .55;
  border: 1px solid rgba(117, 210, 229, .12);
  border-radius: 50%;
}

.soon-orbit::before,
.soon-orbit::after,
.soon-orbit i {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(117, 210, 229, .1);
  border-radius: 50%;
}

.soon-orbit::after { inset: 29%; }
.soon-orbit i:nth-child(1) { inset: 42%; background: radial-gradient(circle, rgba(117, 210, 229, .2), transparent 66%); }
.soon-orbit i:nth-child(2) { inset: 7%; border-style: dashed; animation: orbit-spin 35s linear infinite; }
.soon-orbit i:nth-child(3) { inset: -9%; opacity: .4; }

.progress-visual {
  max-width: 560px;
  margin: 50px auto 0;
}

.progress-visual > div {
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, .1);
  border-radius: 4px;
}

.progress-visual > div span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: progress-travel 3.8s ease-in-out infinite;
}

@keyframes progress-travel { from { transform: translateX(-110%); } to { transform: translateX(350%); } }

.progress-visual small {
  margin-top: 13px;
  display: block;
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact {
  padding-bottom: 42px;
}

.contact-card {
  padding: clamp(36px, 7vw, 90px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: end;
  background: linear-gradient(145deg, #161d26, #0c1016);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contact-copy h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 26px;
}

.contact-actions {
  position: relative;
  border-top: 1px solid var(--line);
}

.contact-action {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease), color .3s ease;
}

.contact-action:hover {
  padding-inline: 10px;
  color: var(--cyan-bright);
}

.contact-action small,
.contact-action strong {
  display: block;
}

.contact-action small {
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-action strong {
  margin-top: 2px;
  font-size: 1.1rem;
}

.contact-action i {
  color: var(--cyan);
  font-style: normal;
}

.contact-action.is-unconfigured {
  cursor: help;
}

.contact-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--cyan);
  font-size: .74rem;
}

.site-footer {
  padding: 48px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  color: var(--muted);
  font-size: .72rem;
}

.site-footer > img {
  width: 150px;
  height: auto;
}

.site-footer > p {
  justify-self: end;
  margin: 0;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer > div {
  grid-column: 1 / -1;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.site-footer a:hover {
  color: var(--cyan-bright);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  min-width: 54px;
  height: 54px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  background: var(--cyan);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 999px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, .35);
  transition: transform .25s ease, background .25s ease;
}

.whatsapp-float:hover {
  background: var(--cyan-bright);
  transform: translateY(-3px);
}

.whatsapp-float span {
  font-size: 1.25rem;
}

.whatsapp-float small {
  font-size: .7rem;
  font-weight: 800;
}

@media (max-width: 1024px) {
  :root { --page: min(100% - 40px, 920px); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-system { position: absolute; right: -90px; bottom: 30px; width: 410px; opacity: .42; z-index: -1; }
  .hero-system .system-card { display: none; }
  .hero-copy { max-width: 820px; }
  .services-head { grid-template-columns: 1fr; gap: 28px; }
  .services-head p { max-width: 580px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-layout { grid-template-columns: 1fr; }
  .ai-copy { max-width: 690px; }
  .ai-visual { height: 580px; }
  .contact-card { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 32px); --radius-lg: 24px; }
  .nav-shell { min-height: 74px; }
  .brand { width: 145px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 74px 0 auto;
    max-height: 0;
    padding: 0 16px;
    overflow: hidden;
    display: grid;
    gap: 0;
    background: rgba(8, 11, 16, .97);
    border-bottom: 1px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: max-height .5s var(--ease), padding .4s ease, opacity .3s ease, visibility .3s ease;
  }
  .site-header.is-open .main-nav { max-height: 500px; padding-block: 18px 28px; border-color: var(--line); opacity: 1; visibility: visible; }
  .main-nav > a { padding: 15px 4px; font-size: .95rem; border-bottom: 1px solid var(--line); }
  .main-nav > a::after { display: none; }
  .nav-cta { margin-top: 12px; border: 0 !important; text-align: center; }
  .hero { min-height: 780px; padding: 112px 0 96px; place-items: start center; }
  .hero-title { font-size: clamp(3.35rem, 15vw, 5.25rem); }
  .hero-lead { margin-top: 26px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 46%; }
  .hero-actions .button--primary { flex-basis: 100%; }
  .text-link { width: 100%; margin: 3px 0 0; text-align: center; border-bottom: 0; }
  .hero-system { right: -145px; bottom: 10px; width: 360px; opacity: .28; }
  .scroll-cue { display: none; }
  .intro, .services, .ai-section { padding-top: 110px; }
  .section-heading { margin-bottom: 48px; text-align: left; }
  .section-heading .eyebrow { justify-content: flex-start; }
  .section-heading h2, .services-head h2, .ai-copy h2, .soon-content h2, .contact-copy h2 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .section-heading > p:last-child { margin-inline: 0; }
  .cinematic-frame, .ai-visual, .product-stage { width: 92vw; }
  .cinematic-frame { height: 520px; }
  .cinematic-frame figcaption { align-items: start; flex-direction: column; }
  .cinematic-frame figcaption strong { text-align: left; }
  .section-kicker { font-size: .58rem; }
  .services-head { margin: 42px 0 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .statement { padding-block: 30px; }
  .statement-track { gap: 24px; }
  .ai-layout { margin-top: 52px; gap: 50px; }
  .ai-visual { height: 510px; }
  .product-section { padding-top: 82px; }
  .product-copy { margin: 60px auto 50px; }
  .product-copy h2 { font-size: clamp(3.2rem, 15vw, 5.4rem); }
  .product-stage { min-height: 480px; height: 125vw; }
  .dashboard-mockup { width: 90%; top: 24%; }
  .coming-soon { min-height: 720px; }
  .soon-orbit { width: 110vw; }
  .contact { width: 100%; padding-bottom: 0; }
  .contact-card { padding: 72px 20px; border-inline: 0; border-radius: 0; }
  .site-footer { grid-template-columns: 1fr; padding-top: 40px; }
  .site-footer > p { justify-self: start; }
  .site-footer > div { grid-column: auto; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; padding: 0; }
  .whatsapp-float small { display: none; }
}

@media (max-width: 420px) {
  .hero-actions .button { flex-basis: 100%; }
  .hero-system { display: none; }
  .service-card { padding: 24px; }
  .product-copy .button { width: 100%; }
  .site-footer > div { gap: 20px; flex-direction: column; }
}

@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;
  }
  .cinematic-frame,
  .ai-visual,
  .product-stage { width: 100%; }
}
