:root {
  --ink: #06122a;
  --muted: #516078;
  --line: rgba(6, 18, 42, 0.14);
  --paper: #edf4f8;
  --white: #ffffff;
  --blue: #2e3cff;
  --blue-bright: #5ad7ff;
  --cyan: #bcecff;
  --pink: #ffd9e9;
  --radius: 42px;
  --page: min(1312px, calc(100vw - 64px));
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

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

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: absolute;
  z-index: 100;
  top: 28px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 58px;
  color: white;
  transform: translateX(-50%);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 26px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 11px;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(4, 13, 42, 0.18);
  backdrop-filter: blur(16px);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 44px rgba(4, 12, 40, 0.14);
  backdrop-filter: blur(20px);
}

.site-nav a {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--ink);
  background: white;
  outline: none;
}

.header-cta,
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  justify-self: end;
  min-height: 54px;
  padding: 6px 7px 6px 22px;
  border-radius: 999px;
  color: var(--ink);
  background: white;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover,
.pill-button:hover,
.download-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(3, 13, 43, 0.2);
}

.arrow-disc {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  place-items: center;
  color: white;
  background: var(--blue);
  font-size: 19px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  color: white;
  background: #08315b;
}

.hero-image,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.03);
}

.hero-wash {
  background:
    linear-gradient(180deg, rgba(18, 27, 63, 0.12) 0%, rgba(5, 24, 53, 0.06) 38%, rgba(2, 18, 42, 0.68) 100%),
    linear-gradient(90deg, rgba(28, 52, 218, 0.34) 0%, rgba(69, 215, 255, 0.04) 70%);
}

.hero-word {
  position: absolute;
  z-index: 1;
  top: 127px;
  left: 50%;
  width: var(--page);
  margin: 0;
  font-size: clamp(180px, 19.85vw, 286px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.09em;
  text-align: center;
  transform: translateX(-50%) scaleX(0.91);
  transform-origin: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.57) 58%, rgba(255, 255, 255, 0.06));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.78;
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  top: 452px;
  left: max(64px, calc((100vw - 1312px) / 2));
  width: min(720px, 62vw);
}

.eyebrow {
  margin: 0 0 20px;
  color: #526074;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.section h2,
.download h2 {
  margin: 0;
  font-weight: 690;
  letter-spacing: -0.058em;
}

.hero h1 {
  font-size: clamp(54px, 5.3vw, 76px);
  line-height: 1.06;
}

.hero-lead {
  max-width: 630px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.72;
}

.pill-button {
  justify-self: auto;
  width: max-content;
  padding-left: 25px;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: max(64px, calc((100vw - 1312px) / 2));
  bottom: 119px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
  text-align: right;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 48px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.15em;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section {
  position: relative;
  min-height: 900px;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: 0 auto;
  padding: 106px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 62px;
}

.section-intro h2 {
  font-size: clamp(52px, 5.25vw, 76px);
  line-height: 1.02;
}

.section-intro.light {
  color: white;
}

.section-lead {
  max-width: 430px;
  margin: 0 0 8px auto;
  color: #3d4a5e;
  font-size: 17px;
  line-height: 1.78;
}

.section-intro.light .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.signal {
  min-height: 900px;
  background: #bce9fb;
}

.signal-stage {
  position: relative;
  height: 455px;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 75, 0.06);
  border-radius: var(--radius);
  color: white;
  background: #06142d;
  box-shadow: 0 34px 70px rgba(24, 74, 117, 0.17);
}

.stage-orbit,
.stage-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stage-glow {
  left: 56%;
  width: 48%;
  object-fit: cover;
  opacity: 0.92;
}

.ghost-word {
  position: absolute;
  top: 28px;
  left: 43px;
  margin: 0;
  color: rgba(255, 255, 255, 0.075);
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.signal-metrics {
  position: absolute;
  bottom: 62px;
  left: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(125px, 1fr));
  gap: 48px;
  width: 62%;
}

.signal-metrics article {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid rgba(112, 213, 255, 0.55);
  padding-top: 18px;
}

.signal-metrics strong {
  font-size: 34px;
  letter-spacing: -0.04em;
}

.signal-metrics span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.signal-icon-wrap {
  position: absolute;
  top: 80px;
  right: 120px;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
}

.signal-icon-wrap img {
  position: relative;
  z-index: 2;
  width: 86px;
  border-radius: 25px;
  filter: drop-shadow(0 18px 28px rgba(33, 118, 255, 0.42));
}

.signal-pulse {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(94, 222, 255, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 62px rgba(54, 102, 255, 0.52);
}

.status-chips {
  position: absolute;
  right: 36px;
  bottom: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.status-chips span,
.floating-chips span {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  backdrop-filter: blur(14px);
}

.product {
  min-height: 1200px;
  background: #eaf2f6;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(320px, 1fr);
  grid-template-rows: 365px 365px;
  gap: 24px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background: #07142e;
}

.product-card-main {
  grid-row: 1 / 3;
}

.ambient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 30px;
  padding: 44px 46px 0;
  color: white;
}

.card-copy h3,
.story-copy h3,
.scenario h3,
.principle-card h3,
.faq-heading h3 {
  margin: 0;
  font-weight: 680;
  letter-spacing: -0.048em;
}

.card-copy h3 {
  font-size: 34px;
  line-height: 1.12;
}

.card-copy > p,
.card-copy.compact p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.72;
}

.card-kicker {
  width: max-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #b9eaff;
  background: rgba(91, 167, 255, 0.14);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.workspace-ui {
  position: absolute;
  right: 34px;
  bottom: 0;
  left: 34px;
  width: calc(100% - 68px);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.22);
}

.card-copy.compact {
  display: block;
  width: 58%;
  padding: 34px 0 0 34px;
  color: var(--ink);
}

.card-copy.compact h3 {
  font-size: 32px;
}

.card-copy.compact p {
  margin-top: 16px;
  color: rgba(6, 18, 42, 0.66);
}

.product-card-call {
  background: #aee1fa;
}

.phone-ui {
  position: absolute;
  right: 10px;
  bottom: -68px;
  width: 44%;
  filter: drop-shadow(0 16px 24px rgba(26, 75, 120, 0.2));
}

.product-card-team {
  background: #2f3cff;
}

.card-copy.compact.inverted {
  color: white;
}

.card-copy.compact.inverted p {
  color: rgba(255, 255, 255, 0.66);
}

.team-ui {
  position: absolute;
  right: 28px;
  bottom: -2px;
  width: 66%;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 18px 36px rgba(10, 17, 96, 0.28);
}

.immersive {
  min-height: 1100px;
  background: #06122a;
}

.immersive-stage {
  position: relative;
  height: 720px;
  overflow: hidden;
  border: 1px solid rgba(126, 193, 255, 0.12);
  border-radius: var(--radius);
  background: #040c20;
}

.immersive-grid,
.cobalt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cobalt {
  left: 50%;
  width: 68%;
  transform: translateX(-50%);
  opacity: 0.8;
}

.floating {
  position: absolute;
  z-index: 2;
  top: 105px;
  width: 220px;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.46));
}

.floating-left {
  left: 95px;
  transform: rotate(-4deg);
}

.floating-right {
  right: 95px;
  transform: rotate(4deg);
}

.connection-line {
  position: absolute;
  top: 52%;
  right: 22%;
  left: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 219, 255, 0.55), rgba(89, 76, 255, 0.74), transparent);
}

.connection-line span {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #71e3ff;
  box-shadow: 0 0 25px #4671ff;
}

.immersive-logo {
  position: absolute;
  z-index: 3;
  top: 47%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  transform: translate(-50%, -50%);
}

.immersive-logo img {
  width: 94px;
  border-radius: 27px;
  box-shadow: 0 22px 70px rgba(46, 91, 255, 0.55);
}

.immersive-logo strong {
  margin-top: 18px;
  font-size: 34px;
  letter-spacing: 0.03em;
}

.immersive-logo small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.15em;
}

.floating-chips {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 40px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.narratives {
  min-height: 1100px;
  background: #f5ede5;
}

.story-stack {
  display: grid;
  gap: 18px;
}

.story-band {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 400px;
  min-height: 260px;
  overflow: hidden;
  border-radius: 36px;
  background: #bce9fb;
}

.story-band-dark {
  color: white;
  background: #06132c;
}

.story-band-blue {
  color: white;
  background: #303fff;
}

.story-number {
  padding: 35px 0 0 36px;
  color: rgba(6, 18, 42, 0.34);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.story-band-dark .story-number,
.story-band-blue .story-number {
  color: rgba(255, 255, 255, 0.4);
}

.story-copy {
  align-self: center;
  max-width: 520px;
  padding: 36px 20px;
}

.story-copy .eyebrow {
  margin-bottom: 14px;
}

.story-copy h3 {
  font-size: 42px;
  line-height: 1.06;
}

.story-copy > p:last-child {
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(6, 18, 42, 0.67);
  font-size: 14px;
  line-height: 1.7;
}

.story-band-dark .story-copy > p:last-child,
.story-band-blue .story-copy > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.story-band > img {
  position: absolute;
  right: 30px;
  bottom: -155px;
  width: 250px;
  filter: drop-shadow(0 28px 34px rgba(14, 31, 74, 0.22));
}

.scenario {
  min-height: 1000px;
  background: #edf4f8;
}

.scenario-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.82fr 0.82fr;
  grid-template-rows: 285px 285px;
  gap: 20px;
}

.scenario-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
}

.scenario-main {
  grid-row: 1 / 3;
  color: white;
  background: #06142c;
}

.scenario-copy {
  position: relative;
  z-index: 2;
  max-width: 72%;
  padding: 44px;
}

.scenario-copy h3 {
  font-size: 42px;
  line-height: 1.08;
}

.scenario-copy > p:last-child,
.scenario-small > div > p:last-child {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

.scenario-main > img {
  position: absolute;
  right: 22px;
  bottom: -185px;
  width: 39%;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.35));
}

.scenario-small {
  padding: 31px;
}

.scenario-small-light {
  grid-column: 2 / 4;
  background: #bce9fb;
}

.scenario-small-light > div {
  max-width: 60%;
}

.scenario-small h3 {
  font-size: 30px;
  line-height: 1.08;
}

.scenario-small > div > p:last-child {
  margin-top: 12px;
  color: rgba(6, 18, 42, 0.62);
}

.mini-orbit {
  position: absolute;
  top: 50%;
  right: 50px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(15, 49, 91, 0.18);
  border-radius: 50%;
  transform: translateY(-50%);
}

.mini-orbit::before,
.mini-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(20, 48, 102, 0.14);
  border-radius: 50%;
}

.mini-orbit::before { inset: 22px; }
.mini-orbit::after { inset: 43px; background: var(--blue); box-shadow: 0 10px 28px rgba(43, 61, 255, 0.35); }

.scenario-small-blue {
  color: white;
  background: #303fff;
}

.scenario-small-blue img {
  position: absolute;
  right: -8px;
  bottom: -148px;
  width: 52%;
  transform: rotate(4deg);
}

.scenario-small-pink {
  background: #ffd7e7;
}

.smile {
  position: absolute;
  right: 28px;
  bottom: 22px;
  font-size: 88px;
  font-weight: 200;
  line-height: 1;
  transform: rotate(-8deg);
}

.principles {
  min-height: 900px;
  background: #f0eee9;
}

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

.principle-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(12, 27, 56, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.principle-card:hover {
  background: white;
  transform: translateY(-6px);
}

.principle-card > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  color: #6b7890;
  font-size: 11px;
}

.principle-card .eyebrow {
  margin-top: 70px;
  margin-bottom: 14px;
}

.principle-card h3 {
  font-size: 28px;
}

.principle-card > p:last-child {
  margin: 20px 0 0;
  color: #5e697a;
  font-size: 14px;
  line-height: 1.72;
}

.trust {
  min-height: 1200px;
  color: white;
  background: #07132d;
}

.quote-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.55fr;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 40px;
  background: rgba(8, 21, 49, 0.82);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.quote-panel::before {
  position: absolute;
  top: -140px;
  left: 28%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(50, 73, 255, 0.2);
  filter: blur(48px);
  content: "";
}

.quote-copy {
  position: relative;
  z-index: 2;
  padding: 45px 62px;
}

.quote-mark {
  height: 38px;
  margin: 0;
  color: #72dcff;
  font-family: Georgia, serif;
  font-size: 92px;
  line-height: 0.8;
}

blockquote {
  margin: 34px 0 30px;
  font-size: clamp(42px, 4.3vw, 62px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.054em;
}

.quote-meta {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 11px;
}

.quote-meta p {
  margin: 0;
  color: #71dfff;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.quote-meta span {
  color: rgba(255, 255, 255, 0.5);
}

.message-types {
  width: max-content;
  margin-top: 30px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.quote-panel > img {
  align-self: end;
  justify-self: center;
  width: 245px;
  margin-bottom: -110px;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.48));
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.45fr;
  gap: 80px;
  margin-top: 92px;
}

.faq-heading h3 {
  font-size: 50px;
}

.faq-heading > p:last-child {
  max-width: 260px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 84px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 630;
}

summary::-webkit-details-marker {
  display: none;
}

summary i {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

summary i::before,
summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: white;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

details > p {
  max-width: 660px;
  margin: -4px 54px 26px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.76;
}

.download {
  display: flex;
  min-height: 1100px;
  flex-direction: column;
  color: white;
  background: #2f3dff;
}

.download-orbit {
  position: absolute;
  z-index: 1;
  top: 70px;
  left: 50%;
  width: min(1312px, calc(100vw - 64px));
  height: 700px;
  object-fit: cover;
  transform: translateX(-50%);
}

.download-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: var(--page);
  margin: 0 auto;
  padding: 120px 0 130px;
  text-align: center;
}

.download-icon {
  width: 102px;
  margin-bottom: 26px;
  border-radius: 29px;
  box-shadow: 0 28px 70px rgba(3, 13, 80, 0.35);
}

.download h2 {
  font-size: clamp(64px, 7.5vw, 108px);
  line-height: 0.98;
}

.download-inner > p:not(.eyebrow):not(.download-note) {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.72;
}

.download-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  width: min(860px, 100%);
  margin-top: 42px;
}

.download-buttons a {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 22px;
  color: var(--ink);
  background: white;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.platform-icon {
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 13px;
  place-items: center;
  color: white;
  background: linear-gradient(160deg, #43b7ff 0%, #0d8cf2 56%, #0878dc 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.platform-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.platform-icon.android {
  background: #31bd75;
}

.platform-icon.flight {
  background: #0d96f6;
}

.platform-icon.flight img {
  width: 100%;
  height: 100%;
}

.download-buttons span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.download-buttons small {
  color: #768198;
  font-size: 9px;
  line-height: 1;
}

.download-buttons strong {
  font-size: 17px;
  line-height: 1.2;
}

.download-buttons b {
  font-size: 18px;
}

.download-note {
  margin: 18px 0 0 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 11px !important;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  width: var(--page);
  margin: 0 auto;
  padding: 58px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand {
  font-size: 28px;
}

.site-footer > div:first-child p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #aeeaff;
}

.copyright {
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

:focus-visible {
  outline: 2px solid #79e4ff;
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  :root {
    --page: min(936px, calc(100vw - 48px));
  }

  .site-nav a {
    padding: 11px 14px;
  }

  .hero-word {
    font-size: 20vw;
  }

  .section-intro {
    gap: 50px;
  }

  .product-grid {
    grid-template-columns: 1.5fr 0.9fr;
  }

  .card-copy {
    grid-template-columns: 1fr;
  }

  .card-copy > p {
    margin-top: 0;
  }

  .floating-left { left: 45px; }
  .floating-right { right: 45px; }

  .story-band {
    grid-template-columns: 90px minmax(0, 1fr) 280px;
  }

  .scenario-grid {
    grid-template-columns: 1.25fr 0.8fr 0.8fr;
  }

  .scenario-copy {
    max-width: 78%;
    padding: 36px;
  }

  .principle-card {
    min-height: 350px;
  }
}

@media (max-width: 820px) {
  :root {
    --radius: 28px;
    --page: calc(100vw - 32px);
  }

  .desktop-only {
    display: none;
  }

  .site-header {
    top: 16px;
    grid-template-columns: 1fr auto;
    min-height: 52px;
  }

  .brand {
    font-size: 22px;
  }

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

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 12;
    display: flex;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    color: white;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 10;
    inset: -16px -16px auto;
    display: flex;
    height: 100dvh;
    padding: 110px 28px 40px;
    border: 0;
    border-radius: 0;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(4, 13, 34, 0.96);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    color: white;
    font-size: 30px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.active {
    color: #7be3ff;
    background: transparent;
  }

  .hero {
    min-height: 820px;
  }

  .hero-image {
    object-position: 48% center;
  }

  .hero-word {
    top: 138px;
    width: 112vw;
    font-size: 24vw;
    opacity: 0.7;
  }

  .hero-copy {
    top: 355px;
    left: 16px;
    width: calc(100vw - 32px);
  }

  .hero h1 {
    font-size: clamp(43px, 12vw, 62px);
    line-height: 1.08;
  }

  .hero-lead {
    margin: 24px 0 28px;
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-note {
    display: none;
  }

  .scroll-cue {
    bottom: 28px;
  }

  .section {
    min-height: 0;
  }

  .section-inner {
    padding: 76px 0;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 42px;
  }

  .section-intro h2 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.05;
  }

  .section-lead {
    max-width: 620px;
    margin: 0;
    font-size: 15px;
    line-height: 1.72;
  }

  .signal-stage {
    height: 610px;
  }

  .ghost-word {
    top: 22px;
    left: 22px;
    font-size: 92px;
  }

  .signal-icon-wrap {
    top: 115px;
    right: 50%;
    transform: translateX(50%);
  }

  .signal-metrics {
    right: 24px;
    bottom: 104px;
    left: 24px;
    grid-template-columns: 1fr;
    gap: 18px;
    width: auto;
  }

  .signal-metrics article {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    align-items: center;
    padding-top: 12px;
  }

  .signal-metrics strong {
    font-size: 25px;
  }

  .status-chips {
    right: 0;
    bottom: 24px;
    left: 0;
    display: flex;
    overflow: hidden;
    padding: 0 20px;
    flex-direction: row;
    justify-content: center;
  }

  .status-chips span:last-child {
    display: none;
  }

  .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .product-card-main {
    grid-row: auto;
    min-height: 650px;
  }

  .product-card-call,
  .product-card-team {
    min-height: 390px;
  }

  .card-copy {
    grid-template-columns: 1fr;
    padding: 32px 28px 0;
  }

  .card-copy h3 {
    font-size: 30px;
  }

  .workspace-ui {
    right: 18px;
    bottom: 0;
    left: 18px;
    width: calc(100% - 36px);
  }

  .card-copy.compact {
    width: 64%;
    padding: 30px 0 0 28px;
  }

  .phone-ui {
    width: 40%;
  }

  .team-ui {
    right: 20px;
    width: 58%;
  }

  .immersive-stage {
    height: 680px;
  }

  .floating {
    top: 150px;
    width: 150px;
  }

  .floating-left { left: 20px; }
  .floating-right { right: 20px; }

  .immersive-logo {
    top: 51%;
  }

  .immersive-logo img { width: 78px; }
  .immersive-logo strong { font-size: 26px; }

  .floating-chips {
    padding: 0 20px;
    flex-wrap: wrap;
  }

  .story-band {
    grid-template-columns: 52px 1fr;
    min-height: 390px;
  }

  .story-number {
    padding: 30px 0 0 20px;
  }

  .story-copy {
    align-self: start;
    padding: 30px 20px 180px;
  }

  .story-copy h3 {
    font-size: 34px;
  }

  .story-band > img {
    right: 22px;
    bottom: -205px;
    width: 225px;
  }

  .scenario-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .scenario-main {
    grid-row: auto;
    grid-column: 1 / 3;
    min-height: 520px;
  }

  .scenario-copy {
    max-width: 74%;
    padding: 34px;
  }

  .scenario-main > img {
    bottom: -170px;
    width: 37%;
  }

  .scenario-small-light {
    grid-column: 1 / 3;
    min-height: 250px;
  }

  .scenario-small-blue,
  .scenario-small-pink {
    min-height: 310px;
  }

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

  .principle-card {
    min-height: 300px;
  }

  .principle-card .eyebrow {
    margin-top: 45px;
  }

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

  .quote-copy {
    padding: 38px 34px 250px;
  }

  .quote-panel > img {
    position: absolute;
    right: 20px;
    bottom: -130px;
    width: 190px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 72px;
  }

  .download {
    min-height: 980px;
  }

  .download-inner {
    padding: 110px 0 95px;
  }

  .download h2 {
    font-size: clamp(55px, 15vw, 82px);
  }

  .download-buttons {
    grid-template-columns: 1fr;
    max-width: 390px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 36px;
  }

  .footer-links {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 790px;
  }

  .hero-word {
    top: 155px;
    font-size: 25.5vw;
  }

  .hero-copy {
    top: 315px;
  }

  .hero h1 {
    font-size: 37px;
    line-height: 1.1;
  }

  .hero-lead {
    max-width: 350px;
  }

  .section-inner {
    padding: 68px 0;
  }

  .section-intro h2 {
    font-size: 39px;
    line-height: 1.07;
  }

  .signal-stage {
    height: 600px;
  }

  .signal-icon-wrap {
    top: 105px;
  }

  .product-card-main {
    min-height: 560px;
  }

  .card-copy > p {
    margin-top: 0;
  }

  .product-card-call,
  .product-card-team {
    min-height: 360px;
  }

  .card-copy.compact {
    width: 70%;
  }

  .card-copy.compact h3 {
    font-size: 28px;
  }

  .phone-ui {
    right: -3px;
    bottom: -80px;
    width: 44%;
  }

  .team-ui {
    right: 15px;
    width: 64%;
  }

  .immersive-stage {
    height: 620px;
  }

  .floating {
    top: 135px;
    width: 122px;
  }

  .floating-left { left: 12px; }
  .floating-right { right: 12px; }

  .immersive-logo img { width: 64px; }
  .immersive-logo strong { font-size: 22px; }

  .story-band {
    grid-template-columns: 42px 1fr;
  }

  .story-number {
    padding-left: 15px;
  }

  .story-copy {
    padding-left: 15px;
  }

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

  .scenario-main,
  .scenario-small-light {
    grid-column: auto;
  }

  .scenario-main {
    min-height: 540px;
  }

  .scenario-copy {
    max-width: 100%;
    padding: 30px 26px;
  }

  .scenario-copy h3 {
    font-size: 35px;
  }

  .scenario-main > img {
    right: 20px;
    bottom: -200px;
    width: 52%;
  }

  .scenario-small-light {
    min-height: 320px;
  }

  .scenario-small-light > div {
    max-width: 100%;
  }

  .mini-orbit {
    top: auto;
    right: 28px;
    bottom: 25px;
    width: 90px;
    height: 90px;
    transform: none;
  }

  .scenario-small-blue,
  .scenario-small-pink {
    min-height: 300px;
  }

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

  .principle-card {
    min-height: 270px;
  }

  .principle-card .eyebrow {
    margin-top: 36px;
  }

  .quote-copy {
    padding: 34px 25px 230px;
  }

  blockquote {
    font-size: 39px;
  }

  .quote-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  summary {
    min-height: 76px;
    font-size: 16px;
  }

  .download-inner {
    padding-top: 90px;
  }

  .download-icon {
    width: 84px;
    border-radius: 24px;
  }

  .download h2 {
    font-size: 55px;
  }

  .download-inner > p:not(.eyebrow):not(.download-note) {
    font-size: 15px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .copyright {
    justify-self: start;
  }
}

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

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

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