:root {
  --bg: #000000;
  --bg-soft: #0a0b10;
  --bg-panel: #111319;
  --bg-panel-strong: #171a22;
  --paper: #f5f5f7;
  --paper-soft: #e8ebf0;
  --ink: #05060a;
  --ink-soft: rgba(5, 6, 10, 0.68);
  --text: #f5f5f7;
  --text-soft: rgba(245, 245, 247, 0.74);
  --text-faint: rgba(245, 245, 247, 0.48);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(5, 6, 10, 0.08);
  --accent: #2997ff;
  --accent-strong: #0071e3;
  --accent-soft: rgba(41, 151, 255, 0.18);
  --shadow-dark: 0 34px 90px rgba(0, 0, 0, 0.5);
  --shadow-light: 0 24px 60px rgba(5, 6, 10, 0.08);
  --radius-2xl: 42px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: min(1240px, calc(100vw - 2rem));
  --display: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--body);
  background:
    radial-gradient(circle at top right, rgba(41, 151, 255, 0.3), transparent 22rem),
    radial-gradient(circle at 12% 14%, rgba(32, 69, 160, 0.22), transparent 18rem),
    linear-gradient(180deg, #020307 0%, #05060b 42%, #030409 100%);
}

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

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

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

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.site-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #ffffff 0%, #2997ff 58%, #7dc0ff 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  padding: 1rem 0 0;
}

.site-header__inner {
  width: var(--content);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 12, 18, 0.76);
  backdrop-filter: blur(24px);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.28);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.site-brand__mark {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #58b2ff 0%, #0a84ff 70%, #005fcc 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(41, 151, 255, 0.32);
}

.site-brand__text {
  display: grid;
  gap: 0.12rem;
}

.site-brand__text strong {
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

.site-brand__text span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 1.35rem;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.18rem;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.12rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

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

.site-header__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.site-header__cta,
.button--primary {
  color: #fff;
  background: linear-gradient(180deg, #1a98ff 0%, #0071e3 100%);
  box-shadow: 0 16px 38px rgba(41, 151, 255, 0.32);
}

.site-header__cta:hover,
.site-header__cta:focus-visible,
.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(41, 151, 255, 0.4);
}

.button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
}

.site-nav__toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--text);
}

.site-nav__toggle span + span {
  margin-top: 5px;
}

.site-main {
  width: var(--content);
  margin: 0 auto;
  padding: 2rem 0 5rem;
}

section {
  position: relative;
  padding: 4rem 0;
}

.eyebrow,
.experience-scene__eyebrow,
.package-summary__tag,
.package-panel__label,
.contact-card__label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dc0ff;
}

.hero-section,
.experience-section,
.markets-section,
.contact-section {
  color: var(--text);
}

.platform-section,
.packages-section,
.approach-section {
  color: var(--ink);
}

.hero-section {
  padding-top: 4.6rem;
}

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

.hero-glow--left {
  top: 1rem;
  left: -5rem;
  width: 18rem;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(41, 151, 255, 0.24), transparent 70%);
}

.hero-glow--right {
  top: -1rem;
  right: -6rem;
  width: 22rem;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(82, 170, 255, 0.28), transparent 72%);
}

.hero-shell,
.experience-section,
.markets-section,
.contact-panel {
  position: relative;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 19, 28, 0.94), rgba(6, 8, 12, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow-dark);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 2rem;
  padding: 2.1rem;
  overflow: hidden;
}

.hero-shell::before,
.experience-section::before,
.markets-section::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -35% -12%;
  width: 24rem;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(41, 151, 255, 0.22), transparent 72%);
  pointer-events: none;
}

.hero-shell::after,
.experience-section::after,
.markets-section::after {
  content: "";
  position: absolute;
  inset: -18% -12% auto auto;
  width: 26rem;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-shell__copy,
.section-heading {
  position: relative;
  z-index: 1;
}

.hero-shell__copy h1,
.section-heading h2,
.package-detail__header h2,
.content-page__article h1,
.contact-panel__copy h2,
.experience-scene h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-shell__copy h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 8vw, 7rem);
}

.hero-shell__lead,
.section-heading p,
.package-detail__intro,
.package-panel p,
.platform-card p,
.market-card p,
.approach-step p,
.contact-panel__copy p,
.site-footer__title,
.site-footer__meta p,
.content-page__body,
.experience-scene__copy,
.experience-step p {
  font-size: 1.04rem;
  line-height: 1.76;
}

.hero-shell__lead,
.section-heading--dark p,
.experience-scene__copy,
.experience-step p,
.market-card p,
.contact-panel__copy p,
.site-footer__title,
.site-footer__meta p {
  color: var(--text-soft);
}

.section-heading p,
.package-detail__intro,
.package-panel p,
.platform-card p,
.approach-step p,
.content-page__body {
  color: var(--ink-soft);
}

.hero-shell__lead {
  max-width: 45rem;
  margin: 1.5rem 0 0;
}

.hero-shell__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-stat,
.platform-card,
.package-summary,
.package-detail,
.market-card,
.approach-step,
.contact-card,
.content-page__article,
.hero-film__screen,
.experience-screen,
.experience-step {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transform: perspective(1200px) translate3d(0, calc(var(--parallax-shift, 0px) + var(--reveal-shift, 0px)), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-stat,
.hero-film__screen,
.experience-screen,
.experience-step,
.market-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(11, 14, 22, 0.92), rgba(8, 10, 16, 0.96));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.platform-card,
.package-summary,
.package-detail,
.approach-step,
.content-page__article {
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 250, 0.96));
  box-shadow: var(--shadow-light);
}

.hero-stat {
  min-height: 8rem;
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem 1.2rem;
}

.hero-stat strong {
  font-size: 1.4rem;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero-stat span {
  color: var(--text-soft);
  line-height: 1.6;
}

.hero-film {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-film__screen {
  width: 100%;
  min-height: 35rem;
  padding: 1.4rem;
}

.hero-film__topline {
  display: inline-flex;
  gap: 0.45rem;
}

.hero-film__topline span {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.hero-film__topline span:nth-child(1) {
  background: rgba(255, 255, 255, 0.5);
}

.hero-film__topline span:nth-child(2) {
  background: rgba(41, 151, 255, 0.64);
}

.hero-film__topline span:nth-child(3) {
  background: rgba(125, 192, 255, 0.8);
}

.hero-film__eyebrow {
  margin: 2rem 0 0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-film h2 {
  margin: 0.9rem 0 0;
  max-width: 9ch;
  font-family: var(--display);
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-film__stack {
  position: relative;
  margin-top: 4rem;
  min-height: 14rem;
}

.hero-film__card {
  position: absolute;
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(20, 24, 36, 0.94), rgba(11, 13, 20, 0.98)),
    linear-gradient(180deg, rgba(41, 151, 255, 0.12), rgba(41, 151, 255, 0));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.hero-film__card span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-film__card strong {
  display: block;
  margin-top: 0.7rem;
  max-width: 16ch;
  font-size: 1.2rem;
  line-height: 1.35;
}

.hero-film__card--main {
  inset: 0 auto auto 0;
  width: min(100%, 20rem);
}

.hero-film__card--side {
  top: 3.8rem;
  right: 0;
  width: min(100%, 15rem);
}

.hero-film__card--float {
  left: 3rem;
  bottom: 0;
  width: min(100%, 17rem);
}

.signal-band {
  margin-top: 1.8rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.signal-band__track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: signal-scroll 28s linear infinite;
}

.signal-band__track span {
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.experience-section {
  --experience-progress: 0;
  --experience-orb-a-x: 0px;
  --experience-orb-a-y: 0px;
  --experience-orb-b-x: 0px;
  --experience-orb-b-y: 0px;
  --experience-panel-shift: 0px;
  padding: 2rem;
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.package-detail__header h2,
.content-page__article h1,
.contact-panel__copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.section-heading p {
  margin: 1rem 0 0;
  max-width: 46rem;
}

.section-heading--dark h2,
.section-heading--dark p {
  color: var(--text);
}

.section-heading--dark p {
  color: var(--text-soft);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.76fr);
  gap: 1.5rem;
  align-items: start;
}

.experience-stage__sticky {
  position: sticky;
  top: 6.8rem;
}

.experience-screen {
  min-height: min(78vh, 44rem);
  padding: 1.6rem;
}

.experience-screen::before,
.experience-screen::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.experience-screen::before {
  inset: auto auto -12% -6%;
  width: 22rem;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(41, 151, 255, 0.24), transparent 72%);
  transform: translate3d(var(--experience-orb-a-x), var(--experience-orb-a-y), 0);
}

.experience-screen::after {
  inset: -12% -8% auto auto;
  width: 20rem;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 70%);
  transform: translate3d(var(--experience-orb-b-x), var(--experience-orb-b-y), 0);
}

.experience-scene {
  position: absolute;
  inset: 1.6rem;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 1rem;
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.98);
  transition: opacity 420ms ease, transform 420ms ease;
}

.experience-scene.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.experience-scene__eyebrow {
  color: #7dc0ff;
}

.experience-scene h3 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.experience-scene__copy {
  max-width: 36rem;
  margin: 0;
}

.experience-scene__grid {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.experience-panel {
  padding: 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(11, 14, 22, 0.9), rgba(8, 9, 14, 0.96));
  transform: translate3d(0, var(--experience-panel-shift), 0);
}

.experience-panel span {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.experience-panel strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.08rem;
  line-height: 1.42;
}

.experience-panel--lead strong {
  font-size: 1.26rem;
}

.experience-rail {
  display: grid;
  gap: 1rem;
}

.experience-step {
  min-height: 22rem;
  padding: 1.4rem;
  border-color: rgba(255, 255, 255, 0.08);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.experience-step.is-active {
  border-color: rgba(41, 151, 255, 0.4);
  box-shadow: 0 24px 70px rgba(41, 151, 255, 0.12);
}

.experience-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.experience-step h3 {
  margin: 1rem 0 0;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.experience-step p {
  margin: 1rem 0 0;
}

.experience-step__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.experience-step__chips span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  color: var(--text-soft);
}

.platform-section,
.packages-section,
.approach-section {
  margin-top: 1.25rem;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 250, 0.98));
  box-shadow: var(--shadow-light);
}

.platform-grid,
.package-summary-grid,
.market-grid,
.approach-timeline {
  display: grid;
  gap: 1.15rem;
}

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

.platform-card {
  padding: 1.35rem;
}

.platform-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(5, 6, 10, 0.04);
  border: 1px solid rgba(5, 6, 10, 0.07);
}

.platform-card__icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--ink);
}

.platform-card__icon svg {
  width: 100%;
  height: 100%;
}

.platform-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(5, 6, 10, 0.72);
}

.platform-card h3 {
  margin: 1rem 0 0;
  font-size: 1.26rem;
  line-height: 1.24;
}

.platform-card p {
  margin: 0.8rem 0 0;
}

.package-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-summary {
  display: grid;
  gap: 0.8rem;
  min-height: 17.5rem;
  padding: 1.4rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.package-summary:hover,
.package-summary:focus-visible {
  transform: perspective(1200px) translate3d(0, -4px, 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 32px 70px rgba(5, 6, 10, 0.12);
}

.package-summary h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.14;
}

.package-summary p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.package-summary strong {
  margin-top: auto;
  font-size: 2rem;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.package-detail-stack {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.3rem;
}

.package-detail {
  padding: 1.9rem;
}

.package-detail__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
}

.package-detail__price {
  min-width: min(100%, 20rem);
  padding: 1.3rem;
  border-radius: 24px;
  border: 1px solid rgba(5, 6, 10, 0.08);
  background: rgba(5, 6, 10, 0.03);
}

.package-detail__price span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.package-detail__price strong {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.package-detail__price p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.package-detail__intro {
  max-width: 50rem;
  margin: 1.2rem 0 0;
}

.package-detail__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.package-panel {
  padding: 1.3rem;
  border-radius: 22px;
  border: 1px solid rgba(5, 6, 10, 0.07);
  background: rgba(5, 6, 10, 0.03);
}

.package-panel p {
  margin: 0.7rem 0 0;
}

.package-panel ul {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.72;
}

.package-panel__divider {
  height: 1px;
  margin: 1.1rem 0;
  background: rgba(5, 6, 10, 0.08);
}

.markets-section {
  margin-top: 1.25rem;
  padding: 2rem;
}

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

.market-card {
  min-height: 17rem;
  padding: 1.35rem;
}

.market-card__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.market-card__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(41, 151, 255, 0.14);
  color: #8dccff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.market-card__name {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8dccff;
}

.market-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1.45rem;
  line-height: 1.18;
}

.market-card p {
  margin: 1rem 0 0;
}

.approach-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.approach-step {
  min-height: 16.5rem;
  padding: 1.35rem;
}

.approach-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #2997ff 0%, #0071e3 100%);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 28px rgba(41, 151, 255, 0.24);
}

.approach-step h3 {
  margin: 1rem 0 0;
  font-size: 1.4rem;
  line-height: 1.22;
}

.approach-step p {
  margin: 0.9rem 0 0;
}

.contact-section {
  margin-top: 1.25rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(290px, 0.74fr);
  gap: 1.3rem;
  padding: 2rem;
}

.contact-panel__copy {
  position: relative;
  z-index: 1;
}

.contact-panel__copy p {
  max-width: 42rem;
  margin: 1rem 0 0;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.45rem;
}

.contact-card h3 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.contact-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.contact-card > a {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.45rem;
}

.content-page {
  min-height: 50vh;
}

.content-page__article {
  padding: 2rem;
}

.content-page__body > *:first-child {
  margin-top: 0;
}

.content-page__body > *:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 0 0 2rem;
}

.site-footer__inner {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.7rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 11, 16, 0.82);
  backdrop-filter: blur(20px);
}

.site-footer__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8dccff;
}

.site-footer__title {
  max-width: 30rem;
  margin: 0.7rem 0 0;
}

.site-footer__meta {
  display: grid;
  gap: 0.55rem;
  justify-items: end;
  text-align: right;
}

.site-footer__meta p,
.site-footer__meta a {
  margin: 0;
}

.site-footer__meta a {
  font-weight: 700;
  color: #ffffff;
}

.reveal {
  opacity: 0;
  --reveal-shift: 30px;
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-shell.reveal,
.signal-band.reveal,
.section-heading.reveal {
  transform: translate3d(0, var(--reveal-shift, 0px), 0);
}

.reveal.is-visible {
  opacity: 1;
  --reveal-shift: 0px;
}

@keyframes signal-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1140px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

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

  .experience-stage__sticky {
    position: static;
  }

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

  .package-summary-grid,
  .market-grid,
  .approach-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .package-panel:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: auto auto;
  }

  .site-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem 1.3rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 12, 18, 0.96);
    box-shadow: var(--shadow-dark);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header__cta {
    display: none;
  }

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

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

@media (max-width: 760px) {
  :root {
    --content: min(100vw - 1rem, 100%);
  }

  .site-header {
    padding-top: 0.75rem;
  }

  .site-header__inner {
    padding: 0.9rem 1rem;
  }

  .site-brand__text span {
    display: none;
  }

  .site-main {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
  }

  section {
    padding: 3.2rem 0;
  }

  .hero-section {
    padding-top: 3.5rem;
  }

  .hero-shell,
  .experience-section,
  .platform-section,
  .packages-section,
  .markets-section,
  .approach-section,
  .contact-panel,
  .content-page__article {
    padding: 1.3rem;
  }

  .hero-shell__copy h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .hero-film__screen,
  .experience-screen {
    min-height: auto;
    padding: 1.1rem;
  }

  .hero-film__stack {
    margin-top: 2rem;
    min-height: 16rem;
  }

  .hero-film__card--main,
  .hero-film__card--side,
  .hero-film__card--float {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 0.8rem;
  }

  .section-heading h2,
  .package-detail__header h2,
  .content-page__article h1,
  .contact-panel__copy h2,
  .experience-scene h3 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .platform-grid,
  .package-summary-grid,
  .market-grid,
  .approach-timeline,
  .package-detail__grid,
  .experience-scene__grid {
    grid-template-columns: 1fr;
  }

  .package-detail__header {
    grid-template-columns: 1fr;
  }

  .package-detail__price {
    min-width: 0;
  }

  .experience-step {
    min-height: auto;
  }

  .experience-scene {
    position: relative;
    inset: auto;
    display: none;
  }

  .experience-scene.is-active {
    display: grid;
  }

  .site-footer__inner {
    flex-direction: column;
    padding: 1.4rem;
  }

  .site-footer__meta {
    justify-items: start;
    text-align: left;
  }
}

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

  .reveal,
  .reveal.is-visible,
  .hero-stat,
  .platform-card,
  .package-summary,
  .package-detail,
  .market-card,
  .approach-step,
  .contact-card,
  .content-page__article,
  .hero-film__screen,
  .experience-screen,
  .experience-step {
    transform: none;
    transition: none;
  }

  .experience-scene {
    transition: none;
  }

  .signal-band__track {
    animation: none;
  }
}
