:root {
  --bg: #070b17;
  --panel: #111b2f;
  --panel-soft: rgba(24, 38, 65, 0.72);
  --text: #f8f9ff;
  --muted: #adc1e1;
  --accent: #ffb84d;
  --accent-2: #ff7a18;
  --tech: #55d8ff;
  --border: rgba(126, 167, 230, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow: hidden;
  background-color: #070b17;
}

body {
  height: 100%;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  scroll-behavior: smooth;
  background-color: #070b17;
  overscroll-behavior-y: none;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 154, 58, 0.2), transparent 38%),
    radial-gradient(circle at 83% 18%, rgba(87, 229, 255, 0.16), transparent 36%),
    linear-gradient(170deg, #070b17 0%, #0d1426 44%, #101d33 100%);
}

.bg-grid {
  display: none;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  display: none;
  z-index: -2;
}

body::after {
  display: none;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, 94vw);
  margin: 1rem auto 0;
  padding: 0.95rem 1.35rem;
  background: rgba(8, 15, 29, 0.48);
  border: 1px solid rgba(162, 196, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(3, 7, 15, 0.38);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

nav a {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.logo {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.logo-mark {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--accent);
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.site-footer .logo-img {
  height: 30px;
}

.section {
  width: min(1120px, 88vw);
  margin: 0 auto;
  padding: 6rem 0;
}

.hero {
  min-height: calc(100vh - 7.5rem);
  display: grid;
  gap: 2.8rem;
  grid-template-columns: minmax(300px, 1fr) minmax(360px, 1.05fr);
  align-items: center;
  justify-items: stretch;
  position: relative;
  padding-top: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 6% 0 6%;
  border-radius: 34px;
  background: linear-gradient(155deg, rgba(255, 184, 77, 0.08), rgba(85, 216, 255, 0.08));
  border: 1px solid rgba(156, 196, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  z-index: -1;
}

.hero-solar-glow {
  position: absolute;
  width: 44vw;
  max-width: 560px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 181, 67, 0.28), rgba(255, 122, 24, 0.09) 55%, transparent 78%);
  filter: blur(6px);
  top: -8%;
  left: 50%;
  transform: translate(-50%, -8%);
  z-index: -1;
  pointer-events: none;
}

.hero-copy {
  max-width: 620px;
  text-align: left;
  position: relative;
  z-index: 2;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.hero-description {
  text-align: left;
  max-width: 570px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(1.7rem, 4.2vw, 3rem);
}

p,
li,
label,
input,
textarea,
select {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.text-accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--tech));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.hero-copy .cta-group {
  justify-content: flex-start;
}

.link-call {
  align-self: center;
  color: #c3d5f0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.link-call:hover {
  color: var(--text);
  border-color: rgba(195, 213, 240, 0.52);
}

.hero-proof {
  margin: 0.8rem 0 0;
  font-size: 0.92rem;
  color: #d3e1f7;
}

.hero-reassurance.section {
  padding-top: 0.7rem;
  padding-bottom: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-reassurance p {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(16, 28, 48, 0.72);
  padding: 0.72rem 0.85rem;
  color: #e0ecff;
  text-align: center;
  font-weight: 600;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.hero-reassurance p::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 184, 77, 0.14), rgba(85, 216, 255, 0.14));
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.hero-reassurance p:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 184, 77, 0.62);
  background: rgba(20, 35, 58, 0.86);
  box-shadow: 0 10px 20px rgba(4, 8, 15, 0.35), 0 0 18px rgba(255, 184, 77, 0.14);
}

.hero-reassurance p:hover::before {
  opacity: 1;
}

.btn {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 54%, #ffca59 100%);
  color: #130e08;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.8rem 1.3rem;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 160, 51, 0.4);
}

.btn-ghost {
  background: rgba(16, 27, 47, 0.6);
  color: var(--text);
  border-color: var(--border);
}

.btn-small {
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
}

.card,
.source,
.output-grid span,
.pill-grid span,
.demo-center,
.demo-short {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.hero-showcase {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(150, 198, 255, 0.34);
  border-radius: 22px;
  padding: 1.1rem;
  background: linear-gradient(150deg, rgba(10, 20, 38, 0.88), rgba(15, 33, 58, 0.75));
  box-shadow: 0 24px 54px rgba(5, 9, 17, 0.48), 0 0 34px rgba(255, 184, 77, 0.18);
}

.hero-showcase-main {
  position: relative;
  border: 1px solid rgba(148, 196, 255, 0.26);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.hero-showcase-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-showcase-grid {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-short-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.hero-short-card > img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(137, 185, 255, 0.3);
}

.hero-platform-badge {
  position: absolute;
  right: 0.45rem;
  top: 0.45rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(8, 16, 30, 0.78);
  border: 1px solid rgba(137, 185, 255, 0.36);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(3, 7, 15, 0.36);
}

.hero-platform-badge img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  display: block;
}

.hero-platform-badge--master {
  right: 0.8rem;
  top: 0.8rem;
  width: 36px;
  height: 36px;
}

.hero-platform-badge--master img {
  width: 19px;
  height: 19px;
}

.hero-orb,
.hero-ring,
.hero-chip {
  position: absolute;
  pointer-events: none;
}

.hero-orb {
  border-radius: 50%;
  filter: blur(0.4px);
  animation: glowPulse 6.5s ease-in-out infinite;
  z-index: 1;
}

.orb-1 {
  width: 190px;
  height: 190px;
  left: 10%;
  top: 18%;
  background: radial-gradient(circle, rgba(255, 184, 77, 0.9), rgba(255, 122, 24, 0.08) 72%);
}

.orb-2 {
  width: 140px;
  height: 140px;
  right: 11%;
  bottom: 17%;
  background: radial-gradient(circle, rgba(85, 216, 255, 0.8), rgba(85, 216, 255, 0.08) 70%);
  animation-delay: -2s;
}

.hero-ring {
  border-radius: 50%;
  border: 1px solid rgba(153, 201, 255, 0.35);
  box-shadow: inset 0 0 22px rgba(153, 201, 255, 0.08);
  animation: ringPulse 4.8s ease-in-out infinite;
  z-index: 1;
}

.ring-1 {
  width: 300px;
  height: 300px;
  right: 10%;
  top: 8%;
}

.ring-2 {
  width: 240px;
  height: 240px;
  left: 8%;
  bottom: 8%;
  animation-delay: -1.5s;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #eaf2ff;
  border: 1px solid rgba(150, 200, 255, 0.42);
  background: rgba(22, 37, 64, 0.75);
  box-shadow: 0 8px 20px rgba(5, 9, 17, 0.45);
  z-index: 2;
  animation: chipGlow 3.6s infinite ease-in-out;
}

.hero-chip::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--accent), var(--tech));
  box-shadow: 0 0 10px rgba(255, 183, 77, 0.5);
}

.chip-1 {
  left: 14%;
  top: 35%;
}

.chip-2 {
  right: 14%;
  top: 31%;
  animation-delay: -1.2s;
}

.chip-3 {
  right: 24%;
  bottom: 20%;
  animation-delay: -0.6s;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.long-video {
  width: 70%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.split-line {
  position: absolute;
  right: 8%;
  width: 2px;
  height: 80%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  animation: pulseLine 2.4s infinite ease-in-out;
}

.shorts-cluster {
  position: absolute;
  inset: 15% 0 15% 55%;
  display: grid;
  gap: 0.8rem;
  align-content: center;
}

.short-card {
  padding: 0.8rem;
  border: 1px solid var(--border);
  background: #242830;
  border-radius: 10px;
  position: relative;
  animation: floatUp 4s infinite ease-in-out;
}

.short-card::before,
.icon-play,
.motion-play {
  content: '';
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--accent);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.short-card {
  padding-left: 2.1rem;
}

.short-card:nth-child(2) {
  animation-delay: 0.3s;
}

.short-card:nth-child(3) {
  animation-delay: 0.5s;
}

.short-card:nth-child(4) {
  animation-delay: 0.7s;
}

.problem {
  text-align: center;
}

.problem > p {
  max-width: 900px;
  margin: 0 auto;
}

.problem-focus {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.8rem;
}

.problem-focus p {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(16, 28, 48, 0.72);
  color: var(--text);
}

.problem-graph {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.source {
  padding: 1.1rem;
  max-width: 380px;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.8rem;
}

.output-grid span {
  padding: 0.85rem;
  text-align: center;
  animation: reveal 4s infinite ease-in-out;
}

.output-grid span:nth-child(even) {
  animation-delay: 0.3s;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.section-lead {
  max-width: 760px;
  margin: 0.2rem 0 1.6rem;
  color: #c3d4ef;
}

.how-scroll {
  position: relative;
  margin-top: 1.4rem;
}

.how-track {
  display: grid;
  grid-template-rows: repeat(4, 100vh);
}

.how-trigger {
  display: block;
  height: 100vh;
}

.how-stage {
  position: sticky;
  top: calc(50vh - 215px);
  height: 430px;
  border-radius: 24px;
  border: 1px solid rgba(137, 185, 255, 0.25);
  background: linear-gradient(150deg, rgba(9, 18, 34, 0.92), rgba(12, 26, 47, 0.82));
  box-shadow: 0 24px 46px rgba(5, 10, 20, 0.45);
  overflow: hidden;
  z-index: 1;
}

#how h2,
#how .section-lead {
  position: relative;
  z-index: 2;
}

.how-axis {
  position: absolute;
  left: 18px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(transparent, rgba(85, 216, 255, 0.62), rgba(255, 184, 77, 0.82), transparent);
  box-shadow: 0 0 20px rgba(85, 216, 255, 0.3);
  pointer-events: none;
}

.how-node {
  position: absolute;
  inset: 0;
  padding: 1.7rem 4rem 1.5rem 3.2rem;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(240px, 330px);
  gap: 1rem;
  align-items: start;
  opacity: 0;
  transform: translateY(22px) scale(0.982);
  filter: blur(3px);
  transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
  pointer-events: none;
}

.how-node.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.how-node::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 2.2rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--tech), var(--accent));
  box-shadow: 0 0 18px rgba(85, 216, 255, 0.65);
}

.how-node-step {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #8ac6ff;
}

.how-node h3 {
  margin-bottom: 0.45rem;
}

.how-node > p:not(.how-node-step),
.how-node h3,
.how-node-points {
  grid-column: 1 / 2;
}

.how-node-media {
  grid-column: 2 / 3;
  grid-row: 1 / span 4;
  width: 100%;
  margin: 0.2rem 0 0;
  border: 1px solid rgba(137, 185, 255, 0.3);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(10, 22, 40, 0.85);
}

.how-node-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.how-node-points {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.how-node-points li {
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(137, 185, 255, 0.28);
  background: rgba(23, 40, 67, 0.72);
  font-size: 0.8rem;
  color: #d4e3fa;
}

.how-index {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 0.45rem;
}

.how-index button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(141, 181, 236, 0.45);
  transition: transform 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
}

.how-index button.is-active {
  transform: scale(1.45);
  background: linear-gradient(130deg, var(--accent), var(--tech));
}

.how-index button:focus-visible {
  outline: 2px solid rgba(255, 184, 77, 0.9);
  outline-offset: 4px;
}

.card {
  padding: 1.25rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 184, 77, 0.8);
}

.icon-play {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  margin-bottom: 1rem;
}

.demo-stage {
  margin-top: 2rem;
  min-height: 420px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(20, 33, 57, 0.42);
  overflow: hidden;
}

.demo-center {
  width: min(56%, 420px);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
}

.connector {
  position: absolute;
  width: 2px;
  height: 74%;
  background: linear-gradient(transparent, var(--accent), transparent);
  animation: pulseLine 2s infinite;
}

.demo-short {
  position: absolute;
  width: 130px;
  aspect-ratio: 9 / 16;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  animation: cascade 4s infinite;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-short::after {
  content: '▶';
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 0.88rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.demo-short:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(255, 184, 77, 0.9);
  box-shadow: 0 12px 28px rgba(255, 184, 77, 0.24);
}

.demo-short:nth-of-type(3) {
  left: 8%;
  top: 10%;
  animation-delay: 0.1s;
}

.demo-short:nth-of-type(4) {
  right: 8%;
  top: 10%;
  animation-delay: 0.3s;
}

.demo-short:nth-of-type(5) {
  left: 15%;
  bottom: 7%;
  animation-delay: 0.5s;
}

.demo-short:nth-of-type(6) {
  right: 15%;
  bottom: 7%;
  animation-delay: 0.7s;
}

.demo-short:nth-of-type(7) {
  right: 41%;
  top: 3%;
  animation-delay: 0.9s;
}

.demo-center img,
.demo-short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.video-modal.is-open {
  display: grid;
  place-items: center;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 15, 0.74);
  backdrop-filter: blur(5px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  border-radius: 18px;
  border: 1px solid rgba(155, 196, 255, 0.28);
  background: rgba(8, 15, 29, 0.92);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  padding: 1rem;
}

.video-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.55rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(155, 196, 255, 0.3);
  background: rgba(15, 28, 49, 0.92);
  color: #f4f8ff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal-frame-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-modal-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.mini-features {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.mini-feature {
  border: 1px solid var(--border);
  background: var(--panel-soft);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-weight: 600;
}

.mini-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 184, 77, 0.15);
}

.cta-inline {
  margin-top: 1.15rem;
  display: flex;
  justify-content: center;
}

ul {
  margin: 0 0 1.2rem;
  padding-left: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(137, 185, 255, 0.28);
  background: linear-gradient(155deg, rgba(12, 22, 40, 0.92), rgba(14, 29, 50, 0.74));
  box-shadow: 0 16px 32px rgba(4, 9, 16, 0.34);
}

.pricing-card h3 {
  margin-bottom: 0.35rem;
}

.pricing-card--featured {
  transform: translateY(-10px);
  border-color: rgba(255, 184, 77, 0.75);
  box-shadow: 0 20px 40px rgba(4, 9, 16, 0.48), 0 0 26px rgba(255, 184, 77, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  margin: 0;
  padding: 0.3rem 0.66rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #16100a;
  font-size: 0.72rem;
  font-weight: 700;
}

.pricing-tier {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #8ac6ff;
}

.pricing-value {
  margin: 0.1rem 0 0.45rem;
  color: #c5d8f4;
}

.pricing-value strong {
  color: #f8f9ff;
  font-size: 1.2rem;
}

.pricing-target {
  margin: 0 0 0.9rem;
  color: #abc0e2;
}

.pricing-list {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.52rem;
}

.pricing-list li {
  position: relative;
  padding-left: 1.35rem;
}

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-note {
  margin: 1rem 0 0;
  color: #b8cae8;
}

.pricing-note a {
  color: #d8e8ff;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
}

.pill-grid span {
  padding: 0.7rem 0.9rem;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.pill-grid span:hover {
  border-color: var(--accent);
  color: var(--text);
}

.motion-strip {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem;
}

.motion-logo {
  font-weight: 700;
}

.motion-line {
  height: 2px;
  background: var(--accent);
  animation: pulseLine 1.8s infinite;
}

.motion-play {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--accent);
}

.motion-split {
  display: flex;
  gap: 0.45rem;
}

.motion-split span {
  width: 12px;
  height: 30px;
  border-radius: 3px;
  background: var(--accent);
  animation: reveal 1.6s infinite;
}

.motion-split span:nth-child(2) {
  animation-delay: 0.2s;
}

.motion-split span:nth-child(3) {
  animation-delay: 0.4s;
}

.start-cta {
  width: min(1240px, 94vw);
  border: 1px solid rgba(137, 185, 255, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 22%, rgba(85, 216, 255, 0.14), transparent 40%),
    radial-gradient(circle at 16% 30%, rgba(255, 184, 77, 0.14), transparent 44%),
    linear-gradient(158deg, rgba(12, 24, 44, 0.88), rgba(9, 19, 35, 0.84));
  box-shadow: 0 32px 68px rgba(2, 8, 18, 0.46);
  text-align: center;
  padding-top: clamp(3rem, 6.4vw, 5.2rem);
  padding-bottom: clamp(3rem, 6.4vw, 5.2rem);
  padding-left: clamp(1.1rem, 2.2vw, 2rem);
  padding-right: clamp(1.1rem, 2.2vw, 2rem);
  margin-bottom: clamp(1.8rem, 4vw, 3.2rem);
}

.start-cta h2 {
  margin: 0 auto 1rem;
  max-width: 19ch;
  line-height: 1.06;
  font-size: clamp(2rem, 4.8vw, 4rem);
}

.start-cta .eyebrow {
  margin-bottom: 0.8rem;
}

.start-cta-lead {
  margin: 0 auto;
  max-width: 68ch;
  color: #d9e7ff;
  font-size: clamp(1.02rem, 1.9vw, 1.26rem);
  line-height: 1.55;
}

.start-cta-points {
  margin: 1.25rem 0 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  justify-content: center;
}

.start-cta-points span {
  border: 1px solid rgba(137, 185, 255, 0.32);
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  font-size: 0.82rem;
  color: #c9dbf7;
  background: rgba(12, 24, 44, 0.55);
}

.cta-group-center {
  justify-content: center;
}

.method-summary {
  margin-top: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(16, 28, 48, 0.72);
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}

.method-summary p {
  margin: 0;
  color: #d8e6fb;
}

.contact h2 {
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  margin-bottom: 0.3rem;
}

.contact-form {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.contact-form .cta-group {
  margin-top: 0.3rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.4rem;
}

.form-help {
  color: #a8bddf;
  font-size: 0.84rem;
  line-height: 1.4;
}

input,
textarea,
select {
  background: rgba(14, 24, 42, 0.92);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 184, 77, 0.2);
}

.form-status {
  min-height: 1.3rem;
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
}

.form-status.is-success {
  color: #8ef5be;
}

.form-status.is-error {
  color: #ff9d9d;
}

.callout-call {
  margin-top: 1.1rem;
  border: 1px solid rgba(137, 185, 255, 0.28);
  border-radius: 14px;
  background: rgba(13, 26, 46, 0.7);
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.75rem;
}

.callout-call p {
  margin: 0;
  color: #d4e2f8;
}

.site-footer {
  width: min(1240px, 94vw);
  margin: 0 auto 2rem;
  padding: 1.2rem;
  border: 1px solid rgba(137, 185, 255, 0.25);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(11, 21, 39, 0.88), rgba(9, 18, 33, 0.72));
  box-shadow: 0 18px 42px rgba(2, 8, 18, 0.35);
  display: grid;
  gap: 1rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(180px, 0.8fr) minmax(280px, 1fr);
  gap: 1.05rem;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 0.8rem;
}

.footer-tagline {
  margin: 0;
  color: #d5e5ff;
  max-width: 48ch;
  line-height: 1.55;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(137, 185, 255, 0.3);
  border-radius: 999px;
  padding: 0.26rem 0.66rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: #c9dcf7;
  background: rgba(13, 26, 46, 0.62);
}

.footer-column {
  display: grid;
  gap: 0.62rem;
}

.footer-title {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  color: var(--accent);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-mail {
  color: #f0f6ff;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
}

.footer-mail:hover {
  color: var(--accent-light);
}

.footer-note {
  margin: 0;
  color: #b6c8e6;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-bottom {
  border-top: 1px solid rgba(137, 185, 255, 0.2);
  padding-top: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #9db1d3;
  font-size: 0.86rem;
  line-height: 1.4;
}

.btn[aria-current='page'] {
  border-color: rgba(255, 184, 77, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 184, 77, 0.28);
  pointer-events: none;
}

.subpage-main {
  padding-bottom: 2rem;
}

.subpage-hero {
  max-width: 860px;
  padding-top: 4rem;
  padding-bottom: 1.6rem;
}

.subpage-hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.1;
}

.subpage-hero .section-lead {
  margin-top: 0.95rem;
  max-width: 70ch;
}

.page-card {
  border: 1px solid rgba(137, 185, 255, 0.28);
  border-radius: 16px;
  background: rgba(13, 26, 46, 0.72);
  box-shadow: 0 18px 42px rgba(2, 8, 18, 0.38);
  padding: clamp(1rem, 2.2vw, 1.4rem);
}

.legal-main {
  padding-bottom: 3rem;
}

.legal-section {
  padding-top: 0.6rem;
}

.legal-card {
  display: grid;
  gap: 1rem;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.legal-nav a {
  text-decoration: none;
  color: #cdddf8;
  border: 1px solid rgba(137, 185, 255, 0.3);
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.82rem;
  background: rgba(12, 23, 42, 0.55);
}

.legal-nav a[aria-current='page'] {
  border-color: rgba(255, 184, 77, 0.5);
  color: #fff5df;
  background: rgba(255, 184, 77, 0.2);
}

.legal-article {
  border: 1px solid rgba(137, 185, 255, 0.24);
  border-radius: 12px;
  background: rgba(10, 20, 36, 0.5);
  padding: 0.95rem 1rem;
}

.legal-article h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.03rem, 2vw, 1.26rem);
}

.legal-article p {
  margin: 0;
  line-height: 1.55;
  color: #d7e5fb;
}

.legal-article p + p {
  margin-top: 0.5rem;
}

.legal-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
  color: #d7e5fb;
}

.legal-list li {
  line-height: 1.5;
}

.booking-section {
  padding-top: 1.6rem;
}

.booking-card {
  display: grid;
  gap: 1rem;
}

.booking-note {
  margin: 0;
  color: #cfe0fa;
  line-height: 1.5;
}

.booking-embed {
  border: 1px solid rgba(137, 185, 255, 0.28);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(7, 14, 25, 0.82);
  min-height: clamp(540px, 74vh, 780px);
}

.booking-frame {
  width: 100%;
  height: clamp(540px, 74vh, 780px);
  border: 0;
  background: rgba(7, 14, 25, 0.82);
}

.booking-embed--light {
  background: #ffffff;
  border-color: rgba(186, 204, 232, 0.8);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.booking-frame--light {
  background: #ffffff;
  color-scheme: light;
  height: 1250px;
}

.booking-embed--light {
  min-height: 1250px;
}

.clip-test-embed {
  min-height: 1900px;
  overflow: visible;
}

.clip-test-frame {
  height: 1900px;
}

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

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

  .subpage-hero {
    padding-top: 3rem;
  }

  .legal-card {
    gap: 0.8rem;
  }
}

@media (max-width: 760px) {
  .site-footer {
    width: min(1120px, 88vw);
    padding: 1rem;
    border-radius: 18px;
  }

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

  .footer-actions .btn {
    width: 100%;
  }

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

  .booking-embed,
  .booking-frame {
    min-height: 70vh;
    height: 70vh;
  }

  .booking-embed--light,
  .booking-frame--light {
    min-height: 1450px;
    height: 1450px;
  }

  .clip-test-embed,
  .clip-test-frame {
    min-height: 2150px;
    height: 2150px;
  }

  .legal-article {
    padding: 0.85rem 0.85rem;
  }
}

.l2s-home {
  padding-top: 4rem;
}

.l2s-home-intro {
  max-width: 780px;
  margin-bottom: 1.1rem;
}

.l2s-home-scroll {
  position: relative;
}

.l2s-home-sticky {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 1.2rem 0;
}

.l2s-home-content {
  display: grid;
  grid-template-columns: minmax(250px, 340px) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.l2s-home-story {
  padding: 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(137, 185, 255, 0.28);
  background: rgba(12, 22, 40, 0.78);
}

.l2s-home-story h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
}

.l2s-home-story p {
  margin: 0;
}

.l2s-home-stage {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(137, 185, 255, 0.3);
  background: linear-gradient(160deg, rgba(10, 19, 35, 0.92), rgba(13, 25, 45, 0.84));
  box-shadow: 0 30px 70px rgba(2, 8, 18, 0.54);
  min-height: min(75vh, 650px);
  padding: 1rem;
  overflow: hidden;
}

.l2s-home-master {
  --master-glow: 0;
  position: absolute;
  inset: 8% 8%;
  border-radius: 20px;
  border: 1px solid rgba(137, 185, 255, 0.32);
  background: linear-gradient(150deg, rgba(14, 24, 42, 0.94), rgba(18, 32, 56, 0.88));
  padding: 1rem;
  box-shadow:
    0 22px 48px rgba(4, 9, 18, 0.44),
    0 0 calc(var(--master-glow) * 34px) rgba(255, 181, 79, 0.2);
}

.l2s-home-topbar {
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.l2s-home-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(170, 199, 236, 0.68);
}

.l2s-home-topbar p {
  margin: 0 0 0 0.2rem;
  font-size: 0.78rem;
  color: #d7e5fb;
}

.l2s-home-layout {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 0.9rem;
}

.l2s-home-player {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(139, 188, 255, 0.3);
  background: linear-gradient(160deg, rgba(18, 33, 58, 0.72), rgba(15, 25, 45, 0.72));
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.l2s-home-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 999px;
  border: 1px solid rgba(255, 181, 79, 0.58);
  background: rgba(255, 181, 79, 0.18);
}

.l2s-home-play::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 22px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #ffd8a4;
}

.l2s-home-player-caption {
  position: absolute;
  left: 0.7rem;
  bottom: 0.6rem;
  display: flex;
  gap: 0.45rem;
  font-size: 0.74rem;
}

.l2s-home-player-caption span:first-child {
  padding: 0.2rem 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 181, 79, 0.45);
  color: #ffd49a;
}

.l2s-home-player-caption span:last-child {
  color: #d4e3fb;
}

.l2s-home-guides {
  position: absolute;
  inset: 10% 8%;
  pointer-events: none;
}

.l2s-home-cut-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 99px;
  background: linear-gradient(transparent, rgba(88, 221, 255, 0.84), transparent);
  opacity: 0;
}

.l2s-home-cut-line:nth-child(1) {
  left: 20%;
}

.l2s-home-cut-line:nth-child(2) {
  left: 49%;
}

.l2s-home-cut-line:nth-child(3) {
  left: 74%;
}

.l2s-home-side {
  display: grid;
  gap: 0.7rem;
}

.l2s-home-side div {
  border: 1px solid rgba(140, 181, 238, 0.28);
  border-radius: 12px;
  background: rgba(23, 38, 64, 0.64);
  min-height: 64px;
}

.l2s-home-timeline {
  margin-top: 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(140, 181, 238, 0.24);
  height: 18px;
  padding: 0 0.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 31, 54, 0.7);
}

.l2s-home-moment-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(140, 182, 239, 0.7);
  box-shadow: 0 0 0 rgba(255, 181, 79, 0);
}

.l2s-home-clips-layer {
  position: absolute;
  inset: 8% 8%;
  z-index: 3;
  pointer-events: none;
}

.l2s-home-clip-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(122px, 10vw, 170px);
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  border: 1px solid rgba(152, 196, 255, 0.36);
  background: linear-gradient(160deg, rgba(20, 35, 62, 0.92), rgba(15, 26, 45, 0.85));
  box-shadow: 0 18px 32px rgba(4, 10, 19, 0.5);
  padding: 0.55rem;
}

.l2s-home-clip-card p {
  display: inline-flex;
  margin: 0;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d2e3fd;
  border: 1px solid rgba(141, 183, 238, 0.35);
  border-radius: 999px;
  padding: 0.17rem 0.4rem;
}

.l2s-home-clip-play {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 181, 79, 0.2);
  border: 1px solid rgba(255, 181, 79, 0.5);
}

.l2s-home-clip-play::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 11px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #ffd7a5;
}

.l2s-home-clip-lines {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 1rem;
  display: grid;
  gap: 0.36rem;
}

.l2s-home-clip-lines span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(154, 195, 250, 0.72);
}

.l2s-home-clip-lines span:nth-child(2) {
  width: 82%;
}

.l2s-home-clip-lines span:nth-child(3) {
  width: 64%;
}

.l2s-home-clip-timeline {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.5rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 181, 79, 0.85), rgba(88, 221, 255, 0.86));
}

.l2s-home-wall {
  position: absolute;
  inset: 9% 7%;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  align-content: center;
  justify-items: center;
  pointer-events: none;
}

.l2s-home-wall-clip {
  width: 100%;
  max-width: 118px;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  border: 1px solid rgba(156, 200, 255, 0.4);
  background: linear-gradient(160deg, rgba(21, 37, 65, 0.92), rgba(14, 25, 46, 0.88));
  box-shadow: 0 14px 24px rgba(4, 10, 19, 0.38);
  position: relative;
  overflow: hidden;
}

.l2s-home-wall-clip::before {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  background: rgba(255, 181, 79, 0.18);
  border: 1px solid rgba(255, 181, 79, 0.5);
}

.l2s-home-wall-clip::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 181, 79, 0.85), rgba(88, 221, 255, 0.86));
}

.l2s-home-wall-clip span {
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d2e4ff;
  border: 1px solid rgba(141, 183, 238, 0.35);
  border-radius: 999px;
  padding: 0.16rem 0.4rem;
}

.l2s-home-clip-card.is-hidden {
  display: none;
}

@media (max-width: 980px) {
  .l2s-home-content {
    grid-template-columns: 1fr;
  }

  .l2s-home-story {
    max-width: 100%;
  }

  .l2s-home-stage {
    min-height: 66vh;
  }
}

@media (max-width: 720px) {
  .l2s-home-sticky {
    min-height: 92vh;
    align-items: start;
  }

  .l2s-home-stage {
    min-height: 74vh;
    padding: 0.75rem;
    border-radius: 20px;
  }

  .l2s-home-master,
  .l2s-home-clips-layer,
  .l2s-home-wall {
    inset: 6%;
  }

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

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

  .l2s-home-side div {
    min-height: 42px;
  }

  .l2s-home-clip-card {
    width: clamp(95px, 23vw, 122px);
    border-radius: 12px;
  }

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

  .l2s-home-wall-clip:nth-child(n + 7) {
    display: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.84;
    filter: blur(0.4px);
  }

  50% {
    opacity: 1;
    filter: blur(1px);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    border-color: rgba(153, 201, 255, 0.3);
    box-shadow: inset 0 0 22px rgba(153, 201, 255, 0.08);
  }

  50% {
    border-color: rgba(255, 184, 77, 0.6);
    box-shadow: inset 0 0 30px rgba(255, 184, 77, 0.2);
  }
}

@keyframes chipGlow {
  0%,
  100% {
    opacity: 0.78;
    box-shadow: 0 8px 20px rgba(5, 9, 17, 0.42);
  }

  50% {
    opacity: 1;
    box-shadow: 0 10px 28px rgba(255, 184, 77, 0.22);
  }
}

@keyframes reveal {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 1;
  }
}

@keyframes cascade {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.55;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .demo-stage {
    min-height: auto;
    padding: 0.85rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
    align-items: start;
    justify-items: stretch;
  }

  .demo-center {
    position: relative;
    width: 100%;
    max-width: none;
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .connector {
    display: none;
  }

  .demo-stage .demo-short {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    animation: none;
  }

  .demo-stage .demo-short:nth-of-type(3),
  .demo-stage .demo-short:nth-of-type(4),
  .demo-stage .demo-short:nth-of-type(5),
  .demo-stage .demo-short:nth-of-type(6),
  .demo-stage .demo-short:nth-of-type(7) {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    animation-delay: 0s;
  }

  .demo-stage .demo-short:nth-of-type(7) {
    display: none;
  }

  .demo-short::after {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-top: 2.4rem;
  }

  .hero::before {
    inset: 3% 0 8%;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .hero-platform-badge {
    width: 22px;
    height: 22px;
    right: 0.3rem;
    top: 0.3rem;
  }

  .hero-platform-badge img {
    width: 11px;
    height: 11px;
  }

  .hero-reassurance.section {
    grid-template-columns: 1fr;
    padding-top: 0.4rem;
  }

  .how-scroll {
    margin-top: 0.9rem;
  }

  .how-track {
    display: grid;
    grid-template-rows: repeat(4, 72vh);
  }

  .how-stage {
    position: sticky;
    top: 6.2rem;
    transform: none;
    min-height: clamp(640px, 78vh, 760px);
    height: auto;
    padding: 1rem 1rem 1rem 1.2rem;
    overflow: visible;
  }

  .how-axis {
    display: none;
  }

  .how-node {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(12px);
    filter: none;
    pointer-events: auto;
    padding: 1rem 0.8rem 0.95rem 1rem;
    display: block;
    border: 1px solid rgba(137, 185, 255, 0.3);
    border-radius: 12px;
    background: rgba(13, 26, 46, 0.84);
  }

  .how-node.is-active {
    opacity: 1;
    transform: translateY(0);
  }

  .how-node-media {
    margin: 0.2rem 0 0.9rem;
  }

  .how-node::before {
    left: auto;
    top: 0.7rem;
    right: 0.7rem;
  }

  .how-index {
    right: 0.45rem;
  }

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

  .pricing-card--featured {
    transform: none;
  }

  .hero-chip {
    display: none;
  }

  .orb-1 {
    width: 120px;
    height: 120px;
    left: 6%;
    top: 18%;
  }

  .orb-2 {
    width: 94px;
    height: 94px;
    right: 6%;
    bottom: 13%;
  }

  .ring-1 {
    width: 180px;
    height: 180px;
    right: -8%;
    top: 16%;
  }

  .ring-2 {
    width: 170px;
    height: 170px;
    left: -7%;
    bottom: 8%;
  }

  nav {
    display: none;
  }

  .site-header {
    gap: 0.65rem;
  }

  .header-actions {
    margin-left: auto;
    gap: 0.4rem;
  }

  .site-header .btn-small {
    padding: 0.5rem 0.78rem;
    font-size: 0.78rem;
    border-radius: 9px;
  }

  .site-header .logo-img {
    height: 30px;
  }

  .shorts-cluster {
    inset: 60% 8% auto 8%;
    grid-template-columns: repeat(2, 1fr);
  }

  .split-line {
    right: 50%;
    top: 45%;
    width: 70%;
    height: 2px;
    transform: translateX(50%);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .method-summary {
    justify-items: stretch;
  }

  .method-summary .btn {
    width: 100%;
  }

  .footer-actions .btn {
    width: 100%;
  }

  .start-cta.section {
    width: min(1120px, 88vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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