:root {
  --bg-0: #050608;
  --bg-1: #12161d;
  --bg-2: #16283b;
  --panel: rgba(18, 24, 34, 0.82);
  --panel-strong: rgba(12, 16, 22, 0.92);
  --line: rgba(244, 210, 210, 0.24);
  --line-bright: rgba(255, 201, 102, 0.62);
  --text: #f4f2ff;
  --text-soft: #dce8f5;
  --muted: #b6cada;
  --brand-pink: #ff4f9f;
  --brand-coral: #ff8f66;
  --brand-amber: #ffd56b;
  --brand-indigo: #5d69ff;
  --brand-cyan: #43b9ff;
  --brand-mint: #48e6b8;
  --accent: var(--brand-coral);
  --accent-strong: var(--brand-amber);
  --accent-alt: var(--brand-cyan);
  --ok: #7ff0c9;
  --warn: #ffd193;
  --danger: #ff9fae;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.48);
  --shadow-md: 0 18px 36px rgba(0, 0, 0, 0.4);
  --floating-badge-bg-rgb: 0, 0, 0;
  --floating-badge-bg-opacity: 0.45;
  --nav-active-border: rgba(255, 173, 95, 0.82);
  --nav-active-bg-from: rgba(255, 144, 96, 0.36);
  --nav-active-bg-to: rgba(255, 204, 102, 0.28);
  --nav-active-glow: rgba(255, 162, 88, 0.38);
  --nav-active-inset: rgba(255, 223, 165, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Source Sans 3", "Noto Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 18% 8%, #2b2e35 0%, #13161b 40%, #050608 100%);
  letter-spacing: 0.01em;
}

.ambient-bg,
.grid-layer,
.scanline-layer,
.particle-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient-bg {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.08) 0, transparent 36%),
    radial-gradient(circle at 44% 8%, rgba(196, 196, 196, 0.07) 0, transparent 32%),
    radial-gradient(circle at 86% 20%, rgba(124, 124, 124, 0.09) 0, transparent 42%),
    radial-gradient(circle at 72% 82%, rgba(94, 94, 94, 0.1) 0, transparent 44%);
  transform: translate3d(0, 0, 0);
  animation: ambientBreath 14s ease-in-out infinite alternate;
}

.grid-layer {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(214, 226, 242, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 226, 242, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.9), transparent 90%);
}

.scanline-layer {
  opacity: 0.22;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.06) 0,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 2px,
    transparent 4px
  );
  animation: scanShift 6s linear infinite;
}

.particle-field {
  z-index: 1;
}

.particle {
  position: absolute;
  width: var(--size, 4px);
  height: var(--size, 4px);
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(var(--particle-rgb, 93, 105, 255), 0.92),
    rgba(var(--particle-rgb, 93, 105, 255), 0.06)
  );
  opacity: var(--opacity, 0.5);
  box-shadow: 0 0 10px rgba(var(--particle-rgb, 93, 105, 255), 0.24);
  filter: blur(0.2px);
  animation: floatParticle var(--dur, 16s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.hud {
  position: fixed;
  top: 0.9rem;
  left: 1rem;
  right: 1rem;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0.92rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(96, 95, 114, 0.041);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  isolation: isolate;
  overflow: visible;
}

.hud > * {
  position: relative;
  z-index: 1;
}

.hud::before,
.hud::after {
  content: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: block;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  transform: scale(2.5);
  transform-origin: left center;
  margin-right: 3.2rem;
}

.brand strong {
  display: block;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
}

.brand-order {
  color: #ff9a58;
}

.brand-hub {
  color: #43b9ff;
}

.brand small {
  color: var(--muted);
  font-size: 0.81rem;
}

.mobile-menu-toggle,
.mobile-nav-backdrop {
  display: none;
}

.mobile-menu-toggle {
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(214, 226, 242, 0.28);
  background: rgba(28, 36, 52, 0.74);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  flex-direction: column;
}

.mobile-menu-toggle span {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: #eff6ff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(3, 7, 14, 0.52);
  backdrop-filter: blur(4px);
  z-index: 100;
}

.hud-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  max-width: min(64vw, 980px);
  overflow-x: auto;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hud-nav::-webkit-scrollbar {
  display: none;
}

.nav-link {
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #b8cadc;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.46rem 0.74rem;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #ecf5ff;
  border-color: rgba(154, 192, 236, 0.48);
  background: rgba(166, 184, 206, 0.22);
  box-shadow: inset 0 0 0 1px rgba(216, 230, 246, 0.14);
  transform: translateY(-1px);
  outline: none;
}

.nav-link.is-active {
  color: #ecf5ff;
  border-color: var(--nav-active-border);
  background: linear-gradient(140deg, var(--nav-active-bg-from), var(--nav-active-bg-to));
  box-shadow:
    0 0 14px var(--nav-active-glow),
    inset 0 0 10px var(--nav-active-inset);
}

.hud-status {
  display: grid;
  gap: 0.2rem;
  justify-items: end;
  min-width: 6.7rem;
}

.slide-counter {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

#currentSlideLabel {
  color: var(--accent-strong);
  font-weight: 700;
}

.progress-shell {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  border: 1px solid rgba(214, 226, 242, 0.4);
  background: rgba(152, 170, 192, 0.76);
  overflow: hidden;
}

.progress-fill {
  width: 14.3%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-coral), var(--brand-amber), var(--brand-mint));
  box-shadow: 0 0 16px rgba(255, 148, 115, 0.48);
  transition: width 360ms ease;
}

.deck {
  position: fixed;
  inset: 0;
}

.track {
  height: 100%;
  transition: transform 760ms cubic-bezier(0.2, 0.85, 0.2, 1);
  will-change: transform;
}

.slide {
  position: relative;
  height: 100vh;
  padding: 6.25rem 5vw 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.45;
  transform: scale(0.984);
  transition: opacity 300ms ease, transform 300ms ease;
  z-index: 2;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 8% 4.5%;
  border-radius: 30px;
  border: 1px solid rgba(128, 128, 128, 0.18);
  pointer-events: none;
}

.slide-border-beam-layer {
  position: absolute;
  inset: 8% 4.5%;
  pointer-events: none;
  z-index: 6;
  border-radius: 30px;
  overflow: visible;
}

.slide-border-beam-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.slide-border-beam-track,
.slide-border-beam-glow,
.slide-border-beam-core {
  fill: none;
  vector-effect: non-scaling-stroke;
  shape-rendering: geometricPrecision;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.slide-border-beam-track {
  display: none;
}

.slide-border-beam-glow {
  stroke-width: 6.16;
  opacity: 0.74;
  filter:
    blur(3.2px)
    drop-shadow(0 0 10px rgba(74, 214, 255, 0.56))
    drop-shadow(0 0 18px rgba(255, 119, 174, 0.34));
}

.slide-border-beam-core {
  stroke-width: 2.64;
  opacity: 0.96;
}

.slide-border-beam-glow.is-secondary {
  stroke-width: 4.84;
  opacity: 0.56;
  filter:
    blur(2.8px)
    drop-shadow(0 0 8px rgba(74, 214, 255, 0.4));
}

.slide-border-beam-core.is-secondary {
  stroke-width: 2.09;
  opacity: 0.84;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 8% 4.5%;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 154, 88, 0.07), transparent 36%, rgba(86, 146, 255, 0.07));
  pointer-events: none;
}

.slide.tools::after {
  background: linear-gradient(145deg, rgba(48, 122, 255, 0.14), transparent 36%, rgba(214, 92, 255, 0.08));
}

.slide.economics::after {
  background: linear-gradient(145deg, rgba(214, 92, 255, 0.1), transparent 36%, rgba(72, 236, 155, 0.1));
}

.slide.pricing::after {
  background: linear-gradient(145deg, rgba(255, 214, 107, 0.12), transparent 36%, rgba(44, 182, 170, 0.12));
}

.slide.philosophy::after {
  background: linear-gradient(145deg, rgba(9, 194, 34, 0.089), transparent 36%, rgba(243, 230, 50, 0.082));
}

.slide.team::after {
  background: linear-gradient(145deg, rgba(214, 92, 255, 0.1), transparent 36%, rgba(86, 146, 255, 0.1));
}

.slide.faq::after {
  background: linear-gradient(145deg, rgba(44, 182, 170, 0.12), transparent 36%, rgba(214, 92, 255, 0.12));
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide-head {
  max-width: 58rem;
  padding-top: 2.8rem;
  margin-bottom: 1.35rem;
}

.slide.tools .slide-head {
  padding-top: 0.5rem;
  padding-left: clamp(0.85rem, 1.8vw, 1.9rem);
  position: relative;
  top: -5rem;
}

.slide.tools .kicker {
  border-color: rgba(84, 160, 247, 0.82);
  color: #b8dcff;
  text-shadow: 0 0 8px rgba(130, 196, 255, 0.45);
  box-shadow:
    0 0 28px rgba(84, 160, 247, 0.36),
    inset 0 0 0 1px rgba(158, 208, 255, 0.3);
}

.slide.economics .kicker {
  border-color: rgba(228, 108, 255, 0.84);
  color: #f0b8ff;
  text-shadow: 0 0 8px rgba(229, 140, 255, 0.5);
  box-shadow:
    0 0 28px rgba(214, 92, 255, 0.34),
    inset 0 0 0 1px rgba(236, 163, 255, 0.3);
}

.slide.economics .fact-card strong {
  color: #cc7ae6;
  text-shadow: 0 0 8px rgba(190, 108, 226, 0.38);
}

.slide.philosophy .kicker {
  border-color: rgba(104, 234, 156, 0.84);
  color: #b8ffd8;
  text-shadow: 0 0 8px rgba(124, 244, 172, 0.46);
  box-shadow:
    0 0 28px rgba(72, 236, 155, 0.34),
    inset 0 0 0 1px rgba(148, 248, 186, 0.3);
}

.slide.pricing .kicker {
  border-color: rgba(255, 214, 107, 0.86);
  color: #ffe8a8;
  text-shadow: 0 0 8px rgba(255, 221, 135, 0.5);
  box-shadow:
    0 0 28px rgba(255, 205, 96, 0.34),
    inset 0 0 0 1px rgba(255, 232, 170, 0.3);
}

.slide.faq .kicker {
  border-color: rgba(114, 236, 255, 0.86);
  color: #b8f7ff;
  text-shadow: 0 0 8px rgba(140, 242, 255, 0.5);
  box-shadow:
    0 0 28px rgba(74, 214, 255, 0.34),
    inset 0 0 0 1px rgba(186, 248, 255, 0.3);
}

.kicker {
  margin: 0;
  position: absolute;
  top: calc(8% + 0.72rem);
  left: calc(4.5% - 0.62rem);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.5rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 201, 115, 0.58);
  background: rgba(var(--floating-badge-bg-rgb), var(--floating-badge-bg-opacity));
  box-shadow:
    0 0 22px rgba(255, 148, 115, 0.24),
    inset 0 0 0 1px rgba(255, 214, 128, 0.12);
  font-size: 0.76rem;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  color: #ffe7ad;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  backdrop-filter: blur(3px);
  animation: badgeFloat 4.2s ease-in-out infinite;
  animation-delay: 0.4s;
}

.slide.intro .slide-grid > div,
.slide .slide-head {
  padding-top: 2.8rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Exo 2", sans-serif;
  line-height: 1.07;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 4.25rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  margin-bottom: 0.45rem;
}

h3 {
  font-size: clamp(1.08rem, 2.1vw, 1.54rem);
}

p {
  line-height: 1.44;
}

.lead {
  max-width: 56ch;
  font-size: clamp(1rem, 1.9vw, 1.19rem);
  color: #d8e3ef;
  margin-top: 0.75rem;
}

.accent-line {
  display: block;
  color: var(--accent-strong);
  text-shadow: 0 0 16px rgba(255, 213, 107, 0.4);
}

.slide.intro .accent-line {
  color: rgb(255, 154, 88);
  text-shadow: 0 0 16px rgba(255, 154, 88, 0.4);
}

.slide-grid {
  display: grid;
  gap: 1.1rem;
}

.intro-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.slide.intro .intro-grid {
  padding-inline: clamp(0.85rem, 1.8vw, 1.9rem);
  align-items: center;
}

.value-list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.6rem;
}

.slide.intro .value-list {
  width: min(100%, 55rem);
}

.slide.intro .slide-grid > div {
  padding-top: 2.8rem;
}

.slide.intro .intro-visual {
  align-self: start;
  margin-top: -3.8rem;
}

.slide.intro .intro-grid > div > h1 {
  transform: translateY(-8rem);
}

.slide.intro .lead {
  margin-top: -4rem;
  margin-bottom: 4rem;
}

.value-card {
  padding: 0.75rem 0.88rem;
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(214, 226, 242, 0.3);
  background: linear-gradient(165deg, rgba(200, 218, 240, 0.84), rgba(172, 190, 212, 0.88));
}

.value-card h3 {
  font-size: 1.06rem;
  color: #ffefc2;
  margin-bottom: 0.2rem;
}

.slide.intro .value-card h3 {
  color: rgb(255, 154, 88);
}

.slide.intro .value-card.tilt-card:hover,
.slide.intro .value-card.tilt-card:focus-within {
  border-color: rgba(214, 226, 242, 0.3);
  box-shadow: none;
}

.slide.economics .fact-card.tilt-card:hover,
.slide.economics .fact-card.tilt-card:focus-within {
  border-color: rgba(214, 226, 242, 0.3);
  box-shadow: none;
}

.slide.philosophy .manifesto article.tilt-card:hover,
.slide.philosophy .manifesto article.tilt-card:focus-within,
.slide.pricing .plan .ghost-btn:hover,
.slide.pricing .plan .ghost-btn:focus-visible {
  border-color: rgba(214, 226, 242, 0.3);
  box-shadow: none;
}

.slide.intro .value-card-beam-layer,
.slide.economics .value-card-beam-layer,
.slide.philosophy .value-card-beam-layer,
.slide.pricing .plan .ghost-btn .value-card-beam-layer {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 110ms ease;
}

.slide.intro .value-card-beam-svg,
.slide.economics .value-card-beam-svg,
.slide.philosophy .value-card-beam-svg,
.slide.pricing .plan .ghost-btn .value-card-beam-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.slide.intro .value-card-beam-track,
.slide.intro .value-card-beam-glow,
.slide.intro .value-card-beam-core,
.slide.economics .value-card-beam-track,
.slide.economics .value-card-beam-glow,
.slide.economics .value-card-beam-core,
.slide.philosophy .value-card-beam-track,
.slide.philosophy .value-card-beam-glow,
.slide.philosophy .value-card-beam-core,
.slide.pricing .plan .ghost-btn .value-card-beam-track,
.slide.pricing .plan .ghost-btn .value-card-beam-glow,
.slide.pricing .plan .ghost-btn .value-card-beam-core {
  fill: none;
  vector-effect: non-scaling-stroke;
  shape-rendering: geometricPrecision;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.slide.intro .value-card-beam-track,
.slide.economics .value-card-beam-track,
.slide.philosophy .value-card-beam-track,
.slide.pricing .plan .ghost-btn .value-card-beam-track {
  display: none;
}

.slide.intro .value-card-beam-glow,
.slide.economics .value-card-beam-glow,
.slide.philosophy .value-card-beam-glow,
.slide.pricing .plan .ghost-btn .value-card-beam-glow {
  stroke-width: 3.45;
  opacity: 0.66;
  filter:
    blur(2.24px)
    drop-shadow(0 0 7px rgba(74, 214, 255, 0.5))
    drop-shadow(0 0 13px rgba(255, 119, 174, 0.28));
}

.slide.intro .value-card-beam-core,
.slide.economics .value-card-beam-core,
.slide.philosophy .value-card-beam-core,
.slide.pricing .plan .ghost-btn .value-card-beam-core {
  stroke-width: 1.48;
  opacity: 0.96;
}

.slide.intro .value-card-beam-glow.is-secondary,
.slide.economics .value-card-beam-glow.is-secondary,
.slide.philosophy .value-card-beam-glow.is-secondary,
.slide.pricing .plan .ghost-btn .value-card-beam-glow.is-secondary {
  stroke-width: 3.2;
  opacity: 0.16;
  filter:
    blur(2.9px)
    drop-shadow(0 0 8px rgba(74, 214, 255, 0.18));
}

.slide.intro .value-card-beam-core.is-secondary,
.slide.economics .value-card-beam-core.is-secondary,
.slide.philosophy .value-card-beam-core.is-secondary,
.slide.pricing .plan .ghost-btn .value-card-beam-core.is-secondary {
  stroke-width: 1.46;
  opacity: 0.84;
}

.slide.intro .value-card:hover .value-card-beam-layer,
.slide.intro .value-card:focus-within .value-card-beam-layer,
.slide.economics .fact-card:hover .value-card-beam-layer,
.slide.economics .fact-card:focus-within .value-card-beam-layer,
.slide.philosophy .manifesto article.tilt-card:hover .value-card-beam-layer,
.slide.philosophy .manifesto article.tilt-card:focus-within .value-card-beam-layer,
.slide.pricing .plan .ghost-btn:hover .value-card-beam-layer,
.slide.pricing .plan .ghost-btn:focus-visible .value-card-beam-layer {
  opacity: 1;
}

.value-card p {
  margin: 0;
  color: var(--text-soft);
}

.intro-actions {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.slide.intro .intro-actions .ghost-btn {
  order: 1;
}

.slide.intro .intro-actions .pulse-btn {
  order: 2;
  position: absolute;
  left: 76%;
  top: 72%;
  transform: translateX(-50%);
  font-size: 1.25em;
  padding: 0.675rem 2rem;
  border-radius: 12px;
}

.intro-visual {
  position: relative;
  isolation: isolate;
}

.intro-visual img,
.intro-visual video {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(220, 232, 246, 0.35);
  box-shadow: var(--shadow-lg);
}

.intro-video {
  display: block;
  cursor: pointer;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  padding: 0.55rem 0.62rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 201, 115, 0.58);
  background: rgba(var(--floating-badge-bg-rgb), var(--floating-badge-bg-opacity));
  box-shadow: 0 0 22px rgba(255, 148, 115, 0.26);
  animation: badgeFloat 4.2s ease-in-out infinite;
}

.slide.intro .floating-badge {
  border-color: transparent;
  box-shadow: none;
  pointer-events: none;
}

.slide.intro .floating-badge::before,
.slide.intro .floating-badge::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: solid currentColor;
  color: rgb(228, 111, 34);
  pointer-events: none;
}

.slide.intro .floating-badge::before {
  inset: calc(-2.64px / 2);
  border-width: 2.64px;
  box-shadow:
    inset 0 0 8px currentColor,
    inset 0 0 16px currentColor,
    0 0 10px currentColor,
    0 0 18px currentColor;
  filter: blur(1px);
  animation:
    introBadgeGlowColorPulse 38.4s linear infinite,
    tickerGlowBeamBreath 60s ease-in-out infinite;
}

.slide.intro .floating-badge::after {
  inset: calc(-4.84px / 2);
  border-width: 4.84px;
  opacity: 1;
  filter: blur(2.8px);
  animation:
    introBadgeGlowColorPulse 38.4s linear infinite,
    tickerGlowBeamBreathSecondary 60s ease-in-out infinite;
}

.floating-badge strong {
  display: block;
  color: var(--accent-strong);
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.04em;
}

.floating-badge span {
  color: #d7e3ef;
  font-size: 0.82rem;
}

.floating-badge.b1 {
  left: -2.3rem;
  top: 8%;
}

.floating-badge.b2 {
  right: -1.5rem;
  top: 42%;
  animation-delay: 0.8s;
}

.floating-badge.b3 {
  left: 26%;
  bottom: -2rem;
  animation-delay: 1.2s;
}

.ticker {
  margin-top: 1rem;
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-radius: 999px;
  border: 1px solid rgba(210, 223, 238, 0.34);
  background: transparent;
  color: transparent;
  animation: tickerGlowColorSequence 38.4s linear infinite;
}

.ticker::before {
  content: "";
  position: absolute;
  inset: calc(-2.64px / 2);
  border-radius: inherit;
  border: 2.64px solid currentColor;
  box-shadow:
    inset 0 0 8px currentColor,
    inset 0 0 16px currentColor,
    0 0 10px currentColor,
    0 0 18px currentColor;
  opacity: 0.9;
  filter: blur(1px);
  pointer-events: none;
  animation: tickerGlowBeamBreath 60s ease-in-out infinite;
}

.ticker::after {
  content: "";
  position: absolute;
  inset: calc(-4.84px / 2);
  border-radius: inherit;
  border: 4.84px solid currentColor;
  opacity: 0.56;
  filter: blur(2.8px);
  pointer-events: none;
  animation: tickerGlowBeamBreathSecondary 60s ease-in-out infinite;
}

.ticker-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
  background: rgba(178, 196, 218, 0.74);
}

.ticker-rail {
  width: max-content;
  display: flex;
  flex-wrap: nowrap;
  animation: tickerMove var(--ticker-duration, 22s) linear infinite;
  will-change: transform;
}

.slide.intro .ticker {
  position: absolute;
  left: calc(4.5% + clamp(0.85rem, 1.8vw, 1.9rem));
  right: calc(4.5% + clamp(0.85rem, 1.8vw, 1.9rem));
  bottom: calc(9% + 1rem);
  margin-top: 0;
  z-index: 4;
}

.ticker-track {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: max-content;
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  padding: 0.35rem 0.9rem 0.35rem 0;
}

.ticker-track span {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  color: #d3d3d3;
}

.tools-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: center;
}

.slide.tools .tools-layout {
  padding-inline: clamp(0.85rem, 1.8vw, 1.9rem);
}

.tool-station {
  display: flex;
  justify-content: center;
}

.slide.tools .tool-station {
  position: relative;
  top: -1.2rem;
}

.tools-layout .tool-preview {
  margin-top: -8rem;
}

.tool-wheel-shell {
  --ring-radius: clamp(150px, 25vw, 250px);
  width: min(74vw, 700px);
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
  border: 1px solid rgba(214, 226, 242, 0.38);
  background: radial-gradient(circle at 50% 52%, rgba(204, 222, 244, 0.92), rgba(162, 180, 202, 0.94));
  box-shadow: var(--shadow-lg), inset 0 0 34px rgba(166, 182, 202, 0.16);
  isolation: isolate;
  overflow: hidden;
}

.tool-wheel-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.64px solid currentColor;
  box-shadow:
    inset 0 0 6px currentColor,
    inset 0 0 14px currentColor,
    inset 0 0 24px currentColor,
    0 0 12px currentColor,
    0 0 24px color-mix(in srgb, currentColor 62%, transparent);
  opacity: 0.96;
  filter: blur(1.6px);
  pointer-events: none;
  z-index: 3;
  animation:
    tickerGlowColorSequence 38.4s linear infinite,
    tickerGlowBeamBreath 60s ease-in-out infinite;
}

.tool-wheel-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4.84px solid currentColor;
  box-shadow:
    inset 0 0 8px currentColor,
    inset 0 0 18px currentColor,
    inset 0 0 30px currentColor,
    0 0 18px color-mix(in srgb, currentColor 58%, transparent),
    0 0 32px color-mix(in srgb, currentColor 42%, transparent);
  opacity: 0.68;
  filter: blur(3.2px);
  pointer-events: none;
  z-index: 3;
  animation:
    tickerGlowColorSequence 38.4s linear infinite,
    tickerGlowBeamBreathSecondary 60s ease-in-out infinite;
}

/* Outer rim breathing glow disabled; replaced by travelling beam layer. */
.tool-wheel-shell::before,
.tool-wheel-shell::after {
  content: none;
}

.tool-wheel-rim-beam-layer,
.tool-wheel-inner-rim-beam-layer {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.tool-wheel-rim-beam-layer {
  inset: 0;
  z-index: 4;
}

.tool-wheel-inner-rim-beam-layer {
  inset: 6%;
  z-index: 3;
}

.tool-wheel-rim-beam-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.tool-wheel-rim-beam-track,
.tool-wheel-rim-beam-glow,
.tool-wheel-rim-beam-core {
  fill: none;
  vector-effect: non-scaling-stroke;
  shape-rendering: geometricPrecision;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.tool-wheel-rim-beam-track {
  display: none;
}

.tool-wheel-rim-beam-glow {
  stroke-width: 4.2;
  opacity: 0.72;
  filter:
    blur(2.1px)
    drop-shadow(0 0 8px rgba(74, 214, 255, 0.5))
    drop-shadow(0 0 14px rgba(255, 119, 174, 0.25));
}

.tool-wheel-rim-beam-core {
  stroke-width: 1.86;
  opacity: 0.96;
}

.tool-wheel-inner-rim-beam-layer .tool-wheel-rim-beam-glow {
  stroke-width: 3.4;
  opacity: 0.66;
}

.tool-wheel-inner-rim-beam-layer .tool-wheel-rim-beam-core {
  stroke-width: 1.56;
}

.wheel-ring {
  position: absolute;
  inset: 0;
}

.wheel-ring::before {
  content: "";
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(176, 192, 212, 0.16) 0 33%,
    rgba(142, 160, 182, 0.08) 33% 72%,
    transparent 72%
  );
  pointer-events: none;
}

.wheel-ring::after {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(205, 218, 234, 0.24);
  pointer-events: none;
}

.wheel-svg {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
  overflow: visible;
  z-index: 1;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.wheel-sector {
  fill: rgba(200, 218, 240, 0.14);
  stroke: rgba(212, 225, 240, 0.18);
  stroke-width: 1;
  cursor: pointer;
  transform-origin: 500px 500px;
  transition: transform 90ms ease, fill 90ms ease, stroke 90ms ease, filter 90ms ease;
  outline: none !important;
}

.wheel-sector:focus {
  outline: none;
}

.wheel-sector:focus-visible {
  outline: none;
}

.wheel-sector.is-active {
  fill: rgba(43, 70, 151, 0.3);
  stroke: none;
  stroke-width: 0;
  filter:
    drop-shadow(0 0 10px rgba(66, 142, 255, 0.25))
    drop-shadow(0 0 18px rgba(40, 104, 208, 0.22));
}

.wheel-label {
  fill: #ffffff;
  font-family: "Roboto Mono", monospace;
  font-size: 34px;
  font-weight: 500;
  pointer-events: none;
  transition: transform 90ms ease, fill 90ms ease;
}

.wheel-label.is-multiline {
  font-size: 30px;
}

.wheel-label.is-compact {
  font-size: 30px;
}

.wheel-label.is-mock {
  fill: #ffffff;
}

.wheel-label.is-selected {
  fill: #ffffff;
}

.wheel-label.is-active {
  fill: #ffffff;
}

.wheel-core {
  position: absolute;
  inset: 27%;
  border-radius: 50%;
  border: 1px solid rgba(15, 46, 85, 0.562);
  background: radial-gradient(circle at 35% 15%, rgba(2, 48, 128, 0.32), rgba(56, 68, 88, 0.96));
  display: grid;
  place-content: center;
  padding: 0.95rem;
  text-align: center;
  gap: 0.24rem;
  z-index: 2;
  pointer-events: none;
}

.wheel-core .solid-btn {
  pointer-events: auto;
}

.core-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  letter-spacing: 0.05em;
}

.wheel-core h3 {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

.wheel-core p {
  margin: 0;
  color: #dedede;
  font-size: 0.9rem;
}

.wheel-core .core-index {
  margin: 0;
  color: #c6c6c6;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.core-tags {
  display: none;
}

.core-tags span {
  padding: 0.2rem 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 211, 122, 0.42);
  color: #ffeebf;
  background: rgba(142, 160, 182, 0.22);
  font-size: 0.72rem;
}

.glass-card {
  border-radius: 18px;
  border: 1px solid rgba(210, 223, 238, 0.3);
  background: linear-gradient(165deg, rgba(188, 206, 228, 0.86), rgba(168, 186, 208, 0.9));
  box-shadow: var(--shadow-md);
  padding: 0.95rem;
}

.tool-preview .preview-image-shell {
  position: relative;
  width: 100%;
  margin-top: 0.45rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(205, 218, 234, 0.34);
}

.tool-preview .preview-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.08),
    inset 0 -20px 34px rgba(2, 10, 22, 0.5),
    inset 0 0 0 1px rgba(118, 162, 209, 0.22);
}

.tool-preview img {
  display: block;
  width: 100%;
  border-radius: 0;
  margin-top: 0;
  border: 0;
  box-shadow: none;
  opacity: 1;
  transform: scale(1);
  transition: opacity 190ms ease, transform 260ms ease;
  will-change: opacity, transform;
}

.tool-preview img.is-swapping {
  opacity: 0;
  transform: scale(0.992);
}

.tool-preview p {
  margin: 0.42rem 0 0;
  color: var(--text-soft);
}

.preview-telemetry {
  margin-top: 0.65rem;
}

.preview-telemetry h4 {
  font-size: 0.97rem;
  margin-bottom: 0.32rem;
  color: #ffeebf;
}

.preview-telemetry ul {
  margin: 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.28rem;
  color: #dedede;
}

.economy-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.96fr) minmax(340px, 1.04fr);
  gap: clamp(0.8rem, 1.2vw, 1.2rem);
  align-items: start;
}

.slide.economics .slide-head,
.slide.economics .economy-grid {
  padding-inline: clamp(0.85rem, 1.8vw, 1.9rem);
}

.slide.economics .slide-head {
  max-width: min(100%, 78rem);
  margin: 0 auto 6.2rem;
  padding-top: 0rem;
  transform: translateY(-1.25rem);
  text-align: center;
}

.slide.economics .slide-head h2 {
  margin-bottom: 1.35rem !important;
}

.slide.economics .slide-head p {
  margin-top: 0;
  margin-inline: auto;
  max-width: 84ch;
}

.slide.philosophy .slide-head {
  max-width: min(100%, 78rem);
  margin: 0 auto 1.35rem;
  padding-top: 2.8rem;
  transform: translateY(-1.2rem);
  text-align: center;
}

.slide.philosophy .slide-head h2 {
  margin-bottom: 1.35rem !important;
}

.slide.philosophy .slide-head p {
  margin-top: 0;
  margin-inline: auto;
  max-width: 84ch;
}

.calc-card label {
  display: grid;
  gap: 0.26rem;
  margin-bottom: 0.56rem;
  font-size: 0.93rem;
  color: #dadada;
}

.calc-top-pair,
.calc-plan-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  margin-bottom: 0.56rem;
  align-items: start;
}

.calc-top-pair > label,
.calc-plan-pair > label {
  margin-bottom: 0;
}

.calc-budget-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  margin-bottom: 0.56rem;
  align-items: start;
}

.calc-budget-row {
  display: grid;
  gap: 0.26rem;
  min-width: 0;
}

.calc-budget-row .calc-main-label {
  margin: 0;
}

.calc-budget-controls {
  display: grid;
  gap: 0.34rem;
  min-width: 0;
}

.calc-budget-controls > input[type="number"] {
  width: 100%;
}

.calc-budget-controls--media {
  grid-template-columns: minmax(100px, 33%) auto;
  align-items: start;
  column-gap: 0.72rem;
}

.calc-include-stack {
  display: grid;
  gap: 0.22rem;
  justify-items: start;
  align-content: start;
  padding-top: 0.16rem;
}

.calc-card .calc-include-toggle {
  margin: 0;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.79rem;
  color: #bcd2e8;
  line-height: 1.2;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  grid-template-columns: none;
  grid-template-rows: none;
}

.calc-card .calc-include-toggle:hover {
  color: #e6f5ff;
}

.calc-card .calc-include-toggle input[type="checkbox"] {
  margin: 0;
  width: 0.95rem;
  height: 0.95rem;
  padding: 0;
  border: none;
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
  accent-color: var(--brand-cyan);
}

.calc-card .calc-include-toggle input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(90, 214, 255, 0.58);
  outline-offset: 2px;
}

.calc-card .calc-include-toggle span {
  display: inline;
  white-space: nowrap;
}

@media (max-width: 840px) {
  .calc-top-pair,
  .calc-plan-pair {
    grid-template-columns: 1fr;
    gap: 0.56rem;
  }

  .calc-budget-stack {
    grid-template-columns: 1fr;
    gap: 0.56rem;
  }

  .calc-budget-controls--media {
    grid-template-columns: 1fr;
    row-gap: 0.34rem;
  }

  .calc-include-stack {
    justify-items: start;
    padding-top: 0;
  }
}

.calc-card input:not([type="checkbox"]),
.calc-card select {
  border-radius: 10px;
  border: 1px solid rgba(212, 225, 240, 0.38);
  background: rgba(170, 188, 210, 0.94);
  color: var(--text);
  font: inherit;
  padding: 0.52rem 0.58rem;
}

.calc-card select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2rem;
  border-color: rgba(126, 178, 230, 0.58);
  background:
    linear-gradient(45deg, transparent 50%, rgba(192, 224, 255, 0.95) 50%) calc(100% - 13px) calc(50% - 2px) / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(192, 224, 255, 0.95) 50%, transparent 50%) calc(100% - 8px) calc(50% - 2px) / 6px 6px no-repeat,
    linear-gradient(160deg, rgba(18, 29, 44, 0.96), rgba(11, 19, 31, 0.97));
  color: #eaf5ff;
  box-shadow: inset 0 0 0 1px rgba(143, 192, 244, 0.16);
  transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease, transform 170ms ease;
}

.calc-card select:hover {
  border-color: rgba(166, 214, 255, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(170, 216, 255, 0.22),
    0 0 18px rgba(86, 169, 255, 0.2);
}

.calc-card select option {
  background: #142237;
  color: #ecf6ff;
}

.calc-card input:not([type="checkbox"]):focus-visible,
.calc-card select:focus-visible {
  outline: 2px solid rgba(255, 188, 106, 0.52);
  outline-offset: 1px;
}

.calc-results {
  margin-top: 0.78rem;
  display: grid;
  gap: 0.44rem;
}

.calc-results div {
  border-radius: 10px;
  border: 1px solid rgba(212, 225, 240, 0.3);
  background: rgba(180, 198, 220, 0.76);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.62rem;
}

.calc-results span {
  color: var(--muted);
}

.calc-results strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.03rem;
}

.cost-bars {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.45rem;
}

.bar-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  align-items: center;
  gap: 0.55rem;
}

.bar-row span {
  font-size: 0.83rem;
  color: #cecece;
}

.bar-track {
  height: 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(210, 223, 238, 0.3);
  background: rgba(176, 194, 216, 0.74);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: width 360ms ease;
}

.bar-fill.market {
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-coral), var(--brand-amber));
}

.bar-fill.hub {
  background: linear-gradient(90deg, var(--brand-indigo), var(--brand-cyan), var(--brand-mint));
}

.insight-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.insight-column-title {
  margin: 0;
  padding: 0.05rem 0.15rem 0.2rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cfe6ff;
}

.fact-card {
  padding: 0.88rem;
  position: relative;
  border-radius: 15px;
  border: 1px solid rgba(210, 223, 238, 0.3);
  background: linear-gradient(160deg, rgba(194, 212, 234, 0.86), rgba(164, 182, 204, 0.9));
}

.fact-card strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.68rem;
  color: var(--accent-strong);
  text-shadow: 0 0 14px rgba(255, 202, 109, 0.35);
}

.fact-card p {
  margin: 0.3rem 0 0;
  color: #d8d8d8;
}

.voice-board {
  grid-column: 1 / -1;
}

.voice-board h3 {
  font-size: 1.06rem;
  margin-bottom: 0.35rem;
}

.voice-board ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.26rem;
}

.pricing-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -0.50rem;
  margin-bottom: 1rem;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.52rem 0.64rem;
  border-radius: 12px;
  border: 1px solid rgba(210, 223, 238, 0.34);
  background: rgba(176, 194, 216, 0.74);
}

.switch {
  width: 3.2rem;
  height: 1.75rem;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(214, 226, 242, 0.42);
  background: rgba(178, 196, 218, 0.84);
}

.switch span::after {
  content: "";
  position: absolute;
  width: 1.18rem;
  height: 1.18rem;
  top: 0.22rem;
  left: 0.22rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff2b8 0%, #ffd56b 48%, #8f6718 100%);
  background-size: 180% 180%;
  box-shadow:
    0 0 8px rgba(255, 221, 135, 0.34),
    0 0 14px rgba(255, 205, 96, 0.2),
    0 0 22px rgba(255, 214, 107, 0.08),
    inset 0 0 6px rgba(90, 63, 12, 0.24);
  animation: toggleKnobBreatheAmber 2.8s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  transition: transform 220ms ease;
}

.switch input:checked + span::after {
  transform: translateX(1.35rem);
}

@keyframes toggleKnobBreatheAmber {
  0% {
    background-position: 10% 50%;
    filter: brightness(0.62) saturate(0.88);
    box-shadow:
      0 0 3px rgba(255, 221, 135, 0.14),
      0 0 8px rgba(255, 205, 96, 0.1),
      0 0 14px rgba(255, 214, 107, 0.06),
      inset 0 0 6px rgba(58, 40, 6, 0.24);
  }
  20% {
    background-position: 42% 50%;
    filter: brightness(0.74) saturate(0.94);
    box-shadow:
      0 0 5px rgba(255, 221, 135, 0.22),
      0 0 12px rgba(255, 205, 96, 0.16),
      0 0 18px rgba(255, 214, 107, 0.08),
      inset 0 0 6px rgba(58, 40, 6, 0.2);
  }
  40% {
    background-position: 66% 50%;
    filter: brightness(0.96) saturate(1.08);
    box-shadow:
      0 0 8px rgba(255, 221, 135, 0.32),
      0 0 16px rgba(255, 205, 96, 0.24),
      0 0 26px rgba(255, 214, 107, 0.12),
      inset 0 0 6px rgba(255, 246, 214, 0.2);
  }
  50% {
    background-position: 88% 50%;
    filter: brightness(1.28) saturate(1.3);
    box-shadow:
      0 0 10px rgba(255, 221, 135, 0.52),
      0 0 22px rgba(255, 205, 96, 0.42),
      0 0 34px rgba(255, 214, 107, 0.2),
      inset 0 0 7px rgba(255, 246, 214, 0.3);
  }
  60% {
    background-position: 66% 50%;
    filter: brightness(0.98) saturate(1.1);
    box-shadow:
      0 0 8px rgba(255, 221, 135, 0.34),
      0 0 16px rgba(255, 205, 96, 0.25),
      0 0 26px rgba(255, 214, 107, 0.12),
      inset 0 0 6px rgba(255, 246, 214, 0.2);
  }
  80% {
    background-position: 42% 50%;
    filter: brightness(0.74) saturate(0.94);
    box-shadow:
      0 0 5px rgba(255, 221, 135, 0.22),
      0 0 12px rgba(255, 205, 96, 0.16),
      0 0 18px rgba(255, 214, 107, 0.08),
      inset 0 0 6px rgba(58, 40, 6, 0.2);
  }
  100% {
    background-position: 10% 50%;
    filter: brightness(0.62) saturate(0.88);
    box-shadow:
      0 0 3px rgba(255, 221, 135, 0.14),
      0 0 8px rgba(255, 205, 96, 0.1),
      0 0 14px rgba(255, 214, 107, 0.06),
      inset 0 0 6px rgba(58, 40, 6, 0.24);
  }
}

.billing-toggle em {
  font-style: normal;
  color: #ffe8a8;
}

.billing-toggle small {
  color: var(--muted);
  font-size: 0.78rem;
}

.billing-toggle small em {
  font-style: normal;
  color: #ffe8a8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
  align-items: stretch;
  perspective: 1400px;
  isolation: isolate;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(208, 221, 236, 0.31);
  background: rgba(174, 192, 214, 0.82);
  z-index: 1;
  isolation: isolate;
  transform-origin: center bottom;
  transition:
    transform 280ms cubic-bezier(0.2, 0.82, 0.2, 1),
    border-color 260ms ease,
    box-shadow 280ms ease,
    filter 260ms ease,
    opacity 260ms ease;
  will-change: transform, box-shadow, filter;
}

.plan::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid transparent;
  background:
    linear-gradient(
      135deg,
      rgba(0, 253, 55, 0.801),
      rgba(6, 179, 0, 0.62) 45%,
      rgba(18, 92, 9, 0.678)
    );
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.plan::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: -1.2rem;
  height: 1.5rem;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 182, 9, 0.34) 0%,
    rgba(3, 200, 235, 0.22) 45%,
    rgba(10, 16, 28, 0) 75%
  );
  filter: blur(8px);
  opacity: 0;
  transform: translateY(0.45rem) scaleX(0.84);
  pointer-events: none;
  transition: transform 280ms ease, opacity 260ms ease;
}

.plan.is-featured {
  border-color: rgba(208, 221, 236, 0.31);
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .pricing-grid:has(.plan:hover) .plan:not(:hover) {
    transform: translateY(0.32rem) scale(0.985);
    opacity: 0.8;
    filter: saturate(0.86) brightness(0.9);
  }

  .plan:hover {
    z-index: 8;
    transform: translateY(-0.62rem) scale(1.022);
    border-color: rgba(224, 237, 252, 0.64);
    box-shadow:
      0 18px 44px rgba(5, 14, 28, 0.52),
      0 0 0 1px rgba(164, 223, 255, 0.2);
    filter: saturate(1.1) brightness(1.05);
  }

  .plan:hover::before {
    opacity: 0.9;
  }

  .plan:hover::after {
    opacity: 0.95;
    transform: translateY(0) scaleX(1);
  }
}

.pricing-grid:has(.plan:focus-within) .plan:not(:focus-within) {
  transform: translateY(0.24rem) scale(0.988);
  opacity: 0.84;
  filter: saturate(0.9) brightness(0.93);
}

.plan:focus-within {
  z-index: 8;
  transform: translateY(-0.55rem) scale(1.018);
  border-color: rgba(224, 237, 252, 0.62);
  box-shadow:
    0 16px 38px rgba(5, 14, 28, 0.48),
    0 0 0 1px rgba(164, 223, 255, 0.2);
  filter: saturate(1.08) brightness(1.03);
}

.plan:focus-within::before {
  opacity: 0.84;
}

.plan:focus-within::after {
  opacity: 0.9;
  transform: translateY(0) scaleX(1);
}

.badge {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  border-radius: 999px;
  padding: 0.18rem 0.58rem;
  border: 1px solid rgba(255, 208, 118, 0.72);
  background: rgba(255, 144, 104, 0.2);
  color: #fff1c8;
  font-size: 0.74rem;
}

.price {
  margin: 0.26rem 0 0;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.price .value {
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff2c9;
}

.price-from-pill {
  margin-left: 0.36rem;
  padding: 0.2rem 0.62rem 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 208, 126, 0.58);
  background: linear-gradient(135deg, rgba(255, 88, 152, 0.2), rgba(255, 181, 93, 0.18));
  color: #fff0cb;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 0 12px rgba(255, 170, 100, 0.18);
  line-height: 1.05;
  white-space: nowrap;
  align-self: center;
}

.plan ul {
  margin: 0.62rem 0 1rem 1.05rem;
  padding: 0;
  color: #dddddd;
}

.plan li {
  margin-bottom: 0.32rem;
}

.plan-addons {
  margin-top: 0.3rem;
  padding-top: 0.58rem;
  border-top: 1px solid rgba(210, 223, 238, 0.22);
}

.plan-addons h4 {
  margin: 0 0 0.35rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d6eaff;
}

.addon-list {
  display: grid;
  gap: 0.28rem;
}

.addon-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.48rem;
  border: 1px solid rgba(210, 223, 238, 0.16);
  border-radius: 10px;
  padding: 0.3rem 0.44rem;
  background: rgba(170, 188, 210, 0.12);
}

.addon-option input {
  margin: 0;
  width: 0.95rem;
  height: 0.95rem;
  accent-color: var(--brand-cyan);
}

.addon-option span {
  color: #dce8f5;
  font-size: 0.89rem;
  line-height: 1.2;
}

.addon-option strong {
  color: #ffe8b1;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.addon-summary {
  margin: 0.42rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.addon-summary strong {
  color: #ffeec8;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
}

.plan .ghost-btn,
.plan .solid-btn {
  margin-top: auto;
  width: 100%;
}

.slide.pricing .plan .ghost-btn {
  position: relative;
}

.pricing-vat-note {
  margin: 0.58rem 0 0.15rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.feature-matrix {
  margin-top: 0.8rem;
}

.slide.pricing {
  justify-content: center;
  align-items: center;
}

.pricing-content {
  width: min(1480px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide.pricing .slide-head {
  max-width: min(100%, 76rem);
  margin: 0 auto 1.35rem;
  padding-top: 0;
  text-align: center;
  position: relative;
  top: -2.1rem;
}

.slide.pricing .slide-head p {
  margin: 0.55rem auto 0;
  max-width: 72ch;
}

.feature-matrix h3 {
  margin-bottom: 0.45rem;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.matrix-grid div {
  border-radius: 12px;
  border: 1px solid rgba(208, 221, 236, 0.32);
  background: rgba(178, 196, 218, 0.78);
  padding: 0.62rem;
}

.matrix-grid strong {
  display: block;
  color: var(--accent-strong);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
}

.matrix-grid span {
  color: #dbdbdb;
  font-size: 0.9rem;
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: center;
  padding-inline: clamp(0.85rem, 1.8vw, 1.9rem);
}

.slide.philosophy .philosophy-layout {
  margin-top: 6rem;
}

.philosophy-orbit {
  min-height: 520px;
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(126, 126, 126, 0.3);
  background: radial-gradient(circle at 50% 50%, rgba(200, 218, 240, 0.9), rgba(164, 182, 204, 0.95));
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.philosophy-orbit::before,
.philosophy-orbit::after {
  content: none;
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform, opacity;
  border: 1.2px solid transparent;
  box-shadow: none;
  overflow: visible;
}

.orbit-ring-back {
  width: min(74%, 402px);
  height: min(74%, 402px);
  transform: translate(-50%, -50%) translateZ(-8px) rotateX(58deg) rotateY(22deg) rotateZ(45deg);
  z-index: 1;
  animation: none;
}

.orbit-ring-mid {
  width: min(74%, 402px);
  height: min(74%, 402px);
  transform: translate(-50%, -50%) translateZ(0) rotateX(0deg) rotateY(72deg) rotateZ(0deg);
  z-index: 2;
  animation: none;
}

.orbit-ring-mid-front {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(74%, 402px);
  height: min(74%, 402px);
  border-radius: 50%;
  pointer-events: none;
  transform-style: preserve-3d;
  transform-origin: center center;
  border: 1.2px solid transparent;
  box-shadow: none;
  transform: translate(-50%, -50%) translateZ(10px) rotateX(0deg) rotateY(72deg) rotateZ(0deg);
  z-index: 4;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, #000 0 51%, transparent 51%);
  mask-image: linear-gradient(to right, #000 0 51%, transparent 51%);
}

.orbit-ring-chaos {
  width: min(74%, 402px);
  height: min(74%, 402px);
  transform: translate(-50%, -50%) translateZ(0) rotateX(72deg) rotateY(0deg) rotateZ(0deg);
  z-index: 3;
  animation: none;
}

.orbit-ring-front {
  width: min(74%, 402px);
  height: min(74%, 402px);
  transform: translate(-50%, -50%) translateZ(8px) rotateX(58deg) rotateY(-22deg) rotateZ(-45deg);
  z-index: 4;
  animation: none;
}

.orbit-ring-beam-layer {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

.orbit-ring-beam-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.orbit-ring-beam-track,
.orbit-ring-beam-glow,
.orbit-ring-beam-core {
  fill: none;
  vector-effect: non-scaling-stroke;
  shape-rendering: geometricPrecision;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.orbit-ring-beam-track {
  display: none;
}

.orbit-ring-beam-glow {
  stroke-width: 4.86;
  opacity: 0.72;
  filter:
    blur(2.7px)
    drop-shadow(0 0 9px rgba(74, 214, 255, 0.52))
    drop-shadow(0 0 16px rgba(255, 119, 174, 0.32));
}

.orbit-ring-beam-core {
  stroke-width: 2.1;
  opacity: 0.96;
}

.orbit-ring-beam-glow.is-secondary {
  stroke-width: 3.68;
  opacity: 0.52;
  filter:
    blur(2.3px)
    drop-shadow(0 0 7px rgba(74, 214, 255, 0.38));
}

.orbit-ring-beam-core.is-secondary {
  stroke-width: 1.7;
  opacity: 0.84;
}

.orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 1px solid rgba(165, 221, 12, 0);
  background: radial-gradient(circle at 35% 20%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 0 0 30px rgba(252, 239, 51, 0);
  z-index: 3;
}

.orbit-logo {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-bottom: 1.55rem;
  object-fit: contain;
  object-position: center;
  display: block;
  transform-origin: center;
  opacity: 1;
  color: rgb(255, 154, 88);
  filter: drop-shadow(0 0 1.5px color-mix(in srgb, currentColor 90%, transparent));
  animation:
    orbitLogoColorFlowSimple 14s linear infinite,
    orbitLogoPulseSoft 2.4s linear infinite alternate;
  will-change: transform, filter, color;
}

.orbit-center strong {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.orbit-center span {
  color: #d8d8d8;
  font-size: 0.88rem;
}

.orbit-node {
  position: absolute;
  width: 30%;
  border-radius: 14px;
  border: 1px solid rgba(205, 218, 234, 0.34);
  background: rgba(178, 196, 218, 0.84);
  padding: 0.65rem;
  animation: nodeFloat 5.4s ease-in-out infinite;
  z-index: 5;
}

.orbit-node h3 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
  color: #fff1c9;
}

.orbit-node p {
  margin: 0;
  color: #dbdbdb;
  font-size: 0.91rem;
}

.orbit-node.n1 {
  left: 6%;
  top: 9%;
}

.orbit-node.n2 {
  right: 6%;
  top: 9%;
  animation-delay: 0.7s;
}

.orbit-node.n3 {
  left: 6%;
  bottom: 10%;
  animation-delay: 1.2s;
}

.orbit-node.n4 {
  right: 6%;
  bottom: 10%;
  animation-delay: 1.7s;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.manifesto article {
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(128, 128, 128, 0.31);
  background: linear-gradient(165deg, rgba(188, 206, 228, 0.5), rgba(168, 186, 208, 0.5));
  padding: 0.72rem 0.74rem;
}

.manifesto h3 {
  font-size: 1.06rem;
  margin-bottom: 0.22rem;
  color: #63b88f;
  text-shadow: 0 0 8px rgba(58, 198, 128, 0.16);
}

.manifesto p {
  margin: 0;
  color: #dddddd;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.team-card {
  border-radius: 16px;
  border: 1px solid rgba(208, 221, 236, 0.31);
  background: rgba(176, 194, 216, 0.84);
  padding: 0.75rem;
}

.team-card img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(206, 219, 234, 0.32);
  margin-bottom: 0.4rem;
}

.team-card h3 {
  font-size: 1.08rem;
}

.team-card p {
  margin: 0.14rem 0;
  color: #c4c4c4;
}

.team-card small {
  color: #d8d8d8;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: start;
}

.faq-grid {
  display: grid;
  gap: 0.52rem;
}

details {
  border-radius: 12px;
  border: 1px solid rgba(210, 223, 238, 0.34);
  background: rgba(174, 192, 214, 0.82);
  padding: 0.72rem 0.82rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 0.52rem 0 0;
  color: #d6d6d6;
}

.sources h3 {
  margin-bottom: 0.4rem;
}

.sources .tiny-note {
  margin-top: 0;
  margin-bottom: 0.72rem;
}

.demo-form {
  display: grid;
  gap: 0.58rem;
}

.demo-form label {
  display: grid;
  gap: 0.26rem;
  color: #dde7f3;
  font-size: 0.95rem;
}

.demo-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(210, 223, 238, 0.45);
  background: rgba(170, 188, 210, 0.12);
  color: var(--text);
  font: inherit;
  padding: 0.52rem 0.62rem;
}

.demo-form textarea {
  resize: vertical;
  min-height: 74px;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: rgba(214, 226, 242, 0.58);
}

.demo-form input:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: rgba(114, 236, 255, 0.72);
  box-shadow:
    0 0 0 1px rgba(114, 236, 255, 0.24),
    0 0 16px rgba(64, 210, 255, 0.16);
}

.demo-form-actions {
  margin-top: 0.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.tiny-note {
  margin: 0.42rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.solid-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.54rem 0.84rem;
  border-radius: 10px;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.solid-btn {
  border: 1px solid rgba(255, 205, 115, 0.8);
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral) 45%, var(--brand-amber) 100%);
  color: #2f0b27;
  font-weight: 700;
}

.ghost-btn {
  border: 1px solid rgba(210, 223, 238, 0.45);
  background: rgba(172, 190, 212, 0.72);
  color: #d9d9d9;
}

.solid-btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
}

.pulse-btn {
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.mobile-slide-next {
  display: none;
}

.mobile-calc-launch {
  display: none;
}

.mobile-pricing-launches {
  display: none;
}

.mobile-demo-launch {
  display: none;
}

.calc-dialog-body {
  margin-top: 0.7rem;
}

.pricing-dialog-body {
  margin-top: 0.7rem;
}

.demo-dialog-body {
  margin-top: 0.7rem;
}

dialog.quote-dialog {
  width: min(920px, 94vw);
  border-color: rgba(255, 204, 102, 0.4);
  background:
    linear-gradient(155deg, rgba(23, 30, 43, 0.96), rgba(11, 17, 28, 0.97)),
    radial-gradient(circle at 12% 0%, rgba(255, 213, 107, 0.2), transparent 36%);
}

.quote-dialog .dialog-top p {
  color: #ffd48f;
  text-shadow: 0 0 8px rgba(255, 200, 112, 0.24);
}

.quote-dialog .close-btn {
  border-color: rgba(255, 194, 108, 0.5);
  background: linear-gradient(135deg, rgba(112, 72, 24, 0.92), rgba(187, 128, 48, 0.94));
  color: #fff2d5;
}

.quote-dialog-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.86fr) minmax(0, 1.14fr);
  gap: 0.9rem;
  margin-top: 0.85rem;
}

.quote-summary-panel,
.quote-form {
  border: 1px solid rgba(208, 221, 236, 0.22);
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(32, 42, 58, 0.76), rgba(15, 21, 32, 0.9));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.quote-summary-panel {
  padding: 0.9rem;
}

.quote-summary-kicker {
  margin: 0 0 0.32rem;
  color: var(--accent-strong);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-summary-panel h3 {
  margin: 0 0 0.72rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.55rem;
  color: #fff3d0;
}

.quote-summary {
  display: grid;
  gap: 0.45rem;
}

.quote-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: #dce8f5;
  font-size: 0.95rem;
}

.quote-summary-row span:first-child {
  color: var(--muted);
}

.quote-summary-row strong {
  color: #ffe8b1;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.03em;
}

.quote-summary-addons {
  margin: 0.12rem 0 0;
  padding-left: 1.05rem;
  color: #dce8f5;
  font-size: 0.9rem;
}

.quote-summary-addons li {
  margin-bottom: 0.22rem;
}

.quote-form {
  display: grid;
  gap: 0.72rem;
  padding: 0.9rem;
}

.quote-form label {
  display: grid;
  gap: 0.28rem;
  color: #dce8f5;
  font-size: 0.9rem;
}

.quote-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(208, 221, 236, 0.28);
  border-radius: 10px;
  background: rgba(5, 9, 16, 0.58);
  color: var(--text);
  padding: 0.7rem 0.75rem;
  font: inherit;
  outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: rgba(255, 213, 107, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 213, 107, 0.14);
}

.quote-website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form-status {
  min-height: 1.25rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-form-status.is-success {
  color: var(--ok);
}

.quote-form-status.is-error {
  color: var(--danger);
}

.quote-submit-btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.tool-dialog {
  width: min(760px, 92vw);
  border-radius: 16px;
  border: 1px solid rgba(208, 221, 236, 0.36);
  background: linear-gradient(170deg, rgba(180, 198, 220, 0.94), rgba(152, 170, 192, 0.96));
  color: var(--text);
  padding: 1rem;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6);
}

.tool-dialog::backdrop {
  background: rgba(2, 6, 11, 0.72);
  backdrop-filter: blur(4px);
}

.dialog-top {
  margin: 0 0 0.36rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dialog-top p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--accent-strong);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.close-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(208, 221, 236, 0.42);
  background: rgba(168, 186, 208, 0.82);
  color: #e2e2e2;
  cursor: pointer;
}

.dialog-media {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.media-box {
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(206, 219, 234, 0.32);
  background: linear-gradient(150deg, rgba(192, 210, 232, 0.75), rgba(168, 186, 208, 0.9));
  min-height: 160px;
  padding: 0.5rem;
  display: grid;
  gap: 0.3rem;
  align-content: center;
}

.media-box img {
  width: 100%;
  border-radius: 8px;
}

.video-mock {
  height: 86px;
  border-radius: 8px;
  border: 1px solid rgba(204, 217, 233, 0.3);
  background: rgba(166, 184, 206, 0.8);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.32rem;
  padding: 0.5rem;
}

.video-mock span {
  width: 12%;
  height: 32%;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--brand-amber), var(--brand-coral), var(--brand-pink));
  animation: equalizer 1.1s ease-in-out infinite;
}

.video-mock span:nth-child(2) {
  animation-delay: 0.12s;
}

.video-mock span:nth-child(3) {
  animation-delay: 0.2s;
}

.video-mock span:nth-child(4) {
  animation-delay: 0.36s;
}

.video-mock span:nth-child(5) {
  animation-delay: 0.48s;
}

.media-box figcaption {
  color: #d8d8d8;
  font-size: 0.85rem;
}

.dialog-list {
  margin: 0.8rem 0 0 1.05rem;
  padding: 0;
  display: grid;
  gap: 0.28rem;
  color: #dddddd;
}

.reveal,
.reveal-float {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.slide.is-active .reveal,
.slide.is-active .reveal-float,
.reveal.is-visible,
.reveal-float.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-float {
  transform: translateY(24px) scale(0.98);
}

.tilt-card {
  transition: transform 240ms ease, border-color 220ms ease, box-shadow 220ms ease;
  transform-style: preserve-3d;
}

.tilt-card:hover {
  border-color: rgba(255, 203, 114, 0.68);
  box-shadow: 0 0 0 1px rgba(255, 148, 114, 0.28), 0 16px 30px rgba(0, 0, 0, 0.36);
}

@keyframes ambientBreath {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-0.5%, 0.4%, 0);
  }
}

@keyframes scanShift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(8px);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--ticker-shift, 50%)));
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 153, 112, 0);
  }
  50% {
    box-shadow: 0 0 22px rgba(255, 153, 112, 0.35);
  }
}

@keyframes tickerGlowColorSequence {
  0% { color: rgb(255, 154, 88); }       /* orange */
  6.25% { color: transparent; }          /* off */
  12.5% { color: rgb(255, 213, 107); }   /* yellow */
  18.75% { color: transparent; }         /* off */
  25% { color: rgb(114, 238, 122); }     /* green */
  31.25% { color: transparent; }         /* off */
  37.5% { color: rgb(31, 211, 167); }    /* teal */
  43.75% { color: transparent; }         /* off */
  50% { color: rgb(54, 214, 255); }      /* cyan */
  56.25% { color: transparent; }         /* off */
  62.5% { color: rgb(79, 121, 255); }    /* blue */
  68.75% { color: transparent; }         /* off */
  75% { color: rgb(142, 99, 255); }      /* purple */
  81.25% { color: transparent; }         /* off */
  87.5% { color: rgb(255, 79, 176); }    /* magenta */
  93.75% { color: transparent; }         /* off */
  100% { color: rgb(255, 154, 88); }     /* loop to orange */
}

@keyframes orbitLogoColorFlow {
  0% { color: rgb(255, 154, 88); }       /* orange */
  12.5% { color: rgb(255, 213, 107); }   /* yellow */
  25% { color: rgb(114, 238, 122); }     /* green */
  37.5% { color: rgb(31, 211, 167); }    /* teal */
  50% { color: rgb(54, 214, 255); }      /* cyan */
  62.5% { color: rgb(79, 121, 255); }    /* blue */
  75% { color: rgb(142, 99, 255); }      /* purple */
  87.5% { color: rgb(255, 79, 176); }    /* magenta */
  100% { color: rgb(255, 154, 88); }     /* orange */
}

@keyframes orbitLogoColorFlowSimple {
  0% { color: rgb(255, 154, 88); }       /* orange */
  16.66% { color: rgb(255, 213, 107); }  /* yellow */
  33.33% { color: rgb(114, 238, 122); }  /* green */
  50% { color: rgb(54, 214, 255); }      /* cyan */
  66.66% { color: rgb(79, 121, 255); }   /* blue */
  83.33% { color: rgb(255, 79, 176); }   /* magenta */
  100% { color: rgb(255, 154, 88); }     /* orange */
}

@keyframes orbitLogoPulseSoft {
  0% {
    transform: scale(0.9);
    filter: drop-shadow(0 0 1.5px color-mix(in srgb, currentColor 90%, transparent));
  }
  5% {
    filter: drop-shadow(0 0 2px color-mix(in srgb, currentColor 90%, transparent));
  }
  10% {
    transform: scale(0.922);
    filter: drop-shadow(0 0 2.5px color-mix(in srgb, currentColor 90%, transparent));
  }
  15% {
    filter: drop-shadow(0 0 3px color-mix(in srgb, currentColor 90%, transparent));
  }
  20% {
    transform: scale(0.944);
    filter: drop-shadow(0 0 3.5px color-mix(in srgb, currentColor 90%, transparent));
  }
  25% {
    filter: drop-shadow(0 0 4px color-mix(in srgb, currentColor 90%, transparent));
  }
  30% {
    transform: scale(0.966);
    filter: drop-shadow(0 0 4.5px color-mix(in srgb, currentColor 90%, transparent));
  }
  35% {
    filter: drop-shadow(0 0 5px color-mix(in srgb, currentColor 90%, transparent));
  }
  40% {
    transform: scale(0.988);
    filter: drop-shadow(0 0 5.5px color-mix(in srgb, currentColor 90%, transparent));
  }
  45% {
    filter: drop-shadow(0 0 6px color-mix(in srgb, currentColor 90%, transparent));
  }
  50% {
    transform: scale(1.01);
    filter: drop-shadow(0 0 6.5px color-mix(in srgb, currentColor 90%, transparent));
  }
  55% {
    filter: drop-shadow(0 0 7px color-mix(in srgb, currentColor 90%, transparent));
  }
  60% {
    transform: scale(1.032);
    filter: drop-shadow(0 0 7.5px color-mix(in srgb, currentColor 90%, transparent));
  }
  65% {
    filter: drop-shadow(0 0 8px color-mix(in srgb, currentColor 90%, transparent));
  }
  70% {
    transform: scale(1.054);
    filter: drop-shadow(0 0 8.5px color-mix(in srgb, currentColor 90%, transparent));
  }
  75% {
    filter: drop-shadow(0 0 9px color-mix(in srgb, currentColor 90%, transparent));
  }
  80% {
    transform: scale(1.076);
    filter: drop-shadow(0 0 9.5px color-mix(in srgb, currentColor 90%, transparent));
  }
  85% {
    filter: drop-shadow(0 0 10px color-mix(in srgb, currentColor 90%, transparent));
  }
  90% {
    transform: scale(1.098);
    filter: drop-shadow(0 0 10.5px color-mix(in srgb, currentColor 90%, transparent));
  }
  95% {
    filter: drop-shadow(0 0 11px color-mix(in srgb, currentColor 90%, transparent));
  }
  100% {
    transform: scale(1.12);
    filter: drop-shadow(0 0 11.5px color-mix(in srgb, currentColor 90%, transparent));
  }
}

@keyframes introBadgeGlowColorPulse {
  0% { color: rgb(255, 154, 88); }
  25% { color: transparent; }
  50% { color: rgb(255, 154, 88); }
  75% { color: transparent; }
  100% { color: rgb(255, 154, 88); }
}

@keyframes tickerGlowBeamBreath {
  0%,
  100% {
    opacity: 0.72;
    filter: blur(0.8px);
  }
  50% {
    opacity: 1;
    filter: blur(1.35px);
  }
}

@keyframes tickerGlowBeamBreathSecondary {
  0%,
  100% {
    opacity: 0.34;
    filter: blur(2.3px);
  }
  50% {
    opacity: 0.64;
    filter: blur(3.3px);
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatParticle {
  from {
    transform: translate3d(var(--x, 0), 105vh, 0);
  }
  to {
    transform: translate3d(var(--x, 0), -10vh, 0);
  }
}

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes slowRotateReverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes orbitSphereOuterChaos {
  0% {
    transform: translate(-50%, -50%) translate3d(-8px, 7px, -42px) rotateX(73deg) rotateY(0deg) rotateZ(6deg);
    opacity: 0.56;
  }
  11% {
    transform: translate(-50%, -50%) translate3d(10px, -5px, -18px) rotateX(61deg) rotateY(59deg) rotateZ(71deg);
    opacity: 0.4;
  }
  23% {
    transform: translate(-50%, -50%) translate3d(3px, -11px, 2px) rotateX(80deg) rotateY(131deg) rotateZ(142deg);
    opacity: 0.62;
  }
  37% {
    transform: translate(-50%, -50%) translate3d(-12px, -3px, -26px) rotateX(68deg) rotateY(207deg) rotateZ(214deg);
    opacity: 0.45;
  }
  52% {
    transform: translate(-50%, -50%) translate3d(7px, 10px, 10px) rotateX(77deg) rotateY(284deg) rotateZ(296deg);
    opacity: 0.66;
  }
  68% {
    transform: translate(-50%, -50%) translate3d(12px, 2px, -22px) rotateX(64deg) rotateY(347deg) rotateZ(356deg);
    opacity: 0.42;
  }
  83% {
    transform: translate(-50%, -50%) translate3d(-5px, -10px, -8px) rotateX(84deg) rotateY(413deg) rotateZ(428deg);
    opacity: 0.58;
  }
  100% {
    transform: translate(-50%, -50%) translate3d(-8px, 7px, -42px) rotateX(73deg) rotateY(720deg) rotateZ(726deg);
    opacity: 0.56;
  }
}

@keyframes orbitSphereInnerChaos {
  0% {
    transform: translate(-50%, -50%) translate3d(9px, -6px, 32px) rotateX(24deg) rotateY(0deg) rotateZ(18deg);
    opacity: 0.6;
  }
  14% {
    transform: translate(-50%, -50%) translate3d(-3px, -10px, 44px) rotateX(38deg) rotateY(94deg) rotateZ(98deg);
    opacity: 0.74;
  }
  29% {
    transform: translate(-50%, -50%) translate3d(-11px, 3px, 8px) rotateX(12deg) rotateY(186deg) rotateZ(182deg);
    opacity: 0.44;
  }
  43% {
    transform: translate(-50%, -50%) translate3d(6px, 9px, -6px) rotateX(31deg) rotateY(251deg) rotateZ(262deg);
    opacity: 0.35;
  }
  57% {
    transform: translate(-50%, -50%) translate3d(12px, -2px, 26px) rotateX(18deg) rotateY(323deg) rotateZ(336deg);
    opacity: 0.67;
  }
  74% {
    transform: translate(-50%, -50%) translate3d(-7px, -9px, 38px) rotateX(40deg) rotateY(412deg) rotateZ(424deg);
    opacity: 0.76;
  }
  88% {
    transform: translate(-50%, -50%) translate3d(-10px, 8px, 6px) rotateX(15deg) rotateY(503deg) rotateZ(506deg);
    opacity: 0.46;
  }
  100% {
    transform: translate(-50%, -50%) translate3d(9px, -6px, 32px) rotateX(24deg) rotateY(720deg) rotateZ(738deg);
    opacity: 0.6;
  }
}

@keyframes orbitSphereMidChaos {
  0% {
    transform: translate(-50%, -50%) translate3d(-6px, -2px, 12px) rotateX(54deg) rotateY(0deg) rotateZ(4deg);
    opacity: 0.54;
  }
  9% {
    transform: translate(-50%, -50%) translate3d(8px, -9px, -2px) rotateX(64deg) rotateY(73deg) rotateZ(63deg);
    opacity: 0.4;
  }
  21% {
    transform: translate(-50%, -50%) translate3d(11px, 4px, 22px) rotateX(45deg) rotateY(156deg) rotateZ(141deg);
    opacity: 0.64;
  }
  34% {
    transform: translate(-50%, -50%) translate3d(-2px, 11px, 30px) rotateX(36deg) rotateY(238deg) rotateZ(229deg);
    opacity: 0.7;
  }
  47% {
    transform: translate(-50%, -50%) translate3d(-12px, 5px, 4px) rotateX(59deg) rotateY(289deg) rotateZ(286deg);
    opacity: 0.48;
  }
  61% {
    transform: translate(-50%, -50%) translate3d(-10px, -7px, -12px) rotateX(67deg) rotateY(358deg) rotateZ(359deg);
    opacity: 0.34;
  }
  78% {
    transform: translate(-50%, -50%) translate3d(4px, -12px, 18px) rotateX(43deg) rotateY(437deg) rotateZ(442deg);
    opacity: 0.6;
  }
  92% {
    transform: translate(-50%, -50%) translate3d(12px, 1px, 28px) rotateX(34deg) rotateY(501deg) rotateZ(517deg);
    opacity: 0.72;
  }
  100% {
    transform: translate(-50%, -50%) translate3d(-6px, -2px, 12px) rotateX(54deg) rotateY(720deg) rotateZ(724deg);
    opacity: 0.54;
  }
}

@keyframes orbitSphereChaos4 {
  0% {
    transform: translate(-50%, -50%) translate3d(9px, 3px, -6px) rotateX(38deg) rotateY(0deg) rotateZ(28deg);
    opacity: 0.5;
  }
  13% {
    transform: translate(-50%, -50%) translate3d(-4px, -11px, 16px) rotateX(27deg) rotateY(77deg) rotateZ(98deg);
    opacity: 0.66;
  }
  27% {
    transform: translate(-50%, -50%) translate3d(-12px, 6px, -18px) rotateX(51deg) rotateY(146deg) rotateZ(169deg);
    opacity: 0.42;
  }
  39% {
    transform: translate(-50%, -50%) translate3d(5px, 12px, 26px) rotateX(19deg) rotateY(219deg) rotateZ(251deg);
    opacity: 0.72;
  }
  55% {
    transform: translate(-50%, -50%) translate3d(13px, -1px, -12px) rotateX(46deg) rotateY(301deg) rotateZ(334deg);
    opacity: 0.46;
  }
  69% {
    transform: translate(-50%, -50%) translate3d(-7px, -12px, 6px) rotateX(33deg) rotateY(376deg) rotateZ(412deg);
    opacity: 0.62;
  }
  84% {
    transform: translate(-50%, -50%) translate3d(-11px, 8px, 20px) rotateX(24deg) rotateY(509deg) rotateZ(556deg);
    opacity: 0.76;
  }
  100% {
    transform: translate(-50%, -50%) translate3d(9px, 3px, -6px) rotateX(38deg) rotateY(720deg) rotateZ(748deg);
    opacity: 0.5;
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes equalizer {
  0%,
  100% {
    height: 26%;
  }
  35% {
    height: 84%;
  }
  70% {
    height: 48%;
  }
}

@media (max-width: 1180px) {
  .slide {
    padding: 6rem 4vw 2.5rem;
  }

  .hud-nav {
    max-width: min(70vw, 920px);
    gap: 0.4rem;
  }

  .nav-link {
    font-size: 0.78rem;
    padding: 0.4rem 0.6rem;
  }

  .intro-grid,
  .tools-layout,
  .economy-grid,
  .philosophy-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .pricing-content {
    width: 100%;
  }

  .team-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .matrix-grid,
  .insight-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-wheel-shell {
    --ring-radius: clamp(130px, 34vw, 215px);
    width: min(86vw, 620px);
  }

  .tools-layout .tool-preview {
    margin-top: 0;
  }

  .slide.intro .intro-visual {
    align-self: auto;
    margin-top: 0;
  }

  .slide.intro .intro-actions .pulse-btn {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
  }

  .philosophy-orbit {
    min-height: 440px;
  }
}

@media (max-width: 840px) {
  html,
  body {
    width: 100%;
    height: auto !important;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: y proximity;
  }

  .deck {
    position: relative;
    inset: auto;
    overflow: visible;
    padding-top: 6rem;
  }

  .track {
    height: auto;
    transform: none !important;
  }

  .slide {
    height: auto;
    min-height: calc(100dvh - 7rem);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .hud {
    position: fixed;
    z-index: 120;
    width: calc(100% - 1rem);
    top: 0.56rem;
    left: 0.5rem;
    right: 0.5rem;
    grid-template-columns: auto 1fr auto;
    padding: 0.52rem 0.6rem;
    pointer-events: auto;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .hud-nav {
    justify-self: stretch;
    max-width: 100%;
    gap: 0.3rem;
    padding: 0;
    overflow-x: visible;
    flex-wrap: wrap;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 0.72rem;
    padding: 0.34rem 0.5rem;
    pointer-events: auto;
  }

  .brand small,
  .progress-shell {
    display: none;
  }

  .slide {
    padding: 1.15rem 0.95rem 1.6rem;
    justify-content: flex-start;
    overflow: visible;
    scroll-margin-top: 6.4rem;
  }

  .slide::before,
  .slide::after {
    inset: 5.5% 2.3%;
  }

  .slide-border-beam-layer {
    inset: 5.5% 2.3%;
  }

  .kicker {
    top: calc(5.5% + 0.55rem);
    left: calc(2.3% - 0.35rem);
    min-height: 2rem;
    padding: 0.44rem 0.6rem;
    font-size: 0.7rem;
  }

  .slide.intro .slide-grid > div,
  .slide .slide-head {
    padding-top: 2.35rem;
  }

  .slide.intro .intro-grid > div > h1 {
    transform: translateY(-2rem);
  }

  .slide.intro .lead {
    margin-top: 0.75rem;
    margin-bottom: 1.2rem;
  }

  .slide.intro .ticker {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
  }

  .team-grid,
  .pricing-grid,
  .matrix-grid,
  .insight-stack {
    grid-template-columns: 1fr;
  }

  .demo-form-row {
    grid-template-columns: 1fr;
  }

  .wheel-label {
    font-size: 24px;
  }

  .wheel-core {
    inset: 24%;
    padding: 0.72rem;
  }

  .tool-wheel-shell {
    --ring-radius: clamp(112px, 39vw, 158px);
  }

  .core-tags span {
    font-size: 0.66rem;
  }

  .dialog-media {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    font-size: 0.8rem;
  }

  .floating-badge.b1 {
    left: 0.2rem;
    top: 0.4rem;
  }

  .floating-badge.b2 {
    right: 0.25rem;
    top: auto;
    bottom: 4.5rem;
  }

  .floating-badge.b3 {
    left: 1.15rem;
    bottom: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-bg,
  .scanline-layer,
  .ticker,
  .ticker::before,
  .ticker::after,
  .hud::before,
  .hud::after,
  .tool-wheel-shell::before,
  .tool-wheel-shell::after,
  .ticker-rail,
  .ticker-track,
  .particle,
  .floating-badge,
  .kicker,
  .slide-border-beam-glow,
  .slide-border-beam-core,
  .orbit-node,
  .orbit-logo,
  .orbit-ring,
  .orbit-ring-beam-glow,
  .orbit-ring-beam-core,
  .philosophy-orbit::before,
  .philosophy-orbit::after,
  .plan,
  .plan::before,
  .plan::after,
  .video-mock span,
  .solid-btn,
  .ghost-btn,
  .wheel-sector,
  .wheel-label,
  .slide.intro .value-card-beam-glow,
  .slide.intro .value-card-beam-core,
  .slide.economics .value-card-beam-glow,
  .slide.economics .value-card-beam-core,
  .track,
  .slide,
  .reveal,
  .reveal-float {
    animation: none !important;
    transition: none !important;
  }
}

/* Icy white panel opacity tuning */
:root {
  --icy-panel-opacity: 0.05;
}

.value-card {
  background: linear-gradient(
    165deg,
    rgba(200, 218, 240, var(--icy-panel-opacity)),
    rgba(172, 190, 212, var(--icy-panel-opacity))
  );
}

.floating-badge,
.kicker {
  background: rgba(var(--floating-badge-bg-rgb), var(--floating-badge-bg-opacity));
}

.ticker-viewport {
  background: rgba(178, 196, 218, var(--icy-panel-opacity));
}

.tool-wheel-shell {
  background: radial-gradient(
    circle at 50% 52%,
    rgba(204, 222, 244, var(--icy-panel-opacity)),
    rgba(162, 180, 202, var(--icy-panel-opacity))
  );
}

.wheel-core {
  background: radial-gradient(
    circle at 35% 15%,
    rgba(11, 39, 66, 0.555),
    rgba(27, 61, 134, 0.555)
  );
}

.core-tags span {
  background: rgba(142, 160, 182, var(--icy-panel-opacity));
}

.glass-card {
  background: linear-gradient(
    165deg,
    rgba(188, 206, 228, var(--icy-panel-opacity)),
    rgba(168, 186, 208, var(--icy-panel-opacity))
  );
}

.calc-card input:not([type="checkbox"]) {
  background: rgba(170, 188, 210, var(--icy-panel-opacity));
}

.calc-results div {
  background: rgba(180, 198, 220, var(--icy-panel-opacity));
}

.bar-track {
  background: rgba(176, 194, 216, var(--icy-panel-opacity));
}

.fact-card {
  background: linear-gradient(
    160deg,
    rgba(194, 212, 234, var(--icy-panel-opacity)),
    rgba(164, 182, 204, var(--icy-panel-opacity))
  );
}

.billing-toggle {
  background: rgba(176, 194, 216, var(--icy-panel-opacity));
}

.switch span {
  background: rgba(178, 196, 218, var(--icy-panel-opacity));
}

.plan {
  background: rgba(174, 192, 214, var(--icy-panel-opacity));
}

.matrix-grid div {
  background: rgba(178, 196, 218, var(--icy-panel-opacity));
}

.philosophy-orbit {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(200, 218, 240, var(--icy-panel-opacity)),
    rgba(164, 182, 204, var(--icy-panel-opacity))
  );
}

.orbit-node {
  background: rgba(178, 196, 218, var(--icy-panel-opacity));
}

.manifesto article {
  background: linear-gradient(
    165deg,
    rgba(188, 206, 228, var(--icy-panel-opacity)),
    rgba(168, 186, 208, var(--icy-panel-opacity))
  );
}

.team-card {
  background: rgba(176, 194, 216, var(--icy-panel-opacity));
}

details {
  background: rgba(174, 192, 214, var(--icy-panel-opacity));
}

.ghost-btn {
  background: rgba(172, 190, 212, var(--icy-panel-opacity));
}

.tool-dialog {
  background: linear-gradient(
    170deg,
    rgba(180, 198, 220, var(--icy-panel-opacity)),
    rgba(152, 170, 192, var(--icy-panel-opacity))
  );
}

.media-box {
  background: linear-gradient(
    150deg,
    rgba(192, 210, 232, var(--icy-panel-opacity)),
    rgba(168, 186, 208, var(--icy-panel-opacity))
  );
}

.video-mock {
  background: rgba(166, 184, 206, var(--icy-panel-opacity));
}

@media (max-width: 840px) {
  html.is-mobile-layout,
  html.is-mobile-layout body {
    width: 100%;
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.is-mobile-layout {
    position: static;
    overscroll-behavior-y: contain;
    padding-bottom: 1rem;
    scroll-snap-type: y proximity;
  }

  body.is-mobile-layout .hud {
    position: fixed;
    top: 0.28rem;
    left: auto;
    right: auto;
    margin: 0.35rem 0.45rem 0.55rem;
    width: calc(100% - 0.9rem);
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "menu brand status";
    gap: 0.4rem;
    padding: 0.5rem 0.58rem;
    border-radius: 14px;
    pointer-events: auto;
    align-items: center;
  }

  body.is-mobile-layout .brand {
    grid-area: brand;
    min-width: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 0.45rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: inline-flex;
    width: max-content;
    max-width: calc(100% - 5.6rem);
  }

  body.is-mobile-layout .brand-mark {
    order: 1;
    transform: scale(1);
    transform-origin: center center;
    margin-right: 0;
    width: 3.6rem;
    height: 3.6rem;
  }

  body.is-mobile-layout .brand > div {
    order: 2;
    display: block;
    min-width: 0;
  }

  body.is-mobile-layout .brand strong {
    display: flex;
    align-items: baseline;
    gap: 0.02rem;
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
  }

  body.is-mobile-layout .brand small {
    display: none;
  }

  body.is-mobile-layout .mobile-menu-toggle {
    display: inline-flex;
    grid-area: menu;
    z-index: 2;
  }

  body.is-mobile-layout .hud-status {
    display: none;
  }

  body.is-mobile-layout .hud-nav {
    position: fixed;
    top: 4.45rem;
    left: 0.45rem;
    right: 0.45rem;
    z-index: 115;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.42rem;
    width: auto;
    max-width: none;
    padding: 0.72rem;
    border-radius: 16px;
    border: 1px solid rgba(182, 205, 232, 0.24);
    background: linear-gradient(160deg, rgba(18, 24, 36, 0.98), rgba(8, 13, 22, 0.98));
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.46);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body.is-mobile-layout .nav-link {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.82rem;
    padding: 0.78rem 0.86rem;
    letter-spacing: 0.06em;
    pointer-events: auto;
    border-radius: 12px;
    background: rgba(46, 60, 88, 0.34);
  }

  body.is-mobile-layout.is-mobile-menu-open .hud-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.is-mobile-layout .mobile-nav-backdrop {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  body.is-mobile-layout.is-mobile-menu-open .mobile-nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.is-mobile-layout.is-mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.is-mobile-layout.is-mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.is-mobile-layout.is-mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  body.is-mobile-layout .deck {
    position: relative;
    inset: auto;
    overflow: visible;
    padding-top: 0;
  }

  body.is-mobile-layout .track {
    height: auto;
    transform: none !important;
    transition: none;
  }

  body.is-mobile-layout .slide {
    height: auto;
    min-height: calc(100dvh - 7.2rem);
    padding: 5.95rem 0.95rem 1.2rem;
    margin: 0 0.65rem 0.9rem;
    justify-content: flex-start;
    overflow: visible;
    opacity: 1;
    transform: none;
    transition: none;
    scroll-margin-top: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-radius: 18px;
    border: 1px solid rgba(186, 204, 228, 0.24);
    background: linear-gradient(
      155deg,
      rgba(22, 30, 44, 0.92),
      rgba(11, 17, 28, 0.94)
    );
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
  }



  body.is-mobile-layout .slide::after,
  body.is-mobile-layout .slide-border-beam-layer,
  body.is-mobile-layout .tool-wheel-rim-beam-layer,
  body.is-mobile-layout .tool-wheel-inner-rim-beam-layer,
  body.is-mobile-layout .orbit-ring-beam-layer {
    display: none;
  }

  body.is-mobile-layout .kicker {
    position: absolute;
    top: 0.95rem;
    left: 0.95rem;
    display: inline-flex;
    margin: 0;
    z-index: 6;
    animation: badgeFloat 4.2s ease-in-out infinite;
  }

  body.is-mobile-layout .slide .slide-head,
  body.is-mobile-layout .slide.intro .slide-grid > div {
    padding-top: 2.95rem;
  }

  body.is-mobile-layout .slide.intro .slide-grid > div {
    padding-top: 0.65rem;
  }

  body.is-mobile-layout .slide.intro .intro-grid {
    padding-inline: 0;
    gap: 0.9rem;
  }

  body.is-mobile-layout .slide.intro .intro-grid > div,
  body.is-mobile-layout .slide.intro .intro-visual {
    min-width: 0;
  }

  body.is-mobile-layout .slide.intro .intro-grid > div > h1 {
    transform: none;
    max-width: 20ch;
  }

  body.is-mobile-layout .slide.intro .lead {
    margin-top: 0.72rem;
    margin-bottom: 1.05rem;
  }

  body.is-mobile-layout .slide.intro .value-list {
    width: auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.72rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.12rem 0 0.4rem;
    margin: 1rem 0 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.is-mobile-layout .slide.intro .value-list::-webkit-scrollbar {
    display: none;
  }

  body.is-mobile-layout .slide.intro .value-list .value-card {
    flex: 0 0 calc(100% - 2px);
    max-width: calc(100% - 2px);
    min-width: 0;
    margin: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  body.is-mobile-layout .floating-badge {
    display: none;
  }

  body.is-mobile-layout .slide.intro .intro-visual {
    margin: 0.9rem 0 0.25rem;
    align-self: auto;
    width: 100%;
  }

  body.is-mobile-layout .slide.intro .intro-actions .pulse-btn {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 4.25rem;
    height: 4.25rem;
    min-width: 4.25rem;
    max-width: none;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    text-indent: 200%;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(255, 142, 93, 0.28);
  }

  body.is-mobile-layout .slide.intro .intro-actions {
    justify-content: center;
  }

  body.is-mobile-layout .slide.intro .intro-actions .pulse-btn::before {
    content: "\2193";
    display: block;
    font-size: 1.85rem;
    line-height: 1;
    color: #2f0b27;
    text-indent: 0;
  }

  body.is-mobile-layout .slide.intro .ticker {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0.9rem;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    overflow: hidden;
    contain: paint;
  }

  body.is-mobile-layout .slide.intro .ticker::before {
    inset: 0;
    border-width: 2px;
    box-shadow:
      inset 0 0 5px currentColor,
      inset 0 0 10px currentColor,
      0 0 8px currentColor;
    opacity: 0.78;
    filter: blur(0.55px);
  }

  body.is-mobile-layout .slide.intro .ticker::after {
    inset: 0;
    border-width: 3px;
    opacity: 0.22;
    filter: blur(1.1px);
  }

  body.is-mobile-layout .slide.tools .slide-head,
  body.is-mobile-layout .slide.economics .slide-head,
  body.is-mobile-layout .slide.philosophy .slide-head,
  body.is-mobile-layout .slide.pricing .slide-head {
    top: 0;
    transform: none;
    margin: 0 0 0.95rem;
    padding-top: 2.95rem;
    padding-left: 0;
  }

  body.is-mobile-layout .slide.economics .slide-head p,
  body.is-mobile-layout .slide.philosophy .slide-head p,
  body.is-mobile-layout .slide.pricing .slide-head p {
    max-width: 100%;
  }

  body.is-mobile-layout .slide.tools .tools-layout {
    grid-template-columns: 1fr;
    gap: 0.78rem;
  }

  body.is-mobile-layout .slide.tools .tool-station {
    display: none;
  }

  body.is-mobile-layout .mobile-tool-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.12rem 0.08rem 0.42rem;
    margin: 0 -0.08rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.is-mobile-layout .mobile-tool-list::-webkit-scrollbar {
    display: none;
  }

  body.is-mobile-layout .slide.tools .mobile-tool-btn {
    flex: 0 0 calc(50% - 0.28rem);
    border-radius: 12px;
    border: 1px solid rgba(150, 186, 224, 0.38);
    background: rgba(44, 62, 89, 0.72);
    color: #e6f3ff;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    min-height: 2.7rem;
    padding: 0.7rem 0.78rem;
    text-align: center;
    cursor: pointer;
    scroll-snap-align: start;
  }

  body.is-mobile-layout .slide.tools .mobile-tool-btn.is-active {
    border-color: rgba(255, 205, 116, 0.82);
    background: linear-gradient(145deg, rgba(255, 139, 96, 0.34), rgba(74, 150, 255, 0.28));
    color: #fff3d0;
    box-shadow: 0 0 16px rgba(255, 165, 94, 0.24);
  }

  body.is-mobile-layout .tools-layout .tool-preview {
    margin-top: 0;
  }

  body.is-mobile-layout .slide.tools .mobile-slide-next {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  body.is-mobile-layout .slide.tools .tools-next-btn {
    width: 4.25rem;
    height: 4.25rem;
    min-width: 4.25rem;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    text-indent: 200%;
    white-space: nowrap;
    overflow: hidden;
    border-color: rgba(120, 205, 255, 0.82);
    background: linear-gradient(135deg, #46a9ff, #2d78ff 48%, #6ce2ff 100%);
    box-shadow: 0 10px 22px rgba(61, 153, 255, 0.28);
  }

  body.is-mobile-layout .slide.tools .tools-next-btn::before {
    content: "\2193";
    display: block;
    font-size: 1.85rem;
    line-height: 1;
    color: #05162d;
    text-indent: 0;
  }

  body.is-mobile-layout .slide.economics .mobile-calc-launch {
    display: flex;
    justify-content: center;
    margin: 0.25rem 0 1rem;
  }

  body.is-mobile-layout .slide.economics .mobile-calc-launch-btn {
    width: 100%;
    max-width: 22rem;
    min-height: 3.2rem;
    padding: 0.86rem 1rem;
    border-radius: 14px;
    border-color: rgba(228, 108, 255, 0.84);
    background: linear-gradient(135deg, #60237a, #8f36b8 52%, #b85ee0 100%);
    color: #f7dcff;
    box-shadow:
      0 12px 24px rgba(214, 92, 255, 0.2),
      inset 0 0 0 1px rgba(236, 163, 255, 0.18);
  }

  body.is-mobile-layout .slide.economics > .voice-board {
    margin: 0 0 1rem;
  }

  body.is-mobile-layout .slide.economics .owner-insight-stack {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.72rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.12rem 0 0.35rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.is-mobile-layout .slide.economics .owner-insight-stack::-webkit-scrollbar {
    display: none;
  }

  body.is-mobile-layout .slide.economics .owner-insight-stack > .fact-card {
    flex: 0 0 calc(100% - 2px);
    max-width: calc(100% - 2px);
    margin: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  body.is-mobile-layout .slide.economics .mobile-slide-next {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  body.is-mobile-layout .slide.economics .economics-next-btn {
    width: 4.25rem;
    height: 4.25rem;
    min-width: 4.25rem;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    text-indent: 200%;
    white-space: nowrap;
    overflow: hidden;
    border-color: rgba(228, 108, 255, 0.84);
    background: linear-gradient(135deg, #60237a, #8f36b8 52%, #b85ee0 100%);
    box-shadow:
      0 10px 22px rgba(214, 92, 255, 0.2),
      inset 0 0 0 1px rgba(236, 163, 255, 0.18);
  }

  body.is-mobile-layout .slide.economics .economics-next-btn::before {
    content: "\2193";
    display: block;
    font-size: 1.85rem;
    line-height: 1;
    color: #f7dcff;
    text-indent: 0;
  }

  body.is-mobile-layout .slide.economics .economy-grid > .calc-card {
    display: none;
  }

  body.is-mobile-layout .calc-dialog {
    width: min(760px, 96vw);
    max-height: 92vh;
  }

  body.is-mobile-layout .calc-dialog .dialog-top p {
    color: #f0b8ff;
    text-shadow: 0 0 8px rgba(229, 140, 255, 0.34);
  }

  body.is-mobile-layout .calc-dialog .close-btn {
    border-color: rgba(228, 108, 255, 0.56);
    background: linear-gradient(135deg, rgba(96, 35, 122, 0.92), rgba(143, 54, 184, 0.94));
    color: #f7dcff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    box-shadow:
      0 10px 18px rgba(214, 92, 255, 0.16),
      inset 0 0 0 1px rgba(236, 163, 255, 0.18);
  }

  body.is-mobile-layout .calc-dialog-body {
    overflow-y: auto;
    max-height: calc(92vh - 5rem);
    padding-right: 0.1rem;
  }

  body.is-mobile-layout .calc-dialog-body .calc-card {
    display: block;
    margin: 0;
    border-color: rgba(186, 204, 228, 0.24);
    background: linear-gradient(
      155deg,
      rgba(22, 30, 44, 0.92),
      rgba(11, 17, 28, 0.94)
    );
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
    backdrop-filter: none;
  }

  body.is-mobile-layout .economy-grid {
    grid-template-columns: 1fr;
  }

  body.is-mobile-layout .calc-budget-controls--media {
    grid-template-columns: 1fr;
    row-gap: 0.34rem;
  }

  body.is-mobile-layout .slide.philosophy .philosophy-layout {
    grid-template-columns: 1fr;
    margin-top: 20px;
    gap: 0.35rem;
  }

  body.is-mobile-layout .slide.philosophy .slide-head {
    margin-bottom: 0.55rem;
  }

  body.is-mobile-layout .slide.philosophy .slide-head p {
    margin-bottom: 0;
  }

  body.is-mobile-layout .philosophy-orbit {
    display: block;
    min-height: 21rem;
    aspect-ratio: 1 / 0.95;
    width: 100%;
    margin-top: -0.50rem;
    margin-bottom: 0.18rem;
    padding: 0;
    border-radius: 22px;
    border-color: rgba(168, 197, 227, 0.24);
    background:
      radial-gradient(circle at 50% 48%, rgba(84, 110, 182, 0.16), rgba(11, 17, 28, 0) 34%),
      linear-gradient(155deg, rgba(22, 30, 44, 0.94), rgba(11, 17, 28, 0.96));
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  }

  body.is-mobile-layout .philosophy-orbit .orbit-ring-beam-layer {
    display: block;
  }

  body.is-mobile-layout .philosophy-orbit .orbit-ring,
  body.is-mobile-layout .philosophy-orbit .orbit-ring-mid-front {
    top: 50%;
    width: min(62vw, 235px);
    height: min(62vw, 235px);
  }

  body.is-mobile-layout .orbit-center {
    top: 50%;
    width: 6.8rem;
    height: 6.8rem;
  }

  body.is-mobile-layout .orbit-logo {
    padding-bottom: 0.88rem;
  }

  body.is-mobile-layout .orbit-node {
    position: absolute;
    width: 3.35rem;
    height: 3.35rem;
    min-height: 0;
    padding: 0;
    border-radius: 999px;
    border-color: rgba(46, 154, 95, 0.6);
    background: linear-gradient(160deg, rgba(29, 39, 57, 0.94), rgba(16, 23, 36, 0.96));
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.18),
      0 0 10px rgba(47, 203, 113, 0.12),
      inset 0 0 0 1px rgba(78, 198, 130, 0.12);
    animation: nodeFloat 5.4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition:
      width 220ms ease,
      height 220ms ease,
      padding 220ms ease,
      border-radius 220ms ease,
      box-shadow 220ms ease,
      background 220ms ease;
  }

  body.is-mobile-layout .orbit-node-icon {
    display: block;
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    filter:
      brightness(0)
      saturate(100%)
      invert(89%)
      sepia(24%)
      saturate(1210%)
      hue-rotate(82deg)
      brightness(107%)
      contrast(101%)
      drop-shadow(0 0 6px rgba(124, 244, 172, 0.42))
      drop-shadow(0 0 12px rgba(72, 236, 155, 0.24));
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: none;
  }

  body.is-mobile-layout .orbit-node h3,
  body.is-mobile-layout .orbit-node p {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.3rem);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body.is-mobile-layout .orbit-node.is-expanded {
    width: 37%;
    height: auto;
    min-height: 6.4rem;
    padding: 0.56rem;
    border-radius: 14px;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    z-index: 8;
  }

  body.is-mobile-layout .orbit-node.is-expanded .orbit-node-icon {
    opacity: 0;
    transform: scale(0.82);
    position: absolute;
  }

  body.is-mobile-layout .orbit-node.n1 { left: 4.5%; top: 7.5%; }
  body.is-mobile-layout .orbit-node.n2 { right: 4.5%; top: 7.5%; left: auto; animation-delay: 0.7s; }
  body.is-mobile-layout .orbit-node.n3 { left: 4.5%; bottom: 7.5%; top: auto; animation-delay: 1.2s; }
  body.is-mobile-layout .orbit-node.n4 { right: 4.5%; bottom: 7.5%; left: auto; top: auto; animation-delay: 1.7s; }

  body.is-mobile-layout .orbit-node h3 {
    font-size: 0.88rem;
    margin-bottom: 0.18rem;
  }

  body.is-mobile-layout .orbit-node p {
    font-size: 0.72rem;
    line-height: 1.34;
  }

  body.is-mobile-layout .orbit-node.is-expanded h3,
  body.is-mobile-layout .orbit-node.is-expanded p {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  body.is-mobile-layout .manifesto {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.72rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.is-mobile-layout .manifesto::-webkit-scrollbar {
    display: none;
  }

  body.is-mobile-layout .manifesto article {
    flex: 0 0 calc(100% - 2px);
    max-width: calc(100% - 2px);
    margin: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  body.is-mobile-layout .slide.philosophy .mobile-slide-next {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  body.is-mobile-layout .slide.philosophy .philosophy-next-btn {
    width: 4.25rem;
    height: 4.25rem;
    min-width: 4.25rem;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    text-indent: 200%;
    white-space: nowrap;
    overflow: hidden;
    border-color: rgba(104, 234, 156, 0.84);
    background: linear-gradient(135deg, #0d5b3c, #1f8c58 50%, #57d490 100%);
    box-shadow:
      0 10px 22px rgba(72, 236, 155, 0.2),
      inset 0 0 0 1px rgba(148, 248, 186, 0.18);
  }

  body.is-mobile-layout .slide.philosophy .philosophy-next-btn::before {
    content: "\2193";
    display: block;
    font-size: 1.85rem;
    line-height: 1;
    color: #d9ffeb;
    text-indent: 0;
  }

  body.is-mobile-layout .slide.pricing {
    align-items: stretch;
    justify-content: flex-start;
  }

  body.is-mobile-layout .pricing-top {
    justify-content: flex-start;
    top: 0;
    margin-bottom: 0.85rem;
  }

  body.is-mobile-layout .mobile-pricing-launches {
    display: grid;
    gap: 0.72rem;
    margin-bottom: 0.9rem;
  }

  body.is-mobile-layout .mobile-pricing-launch {
    width: 100%;
    min-height: 4.6rem;
    padding: 0.92rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 214, 107, 0.72);
    background:
      linear-gradient(
        135deg,
        rgba(255, 205, 96, 0.4) 0%,
        rgba(255, 232, 170, 0.16) 50%,
        rgba(255, 214, 107, 0.2) 100%
      ),
      linear-gradient(160deg, rgba(63, 62, 32, 0.35), rgba(59, 56, 24, 0.5));
    color: #ffffff;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 221, 135, 0.22);
    box-shadow:
      0 14px 28px rgba(0, 0, 0, 0.22),
      0 0 14px rgba(255, 205, 96, 0.12),
      inset 0 0 0 1px rgba(255, 232, 170, 0.14);
  }

  body.is-mobile-layout .mobile-pricing-launch:active {
    transform: translateY(1px);
  }

  body.is-mobile-layout .billing-toggle {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0.4rem;
  }

  body.is-mobile-layout .pricing-grid {
    display: none;
  }

  body.is-mobile-layout .plan,
  body.is-mobile-layout .plan:hover,
  body.is-mobile-layout .plan:focus-within {
    transform: none;
    opacity: 1;
    filter: none;
  }

  body.is-mobile-layout .plan::after {
    display: none;
  }

  body.is-mobile-layout .price {
    flex-wrap: wrap;
  }

  body.is-mobile-layout .price-from-pill {
    margin-left: 0;
  }

  body.is-mobile-layout .pricing-vat-note {
    display: none;
  }

  body.is-mobile-layout .pricing-dialog {
    width: min(760px, 96vw);
    max-height: 92vh;
  }

  body.is-mobile-layout .pricing-dialog .dialog-top p {
    color: #ffd48f;
    text-shadow: 0 0 8px rgba(255, 200, 112, 0.24);
  }

  body.is-mobile-layout .pricing-dialog .close-btn {
    border-color: rgba(255, 194, 108, 0.5);
    background: linear-gradient(135deg, rgba(112, 72, 24, 0.92), rgba(187, 128, 48, 0.94));
    color: #fff2d5;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    box-shadow:
      0 10px 18px rgba(255, 187, 88, 0.14),
      inset 0 0 0 1px rgba(255, 222, 164, 0.16);
  }

  body.is-mobile-layout .pricing-dialog-body {
    overflow-y: auto;
    max-height: calc(92vh - 5rem);
    padding-right: 0.1rem;
  }

  body.is-mobile-layout .pricing-dialog-body .plan {
    display: flex;
    margin: 0;
    min-height: 0;
    border-color: rgba(186, 204, 228, 0.24);
    background: linear-gradient(
      155deg,
      rgba(22, 30, 44, 0.92),
      rgba(11, 17, 28, 0.94)
    );
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
  }

  body.is-mobile-layout .pricing-dialog-body .plan::before,
  body.is-mobile-layout .pricing-dialog-body .plan::after {
    display: none;
  }

  body.is-mobile-layout .quote-dialog {
    width: min(760px, 96vw);
    max-height: 92vh;
  }

  body.is-mobile-layout .quote-dialog-grid {
    grid-template-columns: 1fr;
    max-height: calc(92vh - 4.5rem);
    overflow-y: auto;
    padding-right: 0.1rem;
  }

  body.is-mobile-layout .quote-form-row {
    grid-template-columns: 1fr;
  }

  body.is-mobile-layout .quote-submit-btn {
    width: 100%;
  }

  body.is-mobile-layout .matrix-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.72rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 0.15rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.is-mobile-layout .matrix-grid::-webkit-scrollbar {
    display: none;
  }

  body.is-mobile-layout .matrix-grid div {
    flex: 0 0 calc(100% - 2px);
    max-width: calc(100% - 2px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  body.is-mobile-layout .slide.pricing .mobile-slide-next {
    display: flex;
    justify-content: center;
    margin-top: 0.9rem;
  }

  body.is-mobile-layout .slide.pricing .pricing-next-btn {
    width: 4.25rem;
    height: 4.25rem;
    min-width: 4.25rem;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    text-indent: 200%;
    white-space: nowrap;
    overflow: hidden;
    border-color: rgba(255, 214, 107, 0.84);
    background: linear-gradient(135deg, #8f6718, #d9ab3d 52%, #ffe8a8 100%);
    box-shadow:
      0 10px 22px rgba(255, 205, 96, 0.2),
      inset 0 0 0 1px rgba(255, 232, 170, 0.18);
  }

  body.is-mobile-layout .slide.pricing .pricing-next-btn::before {
    content: "\2193";
    display: block;
    font-size: 1.85rem;
    line-height: 1;
    color: #fff7dc;
    text-indent: 0;
  }

  body.is-mobile-layout .faq-layout {
    grid-template-columns: 1fr;
  }

  body.is-mobile-layout .mobile-demo-launch {
    display: inline-flex;
    width: 100%;
    min-height: 4.5rem;
    margin-top: 0.85rem;
    border-color: rgba(114, 236, 255, 0.8);
    background: linear-gradient(135deg, #195a7a, #2b9fca 52%, #b8f7ff 100%);
    color: #071a2f;
    box-shadow:
      0 12px 24px rgba(74, 214, 255, 0.16),
      inset 0 0 0 1px rgba(186, 248, 255, 0.16);
    font-weight: 700;
  }

  body.is-mobile-layout .slide.faq .sources {
    display: block;
    margin: 0;
  }

  body.is-mobile-layout .demo-dialog {
    width: min(760px, 96vw);
    max-height: 92vh;
  }

  body.is-mobile-layout .demo-dialog .dialog-top p {
    color: #b8f7ff;
    text-shadow: 0 0 8px rgba(140, 242, 255, 0.34);
  }

  body.is-mobile-layout .demo-dialog .close-btn {
    border-color: rgba(114, 236, 255, 0.56);
    background: linear-gradient(135deg, rgba(18, 78, 110, 0.92), rgba(42, 140, 188, 0.94));
    color: #e6fbff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    box-shadow:
      0 10px 18px rgba(74, 214, 255, 0.16),
      inset 0 0 0 1px rgba(186, 248, 255, 0.18);
  }

  body.is-mobile-layout .demo-dialog-body {
    overflow-y: auto;
    max-height: calc(92vh - 5rem);
    padding-right: 0.1rem;
  }

  body.is-mobile-layout .demo-dialog-body .sources {
    margin: 0;
    border-color: rgba(186, 204, 228, 0.24);
    background: linear-gradient(
      155deg,
      rgba(22, 30, 44, 0.92),
      rgba(11, 17, 28, 0.94)
    );
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
  }

  body.is-mobile-layout .demo-form-actions .solid-btn,
  body.is-mobile-layout .demo-form-actions .ghost-btn {
    width: 100%;
  }

  body.is-mobile-layout .dialog-media {
    grid-template-columns: 1fr;
  }

  body.is-mobile-layout .tool-dialog {
    width: min(760px, 96vw);
    max-height: 92vh;
  }

  body.is-mobile-layout .reveal,
  body.is-mobile-layout .reveal-float {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 560px) {
  body.is-mobile-layout .hud {
    margin: 0.3rem 0.35rem 0.5rem;
    width: calc(100% - 0.7rem);
    padding: 0.5rem;
  }

  body.is-mobile-layout .nav-link {
    font-size: 0.74rem;
    padding: 0.46rem 0.62rem;
  }

  body.is-mobile-layout .slide {
    margin: 0 0.4rem 0.82rem;
    padding: 5.85rem 0.8rem 1.1rem;
    scroll-margin-top: 0;
  }

  body.is-mobile-layout .brand {
    gap: 0.34rem;
    max-width: calc(100% - 4.9rem);
  }

  body.is-mobile-layout .brand-mark {
    width: 3.15rem;
    height: 3.15rem;
  }

  body.is-mobile-layout .brand strong {
    font-size: 1.08rem;
  }

  body.is-mobile-layout .mobile-tool-list {
    gap: 0.42rem;
    padding-bottom: 0.34rem;
  }

  body.is-mobile-layout .slide.tools .mobile-tool-btn {
    flex-basis: calc(50% - 0.24rem);
  }

  body.is-mobile-layout .philosophy-orbit {
    min-height: 18.6rem;
    padding: 0;
  }

  body.is-mobile-layout .philosophy-orbit .orbit-ring,
  body.is-mobile-layout .philosophy-orbit .orbit-ring-mid-front {
    top: 50%;
    width: min(64vw, 210px);
    height: min(64vw, 210px);
  }

  body.is-mobile-layout .orbit-center {
    top: 50%;
    width: 5.95rem;
    height: 5.95rem;
  }

  body.is-mobile-layout .orbit-node {
    width: 3rem;
    height: 3rem;
    padding: 0;
  }

  body.is-mobile-layout .orbit-node h3 {
    font-size: 0.8rem;
  }

  body.is-mobile-layout .orbit-node p {
    font-size: 0.67rem;
  }

  body.is-mobile-layout .orbit-node-icon {
    width: 1.72rem;
    height: 1.72rem;
  }

  body.is-mobile-layout .orbit-node.is-expanded {
    width: 38%;
    min-height: 5.7rem;
    padding: 0.48rem;
  }
}
