/* Global Design Tokens & Typography */
:root {
  --font: "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "DM Mono", ui-monospace, "Cascadia Code", "Segoe UI Mono", Menlo, Consolas, monospace;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font);
}

.is-landing {
  --landing-accent: #b96cff;
  --landing-accent-soft: rgba(157, 77, 255, 0.14);
}

@media (max-width: 860px) {
  html.menu-open {
    height: 100%;
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  body.menu-open {
    inset-inline: 0;
    width: 100%;
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  body.menu-open .site-header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
  }

  .mobile-nav.open {
    position: fixed !important;
    inset: 0 0 0 auto !important;
    width: min(360px, calc(100vw - 30px));
    height: 100dvh;
    max-height: 100dvh;
    display: flex !important;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background: #08080c;
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.72);
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    scrollbar-gutter: stable;
  }

  .menu-backdrop {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(0, 0, 0, 0.82);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .menu-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-head {
    position: sticky;
    z-index: 4;
    top: 0;
    flex: 0 0 auto;
    padding: 23px 20px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    background: #0b0b10;
  }

  .mobile-nav-head > div,
  .mobile-nav nav a > span {
    min-width: 0;
    display: grid;
    gap: 4px;
  }

  .mobile-nav-head small {
    color: var(--purple-2);
    font: 600 0.54rem var(--font-mono);
  }

  .mobile-nav-head strong {
    font-size: 1.25rem;
  }

  .mobile-nav-head span,
  .mobile-nav nav a small {
    color: #77717d;
  }

  .mobile-nav-head span {
    font-size: 0.67rem;
  }

  .mobile-nav-head button {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #111118;
    color: #fff;
    cursor: pointer;
  }

  .mobile-nav > nav {
    flex: 0 0 auto;
    padding: 10px 14px;
    display: grid;
  }

  .mobile-nav > nav > a {
    min-width: 0;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text);
    text-decoration: none;
  }

  .mobile-nav nav a strong {
    font-size: 0.91rem;
  }

  .mobile-nav nav a small {
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .mobile-nav nav a > .icon {
    flex: 0 0 auto;
    color: #77717d;
  }

  .mobile-nav-cta {
    flex: 0 0 auto;
    margin: auto 14px 14px;
    padding: 20px;
    border: 1px solid var(--line-strong);
    border-radius: 15px;
    background: #0e0b14;
  }

  .mobile-nav-cta > small {
    color: var(--purple-2);
    font: 600 0.58rem var(--font-mono);
  }

  .mobile-nav-cta p {
    margin: 8px 0 15px;
    font-size: 0.67rem;
    line-height: 1.5;
  }

  .mobile-nav-cta .button {
    width: 100%;
  }
}

@media (min-width: 861px) and (max-width: 1100px) {
  .header-shell {
    gap: 18px;
  }

  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 0.8rem;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.8rem;
  }
}

.landing-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.desktop-nav .samples-nav-link {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(192, 118, 255, 0.3);
  border-radius: 999px;
  background: rgba(157, 77, 255, 0.11);
  color: #fff;
  box-shadow: 0 0 24px rgba(157, 77, 255, 0.08);
}

.desktop-nav .samples-nav-link > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8ef0be;
  box-shadow: 0 0 10px rgba(142, 240, 190, 0.8);
}

.desktop-nav .samples-nav-link:hover {
  border-color: rgba(192, 118, 255, 0.62);
  background: rgba(157, 77, 255, 0.2);
}

.mobile-nav nav .samples-mobile-link {
  margin: 8px 12px 12px;
  border: 1px solid rgba(192, 118, 255, 0.35);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 12%, rgba(157, 77, 255, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(157, 77, 255, 0.13), rgba(255, 255, 255, 0.035));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.mobile-nav nav .samples-mobile-link:hover,
.mobile-nav nav .samples-mobile-link:focus-visible {
  border-color: rgba(192, 118, 255, 0.72);
  background-color: rgba(157, 77, 255, 0.18);
}

.samples-mobile-badge {
  width: max-content;
  margin-bottom: 5px;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  color: #b7e9ce !important;
  font: 700 0.52rem/1 var(--font-mono) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.samples-mobile-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8ef0be;
  box-shadow: 0 0 9px rgba(142, 240, 190, 0.85);
}

.landing-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--landing-progress, 0));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, #7a2ed1, #d397ff 75%, #fff);
  box-shadow: 0 0 14px rgba(192, 118, 255, 0.75);
}

.landing-ambient {
  position: fixed;
  z-index: 0;
  left: 0;
  top: 0;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.075;
  background: radial-gradient(circle, rgba(183, 100, 255, 0.55), transparent 67%);
  transform: translate3d(calc(var(--pointer-x, 50vw) - 50%), calc(var(--pointer-y, 35vh) - 50%), 0);
  filter: blur(8px);
  transition: opacity 0.3s ease;
}

.is-landing main,
.is-landing .site-footer {
  position: relative;
  z-index: 1;
}

.samples-hero-cta {
  gap: 11px;
  border-color: rgba(192, 118, 255, 0.34);
  background: rgba(157, 77, 255, 0.1);
}

.samples-hero-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b8e9ce;
  font: 700 0.54rem/1 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.samples-hero-live i,
.samples-live-badge i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #8ef0be;
  box-shadow: 0 0 0 4px rgba(142, 240, 190, 0.08), 0 0 10px rgba(142, 240, 190, 0.8);
}

.samples-home-feature {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 12%, rgba(126, 37, 224, 0.18), transparent 34%),
    linear-gradient(160deg, #09080d, #060608 68%);
}

.samples-home-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(162, 94, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(162, 94, 255, 0.1) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 86%);
  mask-image: linear-gradient(90deg, #000, transparent 86%);
}

.samples-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  align-items: center;
  gap: 72px;
}

.samples-home-copy {
  position: relative;
  z-index: 2;
}

.samples-live-badge {
  width: max-content;
  margin-bottom: 18px;
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(142, 240, 190, 0.18);
  border-radius: 999px;
  background: rgba(142, 240, 190, 0.055);
  color: #b8e9ce;
  font: 700 0.57rem/1 var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.samples-home-copy h2 {
  max-width: 640px;
  margin-bottom: 20px;
}

.samples-home-copy > p {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.samples-home-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.samples-home-signals {
  margin-top: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.samples-home-signals span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #85808a;
  font: 650 0.53rem/1 var(--font-mono);
}

.samples-home-preview {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: #0b0b10;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.5), 0 0 70px rgba(130, 42, 220, 0.12);
}

.samples-home-browser-bar {
  height: 42px;
  padding-inline: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  background: #0d0d12;
}

.samples-home-browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #45414a;
}

.samples-home-browser-bar small {
  margin-inline: auto;
  color: #746d78;
  font: 500 0.52rem/1 var(--font-mono);
  transform: translateX(-13px);
}

.samples-home-preview > img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.samples-home-preview::after {
  content: "";
  position: absolute;
  inset: 42px 0 0;
  background: linear-gradient(to bottom, transparent 46%, rgba(5, 5, 7, 0.9));
  pointer-events: none;
}

.samples-home-preview:hover > img,
.samples-home-preview:focus-visible > img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.samples-home-preview-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 23px;
  left: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 6px 18px;
}

.samples-home-preview-label small {
  grid-column: 1 / -1;
  color: #c076ff;
  font: 700 0.57rem/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.samples-home-preview-label strong {
  font-size: 1.25rem;
}

.samples-home-preview-label b {
  color: #fff;
  font-size: 0.68rem;
}

.samples-home-preview-stack {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-bottom: 74px;
}

.samples-home-preview-stack .samples-home-preview {
  display: block;
}

.samples-home-preview-mini {
  position: absolute;
  z-index: 4;
  right: -26px;
  bottom: 0;
  width: 47%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 16px;
  background: #0b0b10;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.62);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease;
}

.samples-home-preview-mini:hover,
.samples-home-preview-mini:focus-visible {
  transform: translateY(-5px) rotate(-1deg);
  border-color: rgba(192, 118, 255, 0.48);
}

.samples-home-preview-mini::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 35%, rgba(5, 5, 7, 0.9));
}

.samples-home-preview-mini > img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  object-position: top;
}

.samples-home-preview-mini > span {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 13px;
  left: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 12px;
}

.samples-home-preview-mini small {
  grid-column: 1 / -1;
  color: #c076ff;
  font: 700 0.48rem/1 var(--font-mono);
  text-transform: uppercase;
}

.samples-home-preview-mini strong {
  font-size: 0.82rem;
}

.samples-home-preview-mini b {
  font-size: 0.72rem;
}

@media (max-width: 980px) {
  .samples-home-layout {
    grid-template-columns: 1fr 0.9fr;
    gap: 42px;
  }

  .samples-home-preview > img {
    height: 360px;
  }
}

@media (max-width: 760px) {
  .samples-home-feature {
    padding-block: 78px;
  }

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

  .samples-home-preview {
    width: 100%;
  }

  .samples-home-preview-stack {
    width: min(680px, 100%);
    justify-self: center;
  }

  .samples-home-preview > img {
    height: auto;
    aspect-ratio: 1.32;
  }
}

@media (max-width: 560px) {
  .samples-hero-cta {
    width: 100%;
  }

  .samples-home-actions {
    display: grid;
    gap: 18px;
  }

  .samples-home-actions .button {
    width: 100%;
  }

  .samples-home-preview-label {
    right: 17px;
    bottom: 17px;
    left: 17px;
  }

  .samples-home-preview-label strong {
    font-size: 1rem;
  }

  .samples-home-preview-stack {
    padding-bottom: 0;
  }

  .samples-home-preview-mini {
    position: relative;
    right: auto;
    bottom: auto;
    width: 78%;
    margin: -28px 10px 0 auto;
  }

  .samples-home-preview-mini > img {
    height: 155px;
  }
}

.fit-finder {
  position: relative;
  z-index: 2;
  padding: 88px 0 96px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 15%, rgba(129, 43, 225, 0.16), transparent 34%),
    linear-gradient(180deg, #08080b, #060608);
}

.fit-finder::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(162, 94, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(162, 94, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 55%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 55%, transparent);
}

.fit-shell {
  width: var(--shell);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(10, 9, 14, 0.92);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.42), 0 0 70px rgba(111, 34, 194, 0.08);
}

.fit-intro {
  padding: 48px;
  border-right: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 55%);
}

.fit-intro h2 {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
}

.fit-intro > p {
  max-width: 590px;
  margin-bottom: 30px;
  font-size: 0.94rem;
}

.fit-options {
  display: grid;
  gap: 10px;
}

.fit-option {
  width: 100%;
  min-height: 76px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.fit-option:hover {
  transform: translateX(4px);
  border-color: rgba(192, 118, 255, 0.32);
  background: rgba(157, 77, 255, 0.07);
}

.fit-option.is-active {
  border-color: rgba(192, 118, 255, 0.58);
  background: linear-gradient(90deg, rgba(157, 77, 255, 0.15), rgba(157, 77, 255, 0.035));
  box-shadow: inset 3px 0 var(--purple-2);
}

.fit-option-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(192, 118, 255, 0.22);
  border-radius: 10px;
  color: var(--purple-2);
  background: rgba(157, 77, 255, 0.08);
  font: 650 0.58rem/1 var(--font-mono);
}

.fit-option > span:last-child {
  display: grid;
  gap: 5px;
}

.fit-option strong {
  font-size: 0.88rem;
}

.fit-option small {
  color: #8d8792;
  font-size: 0.69rem;
  line-height: 1.45;
}

.fit-result {
  position: relative;
  min-width: 0;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 14%, rgba(157, 77, 255, 0.2), transparent 38%),
    linear-gradient(145deg, #0e0b14, #09090d 60%);
}

.fit-result::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 300px;
  height: 300px;
  right: -130px;
  top: -130px;
  border: 1px solid rgba(192, 118, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(157, 77, 255, 0.025), 0 0 0 74px rgba(157, 77, 255, 0.015);
}

.fit-result-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.fit-match {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bdb6c2;
  font: 600 0.6rem/1.2 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-match i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(142, 240, 190, 0.08), 0 0 12px rgba(142, 240, 190, 0.7);
}

.fit-price {
  color: var(--purple-2);
  font: 650 0.7rem/1.2 var(--font-mono);
}

.fit-result-visual {
  height: 90px;
  margin-bottom: 29px;
  padding: 17px;
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 0.6fr;
  align-items: end;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
}

.fit-result-visual > span {
  display: block;
  height: 100%;
  border: 1px solid rgba(192, 118, 255, 0.13);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(157, 77, 255, 0.15), rgba(255, 255, 255, 0.02));
}

.fit-result-visual > span:nth-child(2) {
  height: 78%;
}

.fit-result-visual > span:nth-child(3) {
  height: 58%;
}

.fit-result-visual > div {
  position: absolute;
  left: 65px;
  right: 65px;
  margin-top: -53px;
  display: grid;
  gap: 5px;
}

.fit-result-visual i {
  display: block;
  height: 4px;
  width: 42%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.fit-result-visual i:nth-child(2) {
  width: 58%;
  background: linear-gradient(90deg, #9d4dff, #d59dff);
}

.fit-result-visual i:nth-child(3) {
  width: 31%;
}

.fit-package {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.fit-description {
  max-width: 590px;
  margin-bottom: 22px;
  font-size: 0.9rem;
}

.fit-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.fit-signals span {
  padding: 7px 10px;
  border: 1px solid rgba(192, 118, 255, 0.16);
  border-radius: 999px;
  background: rgba(157, 77, 255, 0.07);
  color: #bbb4c0;
  font-size: 0.62rem;
}

.fit-cta {
  width: max-content;
}

.fit-cta::after {
  content: "→";
  transition: transform 0.2s ease;
}

.fit-cta:hover::after {
  transform: translateX(4px);
}

.fit-note {
  margin-top: 14px;
  color: #77717d;
  font-size: 0.61rem;
}

.fit-result.is-switching > :not(.fit-result-topline) {
  animation: fit-result-in 0.34s ease both;
}

.portfolio-showcase {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 18%, rgba(157, 77, 255, 0.11), transparent 28%),
    linear-gradient(180deg, #08080b, #050507);
}

.portfolio-heading,
.comparison-heading,
.next-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.portfolio-heading h2,
.comparison-heading h2,
.next-heading h2 {
  margin-bottom: 0;
}

.portfolio-heading > p,
.comparison-heading > p,
.next-heading > p {
  margin: 0 0 7px;
  font-size: 0.92rem;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.37fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.demo-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-tabs {
  display: grid;
  gap: 10px;
}

.demo-tabs button {
  min-height: 102px;
  padding: 18px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-content: center;
  gap: 5px 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.demo-tabs button:hover {
  transform: translateX(3px);
  border-color: rgba(192, 118, 255, 0.28);
}

.demo-tabs button.is-active {
  border-color: rgba(192, 118, 255, 0.48);
  background: linear-gradient(100deg, rgba(157, 77, 255, 0.14), rgba(157, 77, 255, 0.025));
  box-shadow: inset 3px 0 var(--purple-2);
}

.demo-tabs button > span {
  grid-row: 1 / 3;
  color: var(--purple-2);
  font: 650 0.58rem/1.4 var(--font-mono);
}

.demo-tabs button strong {
  font-size: 0.83rem;
}

.demo-tabs button small {
  color: #817b87;
  font-size: 0.66rem;
  line-height: 1.4;
}

.demo-disclosure {
  margin: auto 3px 0;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
  color: #77717d;
  font-size: 0.64rem;
  line-height: 1.55;
}

.demo-stage {
  --demo-hue: 276;
  position: relative;
  min-width: 0;
  min-height: 570px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 15%, hsl(var(--demo-hue) 75% 55% / 0.14), transparent 34%),
    #0b0b10;
}

.demo-stage > * {
  position: relative;
  z-index: 1;
}

.demo-stage-bar {
  min-height: 58px;
  padding: 10px 14px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.demo-stage-label {
  color: #aaa3af;
  font: 650 0.58rem/1.2 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-device-toggle {
  padding: 3px;
  display: flex;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #07070a;
}

.demo-device-toggle button {
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #77717d;
  font-size: 0.59rem;
  font-weight: 700;
  cursor: pointer;
}

.demo-device-toggle button.is-active {
  background: rgba(157, 77, 255, 0.16);
  color: #fff;
}

.demo-canvas {
  min-height: 510px;
  padding: 36px;
  display: grid;
  place-items: center;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
}

.demo-browser {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: #0a0a0d;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46), 0 0 60px hsl(var(--demo-hue) 75% 50% / 0.1);
  transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.3s ease;
}

.is-mobile-preview .demo-browser {
  width: min(342px, 100%);
  border-radius: 26px;
}

.demo-browser-bar {
  height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #111116;
}

.demo-browser-bar > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4b4650;
}

.demo-browser-bar > span {
  width: 33%;
  height: 5px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(-12px);
}

.demo-site {
  min-height: 376px;
  padding: 24px 28px 28px;
  background:
    radial-gradient(circle at 76% 18%, hsl(var(--demo-hue) 78% 54% / 0.18), transparent 36%),
    linear-gradient(145deg, hsl(var(--demo-hue) 25% 9%), #08080b 58%);
}

.demo-site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.demo-site-nav b {
  font-size: 0.7rem;
  letter-spacing: -0.01em;
}

.demo-site-nav > span {
  display: flex;
  gap: 10px;
}

.demo-site-nav i {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.19);
}

.demo-site-hero {
  min-height: 240px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(180px, 0.72fr);
  align-items: center;
  gap: 36px;
}

.demo-site-kicker {
  display: block;
  margin-bottom: 12px;
  color: hsl(var(--demo-hue) 85% 71%);
  font: 650 0.53rem/1.3 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-site-title {
  max-width: 450px;
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3.6vw, 2.75rem);
  line-height: 0.98;
}

.demo-site-description {
  max-width: 500px;
  margin-bottom: 18px;
  color: #97919c;
  font-size: 0.67rem;
  line-height: 1.6;
}

.demo-site-cta {
  min-height: 33px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid hsl(var(--demo-hue) 70% 64% / 0.7);
  border-radius: 999px;
  background: hsl(var(--demo-hue) 68% 48%);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
}

.demo-art {
  position: relative;
  min-height: 170px;
  display: grid;
  place-items: center;
}

.demo-art > span {
  position: absolute;
  border: 1px solid hsl(var(--demo-hue) 80% 66% / 0.3);
  border-radius: 22px;
  background: linear-gradient(145deg, hsl(var(--demo-hue) 75% 54% / 0.2), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.demo-art > span:nth-child(1) {
  width: 72%;
  height: 76%;
  transform: rotate(-7deg);
}

.demo-art > span:nth-child(2) {
  width: 52%;
  height: 54%;
  transform: translate(28%, 25%) rotate(8deg);
}

.demo-art > span:nth-child(3) {
  width: 30%;
  height: 32%;
  transform: translate(-82%, -70%) rotate(13deg);
}

.demo-art > i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 9px #fff, 0 0 24px hsl(var(--demo-hue) 82% 62%);
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.demo-metrics span {
  min-height: 45px;
  padding: 11px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: #aaa4af;
  font-size: 0.58rem;
}

.is-mobile-preview .demo-site {
  min-height: 500px;
  padding-inline: 21px;
}

.is-mobile-preview .demo-site-nav > span i:nth-child(n + 2) {
  display: none;
}

.is-mobile-preview .demo-site-hero {
  grid-template-columns: 1fr;
  gap: 13px;
  padding: 34px 0 25px;
}

.is-mobile-preview .demo-art {
  min-height: 120px;
  grid-row: 1;
}

.is-mobile-preview .demo-site-title {
  font-size: 2rem;
}

.is-mobile-preview .demo-metrics {
  grid-template-columns: 1fr;
}

.demo-stage.is-switching .demo-site > * {
  animation: demo-content-in 0.38s ease both;
}

/* Custom Builder Invitation Module */
.package-comparison,
.custom-builder-invitation {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 16%, rgba(151, 55, 231, 0.12), transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(98, 221, 255, 0.04), transparent 28%),
    linear-gradient(180deg, #08060b, #050507);
}

.builder-invite-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* 4-Stage Starting Price Breakdown Card */
.builder-pricing-overview {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 20%, rgba(157, 77, 255, 0.08), transparent 32%),
    linear-gradient(145deg, #0d0c14, #08070c 80%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.builder-pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.builder-pricing-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.builder-pricing-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 12px #a855f7;
}

.builder-pricing-badge strong {
  font: 700 0.82rem/1.2 var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f1edfa;
}

.builder-pricing-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.builder-stat-pill {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font: 600 0.72rem/1.2 var(--font-mono);
  color: #eeeaf4;
}

.builder-stat-pill b {
  color: #928b9a;
  font-weight: 500;
  margin-right: 4px;
}

.builder-stat-pill.builder-stat-avg {
  border-color: rgba(168, 85, 247, 0.35);
  background: rgba(168, 85, 247, 0.1);
  color: #d8b4fe;
}

.builder-stat-pill.builder-stat-unlimited {
  border-color: rgba(98, 221, 255, 0.25);
  background: rgba(98, 221, 255, 0.06);
  color: #7dd3fc;
}

.builder-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.builder-stage-card {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.builder-stage-card:hover,
.builder-stage-card.is-focused {
  border-color: rgba(192, 118, 255, 0.45);
  background: linear-gradient(160deg, rgba(157, 77, 255, 0.1), rgba(12, 11, 18, 0.8));
  transform: translateY(-2px);
}

.builder-stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.builder-stage-phase {
  font: 700 0.65rem/1.2 var(--font-mono);
  letter-spacing: 0.08em;
  color: #837a8f;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.builder-stage-cost {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.builder-stage-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.builder-stage-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #f5f2f9;
  margin: 0;
}

.builder-stage-role {
  font: 600 0.62rem/1.2 var(--font-mono);
  color: var(--purple-2);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.builder-stage-desc {
  font-size: 0.74rem;
  line-height: 1.5;
  color: #a59fae;
  margin: 0;
  flex-grow: 1;
}

.builder-stage-items {
  list-style: none;
  margin: 0;
  padding: 10px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.builder-stage-items li {
  font-size: 0.68rem;
  line-height: 1.4;
  color: #8c8496;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.stage-check {
  color: #c084fc;
  font-weight: bold;
  flex-shrink: 0;
}

.builder-pricing-footnote {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.builder-pricing-footnote p {
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.55;
  color: #888192;
  text-align: center;
}

/* Feature Pillars Section */
.builder-pillars-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.builder-pillars-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.builder-pillars-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.builder-pillars-subtitle {
  font-size: 0.8rem;
  color: #9c95a6;
  margin: 0;
}

.builder-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.builder-pillar-card {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(157, 77, 255, 0.05), transparent 40%),
    #0c0b11;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.builder-pillar-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}

.builder-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8b4fe;
}

.builder-pillar-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.builder-pillar-kicker {
  font: 700 0.6rem/1.2 var(--font-mono);
  color: #93899f;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.builder-pillar-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #f1edfa;
  margin: 0;
}

.builder-pillar-desc {
  font-size: 0.72rem;
  line-height: 1.5;
  color: #928b9d;
  margin: 0;
}

/* Action / CTA Banner */
.builder-invite-action {
  padding: 32px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 22px;
  background:
    radial-gradient(circle at 15% 50%, rgba(157, 77, 255, 0.16), transparent 45%),
    linear-gradient(135deg, #120e1d, #09070e 85%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.builder-invite-action-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
}

.builder-action-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(192, 118, 255, 0.4);
  background: rgba(157, 77, 255, 0.15);
  font: 700 0.58rem/1.2 var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #e9d5ff;
}

.builder-invite-action-copy h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.builder-invite-action-copy p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #b3acc0;
  margin: 0;
}

.builder-action-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 6px;
}

.builder-action-guarantees span {
  font: 600 0.68rem/1.2 var(--font-mono);
  color: #c4b5fd;
}

.builder-invite-action-button-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.builder-invite-cta {
  min-height: 52px;
  padding: 14px 28px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.builder-action-note {
  font: 500 0.64rem/1.2 var(--font-mono);
  color: #827b8c;
  text-align: center;
}

.next-steps {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(157, 77, 255, 0.11), transparent 30%),
    linear-gradient(160deg, #0a0810, #060608 65%);
}

.next-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px;
}

.next-track::before,
.next-track::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 12.5%;
  right: 12.5%;
  top: 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.next-track::after {
  right: auto;
  width: calc(75% * var(--next-progress, 0) / 100);
  background: linear-gradient(90deg, #8b38e8, #c076ff);
  box-shadow: 0 0 12px rgba(192, 118, 255, 0.65);
  transition: width 0.38s ease;
}

.next-track button {
  position: relative;
  z-index: 1;
  padding: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #77717d;
  cursor: pointer;
}

.next-track button > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #0b0b10;
  font: 700 0.62rem/1 var(--font-mono);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.next-track button strong {
  font-size: 0.72rem;
}

.next-track button i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: transparent;
}

.next-track button:hover > span {
  transform: translateY(-2px);
  border-color: rgba(192, 118, 255, 0.36);
}

.next-track button.is-active {
  color: #fff;
}

.next-track button.is-active > span,
.next-track button.is-complete > span {
  border-color: rgba(192, 118, 255, 0.65);
  background: linear-gradient(145deg, #8e3ce9, #5e22aa);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(157, 77, 255, 0.08), 0 0 22px rgba(157, 77, 255, 0.28);
}

.next-track button.is-active i {
  background: var(--success);
  box-shadow: 0 0 9px rgba(142, 240, 190, 0.8);
}

.next-panel {
  position: relative;
  min-height: 360px;
  padding: 44px;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 50%, rgba(157, 77, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #101016, #09090d);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.next-panel > * {
  position: relative;
  z-index: 1;
}

.next-panel-index {
  color: rgba(192, 118, 255, 0.16);
  font: 800 clamp(6rem, 11vw, 9rem)/0.8 var(--font-mono);
  letter-spacing: -0.09em;
}

.next-panel-label {
  display: block;
  margin-bottom: 13px;
  color: var(--purple-2);
  font: 650 0.59rem/1.2 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-panel h3 {
  max-width: 660px;
  margin-bottom: 13px;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.next-panel p {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 0.85rem;
}

.next-panel ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.next-panel li {
  padding: 7px 10px;
  border: 1px solid rgba(192, 118, 255, 0.16);
  border-radius: 999px;
  background: rgba(157, 77, 255, 0.07);
  color: #b9b3be;
  font-size: 0.62rem;
}

.next-panel-note {
  margin-top: 20px;
  padding-left: 16px;
  border-left: 2px solid var(--success);
  color: #8f8994;
  font-size: 0.67rem;
}

.next-panel-controls {
  align-self: end;
  display: grid;
  grid-template-columns: 36px auto 36px;
  align-items: center;
  gap: 9px;
}

.next-control {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  cursor: pointer;
}

.next-control:hover:not(:disabled) {
  border-color: var(--purple-2);
  background: rgba(157, 77, 255, 0.12);
}

.next-control:disabled {
  opacity: 0.3;
  cursor: default;
}

.next-panel-controls span {
  color: #77717d;
  font: 600 0.57rem/1 var(--font-mono);
}

.next-panel-controls b {
  color: #fff;
}

.next-cta-row {
  margin-top: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.next-cta-row > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #928b97;
  font-size: 0.72rem;
}

.next-cta-row > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(142, 240, 190, 0.07), 0 0 11px rgba(142, 240, 190, 0.65);
}

@keyframes demo-content-in {
  from {
    opacity: 0.35;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-ready .landing-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.68s ease var(--reveal-delay, 0ms),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.landing-ready .landing-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.card-pointer-glow {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .interactive-card {
    transform-style: preserve-3d;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .interactive-card .card-pointer-glow {
    display: block;
    position: absolute;
    z-index: 5;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(360px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(193, 121, 255, 0.11), transparent 56%);
    transition: opacity 0.2s ease;
  }

  .interactive-card.is-pointer-active {
    transform: perspective(950px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-5px);
    border-color: rgba(192, 118, 255, 0.38);
    box-shadow: 0 27px 65px rgba(0, 0, 0, 0.36);
  }

  .interactive-card.is-pointer-active .card-pointer-glow {
    opacity: 1;
  }

  .is-landing .browser-card {
    transform:
      perspective(1000px)
      rotateY(calc(-5deg + var(--hero-rotate-y, 0deg)))
      rotateX(calc(2deg + var(--hero-rotate-x, 0deg)))
      translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0);
    transition: transform 0.22s ease-out;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .is-landing .hero-grid {
    animation: landing-grid-drift 22s linear infinite;
  }

  .is-landing .chip-one {
    animation: landing-chip-float 5.2s ease-in-out infinite;
  }

  .is-landing .chip-two {
    animation: landing-chip-float 5.2s ease-in-out -2.6s infinite;
  }
}

@keyframes fit-result-in {
  from {
    opacity: 0.42;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-grid-drift {
  to {
    background-position: 58px 58px;
  }
}

@keyframes landing-chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .portfolio-heading,
  .comparison-heading,
  .next-heading {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.65fr);
    gap: 44px;
  }

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

  .demo-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .demo-tabs button {
    min-width: 0;
    min-height: 116px;
    align-content: start;
  }

  .demo-disclosure {
    margin-top: 0;
  }

  .builder-breakdown-grid,
  .builder-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .builder-invite-action {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .builder-invite-action-button-wrap {
    align-items: stretch;
  }

  .builder-invite-cta {
    width: 100%;
    justify-content: center;
  }

  .next-panel {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .next-panel-controls {
    grid-column: 2;
    justify-self: end;
  }

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

  .fit-intro {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fit-options {
    grid-template-columns: repeat(3, 1fr);
  }

  .fit-option {
    min-width: 0;
    grid-template-columns: 1fr;
    align-content: start;
  }

  .fit-option:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 700px) {
  .landing-ambient {
    display: none;
  }

  .portfolio-heading,
  .comparison-heading,
  .next-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 35px;
  }

  .portfolio-heading > p,
  .comparison-heading > p,
  .next-heading > p {
    margin-bottom: 0;
  }

  .demo-tabs {
    grid-template-columns: 1fr;
  }

  .demo-tabs button {
    min-height: 82px;
    grid-template-columns: 32px 1fr;
  }

  .demo-tabs button:hover {
    transform: none;
  }

  .demo-stage {
    min-height: 0;
    border-radius: 18px;
  }

  .demo-stage-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding: 14px;
  }

  .demo-device-toggle {
    width: 100%;
  }

  .demo-device-toggle button {
    flex: 1;
  }

  .demo-canvas {
    min-height: 470px;
    padding: 16px;
  }

  .demo-site {
    min-height: 420px;
    padding: 20px;
  }

  .demo-site-hero {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 30px 0 22px;
  }

  .demo-art {
    min-height: 125px;
    grid-row: 1;
  }

  .demo-site-title {
    font-size: 2rem;
  }

  .demo-metrics {
    grid-template-columns: 1fr;
  }

  .builder-pricing-overview {
    padding: 22px 16px;
  }

  .builder-breakdown-grid,
  .builder-pillars-grid {
    grid-template-columns: 1fr;
  }

  .builder-pricing-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .builder-pricing-stats {
    width: 100%;
  }

  .builder-stat-pill {
    font-size: 0.66rem;
    padding: 5px 10px;
  }

  .builder-invite-action {
    padding: 22px 16px;
  }

  .builder-action-guarantees {
    flex-direction: column;
    gap: 6px;
  }

  .next-track {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 16px;
  }

  .next-track::before,
  .next-track::after {
    left: 26px;
    right: auto;
    top: 26px;
    width: 1px;
    height: calc(100% - 52px);
  }

  .next-track::after {
    bottom: auto;
    height: calc((100% - 52px) * var(--next-progress, 0) / 100);
    transition: height 0.38s ease;
  }

  .next-track button {
    min-height: 72px;
    grid-template-columns: 52px 1fr 5px;
    align-items: center;
    justify-items: start;
    gap: 14px;
    text-align: left;
  }

  .next-track button i {
    justify-self: end;
    margin-right: 8px;
  }

  .next-panel {
    min-height: 470px;
    padding: 28px 23px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 20px;
    border-radius: 20px;
  }

  .next-panel-index {
    position: absolute;
    top: 29px;
    right: 29px;
    font-size: 5rem;
  }

  .next-panel-copy {
    padding-top: 64px;
  }

  .next-panel ul {
    display: grid;
  }

  .next-panel-controls {
    grid-column: 1;
    justify-self: end;
  }

  .next-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .next-cta {
    width: 100%;
  }

  .fit-finder {
    padding: 66px 0 72px;
  }

  .fit-shell {
    border-radius: 22px;
  }

  .fit-intro,
  .fit-result {
    padding: 30px 24px;
  }

  .fit-intro h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .fit-options {
    grid-template-columns: 1fr;
  }

  .fit-option {
    min-height: 72px;
    grid-template-columns: 34px 1fr;
  }

  .fit-option:hover {
    transform: none;
  }

  .fit-result-visual {
    height: 78px;
  }

  .fit-result-visual > div {
    left: 42px;
    right: 42px;
    margin-top: -48px;
  }

  .fit-result-topline {
    align-items: flex-start;
  }

  .fit-price {
    white-space: nowrap;
  }

  .fit-cta {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .demo-site-nav > span i:nth-child(n + 2) {
    display: none;
  }

  .demo-canvas {
    padding: 11px;
  }

  .builder-pricing-overview {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .builder-stage-card,
  .builder-pillar-card {
    padding: 16px 14px;
  }

  .next-panel {
    padding-inline: 20px;
  }

  .next-cta-row {
    padding-inline: 17px;
  }

  .fit-shell {
    width: calc(100vw - 24px);
  }

  .fit-intro,
  .fit-result {
    padding: 27px 20px;
  }

  .fit-match {
    max-width: 165px;
  }
}

/* Landing motion system v4 */
.is-landing {
  --landing-cyan: #62ddff;
  --landing-violet: #b96cff;
  --landing-magenta: #df62ff;
  --landing-ink: #050507;
}

.is-landing .site-header {
  border-bottom-color: rgba(196, 121, 255, 0.13);
  background: rgba(5, 5, 7, 0.82);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.is-landing .site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 5%, rgba(158, 73, 255, 0.15), rgba(223, 98, 255, 0.68), rgba(98, 221, 255, 0.3), transparent 95%);
  transform: scaleX(0.72);
  opacity: 0.65;
}

.landing-progress {
  height: 3px;
}

.landing-progress span {
  background: linear-gradient(90deg, #6d25c8, #c45fff 58%, #62ddff 88%, #fff);
  box-shadow: 0 0 18px rgba(197, 95, 255, 0.9);
}

.landing-ambient {
  width: 540px;
  height: 540px;
  opacity: 0.12;
  background: radial-gradient(circle, rgba(185, 108, 255, 0.62), rgba(98, 221, 255, 0.1) 38%, transparent 70%);
  filter: blur(12px);
}

.landing-motion-section {
  isolation: isolate;
}

.is-landing .hero {
  min-height: calc(100svh - 76px);
  overflow: clip;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 42%, rgba(121, 35, 213, 0.25), transparent 31%),
    radial-gradient(circle at 42% 105%, rgba(92, 32, 143, 0.12), transparent 34%),
    linear-gradient(148deg, #050507 4%, #08060d 52%, #0b0613 100%);
}

.is-landing .hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 24%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 7, 0.78));
}

.is-landing .hero-grid {
  z-index: 0;
  inset: -16%;
  background-size: 72px 72px;
  opacity: 0.42;
  transform: translate3d(var(--hero-grid-x, 0px), var(--hero-grid-y, 0px), 0) rotate(-0.01deg);
  animation: none;
  will-change: transform;
}

.is-landing .hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 24%, rgba(202, 117, 255, 0.055) 48%, transparent 64%);
  transform: translate3d(-38%, 0, 0);
}

.hero-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  contain: strict;
  transform: translateZ(0);
}

.hero-aurora {
  position: absolute;
  border-radius: 50%;
  opacity: 0.42;
  filter: none;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.hero-aurora-one {
  top: 4%;
  right: -7%;
  width: min(54vw, 820px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 42% 44%, rgba(181, 73, 255, 0.34), rgba(102, 31, 186, 0.1) 44%, transparent 69%);
  transform: translateZ(0);
}

.hero-aurora-two {
  bottom: -34%;
  left: 22%;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(74, 202, 255, 0.12), rgba(180, 80, 255, 0.1) 38%, transparent 70%);
  transform: translateZ(0);
}

.hero-beam {
  position: absolute;
  top: -28%;
  right: 14%;
  width: 2px;
  height: 150%;
  opacity: 0.28;
  background: linear-gradient(180deg, transparent, rgba(223, 129, 255, 0.78), rgba(98, 221, 255, 0.25), transparent);
  box-shadow: 0 0 26px rgba(197, 91, 255, 0.35);
  transform: rotate(28deg) translateZ(0);
  transform-origin: center;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(196, 121, 255, 0.15);
  border-radius: 50%;
  opacity: 0.75;
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.hero-orbit-one {
  top: 20%;
  right: 7%;
  width: min(41vw, 620px);
  aspect-ratio: 1;
  transform: rotateX(67deg) rotateZ(-18deg) translateZ(0);
}

.hero-orbit-two {
  top: 30%;
  right: 14%;
  width: min(30vw, 450px);
  aspect-ratio: 1;
  border-color: rgba(98, 221, 255, 0.12);
  transform: rotateX(64deg) rotateZ(24deg) translateZ(0);
}

.hero-orbit i {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d879ff;
  box-shadow: 0 0 16px rgba(216, 121, 255, 0.9);
}

.hero-orbit i:nth-child(2) {
  top: 12%;
  left: 76%;
  width: 5px;
  height: 5px;
  background: var(--landing-cyan);
  box-shadow: 0 0 14px rgba(98, 221, 255, 0.8);
}

.hero-orbit i:nth-child(3) {
  top: 86%;
  left: 66%;
  width: 4px;
  height: 4px;
}

.hero-star-field,
.hero-star-field i {
  position: absolute;
}

.hero-star-field {
  inset: 0;
}

.hero-star-field i {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(236, 214, 255, 0.8);
  box-shadow: 0 0 9px rgba(201, 130, 255, 0.78);
  opacity: 0.3;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.hero-star-field i:nth-child(1) { top: 14%; left: 47%; }
.hero-star-field i:nth-child(2) { top: 24%; left: 71%; }
.hero-star-field i:nth-child(3) { top: 12%; left: 87%; }
.hero-star-field i:nth-child(4) { top: 39%; left: 53%; }
.hero-star-field i:nth-child(5) { top: 49%; left: 92%; }
.hero-star-field i:nth-child(6) { top: 62%; left: 62%; }
.hero-star-field i:nth-child(7) { top: 78%; left: 82%; }
.hero-star-field i:nth-child(8) { top: 87%; left: 44%; }
.hero-star-field i:nth-child(9) { top: 68%; left: 30%; }
.hero-star-field i:nth-child(10) { top: 30%; left: 34%; }
.hero-star-field i:nth-child(11) { top: 18%; left: 18%; }
.hero-star-field i:nth-child(12) { top: 84%; left: 13%; }
.hero-star-field i:nth-child(13) { top: 55%; left: 8%; }
.hero-star-field i:nth-child(14) { top: 8%; left: 60%; }

.is-landing .hero-layout {
  position: relative;
  z-index: 3;
  min-height: calc(100svh - 76px);
  padding-top: clamp(54px, 7vh, 88px);
  padding-bottom: clamp(62px, 8vh, 100px);
}

.is-landing .hero-copy {
  position: relative;
  z-index: 4;
}

.is-landing .hero-copy h1 {
  max-width: 720px;
  letter-spacing: -0.066em;
  text-wrap: balance;
  filter: drop-shadow(0 16px 38px rgba(0, 0, 0, 0.24));
}

.is-landing .hero-copy h1 em {
  color: transparent;
  background: linear-gradient(110deg, #f2dfff 3%, #cf8cff 38%, #9f43ef 72%, #70d6ff 118%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 24px rgba(184, 89, 255, 0.13));
}

.is-landing .hero-copy > .eyebrow,
.is-landing .hero-copy > h1,
.is-landing .hero-copy > .hero-lede,
.is-landing .hero-copy > .hero-mobile-signal,
.is-landing .hero-copy > .hero-actions,
.is-landing .hero-copy > .hero-note {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.landing-ready .hero-copy > .eyebrow,
.landing-ready .hero-copy > h1,
.landing-ready .hero-copy > .hero-lede,
.landing-ready .hero-copy > .hero-mobile-signal,
.landing-ready .hero-copy > .hero-actions,
.landing-ready .hero-copy > .hero-note {
  animation: hero-copy-enter 0.82s cubic-bezier(0.18, 0.88, 0.25, 1) both;
}

.landing-ready .hero-copy > h1 { animation-delay: 90ms; }
.landing-ready .hero-copy > .hero-lede { animation-delay: 180ms; }
.landing-ready .hero-copy > .hero-mobile-signal { animation-delay: 235ms; }
.landing-ready .hero-copy > .hero-actions { animation-delay: 290ms; }
.landing-ready .hero-copy > .hero-note { animation-delay: 390ms; }

.is-landing .hero-visual {
  z-index: 3;
  opacity: 0;
  transform: translate3d(44px, 18px, 0) scale(0.94);
}

.landing-ready .hero-visual {
  animation: hero-stage-enter 1.05s cubic-bezier(0.16, 1, 0.3, 1) 240ms both;
}

.is-landing .browser-card {
  isolation: isolate;
  border-color: rgba(202, 132, 255, 0.3);
  background:
    radial-gradient(circle at 82% 18%, rgba(154, 64, 238, 0.12), transparent 27%),
    linear-gradient(155deg, rgba(18, 13, 25, 0.98), rgba(8, 8, 12, 0.98));
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(220, 168, 255, 0.045) inset,
    0 0 70px rgba(135, 50, 221, 0.14);
}

.is-landing .browser-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(211, 144, 255, 0.5), transparent 23%, transparent 69%, rgba(98, 221, 255, 0.26));
  opacity: 0.34;
  filter: blur(0.2px);
}

.is-landing .browser-bar {
  position: relative;
  z-index: 3;
  border-bottom-color: rgba(195, 126, 255, 0.13);
  background: rgba(9, 8, 13, 0.88);
  backdrop-filter: blur(12px);
}

.is-landing .browser-body {
  position: relative;
  z-index: 1;
}

.is-landing .mock-title b,
.is-landing .mock-copy i,
.is-landing .mock-actions span,
.is-landing .mock-cards span,
.is-landing .mock-tag,
.is-landing .mock-logo {
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease,
    background-color 0.55s ease,
    box-shadow 0.55s ease;
}

.is-landing .mock-title b,
.is-landing .mock-copy i {
  position: relative;
  overflow: hidden;
}

.is-landing .mock-title b::after,
.is-landing .mock-copy i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-130%);
}

.is-landing .mock-cards span {
  background: linear-gradient(145deg, rgba(156, 76, 233, 0.07), rgba(255, 255, 255, 0.015));
}

.is-landing .hero[data-hero-scene="0"] .mock-title b:nth-child(2),
.is-landing .hero[data-hero-scene="0"] .mock-title b:nth-child(3),
.is-landing .hero[data-hero-scene="0"] .mock-copy,
.is-landing .hero[data-hero-scene="0"] .mock-actions,
.is-landing .hero[data-hero-scene="0"] .mock-cards {
  opacity: 0.48;
  transform: translateY(6px) scaleX(0.94);
  transform-origin: left;
}

.is-landing .hero[data-hero-scene="1"] .mock-title b::after,
.is-landing .hero[data-hero-scene="1"] .mock-copy i::after {
  animation: mock-line-shine 0.72s ease both;
}

.is-landing .hero[data-hero-scene="1"] .mock-cards span:nth-child(2) {
  transform: translateY(-5px);
  border-color: rgba(187, 98, 255, 0.34);
  box-shadow: 0 12px 26px rgba(127, 46, 203, 0.12);
}

.is-landing .hero[data-hero-scene="2"] .mock-cards span {
  transform: translateY(-4px);
  border-color: rgba(98, 221, 255, 0.15);
}

.is-landing .hero[data-hero-scene="2"] .mock-actions span:first-child {
  box-shadow: 0 0 28px rgba(163, 68, 255, 0.36);
}

.browser-energy {
  position: absolute;
  z-index: 6;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.browser-scan {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(218, 144, 255, 0.92), rgba(98, 221, 255, 0.65), transparent);
  box-shadow: 0 0 22px rgba(196, 98, 255, 0.52);
  transform: translateY(0);
}

.browser-corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(192, 110, 255, 0.6);
}

.browser-corner-one {
  top: 10px;
  left: 10px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-radius: 9px 0 0;
}

.browser-corner-two {
  right: 10px;
  bottom: 10px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-radius: 0 0 9px;
}

.mock-cursor {
  position: absolute;
  z-index: 8;
  top: 44%;
  left: 48%;
  width: 25px;
  height: 29px;
  opacity: 0;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.5));
}

.mock-cursor i {
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid #f7eaff;
  border-right: 8px solid transparent;
  transform: rotate(-20deg);
}

.mock-cursor::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 9px;
  width: 5px;
  height: 9px;
  border-radius: 4px;
  background: #b65bff;
  transform: rotate(-32deg);
}

.hero-interface {
  position: absolute;
  z-index: 10;
  left: -54px;
  right: -18px;
  bottom: -76px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  pointer-events: none;
}

.hero-build-status {
  min-width: 230px;
  padding: 15px 17px;
  display: grid;
  gap: 7px;
  border: 1px solid rgba(199, 122, 255, 0.27);
  border-radius: 14px;
  background: rgba(10, 8, 14, 0.86);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42), 0 0 32px rgba(143, 49, 224, 0.1);
  backdrop-filter: blur(16px);
}

.hero-build-status > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a9dfc0;
  font: 700 0.52rem/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-build-status > span i,
.mobile-conversion-dock > span > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8ef0be;
  box-shadow: 0 0 0 4px rgba(142, 240, 190, 0.08), 0 0 12px rgba(142, 240, 190, 0.75);
}

.hero-build-status > strong {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
}

.hero-build-status > small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8f8894;
  font: 650 0.55rem/1 var(--font-mono);
  text-transform: uppercase;
}

.hero-build-status b {
  color: #c98aff;
  font: inherit;
}

.hero-build-status em {
  color: #77717c;
  font: inherit;
  font-style: normal;
}

.hero-stage-rail {
  min-width: 286px;
  padding: 11px 13px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  background: rgba(8, 7, 11, 0.78);
  backdrop-filter: blur(14px);
}

.hero-stage-rail span {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  color: #716b75;
  font: 650 0.5rem/1 var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.38s ease;
}

.hero-stage-rail i {
  position: relative;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.hero-stage-rail i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #9d4dff, #db8cff, #62ddff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s ease;
}

.hero-stage-rail .is-active,
.hero-stage-rail .is-complete {
  color: #d8cedd;
}

.hero-stage-rail .is-active i::after,
.hero-stage-rail .is-complete i::after {
  transform: scaleX(1);
}

.hero-stage-rail .is-active i::after {
  box-shadow: 0 0 10px rgba(190, 101, 255, 0.62);
}

.hero-mobile-signal {
  display: none;
}

.is-landing .hero-actions .button:first-child,
.is-landing .header-cta,
.is-landing .cta-section .button {
  background-image: linear-gradient(105deg, #812bd7, #ad42f2 38%, #d15dff 52%, #9b39e7 66%, #812bd7);
  background-size: 240% 100%;
  box-shadow: 0 12px 32px rgba(143, 49, 224, 0.24), 0 0 0 1px rgba(236, 194, 255, 0.12) inset;
}

.is-landing .hero-actions .button:first-child:hover,
.is-landing .header-cta:hover,
.is-landing .cta-section .button:hover {
  box-shadow: 0 16px 42px rgba(160, 55, 239, 0.36), 0 0 26px rgba(203, 98, 255, 0.2);
}

.is-landing .samples-hero-cta {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.is-landing .samples-hero-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.12), transparent 72%);
  transform: translateX(-120%);
}

.momentum-band {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid rgba(195, 117, 255, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(140, 42, 224, 0.12), transparent 54%),
    #070609;
  contain: layout paint;
  transform: translateZ(0);
}

.momentum-window {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.momentum-track {
  width: max-content;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 0;
  will-change: transform;
  contain: layout paint;
  transform: translateZ(0);
}

.momentum-track span {
  min-width: max-content;
  padding-inline: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #9d96a3;
  font: 700 0.63rem/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.momentum-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bd6cff;
  box-shadow: 0 0 12px rgba(189, 108, 255, 0.8);
}

.is-landing .proof-strip {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent, rgba(139, 47, 216, 0.075) 50%, transparent),
    #060608;
  contain: layout style;
  transform: translateZ(0);
}

.is-landing .proof-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.is-landing .proof-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 7%;
  right: 7%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(188, 105, 255, 0.55), rgba(98, 221, 255, 0.36), transparent);
  transform: scaleX(0);
  transform-origin: left;
}

.is-landing .proof-grid > * {
  position: relative;
  z-index: 1;
  background: #060608;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 23px 28px;
  border-right: 1px solid var(--line, rgba(255, 255, 255, 0.08));
  box-sizing: border-box;
}

.is-landing .proof-grid > *:first-child {
  padding-left: 28px;
}

.is-landing .proof-grid > *:last-child {
  border-right: 0;
}

.is-landing .proof-grid > * span {
  display: grid;
  gap: 4px;
  text-align: left;
}

@media (max-width: 900px) {
  .is-landing .proof-grid {
    grid-template-columns: 1fr;
  }
  .is-landing .proof-grid > * {
    justify-content: center;
    border-right: 0;
    border-bottom: 1px solid var(--line, rgba(255, 255, 255, 0.08));
    padding: 20px 24px;
  }
  .is-landing .proof-grid > *:first-child {
    padding-left: 24px;
  }
  .is-landing .proof-grid > *:last-child {
    border-bottom: 0;
  }
}

.is-landing .proof-strip.is-in-view .proof-grid::before {
  animation: proof-line 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.is-landing .proof-strip.is-in-view .proof-grid > * {
  animation: proof-item-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.is-landing .proof-strip.is-in-view .proof-grid > *:nth-child(2) { animation-delay: 120ms; }
.is-landing .proof-strip.is-in-view .proof-grid > *:nth-child(3) { animation-delay: 240ms; }

.samples-home-feature {
  background:
    radial-gradient(circle at var(--sample-glow-x, 80%) 20%, rgba(134, 43, 226, 0.3), transparent 35%),
    radial-gradient(circle at 18% 78%, rgba(98, 221, 255, 0.055), transparent 26%),
    linear-gradient(158deg, #0a0710, #060608 68%);
}

.samples-home-feature::before {
  opacity: 0.34;
  transform: translate3d(0, var(--sample-grid-shift, 0px), 0);
}

.samples-home-layout {
  min-height: 720px;
}

.samples-home-preview-stack {
  transform: translate3d(0, var(--sample-shift, 0px), 0);
  transition: transform 0.12s linear;
}

.samples-home-preview,
.samples-home-preview-mini {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48), 0 0 45px rgba(127, 45, 204, 0.1);
}

.samples-home-preview::after {
  background: linear-gradient(180deg, transparent 34%, rgba(6, 5, 8, 0.2) 54%, rgba(6, 5, 8, 0.96));
}

.samples-home-preview img,
.samples-home-preview-mini img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.samples-home-feature.is-in-view .samples-home-preview img {
  animation: sample-image-breathe 12s ease-in-out 1.1s 2 alternate;
}

.samples-home-preview-mini {
  transform: rotate(3.4deg) translate3d(0, var(--sample-mini-shift, 0px), 0);
}

.samples-live-badge i,
.samples-hero-live i {
  animation: live-signal 2.2s ease-out 4;
}

.fit-finder {
  background:
    radial-gradient(circle at 76% 24%, rgba(132, 43, 224, 0.16), transparent 28%),
    linear-gradient(180deg, #060608, #08060b);
}

.fit-shell {
  position: relative;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), 0 0 60px rgba(126, 39, 208, 0.075);
}

.fit-shell::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(206, 134, 255, 0.36), transparent 22%, transparent 72%, rgba(98, 221, 255, 0.18));
  opacity: 0.44;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.fit-intro,
.fit-result {
  position: relative;
  z-index: 1;
}

.fit-option.is-active {
  box-shadow: 0 14px 30px rgba(122, 37, 197, 0.12), 0 0 0 1px rgba(205, 135, 255, 0.08) inset;
}

.fit-option.is-active .fit-option-number {
  text-shadow: 0 0 18px rgba(198, 105, 255, 0.55);
}

.fit-result-visual > span,
.fit-result-visual > div i {
  transform-origin: left;
}

.fit-result.is-switching .fit-result-visual > span,
.fit-result.is-switching .fit-result-visual > div i {
  animation: visual-line-build 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fit-result.is-switching .fit-result-visual > span:nth-child(2),
.fit-result.is-switching .fit-result-visual > div i:nth-child(2) { animation-delay: 60ms; }
.fit-result.is-switching .fit-result-visual > span:nth-child(3),
.fit-result.is-switching .fit-result-visual > div i:nth-child(3) { animation-delay: 120ms; }

.services-preview {
  background:
    radial-gradient(circle at 11% 18%, rgba(100, 214, 255, 0.035), transparent 24%),
    radial-gradient(circle at 88% 76%, rgba(156, 65, 235, 0.09), transparent 29%);
}

.unified-builder-banner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin: -12px 0 26px;
  padding: 15px 20px;
  border: 1px solid rgba(174, 91, 240, 0.34);
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(88, 29, 129, 0.22), rgba(31, 14, 45, 0.9), rgba(88, 29, 129, 0.22));
  color: #bdaacb;
  font: 600 0.68rem/1.4 ui-monospace, Cascadia Code, monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.unified-builder-banner > span:last-child { text-align: right; }
.unified-builder-banner b { color: #d79cff; margin-right: 6px; }
.unified-builder-banner strong { display: flex; align-items: center; gap: 12px; color: #f7efff; white-space: nowrap; }
.unified-builder-banner strong i { width: 38px; height: 1px; background: linear-gradient(90deg, transparent, #b95bff); }
.unified-builder-banner strong i:last-child { background: linear-gradient(90deg, #b95bff, transparent); }
.services-preview .service-grid { position: relative; }
.services-preview .service-grid::before {
  content: "";
  position: absolute;
  top: -27px;
  left: 16.67%;
  right: 16.67%;
  height: 28px;
  border-top: 1px solid rgba(185, 91, 255, 0.34);
  border-left: 1px solid rgba(185, 91, 255, 0.34);
  border-right: 1px solid rgba(185, 91, 255, 0.34);
  pointer-events: none;
}
.unified-builder-card { position: relative; }
.unified-builder-card .popular-label { display: none; }
.unified-builder-card .card-eyebrow { color: #ca8df8; }
.unified-builder-card .price-row span { color: #ca9eed; }
.unified-builder-card .button { min-height: 52px; }

@media (max-width: 860px) {
  .unified-builder-banner { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .unified-builder-banner > span:last-child { text-align: center; }
  .unified-builder-banner strong { justify-content: center; order: -1; }
  .services-preview .service-grid::before { display: none; }
}

.service-card,
.difference-grid > *,
.process-grid > article {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.service-card:hover,
.difference-grid > *:hover,
.process-grid > article:hover {
  border-color: rgba(194, 118, 255, 0.28);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.26), 0 0 28px rgba(132, 42, 212, 0.07);
}

.portfolio-showcase {
  background:
    radial-gradient(circle at 74% 50%, hsla(var(--demo-hue, 276), 74%, 54%, 0.08), transparent 33%),
    #060608;
}

.demo-stage {
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42), 0 0 48px rgba(119, 39, 194, 0.08);
}

.portfolio-showcase.is-in-view .demo-art > span {
  animation: demo-art-float 4.8s ease-in-out 3;
}

.portfolio-showcase.is-in-view .demo-art > span:nth-child(2) { animation-delay: -1.6s; }
.portfolio-showcase.is-in-view .demo-art > span:nth-child(3) { animation-delay: -3.2s; }

.package-comparison,
.custom-builder-invitation {
  position: relative;
  overflow: hidden;
}

.difference-section {
  background:
    radial-gradient(circle at 8% 22%, rgba(177, 74, 245, 0.075), transparent 27%),
    radial-gradient(circle at 88% 76%, rgba(98, 221, 255, 0.03), transparent 25%);
}

.landing-ready .difference-grid > .landing-reveal:nth-child(odd),
.landing-ready .process-grid > .landing-reveal:nth-child(odd) {
  transform: translate3d(-24px, 14px, 0);
}

.landing-ready .difference-grid > .landing-reveal:nth-child(even),
.landing-ready .process-grid > .landing-reveal:nth-child(even) {
  transform: translate3d(24px, 14px, 0);
}

.landing-ready .difference-grid > .landing-reveal.is-visible,
.landing-ready .process-grid > .landing-reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.approach-section .capability-stack > *,
.friction-section .friction-table > * {
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.process-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 110%, rgba(151, 51, 232, 0.14), transparent 42%),
    #070609;
}

.process-grid {
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, #963be5, #d77cff, #62ddff);
  box-shadow: 0 0 14px rgba(190, 92, 255, 0.3);
  transform: scaleX(0);
  transform-origin: left;
}

.process-band.is-in-view .process-grid::before {
  animation: process-line-build 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.process-grid > article {
  position: relative;
  z-index: 1;
}

.founder-band .founder-mark,
.founder-band .brand-mark {
  filter: drop-shadow(0 0 28px rgba(161, 76, 237, 0.16));
}

.next-steps {
  background:
    radial-gradient(circle at 16% 62%, rgba(135, 42, 218, 0.1), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(98, 221, 255, 0.025), transparent 24%);
}

.next-track::after {
  box-shadow: 0 0 16px rgba(190, 102, 255, 0.4);
}

.next-track button.is-active > span {
  box-shadow: 0 0 0 6px rgba(157, 77, 255, 0.08), 0 0 18px rgba(183, 88, 255, 0.35);
}

.next-panel {
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.4), 0 0 46px rgba(122, 40, 200, 0.07);
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 120%, rgba(173, 64, 245, 0.22), transparent 48%),
    #060608;
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(194, 111, 255, 0.12);
  border-radius: 50%;
  left: 50%;
  top: 50%;
}

.cta-section::before {
  width: 680px;
  height: 680px;
  margin: -340px 0 0 -340px;
}

.cta-section::after {
  width: 480px;
  height: 480px;
  margin: -240px 0 0 -240px;
  border-color: rgba(98, 221, 255, 0.06);
}

.cta-section .cta-inner,
.cta-section .cta-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-color: rgba(203, 127, 255, 0.26);
  background:
    radial-gradient(circle at 84% 14%, rgba(196, 86, 255, 0.19), transparent 31%),
    linear-gradient(145deg, rgba(32, 15, 45, 0.92), rgba(13, 9, 18, 0.96));
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.44), 0 0 62px rgba(135, 43, 216, 0.09);
}

.cta-section.is-in-view .cta-inner::after,
.cta-section.is-in-view .cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.075), transparent 68%);
  transform: translateX(-120%);
  animation: cta-panel-sweep 1s ease 0.4s both;
}

.mobile-conversion-dock {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .samples-home-preview:hover img {
    transform: scale(1.025) translateY(-5px);
    filter: saturate(1.08) contrast(1.02);
  }

  .samples-home-preview-mini:hover {
    transform: rotate(1.4deg) translate3d(0, calc(var(--sample-mini-shift, 0px) - 7px), 0);
  }

  .samples-home-preview-mini:hover img {
    transform: scale(1.045);
  }

  .approach-section .capability-stack > *:hover,
  .friction-section .friction-table > *:hover {
    transform: translateX(6px);
    border-color: rgba(195, 117, 255, 0.25);
    background-color: rgba(156, 74, 230, 0.035);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .landing-ready .hero.is-in-view .hero-grid::after {
    animation: hero-grid-sweep 8s ease-in-out 0.8s infinite;
  }

  .hero.is-in-view .hero-aurora-one {
    animation: aurora-one 11s ease-in-out infinite alternate;
  }

  .hero.is-in-view .hero-aurora-two {
    animation: aurora-two 13s ease-in-out -4s infinite alternate;
  }

  .hero.is-in-view .hero-beam {
    animation: hero-beam-breathe 7s ease-in-out infinite;
  }

  .hero.is-in-view .hero-orbit-one {
    animation: hero-orbit-one 18s linear infinite;
  }

  .hero.is-in-view .hero-orbit-two {
    animation: hero-orbit-two 15s linear infinite reverse;
  }

  .hero.is-in-view .hero-star-field i {
    animation: star-twinkle 3.6s ease-in-out infinite;
    animation-delay: calc(var(--star-index) * -0.29s);
  }

  .landing-ready .browser-scan {
    animation: browser-scan 3.3s cubic-bezier(0.22, 1, 0.36, 1) 0.9s 2;
  }

  .hero.is-in-view .mock-cursor {
    animation: mock-cursor-path 6.2s cubic-bezier(0.45, 0, 0.2, 1) 1.6s infinite;
  }

  .hero.is-in-view .hero-logo-ghost {
    animation: hero-logo-float 7s ease-in-out infinite;
  }

  .is-landing .hero-actions .button:first-child,
  .is-landing .header-cta,
  .is-landing .cta-section .button {
    animation: cta-energy 6s ease-in-out infinite;
  }

  .is-landing .samples-hero-cta::after {
    animation: sample-cta-sweep 5.4s ease-in-out 1.4s infinite;
  }

  .momentum-track {
    animation: momentum-flow 29s linear infinite;
  }

  .cta-section.is-in-view::before {
    animation: cta-orbit 20s linear infinite;
  }

  .cta-section.is-in-view::after {
    animation: cta-orbit 16s linear infinite reverse;
  }
}

@keyframes hero-copy-enter {
  from { opacity: 0; transform: translate3d(0, 28px, 0); filter: blur(7px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}

@keyframes hero-stage-enter {
  from { opacity: 0; transform: translate3d(54px, 24px, 0) scale(0.92); filter: blur(7px); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}

@keyframes hero-grid-sweep {
  0%, 16% { transform: translate3d(-38%, 0, 0); opacity: 0; }
  40% { opacity: 1; }
  72%, 100% { transform: translate3d(58%, 0, 0); opacity: 0; }
}

@keyframes aurora-one {
  from { transform: translate3d(-2%, -2%, 0) scale(0.96); opacity: 0.34; }
  to { transform: translate3d(4%, 3%, 0) scale(1.08); opacity: 0.52; }
}

@keyframes aurora-two {
  from { transform: translate3d(-3%, 2%, 0) scale(0.94); opacity: 0.25; }
  to { transform: translate3d(5%, -3%, 0) scale(1.1); opacity: 0.43; }
}

@keyframes hero-beam-breathe {
  0%, 100% { opacity: 0.12; transform: rotate(28deg) translateX(-12px); }
  50% { opacity: 0.42; transform: rotate(28deg) translateX(12px); }
}

@keyframes hero-orbit-one {
  to { transform: rotateX(67deg) rotateZ(342deg); }
}

@keyframes hero-orbit-two {
  to { transform: rotateX(64deg) rotateZ(384deg); }
}

@keyframes star-twinkle {
  0%, 100% { opacity: 0.12; transform: scale(0.7); }
  48% { opacity: 0.9; transform: scale(1.6); }
}

@keyframes browser-scan {
  0% { opacity: 0; transform: translateY(0); }
  12% { opacity: 0.85; }
  82% { opacity: 0.35; }
  100% { opacity: 0; transform: translateY(410px); }
}

@keyframes mock-line-shine {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}

@keyframes mock-cursor-path {
  0%, 8% { opacity: 0; transform: translate3d(120px, 90px, 0) scale(0.9); }
  14%, 28% { opacity: 0.9; transform: translate3d(-12px, 18px, 0) scale(1); }
  34%, 48% { opacity: 0.9; transform: translate3d(-86px, 108px, 0) scale(1); }
  54% { transform: translate3d(-86px, 108px, 0) scale(0.82); }
  60%, 75% { opacity: 0.9; transform: translate3d(102px, 164px, 0) scale(1); }
  88%, 100% { opacity: 0; transform: translate3d(138px, 202px, 0) scale(0.94); }
}

@keyframes hero-logo-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); opacity: 0.23; }
  50% { transform: translate3d(8px, -10px, 0) rotate(2deg); opacity: 0.35; }
}

@keyframes cta-energy {
  0%, 24%, 100% { background-position: 0% 50%; }
  52%, 70% { background-position: 100% 50%; }
}

@keyframes sample-cta-sweep {
  0%, 58% { transform: translateX(-120%); opacity: 0; }
  68% { opacity: 1; }
  84%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes momentum-flow {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes proof-line {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes proof-item-in {
  from { opacity: 0.35; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sample-image-breathe {
  from { transform: scale(1.005) translateY(0); }
  to { transform: scale(1.035) translateY(-8px); }
}

@keyframes live-signal {
  0% { box-shadow: 0 0 0 0 rgba(142, 240, 190, 0.35), 0 0 10px rgba(142, 240, 190, 0.8); }
  65%, 100% { box-shadow: 0 0 0 8px rgba(142, 240, 190, 0), 0 0 10px rgba(142, 240, 190, 0.65); }
}

@keyframes visual-line-build {
  from { opacity: 0.22; transform: scaleX(0.35); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes demo-art-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

@keyframes package-column-sweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@keyframes process-line-build {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes cta-panel-sweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@keyframes cta-orbit {
  to { transform: rotate(360deg) scale(1.035); }
}

@media (max-width: 1180px) {
  .hero-interface {
    left: -18px;
    right: -8px;
    bottom: -70px;
  }

  .hero-build-status {
    min-width: 210px;
  }

  .hero-stage-rail {
    min-width: 255px;
  }
}

@media (max-width: 980px) {
  .hero-interface {
    left: 16px;
    right: 16px;
    bottom: -62px;
  }

  .hero-stage-rail {
    display: none;
  }

  .hero-build-status {
    margin-left: auto;
  }

  .samples-home-layout {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .is-landing .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 76% 16%, rgba(132, 42, 224, 0.33), transparent 32%),
      radial-gradient(circle at 20% 46%, rgba(98, 221, 255, 0.055), transparent 28%),
      linear-gradient(160deg, #08050e, #050507 58%);
  }

  .is-landing .hero-layout {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 96px;
  }

  .is-landing .hero-copy h1 {
    letter-spacing: -0.058em;
  }

  .hero-orbit-one {
    top: 3%;
    right: -55%;
    width: 125vw;
  }

  .hero-orbit-two {
    top: 13%;
    right: -35%;
    width: 82vw;
  }

  .hero-beam {
    right: 22%;
    opacity: 0.2;
  }

  .hero-mobile-signal {
    margin: 22px 0 0;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    border: 1px solid rgba(196, 119, 255, 0.19);
    border-radius: 14px;
    background: rgba(10, 7, 14, 0.58);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
  }

  .hero-mobile-signal span {
    min-width: 0;
    padding: 7px 8px;
    display: grid;
    grid-template-columns: 7px auto;
    align-items: center;
    gap: 5px 7px;
    border-radius: 9px;
    color: #756e79;
    transition: color 0.35s ease, background-color 0.35s ease;
  }

  .hero-mobile-signal i {
    width: 6px;
    height: 6px;
    border: 1px solid currentColor;
    border-radius: 50%;
  }

  .hero-mobile-signal b,
  .hero-mobile-signal small {
    font: 650 0.5rem/1 var(--font-mono);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .hero-mobile-signal small {
    grid-column: 1 / -1;
    color: inherit;
  }

  .hero-mobile-signal .is-active {
    background: rgba(153, 67, 230, 0.11);
    color: #d9b3f6;
  }

  .hero-mobile-signal .is-active i {
    background: #b960ff;
    border-color: #b960ff;
    box-shadow: 0 0 10px rgba(185, 96, 255, 0.7);
  }

  .hero-mobile-signal .is-complete {
    color: #9c8aa8;
  }

  .is-landing .hero-visual {
    margin-top: 62px;
  }

  .hero-interface {
    left: 10px;
    right: 10px;
    bottom: -55px;
  }

  .hero-build-status {
    min-width: 205px;
    padding: 13px 14px;
  }

  .momentum-track {
    min-height: 56px;
  }

  .momentum-track span {
    padding-inline: 24px;
  }

  .samples-home-preview-stack {
    transform: none;
  }

  .samples-home-preview-mini {
    transform: rotate(2deg);
  }

  .process-grid::before {
    top: 8%;
    bottom: 8%;
    left: 24px;
    right: auto;
    width: 1px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .process-band.is-in-view .process-grid::before {
    animation-name: process-line-build-mobile;
  }

  .mobile-conversion-dock {
    position: fixed;
    z-index: 980;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    padding: 9px 9px 9px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(203, 126, 255, 0.29);
    border-radius: 17px;
    background: rgba(10, 8, 14, 0.9);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55), 0 0 30px rgba(139, 46, 220, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 22px, 0) scale(0.97);
    transition: opacity 0.3s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
  }

  .mobile-conversion-dock.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .menu-open .mobile-conversion-dock {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 18px, 0) scale(0.97);
    transition: none;
  }

  .mobile-conversion-dock > span {
    min-width: 0;
    display: grid;
    grid-template-columns: 7px minmax(0, 1fr);
    align-items: center;
    gap: 3px 8px;
  }

  .mobile-conversion-dock > span > i {
    grid-row: 1 / 3;
  }

  .mobile-conversion-dock small,
  .mobile-conversion-dock strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-conversion-dock small {
    color: #8f8994;
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .mobile-conversion-dock strong {
    color: #f6eff9;
    font-size: 0.69rem;
  }

  .mobile-conversion-dock .button {
    min-height: 42px;
    padding-inline: 16px;
    flex: 0 0 auto;
    font-size: 0.68rem;
  }
}

@media (max-width: 700px) {
  .landing-ambient {
    display: block;
    width: 310px;
    height: 310px;
    opacity: 0.055;
    filter: blur(8px);
    transform: translate3d(42vw, 12vh, 0);
  }

  .is-landing .hero-layout {
    padding-top: 62px;
  }

  .is-landing .hero-copy h1 {
    font-size: clamp(3rem, 14.4vw, 4.25rem);
    line-height: 0.96;
  }

  .is-landing .hero-copy .hero-lede {
    margin-top: 26px;
  }

  .is-landing .hero-copy .hero-actions {
    margin-top: 27px;
  }

  .hero-mobile-signal {
    margin-top: 20px;
  }

  .is-landing .browser-card {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52), 0 0 42px rgba(132, 43, 218, 0.1);
  }

  .hero-interface {
    bottom: -62px;
  }

  .hero-build-status {
    min-width: 190px;
  }

  .samples-home-feature.is-in-view .samples-home-preview img {
    animation-duration: 15s;
  }

  .landing-ready .difference-grid > .landing-reveal:nth-child(n),
  .landing-ready .process-grid > .landing-reveal:nth-child(n) {
    transform: translate3d(0, 20px, 0);
  }

  .landing-ready .difference-grid > .landing-reveal.is-visible,
  .landing-ready .process-grid > .landing-reveal.is-visible {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 430px) {
  .is-landing .hero-layout {
    padding-top: 54px;
    padding-bottom: 88px;
  }

  .is-landing .hero-copy h1 {
    font-size: clamp(2.78rem, 14vw, 3.55rem);
  }

  .hero-mobile-signal span {
    padding-inline: 6px;
  }

  .hero-mobile-signal b,
  .hero-mobile-signal small {
    font-size: 0.46rem;
  }

  .hero-build-status {
    min-width: 178px;
  }

  .mobile-conversion-dock {
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    left: 8px;
  }

  .mobile-conversion-dock > span small {
    display: none;
  }

  .mobile-conversion-dock > span > i {
    grid-row: auto;
  }

  .mobile-conversion-dock .button {
    padding-inline: 13px;
  }
}

@keyframes process-line-build-mobile {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-progress span,
  .landing-reveal,
  .fit-result > *,
  .fit-option,
  .demo-stage *,
  .demo-browser,
  .demo-tabs button,
  .builder-stage-card,
  .builder-pillar-card,
  .next-track::after,
  .next-track button > span,
  .next-panel *,
  .interactive-card,
  .card-pointer-glow,
  .is-landing .browser-card,
  .is-landing .hero-grid,
  .is-landing .hero-grid::after,
  .is-landing .floating-chip,
  .hero-copy > *,
  .hero-visual,
  .hero-aurora,
  .hero-beam,
  .hero-orbit,
  .hero-star-field i,
  .browser-scan,
  .mock-cursor,
  .hero-logo-ghost,
  .hero-stage-rail i::after,
  .hero-mobile-signal span,
  .momentum-track,
  .proof-grid::before,
  .proof-grid > *,
  .samples-home-preview img,
  .samples-live-badge i,
  .samples-hero-live i,
  .fit-result-visual *,
  .demo-art > span,
  .process-grid::before,
  .cta-section::before,
  .cta-section::after,
  .cta-section .cta-inner::after,
  .cta-section .cta-card::after,
  .mobile-conversion-dock,
  .is-landing .button {
    animation: none !important;
    transition: none !important;
  }

  .landing-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .is-landing .hero-copy > *,
  .is-landing .hero-visual {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .momentum-track {
    transform: none !important;
  }
}

/* Homepage performance and responsive profile v5 */
.is-landing .site-header,
.is-landing .browser-bar,
.hero-build-status,
.hero-stage-rail,
.is-landing .samples-hero-cta {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.is-landing .site-header {
  background: rgba(5, 5, 7, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.landing-progress span {
  box-shadow: none;
}

/* The fixed ambient layer and pointer-generated card highlight caused every
   pointer move to repaint a large part of the page. The hero's contained
   atmosphere supplies the restrained desktop motion instead. */
.landing-ambient,
.card-pointer-glow {
  display: none !important;
}

.interactive-card,
.interactive-card.is-pointer-active {
  transform: none;
  transform-style: flat;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.is-landing .hero-copy.reveal {
  animation: none;
}

.is-landing .hero-grid {
  transform: none;
}

.is-landing .browser-card {
  transform: none;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.is-landing .hero-copy h1,
.is-landing .hero-copy h1 em,
.hero-aurora {
  filter: none;
}

.samples-home-feature {
  background:
    radial-gradient(circle at 80% 20%, rgba(134, 43, 226, 0.25), transparent 35%),
    radial-gradient(circle at 18% 78%, rgba(98, 221, 255, 0.05), transparent 26%),
    linear-gradient(158deg, #0a0710, #060608 68%);
}

.samples-home-feature::before,
.samples-home-preview-stack {
  transform: none;
  transition: none;
}

.samples-home-preview img,
.samples-home-preview-mini img {
  filter: none;
  transition: none;
}

.samples-home-preview-mini {
  right: clamp(18px, 3vw, 42px);
  width: clamp(190px, 44%, 300px);
  transform: rotate(2deg);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.samples-home-browser-bar small,
.samples-home-preview-label > *,
.samples-home-preview-mini > span > *,
.samples-home-signals span,
.samples-live-badge,
.samples-hero-live {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* Remove persistent compositor hints. They are restored only on elements
   while one of the retained, visible-section animations is running. */
.is-landing .hero-grid,
.hero-aurora,
.hero-orbit,
.momentum-track,
.samples-live-badge i,
.samples-hero-live i {
  will-change: auto;
}

.hero.is-sequencing .mock-title b,
.hero.is-sequencing .mock-copy i,
.hero.is-sequencing .mock-actions span,
.hero.is-sequencing .mock-cards span,
.hero.is-sequencing .hero-stage-rail i::after {
  will-change: transform, opacity;
}

/* Logo motion is useful only where it is part of the active first-screen
   composition. Static founder/footer marks avoid offscreen animation work. */
.is-landing .founder-band .logo-orbit-motion,
.is-landing footer .logo-orbit-motion,
.is-landing .hero:not(.is-in-view) .logo-orbit-motion,
.is-landing .founder-band .logo-orbit-motion::before,
.is-landing footer .logo-orbit-motion::before,
.is-landing .hero:not(.is-in-view) .logo-orbit-motion::before {
  animation: none !important;
}

/* Neutralize the v4 continuous loops. Profile-specific retained motion is
   opt-in below and always depends on its section's is-in-view state. */
.is-landing .hero-grid,
.is-landing .chip-one,
.is-landing .chip-two,
.landing-ready .hero.is-in-view .hero-grid::after,
.hero.is-in-view .hero-aurora-one,
.hero.is-in-view .hero-aurora-two,
.hero.is-in-view .hero-beam,
.hero.is-in-view .hero-orbit-one,
.hero.is-in-view .hero-orbit-two,
.hero.is-in-view .hero-star-field i,
.landing-ready .browser-scan,
.hero.is-in-view .mock-cursor,
.hero.is-in-view .hero-logo-ghost,
.is-landing .hero-actions .button:first-child,
.is-landing .header-cta,
.is-landing .cta-section .button,
.is-landing .samples-hero-cta::after,
.momentum-track,
.samples-home-feature.is-in-view .samples-home-preview img,
.samples-live-badge i,
.samples-hero-live i,
.portfolio-showcase.is-in-view .demo-art > span,
.cta-section.is-in-view::before,
.cta-section.is-in-view::after {
  animation: none;
}

.is-landing .hero-actions .button:first-child,
.is-landing .header-cta,
.is-landing .cta-section .button {
  background-position: 50% 50%;
  background-size: 100% 100%;
}

/* The entrance keeps transform/opacity only; no animated blur. */
@keyframes hero-copy-enter {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes hero-stage-enter {
  from { opacity: 0; transform: translate3d(30px, 16px, 0) scale(0.96); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes v5-hero-sweep {
  0%, 12% { opacity: 0; transform: translate3d(-38%, 0, 0); }
  38% { opacity: 0.72; }
  78%, 100% { opacity: 0; transform: translate3d(58%, 0, 0); }
}

@keyframes v5-aurora-one {
  from { opacity: 0.32; transform: translate3d(-2%, -1%, 0) scale(0.98); }
  to { opacity: 0.46; transform: translate3d(3%, 2%, 0) scale(1.04); }
}

@keyframes v5-aurora-two {
  from { opacity: 0.23; transform: translate3d(-2%, 1%, 0) scale(0.98); }
  to { opacity: 0.36; transform: translate3d(3%, -2%, 0) scale(1.05); }
}

@keyframes v5-live-signal {
  0%, 100% { opacity: 0.5; transform: scale(0.82); }
  48% { opacity: 1; transform: scale(1); }
}

@keyframes v5-mobile-hero-enter {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Desktop profile: restrained, in-view-only ambience and finite sequencing. */
@media (min-width: 861px) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .landing-ready .hero.is-in-view .hero-grid::after {
    animation: v5-hero-sweep 5.4s ease-in-out 0.65s 1 both;
  }

  .hero.is-in-view .hero-aurora-one {
    animation: v5-aurora-one 15s ease-in-out infinite alternate;
    will-change: transform, opacity;
  }

  .hero.is-in-view .hero-aurora-two {
    animation: v5-aurora-two 18s ease-in-out -5s infinite alternate;
    will-change: transform, opacity;
  }

  .hero.is-in-view .samples-hero-live i,
  .samples-home-feature.is-in-view .samples-live-badge i {
    animation: v5-live-signal 3.2s ease-in-out infinite;
    will-change: transform, opacity;
  }

  .momentum-band.is-in-view .momentum-track {
    animation: momentum-flow 34s linear infinite;
    will-change: transform;
  }
}

@media (min-width: 861px) and (hover: hover) and (pointer: fine) {
  .interactive-card:hover,
  .interactive-card:focus-within,
  .samples-home-preview:hover,
  .samples-home-preview:focus-visible,
  .service-card:hover,
  .service-card:focus-within,
  .difference-grid > *:hover,
  .difference-grid > *:focus-within,
  .process-grid > article:hover,
  .process-grid > article:focus-within {
    transform: translate3d(0, -4px, 0);
    border-color: rgba(192, 118, 255, 0.34);
  }

  .samples-home-preview:hover img,
  .samples-home-preview:focus-visible img,
  .samples-home-preview-mini:hover img,
  .samples-home-preview-mini:focus-visible img {
    transform: none;
    filter: none;
  }

  .samples-home-preview-mini:hover,
  .samples-home-preview-mini:focus-visible {
    transform: translate3d(0, -4px, 0) rotate(2deg);
  }
}

/* Keep the desktop interface and transformed sample card within the laptop
   container instead of relying on negative offsets at the 860/861 boundary. */
@media (min-width: 861px) and (max-width: 1100px) {
  /* Laptop layouts already retain the hero sequence and hover feedback. Avoid
     starting dozens of card transitions during a fast full-page scroll. */
  .is-landing .landing-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .is-landing .site-header .logo-orbit-motion,
  .is-landing .site-header .logo-orbit-motion::before,
  .hero.is-in-view .hero-aurora,
  .hero.is-in-view .samples-hero-live i,
  .momentum-band.is-in-view .momentum-track {
    animation: none !important;
    will-change: auto;
  }

  .hero-interface {
    right: 12px;
    bottom: 10px;
    left: 12px;
  }

  .samples-home-preview-mini {
    right: clamp(16px, 2.6vw, 30px);
    width: clamp(180px, 48%, 250px);
  }
}

/* Motion-light profile for touch/coarse input, including large tablets. */
@media (pointer: coarse), (max-width: 860px) {
  .is-landing .site-header,
  .is-landing .browser-bar,
  .hero-build-status,
  .hero-stage-rail,
  .hero-mobile-signal,
  .is-landing .samples-hero-cta,
  .mobile-conversion-dock,
  .menu-backdrop {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .is-landing .site-header {
    background: #070609;
  }

  .is-landing .samples-hero-cta,
  .mobile-nav-cta {
    background: #0e0b14;
  }

  .mobile-conversion-dock {
    position: fixed;
    z-index: 980;
    right: auto;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    width: min(calc(100% - 16px), 560px);
    padding: 6px 6px 6px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: 1px solid rgba(203, 126, 255, 0.29);
    border-radius: 13px;
    background: #0c0910;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.44);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, 14px, 0);
    transition: opacity 0.2s ease, transform 0.24s ease;
  }

  .mobile-conversion-dock.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0);
  }

  .mobile-conversion-dock > span {
    min-width: 0;
    display: grid;
    grid-template-columns: 7px minmax(0, 1fr);
    align-items: center;
    gap: 2px 7px;
  }

  .mobile-conversion-dock > span > i {
    grid-row: 1 / 3;
  }

  .mobile-conversion-dock small,
  .mobile-conversion-dock strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-conversion-dock small {
    color: #8f8994;
    font-size: 0.46rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-conversion-dock strong {
    color: #f6eff9;
    font-size: 0.64rem;
  }

  .mobile-conversion-dock .button {
    min-height: 36px;
    padding-inline: 11px;
    flex: 0 0 auto;
    font-size: 0.62rem;
  }

  .mobile-conversion-dock.is-suppressed,
  .mobile-conversion-dock[inert],
  .menu-open .mobile-conversion-dock,
  body.menu-open .mobile-conversion-dock {
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none !important;
    transform: translate3d(-50%, 14px, 0) !important;
  }

  .hero-orbit,
  .hero-star-field,
  .mock-cursor,
  .is-landing .floating-chip,
  .browser-scan {
    display: none !important;
  }

  .is-landing .hero-grid,
  .is-landing .hero-grid::after,
  .hero-aurora,
  .hero-beam,
  .hero-logo-ghost,
  .samples-home-preview img,
  .samples-home-preview-mini img,
  .samples-live-badge i,
  .samples-hero-live i,
  .portfolio-showcase.is-in-view .demo-art > span,
  .momentum-track,
  .cta-section.is-in-view::before,
  .cta-section.is-in-view::after,
  .is-landing .logo-orbit-motion::before,
  .is-landing .logo-mark-animated .logo-orbit-motion {
    animation: none;
    will-change: auto;
  }

  .is-landing .browser-card,
  .samples-home-preview-stack {
    transform: none;
  }

  .is-landing .hero[data-hero-scene] .mock-title b:nth-child(2),
  .is-landing .hero[data-hero-scene] .mock-title b:nth-child(3),
  .is-landing .hero[data-hero-scene] .mock-copy,
  .is-landing .hero[data-hero-scene] .mock-actions,
  .is-landing .hero[data-hero-scene] .mock-cards,
  .is-landing .hero[data-hero-scene] .mock-cards span {
    opacity: 1;
    transform: none;
  }

  .is-landing .hero[data-hero-scene] .mock-cards span {
    border-color: rgba(98, 221, 255, 0.15);
  }

  .landing-ready .hero-copy > .eyebrow,
  .landing-ready .hero-copy > h1,
  .landing-ready .hero-copy > .hero-lede,
  .landing-ready .hero-copy > .hero-mobile-signal,
  .landing-ready .hero-copy > .hero-actions,
  .landing-ready .hero-copy > .hero-note,
  .landing-ready .hero-visual {
    animation: v5-mobile-hero-enter 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0s;
  }
}

/* Mobile layout profile. */
@media (max-width: 860px) {
  .is-landing .hero {
    overflow: clip;
  }

  .is-landing .hero-layout {
    min-width: 0;
    padding-top: clamp(42px, 9vw, 70px);
    padding-bottom: clamp(52px, 10vw, 82px);
  }

  .is-landing .hero-copy,
  .is-landing .hero-visual {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .is-landing .browser-card {
    width: min(510px, 100%);
    min-width: 0;
    max-width: 100%;
  }

  .is-landing .hero-visual {
    min-height: 0;
    margin-top: 42px;
    display: block;
  }

  .is-landing .browser-card {
    margin-inline: auto;
  }

  .hero-interface {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 12px auto 0;
    display: block;
  }

  .hero-build-status {
    width: 100%;
    min-width: 0;
    padding: 11px 13px;
    background: #0d0a12;
    box-shadow: none;
  }

  .hero-stage-rail {
    display: none;
  }

  .hero-mobile-signal {
    background: #0d0a12;
    box-shadow: none;
  }

  .momentum-band {
    display: none;
  }

  .samples-home-feature {
    padding-block: clamp(64px, 11vw, 82px);
  }

  .samples-home-layout {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(38px, 8vw, 58px);
  }

  .samples-home-copy,
  .samples-home-preview-stack,
  .samples-home-preview,
  .samples-home-preview-mini {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .samples-home-preview-stack {
    position: relative;
    padding: 0;
    display: grid;
    gap: 18px;
    justify-self: stretch;
  }

  .samples-home-preview,
  .samples-home-preview-mini {
    position: relative;
    inset: auto;
    margin: 0;
    display: block;
    transform: none;
    border-radius: 15px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  }

  .samples-home-preview > img,
  .samples-home-preview-mini > img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    display: block;
    object-fit: contain;
    object-position: top;
  }

  .samples-home-preview-mini::after {
    display: none;
  }

  .samples-home-preview-mini > span {
    position: relative;
    inset: auto;
    padding: 13px 15px 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 5px 12px;
    background: #0d0c12;
  }

  .samples-home-preview-mini small {
    line-height: 1.3;
  }

  .samples-home-preview-mini strong,
  .samples-home-preview-mini b {
    line-height: 1.25;
  }

  .samples-home-preview-label {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .samples-live-badge,
  .samples-hero-live {
    width: fit-content;
    white-space: normal;
    line-height: 1.3;
  }

  .mobile-conversion-dock {
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    left: 8px;
    width: auto;
    padding: 6px 6px 6px 10px;
    gap: 8px;
    border-radius: 13px;
    background: #0c0910;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.44);
    transform: translate3d(0, 14px, 0);
    transition: opacity 0.2s ease, transform 0.24s ease;
  }

  .mobile-conversion-dock.is-visible {
    transform: translate3d(0, 0, 0);
  }

  .mobile-conversion-dock small {
    font-size: 0.46rem;
  }

  .mobile-conversion-dock strong {
    font-size: 0.64rem;
  }

  .mobile-conversion-dock .button {
    min-height: 44px;
    padding-inline: 11px;
    font-size: 0.62rem;
  }

  .mobile-conversion-dock.is-suppressed,
  .mobile-conversion-dock[inert],
  .menu-open .mobile-conversion-dock,
  body.menu-open .mobile-conversion-dock {
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none !important;
    transform: translate3d(0, 14px, 0) !important;
  }

  .menu-backdrop {
    background: rgba(0, 0, 0, 0.82);
  }
}

@media (max-width: 430px) {
  .is-landing .hero-copy h1 {
    font-size: clamp(2.62rem, 13.5vw, 3.1rem);
    line-height: 0.98;
  }

  .hero-mobile-signal {
    gap: 4px;
    padding: 7px;
  }

  .hero-mobile-signal span {
    padding-inline: 4px;
    grid-template-columns: 6px minmax(0, 1fr);
  }

  .hero-mobile-signal b,
  .hero-mobile-signal small {
    font-size: 0.43rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .is-landing .browser-body {
    padding: 18px;
  }

  .is-landing .browser-card {
    aspect-ratio: 0.92;
  }

  .is-landing .mock-nav {
    margin-bottom: 20px;
  }

  .is-landing .mock-copy,
  .is-landing .mock-actions {
    margin-top: 12px;
  }

  .is-landing .mock-cards {
    margin-top: 16px;
  }

  .is-landing .mock-cards span {
    height: 52px;
  }

  .samples-home-preview-label {
    position: relative;
    inset: auto;
    padding: 13px 14px 15px;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    background: #0d0c12;
  }

  .samples-home-preview::after {
    display: none;
  }

  .samples-home-preview-label b {
    justify-self: start;
  }

  .samples-home-preview-mini > span {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mobile-conversion-dock > span small {
    display: none;
  }

  .mobile-conversion-dock > span > i {
    grid-row: auto;
  }
}

@media (max-width: 860px) and (max-height: 520px) and (orientation: landscape) {
  .is-landing .hero-layout {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .is-landing .hero-copy h1 {
    max-width: 720px;
    font-size: clamp(2.5rem, 7vw, 3.45rem);
    line-height: 0.98;
  }

  .is-landing .hero-copy .hero-lede,
  .hero-mobile-signal,
  .is-landing .hero-copy .hero-actions {
    margin-top: 18px;
  }

  .is-landing .hero-visual {
    margin-top: 30px;
  }
}

/* Finished-site hero preview
   This is a passive visual: it never reads pointer position or registers an
   input listener. The existing finite hero sequence simply reveals its layers. */
.is-landing .browser-card {
  container-type: inline-size;
}

.is-landing .browser-body {
  padding: 0;
  background:
    radial-gradient(circle at 77% 28%, rgba(159, 71, 255, 0.15), transparent 27%),
    linear-gradient(145deg, #0e0a14, #08070c 72%);
}

.is-landing .browser-body > .mock-nav,
.is-landing .browser-body > .mock-tag,
.is-landing .browser-body > .mock-title,
.is-landing .browser-body > .mock-copy,
.is-landing .browser-body > .mock-actions,
.is-landing .browser-body > .mock-cards {
  display: none;
}

.business-preview {
  position: relative;
  height: 100%;
  min-height: 0;
  padding: clamp(17px, 5cqi, 25px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(13px, 3.5cqi, 19px);
  overflow: hidden;
  color: #f8f3fb;
}

.business-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(115deg, transparent, #000 37%, transparent 88%);
  mask-image: linear-gradient(115deg, transparent, #000 37%, transparent 88%);
}

.business-preview-aura {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  right: -13%;
  top: 8%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  background: radial-gradient(circle, rgba(172, 77, 255, 0.3), rgba(103, 39, 191, 0.08) 49%, transparent 71%);
}

.business-preview-nav,
.business-preview-main,
.business-preview-proof {
  position: relative;
  z-index: 2;
}

.business-preview-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.business-preview-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.business-preview-brand > i {
  width: clamp(23px, 6cqi, 30px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 181, 255, 0.35);
  border-radius: 9px 4px 9px 4px;
  background: linear-gradient(145deg, rgba(187, 92, 255, 0.34), rgba(102, 34, 178, 0.08));
  box-shadow: 0 8px 20px rgba(100, 26, 166, 0.22);
  transform: rotate(-5deg);
}

.business-preview-brand b {
  color: #f7dcff;
  font: 800 clamp(0.55rem, 2cqi, 0.72rem)/1 ui-sans-serif, system-ui, sans-serif;
  transform: rotate(5deg);
}

.business-preview-brand strong {
  overflow: hidden;
  color: #f9f5fb;
  font: 780 clamp(0.48rem, 1.85cqi, 0.7rem)/1 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.business-preview-links {
  display: flex;
  align-items: center;
  gap: clamp(9px, 3cqi, 16px);
}

.business-preview-links i {
  color: #958c9c;
  font: 650 clamp(0.38rem, 1.5cqi, 0.55rem)/1 ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
}

.business-preview-links i:last-child {
  padding: 7px 9px;
  border: 1px solid rgba(201, 133, 255, 0.24);
  border-radius: 999px;
  color: #e7c8ff;
  background: rgba(164, 68, 239, 0.08);
}

.business-preview-menu {
  display: none;
  gap: 4px;
}

.business-preview-menu i {
  display: block;
  width: 14px;
  height: 1px;
  background: #cdbfd5;
}

.business-preview-main {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(112px, 0.85fr);
  align-items: center;
  gap: clamp(10px, 4cqi, 24px);
}

.business-preview-copy {
  min-width: 0;
  align-self: center;
}

.business-preview-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: clamp(8px, 2.5cqi, 13px);
  color: #c88cff;
  font: 700 clamp(0.38rem, 1.45cqi, 0.54rem)/1.3 var(--font-mono);
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.business-preview-kicker i {
  width: 17px;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, #b55bff, #6de0ff);
}

.business-preview-copy h3 {
  margin: 0;
  color: #f9f6fb;
  font-size: clamp(1.08rem, 5.5cqi, 2rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.business-preview-copy h3 span,
.business-preview-copy h3 em {
  display: block;
}

.business-preview-copy h3 em {
  padding-bottom: 0.08em;
  color: #c675ff;
  font-style: normal;
  background: linear-gradient(90deg, #f1c9ff, #bd68ff 52%, #6fdbff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.business-preview-copy p {
  max-width: 235px;
  margin: clamp(9px, 2.6cqi, 14px) 0 0;
  color: #a59dab;
  font-size: clamp(0.45rem, 1.7cqi, 0.63rem);
  line-height: 1.55;
}

.business-preview-cta {
  width: max-content;
  margin-top: clamp(10px, 3cqi, 16px);
  padding: clamp(7px, 1.8cqi, 9px) clamp(10px, 2.7cqi, 14px);
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(237, 199, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(110deg, #8528d8, #bd4ef5);
  box-shadow: 0 9px 24px rgba(126, 39, 195, 0.24);
  font: 750 clamp(0.44rem, 1.55cqi, 0.58rem)/1 ui-sans-serif, system-ui, sans-serif;
}

.business-preview-cta b {
  font: inherit;
}

.business-preview-art {
  position: relative;
  width: 100%;
  max-width: 170px;
  aspect-ratio: 0.94;
  justify-self: end;
  border: 1px solid rgba(217, 158, 255, 0.16);
  border-radius: clamp(18px, 5cqi, 28px) 8px clamp(18px, 5cqi, 28px) 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 46%),
    linear-gradient(155deg, rgba(156, 63, 230, 0.2), rgba(11, 9, 15, 0.72));
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28), 0 0 36px rgba(130, 42, 215, 0.12);
  overflow: hidden;
}

.business-preview-grid {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image:
    linear-gradient(rgba(213, 163, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 163, 255, 0.08) 1px, transparent 1px);
  background-size: 19px 19px;
  -webkit-mask-image: radial-gradient(circle, #000, transparent 72%);
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.business-preview-orbit {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(203, 124, 255, 0.27);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.business-preview-orbit::before,
.business-preview-orbit::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(107, 219, 255, 0.15);
  border-radius: 50%;
  transform: rotate(62deg) scaleY(0.54);
}

.business-preview-orbit::after {
  transform: rotate(-54deg) scaleY(0.42);
}

.business-preview-orbit > i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e9c4ff;
  box-shadow: 0 0 12px rgba(201, 100, 255, 0.9);
}

.business-preview-orbit > i:nth-child(1) { top: -3px; left: 50%; }
.business-preview-orbit > i:nth-child(2) { right: 6%; bottom: 18%; background: #6bdcff; }
.business-preview-orbit > i:nth-child(3) { left: 7%; bottom: 20%; width: 3px; height: 3px; }

.business-preview-monogram {
  position: absolute;
  inset: 29%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233, 196, 255, 0.25);
  border-radius: 14px 5px 14px 5px;
  color: #f3d8ff;
  background: linear-gradient(145deg, rgba(182, 83, 246, 0.3), rgba(45, 17, 68, 0.6));
  box-shadow: 0 14px 30px rgba(83, 19, 133, 0.3);
  font: 800 clamp(0.7rem, 3cqi, 1.18rem)/1 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.06em;
}

.business-preview-chip {
  position: absolute;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(217, 170, 246, 0.18);
  border-radius: 999px;
  color: #ded3e3;
  background: #110d17;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  font: 700 clamp(0.32rem, 1.2cqi, 0.44rem)/1 var(--font-mono);
  text-transform: uppercase;
}

.business-preview-chip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8ef0be;
  box-shadow: 0 0 8px rgba(142, 240, 190, 0.72);
}

.business-preview-chip-one { top: 10%; right: 7%; }
.business-preview-chip-two { left: 5%; bottom: 8%; }

.business-preview-proof {
  min-width: 0;
  display: grid;
  grid-template-columns: 0.72fr 0.72fr 1.2fr;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.business-preview-proof > span {
  min-width: 0;
  padding: clamp(7px, 2cqi, 10px) clamp(8px, 2.2cqi, 11px);
  display: grid;
  grid-template-columns: auto;
  gap: 3px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.business-preview-proof > span:last-child {
  border-right: 0;
}

.business-preview-proof strong {
  color: #f3ebf6;
  font-size: clamp(0.48rem, 1.8cqi, 0.66rem);
  line-height: 1;
}

.business-preview-proof small {
  overflow: hidden;
  color: #817986;
  font: 600 clamp(0.32rem, 1.15cqi, 0.43rem)/1.2 var(--font-mono);
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.business-preview-proof .business-preview-live {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 6px;
}

.business-preview-live > i {
  width: 5px;
  height: 5px;
  grid-row: 1 / 3;
  border-radius: 50%;
  background: #8ef0be;
  box-shadow: 0 0 0 4px rgba(142, 240, 190, 0.06), 0 0 10px rgba(142, 240, 190, 0.6);
}

.business-preview-copy h3 span,
.business-preview-copy h3 em,
.business-preview-copy p,
.business-preview-cta,
.business-preview-art,
.business-preview-proof {
  transition: opacity 0.62s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-landing .hero[data-hero-scene="0"] .business-preview-copy h3 em,
.is-landing .hero[data-hero-scene="0"] .business-preview-copy p,
.is-landing .hero[data-hero-scene="0"] .business-preview-cta,
.is-landing .hero[data-hero-scene="0"] .business-preview-proof {
  opacity: 0.2;
  transform: translate3d(0, 7px, 0);
}

.is-landing .hero[data-hero-scene="0"] .business-preview-art {
  opacity: 0.28;
  transform: scale(0.82) rotate(5deg);
}

.is-landing .hero[data-hero-scene="1"] .business-preview-copy p,
.is-landing .hero[data-hero-scene="1"] .business-preview-cta,
.is-landing .hero[data-hero-scene="1"] .business-preview-proof {
  opacity: 0.45;
  transform: translate3d(0, 4px, 0);
}

.is-landing .hero[data-hero-scene="1"] .business-preview-art {
  opacity: 1;
  transform: scale(0.96) rotate(-2deg);
}

@keyframes business-preview-orbit {
  from { transform: rotate(-12deg); }
  to { transform: rotate(348deg); }
}

@keyframes business-preview-aura {
  from { opacity: 0.38; transform: translate3d(-3%, 3%, 0) scale(0.96); }
  to { opacity: 0.58; transform: translate3d(3%, -3%, 0) scale(1.05); }
}

@keyframes business-preview-live {
  0%, 100% { opacity: 0.55; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes business-preview-rise {
  from { opacity: 0; transform: translate3d(0, 8px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (min-width: 861px) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .hero.is-in-view[data-hero-scene="2"] .business-preview-orbit {
    animation: business-preview-orbit 16s linear infinite;
    will-change: transform;
  }

  .hero.is-in-view[data-hero-scene="2"] .business-preview-aura {
    animation: business-preview-aura 9s ease-in-out infinite alternate;
    will-change: transform, opacity;
  }

  .hero.is-in-view[data-hero-scene="2"] .business-preview-live > i {
    animation: business-preview-live 2.8s ease-in-out infinite;
    will-change: transform, opacity;
  }
}

@media (max-width: 860px), (pointer: coarse) {
  .business-preview-links {
    display: none;
  }

  .business-preview-menu {
    display: grid;
  }

  .landing-ready .browser-card.is-preview-visible .business-preview-copy,
  .landing-ready .browser-card.is-preview-visible .business-preview-art,
  .landing-ready .browser-card.is-preview-visible .business-preview-proof {
    animation: business-preview-rise 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .landing-ready .browser-card.is-preview-visible .business-preview-art { animation-delay: 70ms; }
  .landing-ready .browser-card.is-preview-visible .business-preview-proof { animation-delay: 130ms; }
}

@container (max-width: 350px) {
  .business-preview {
    padding: 14px;
    gap: 10px;
  }

  .business-preview-main {
    grid-template-columns: minmax(0, 1.18fr) minmax(88px, 0.82fr);
    gap: 7px;
  }

  .business-preview-copy p {
    max-width: 155px;
    line-height: 1.42;
  }

  .business-preview-art {
    max-width: 116px;
  }

  .business-preview-chip {
    padding: 4px 5px;
  }

  .business-preview-proof {
    grid-template-columns: 0.65fr 0.65fr 1.35fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .business-preview *,
  .business-preview *::before,
  .business-preview *::after {
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  .is-landing .hero[data-hero-scene] .business-preview-copy h3 em,
  .is-landing .hero[data-hero-scene] .business-preview-copy p,
  .is-landing .hero[data-hero-scene] .business-preview-cta,
  .is-landing .hero[data-hero-scene] .business-preview-art,
  .is-landing .hero[data-hero-scene] .business-preview-proof {
    opacity: 1;
    transform: none;
  }
}

/* Scroll Reveal & Interactive Card Utilities */
.landing-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.interactive-card {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  transform-style: preserve-3d;
}

.interactive-card.is-pointer-active {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

/* ==========================================================================
   Process Page Rich Enhancements & Advanced Human Engineering
   ========================================================================== */

/* Process Page Hero Cinematic Backdrop & Quick Nav */
.is-process .page-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.process-hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.process-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}

.process-hero-orb.orb-1 {
  top: -100px;
  right: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(157, 77, 255, 0.35), transparent 70%);
  animation: pulseProcessOrb1 9s ease-in-out infinite alternate;
}

.process-hero-orb.orb-2 {
  bottom: -50px;
  left: -50px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(142, 240, 190, 0.2), transparent 70%);
  animation: pulseProcessOrb2 11s ease-in-out infinite alternate;
}

@keyframes pulseProcessOrb1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(-30px, 40px) scale(1.15); opacity: 0.75; }
}

@keyframes pulseProcessOrb2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  100% { transform: translate(40px, -30px) scale(1.2); opacity: 0.65; }
}

.process-hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 80%);
}

.process-hero-quickbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.process-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(18, 14, 28, 0.85);
  border: 1px solid rgba(142, 240, 190, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  font: 600 0.72rem var(--font-mono);
  color: #d8f5e7;
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8ef0be;
  box-shadow: 0 0 8px #8ef0be;
  animation: pulseDotAnim 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseDotAnim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.35); }
}

.process-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.quick-link-chip span {
  font: 700 0.65rem var(--font-mono);
  color: var(--purple-2);
}

.quick-link-chip:hover {
  background: rgba(157, 77, 255, 0.18);
  border-color: rgba(192, 118, 255, 0.45);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Hero Metric Strip */
.process-hero-metrics {
  padding: 0 0 36px;
  position: relative;
  z-index: 5;
}

.process-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-metric-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 16, 30, 0.85), rgba(12, 9, 18, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.25s ease;
}

.process-metric-card:hover {
  transform: translateY(-2px);
  border-color: rgba(192, 118, 255, 0.45);
}

.process-metric-card .metric-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  padding: 8px;
  border-radius: 12px;
  background: rgba(157, 77, 255, 0.12);
  border: 1px solid rgba(192, 118, 255, 0.2);
}

.process-metric-card .metric-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.metric-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.metric-topline strong {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
}

.metric-tag {
  font: 700 0.58rem var(--font-mono);
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(142, 240, 190, 0.12);
  color: #8ef0be;
  border: 1px solid rgba(142, 240, 190, 0.25);
}

.process-metric-card .metric-body span {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.35;
}

/* 5-Stage Human Craftsmanship Journey */
.process-journey {
  position: relative;
}

.journey-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 36px;
  margin-bottom: 28px;
}

.journey-track-line {
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.journey-track-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #9d4dff, #d695ff);
  box-shadow: 0 0 12px rgba(157, 77, 255, 0.7);
  transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journey-step-btn {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 10px 14px;
  background: rgba(18, 15, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: var(--muted);
  cursor: pointer;
  outline: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-align: center;
}

.journey-step-btn:hover {
  border-color: rgba(192, 118, 255, 0.45);
  color: var(--text);
  transform: translateY(-2px);
}

.journey-step-btn.is-active {
  background: linear-gradient(145deg, rgba(46, 27, 72, 0.95), rgba(26, 17, 44, 0.95));
  border-color: rgba(192, 118, 255, 0.7);
  box-shadow: 0 8px 24px rgba(157, 77, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.journey-step-btn.is-completed {
  border-color: rgba(142, 240, 190, 0.4);
}

.journey-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font: 700 0.75rem var(--font-mono);
  color: var(--muted);
  transition: all 0.25s ease;
}

.journey-step-btn.is-active .journey-step-num {
  background: linear-gradient(135deg, var(--purple), #d695ff);
  color: #0d0917;
  border-color: transparent;
  box-shadow: 0 0 12px rgba(157, 77, 255, 0.6);
}

.journey-step-btn.is-completed .journey-step-num {
  background: rgba(142, 240, 190, 0.15);
  color: #8ef0be;
  border-color: rgba(142, 240, 190, 0.4);
}

.journey-step-label {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
}

.journey-step-timing {
  font: 500 0.65rem var(--font-mono);
  color: var(--purple-2);
}

.journey-step-btn.is-active .journey-step-timing {
  color: #ffffff;
}

/* Stage Panel */
.journey-stage-panel {
  padding: 32px 36px 28px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(22, 17, 34, 0.95), rgba(12, 9, 20, 0.95));
  border: 1px solid rgba(192, 118, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 50px rgba(157, 77, 255, 0.12);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.journey-stage-panel.is-switching {
  opacity: 0.3;
  transform: translateY(6px);
}

.stage-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.stage-badge-phase {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(157, 77, 255, 0.18);
  border: 1px solid rgba(192, 118, 255, 0.35);
  color: var(--purple-2);
  font: 700 0.65rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stage-badge-timing {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1cbd9;
  font: 500 0.65rem var(--font-mono);
}

.stage-badge-deliverable {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.stage-badge-deliverable svg {
  color: #8ef0be;
}

.stage-badge-deliverable strong {
  color: #8ef0be;
  font-weight: 600;
}

.stage-headline {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.stage-subtitle {
  margin: 0 0 24px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.stage-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 24px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-col h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stage-col h4 svg {
  color: var(--purple-2);
}

.stage-team-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stage-team-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: #d8d3e2;
  line-height: 1.45;
}

.stage-team-list .check-bullet {
  color: #8ef0be;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.stage-client-box {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(142, 240, 190, 0.06);
  border: 1px solid rgba(142, 240, 190, 0.25);
}

.client-box-header {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8ef0be;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.stage-client-text {
  margin: 0;
  font-size: 0.84rem;
  color: #e0f6eb;
  line-height: 1.45;
}

/* Stage Interactive Simulator Container */
.stage-simulator-container {
  background: #0b0814;
  border: 1px solid rgba(192, 118, 255, 0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.simulator-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(22, 18, 32, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sim-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.sim-dot.red { background: #ff5f56; }
.sim-dot.yellow { background: #ffbd2e; }
.sim-dot.green { background: #27c93f; }

.sim-title {
  margin-left: 8px;
  font: 600 0.68rem var(--font-mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stage-simulator-body {
  padding: 18px 20px;
  min-height: 240px;
}

/* Simulator 1: Wireframe Canvas */
.wireframe-intro-tag {
  font-size: 0.74rem;
  color: var(--purple-2);
  margin-bottom: 10px;
  font-family: var(--font-mono);
}

.wireframe-blocks-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.wf-block {
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.wf-block:hover {
  background: rgba(157, 77, 255, 0.1);
  border-color: rgba(192, 118, 255, 0.4);
}

.wf-block.is-active {
  background: rgba(157, 77, 255, 0.2);
  border: 1px solid rgba(192, 118, 255, 0.7);
  box-shadow: 0 0 14px rgba(157, 77, 255, 0.25);
}

.wf-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
}

.wf-desc {
  font-size: 0.7rem;
  color: var(--muted);
}

.wf-detail-card {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(18, 14, 28, 0.9);
  border: 1px solid rgba(142, 240, 190, 0.25);
  font-size: 0.76rem;
  color: #dcf6e9;
  line-height: 1.4;
}

.wf-detail-card strong {
  color: #8ef0be;
}

/* Simulator 2: Theme Studio */
.theme-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: var(--muted);
}

.theme-buttons {
  display: flex;
  gap: 4px;
}

.theme-btn {
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font: 600 0.65rem var(--font-mono);
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-btn.is-active {
  background: var(--purple);
  color: #0d0917;
  border-color: #d695ff;
}

.theme-preview-mockup {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.theme-preview-mockup.theme-purple {
  background: linear-gradient(145deg, #150e26, #090612);
  border-color: rgba(192, 118, 255, 0.4);
}
.theme-preview-mockup.theme-blue {
  background: linear-gradient(145deg, #091830, #040d1a);
  border-color: rgba(56, 189, 248, 0.4);
}
.theme-preview-mockup.theme-emerald {
  background: linear-gradient(145deg, #062016, #03100a);
  border-color: rgba(52, 211, 153, 0.4);
}
.theme-preview-mockup.theme-amber {
  background: linear-gradient(145deg, #241407, #120902);
  border-color: rgba(251, 191, 36, 0.4);
}

.mockup-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.mock-brand { font: 700 0.75rem var(--font-mono); color: #ffffff; }
.mock-btn {
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.65rem;
  font-weight: 600;
}
.mockup-hero-area { margin-bottom: 12px; }
.mock-eyebrow { font: 700 0.6rem var(--font-mono); color: var(--purple-2); display: block; margin-bottom: 2px; }
.mock-heading { font-size: 0.88rem; font-weight: 700; color: #ffffff; display: block; }
.mock-sub { font-size: 0.7rem; color: var(--muted); display: block; margin-top: 2px; }
.mockup-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mock-card {
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
}

/* Simulator 3: Terminal Studio */
.terminal-tab-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.term-tab {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font: 600 0.68rem var(--font-mono);
  cursor: pointer;
}
.term-tab.is-active {
  background: rgba(157, 77, 255, 0.25);
  border-color: rgba(192, 118, 255, 0.6);
  color: #ffffff;
}
.term-badge {
  margin-left: auto;
  font: 700 0.62rem var(--font-mono);
  color: #8ef0be;
}
.term-code-box {
  margin: 0 0 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #06040a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d1c8e0;
  font: 400 0.72rem var(--font-mono);
  line-height: 1.45;
  overflow-x: auto;
}
.terminal-footer-notes {
  display: flex;
  gap: 12px;
  font: 500 0.68rem var(--font-mono);
  color: #8ef0be;
}

/* Simulator 4: Viewport Studio */
.device-selector-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.device-btn {
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font: 600 0.68rem var(--font-mono);
  cursor: pointer;
  transition: all 0.2s ease;
}
.device-btn.is-active {
  background: rgba(157, 77, 255, 0.25);
  border-color: rgba(192, 118, 255, 0.6);
  color: #ffffff;
}
.device-frame-container {
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: #06040a;
  padding: 14px;
  border-radius: 12px;
}
.device-mock-screen {
  background: #151022;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 10px 12px;
  transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.device-mock-screen.screen-phone { width: 140px; }
.device-mock-screen.screen-tablet { width: 220px; }
.device-mock-screen.screen-desktop { width: 100%; max-width: 320px; }
.dev-screen-nav { display: flex; justify-content: space-between; font: 700 0.6rem var(--font-mono); color: #ffffff; margin-bottom: 6px; }
.dev-badge { font: 700 0.55rem var(--font-mono); color: #8ef0be; margin-bottom: 2px; }
.dev-heading { font-size: 0.72rem; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.dev-btn { padding: 3px 6px; border-radius: 4px; background: var(--purple); color: #0d0917; font-size: 0.62rem; font-weight: 700; text-align: center; }
.device-qa-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font: 500 0.68rem var(--font-mono);
  color: #8ef0be;
}

/* Simulator 5: Radar Studio */
.sim-radar-studio {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 16px;
  align-items: center;
}
.radar-visual-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.radar-sweep-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(142, 240, 190, 0.3);
  position: relative;
  background: radial-gradient(circle, rgba(142, 240, 190, 0.08), transparent 70%);
  overflow: hidden;
}
.radar-sweep-circle::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(142, 240, 190, 0.2);
}
.radar-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(142, 240, 190, 0.6), transparent 60%);
  transform-origin: 0 0;
  animation: radarSweepAnim 2.5s linear infinite;
}
@keyframes radarSweepAnim {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.radar-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 700 0.65rem var(--font-mono);
  color: #8ef0be;
}
.radar-checks-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.radar-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.76rem;
  color: #d6d0df;
}
.radar-check-icon {
  color: #8ef0be;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.radar-item small {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
}

.stage-tech-tags-wrapper {
  margin-top: 14px;
}
.tech-tags-label {
  display: block;
  font: 700 0.65rem var(--font-mono);
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.stage-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.stage-tech-tags .tech-tag {
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(15, 12, 22, 0.8);
  border: 1px solid rgba(192, 118, 255, 0.2);
  color: #c9bde0;
  font: 500 0.68rem var(--font-mono);
}

.stage-panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.journey-nav-btn {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.journey-nav-btn:hover:not(:disabled) {
  background: rgba(157, 77, 255, 0.2);
  border-color: rgba(192, 118, 255, 0.4);
  color: #ffffff;
}
.journey-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.stage-counter {
  font: 500 0.8rem var(--font-mono);
  color: var(--muted);
}
.stage-counter strong {
  color: var(--purple-2);
}

/* Team Expertise Showcase */
.team-expertise {
  position: relative;
}

.team-disciplines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}

.team-discipline-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.team-discipline-card:hover {
  border-color: rgba(157, 77, 255, 0.2);
}

.team-discipline-card.is-expanded {
  border-color: rgba(157, 77, 255, 0.3);
  box-shadow: 0 4px 24px rgba(157, 77, 255, 0.08);
}

.discipline-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.discipline-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.discipline-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(157, 77, 255, 0.1);
  border-radius: 12px;
}

.discipline-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.discipline-meta strong {
  font: 600 1rem/1.3 var(--font);
  color: var(--text);
}

.discipline-meta small {
  font: 500 0.78rem/1.3 var(--font-mono);
  color: var(--purple-2);
}

.discipline-toggle {
  font-size: 1.4rem;
  color: var(--muted);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  transition: transform 0.2s ease;
}

.discipline-body {
  padding: 0 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.discipline-body p {
  font: 400 0.88rem/1.7 var(--font);
  color: var(--sub);
  margin: 16px 0;
}

.discipline-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.discipline-expertise-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font: 400 0.84rem/1.6 var(--font);
  color: var(--text);
}

.discipline-expertise-list .check-bullet {
  color: #8ef0be;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.discipline-tools {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.tools-label {
  font: 600 0.72rem/1 var(--font-mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tools-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tool-badge {
  font: 500 0.7rem/1 var(--font-mono);
  padding: 5px 10px;
  background: rgba(157, 77, 255, 0.1);
  border: 1px solid rgba(157, 77, 255, 0.2);
  border-radius: 6px;
  color: var(--purple-2);
}

/* Tech Inspector Dashboard */
.tech-inspector {
  position: relative;
}

.inspector-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  margin-top: 36px;
}

.inspector-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inspector-tab {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(18, 14, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  cursor: pointer;
  outline: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-align: left;
}

.inspector-tab span {
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.inspector-tab strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.inspector-tab small {
  font: 500 0.68rem var(--font-mono);
  color: var(--purple-2);
}

.inspector-tab:hover {
  background: rgba(28, 20, 44, 0.9);
  border-color: rgba(192, 118, 255, 0.4);
  transform: translateX(3px);
}

.inspector-tab.is-active {
  background: linear-gradient(145deg, rgba(46, 27, 72, 0.95), rgba(26, 17, 44, 0.95));
  border-color: rgba(192, 118, 255, 0.7);
  box-shadow: 0 8px 24px rgba(157, 77, 255, 0.25);
  color: #ffffff;
}

.inspector-panel {
  padding: 30px 32px 28px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(22, 17, 34, 0.95), rgba(12, 9, 20, 0.95));
  border: 1px solid rgba(192, 118, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.inspector-panel.is-switching {
  opacity: 0.3;
  transform: translateY(6px);
}

.inspector-panel-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.inspector-tagline {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(157, 77, 255, 0.16);
  border: 1px solid rgba(192, 118, 255, 0.3);
  color: var(--purple-2);
  font: 600 0.65rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.inspector-title {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.inspector-summary {
  margin: 0 0 20px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

.inspector-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10, 8, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.inspector-stat-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.inspector-stat-card strong {
  font: 700 1.2rem var(--font-mono);
  color: #8ef0be;
}

.inspector-stat-card span {
  font-size: 0.72rem;
  color: #ffffff;
  font-weight: 600;
}

.inspector-stat-card small {
  font: 500 0.6rem var(--font-mono);
  color: var(--muted);
}

.inspector-points-list h4 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.inspector-points-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inspector-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: #d6d0df;
  line-height: 1.4;
}

.inspector-points-list .pt-bullet {
  color: #8ef0be;
  font-weight: 700;
}

/* Inspector Demonstrator Visuals */
.inspector-visual-col {
  background: #0b0814;
  border: 1px solid rgba(192, 118, 255, 0.25);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

/* Speed Visual: Radial Gauge */
.visual-speed-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gauge-circle-wrap {
  position: relative;
  width: 110px;
  height: 110px;
}

.radial-gauge-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.gauge-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 10;
}

.gauge-val {
  fill: none;
  stroke: #8ef0be;
  stroke-width: 10;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(142, 240, 190, 0.6));
}

.gauge-center-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gauge-number {
  font: 700 1.6rem var(--font-mono);
  color: #ffffff;
  line-height: 1;
}

.gauge-center-text small {
  font: 600 0.6rem var(--font-mono);
  color: #8ef0be;
  text-transform: uppercase;
}

.gauge-meta-bars {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bar-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--muted);
}

.bar-label strong {
  color: #8ef0be;
  font-family: var(--font-mono);
}

.bar-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #8ef0be, #9d4dff);
}

/* Security Visual */
.visual-security-card {
  text-align: center;
}
.sec-shield-icon {
  font-size: 2.2rem;
  margin-bottom: 6px;
}
.visual-security-card h4 {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: #ffffff;
}
.sec-badges-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.sec-badge-item {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(142, 240, 190, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.72rem;
}
.sec-badge-item strong { color: #8ef0be; font-family: var(--font-mono); }
.sec-badge-item span { color: var(--muted); font-size: 0.66rem; }

/* Mobile Visual */
.visual-mobile-card {
  text-align: center;
}
.mobile-mockup-frame {
  margin: 0 auto 10px;
  width: 160px;
  padding: 14px 10px 18px;
  border-radius: 18px;
  background: #140f22;
  border: 2px solid rgba(192, 118, 255, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}
.mobile-top-speaker {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 14px;
}
.mobile-thumb-zone {
  padding: 10px 8px;
  border-radius: 10px;
  background: rgba(142, 240, 190, 0.08);
  border: 1px dashed rgba(142, 240, 190, 0.35);
}
.zone-label {
  display: block;
  font: 700 0.55rem var(--font-mono);
  color: #8ef0be;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.mock-call-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border-radius: 6px;
  background: #8ef0be;
  color: #081a12;
  font-size: 0.62rem;
  font-weight: 700;
}
.mobile-zone-caption {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.35;
}

/* SEO Visual */
.visual-seo-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.google-snippet-preview {
  padding: 12px 14px;
  border-radius: 10px;
  background: #ffffff;
  color: #1f1f1f;
  text-align: left;
}
.snippet-url-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  color: #4d5156;
  margin-bottom: 2px;
}
.google-g-icon {
  font: 700 0.65rem sans-serif;
  color: #4285f4;
}
.snippet-title {
  margin: 0 0 3px;
  font-size: 0.78rem;
  color: #1a0dab;
  font-weight: 600;
  line-height: 1.25;
}
.snippet-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.64rem;
  color: #70757a;
  margin-bottom: 3px;
}
.stars { color: #fbbc04; }
.snippet-desc {
  margin: 0;
  font-size: 0.66rem;
  color: #4d5156;
  line-height: 1.35;
}
.seo-feature-badges {
  display: flex;
  gap: 8px;
  font: 600 0.66rem var(--font-mono);
  color: #8ef0be;
}

/* QA Testing Methodology */
.qa-methodology {
  position: relative;
}

.qa-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.qa-filter-btn {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--sub);
  font: 500 0.78rem/1 var(--font);
  cursor: pointer;
  transition: all 0.2s ease;
}

.qa-filter-btn:hover {
  border-color: rgba(157, 77, 255, 0.25);
  color: var(--text);
}

.qa-filter-btn.is-active {
  background: rgba(157, 77, 255, 0.12);
  border-color: rgba(157, 77, 255, 0.35);
  color: var(--purple-2);
}

.qa-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.qa-area-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.qa-area-card:hover {
  border-color: rgba(157, 77, 255, 0.2);
  box-shadow: 0 4px 20px rgba(157, 77, 255, 0.06);
}

.qa-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.qa-card-icon {
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(157, 77, 255, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.qa-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qa-card-meta strong {
  font: 600 0.92rem/1.3 var(--font);
  color: var(--text);
}

.qa-pass-badge {
  font: 600 0.7rem/1 var(--font-mono);
  color: #8ef0be;
  display: flex;
  align-items: center;
  gap: 4px;
}

.qa-tests-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.qa-tests-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font: 400 0.82rem/1.6 var(--font);
  color: var(--sub);
}

.qa-check-icon {
  color: #8ef0be;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Friction Zero Checklist */
.friction-zero-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 24px;
  margin-top: 32px;
}

.friction-card {
  padding: 28px 30px;
  border-radius: 20px;
  background: rgba(18, 14, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.friction-card.friction-team {
  background: linear-gradient(160deg, rgba(32, 22, 50, 0.9), rgba(15, 12, 22, 0.9));
  border-color: rgba(192, 118, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.friction-role-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font: 700 0.62rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.friction-role-badge.client {
  background: rgba(255, 255, 255, 0.08);
  color: #e0dbe8;
}

.friction-role-badge.team {
  background: rgba(142, 240, 190, 0.18);
  color: #8ef0be;
  border: 1px solid rgba(142, 240, 190, 0.4);
}

.friction-card h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.friction-card p {
  margin: 0 0 20px;
  font-size: 0.84rem;
  color: var(--muted);
}

.friction-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.friction-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #d6d0df;
  line-height: 1.4;
}

.friction-check {
  color: var(--purple-2);
  font-weight: 700;
  flex-shrink: 0;
}

.friction-check.team-check {
  color: #8ef0be;
}

/* Process FAQ with Search & Filters */
.faq-filter-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 18px;
}

.faq-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-search-box .search-icon {
  position: absolute;
  left: 16px;
  color: var(--muted);
  pointer-events: none;
}

.faq-search-input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  border-radius: 14px;
  background: rgba(18, 14, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.2s ease;
}

.faq-search-input:focus {
  border-color: rgba(192, 118, 255, 0.6);
  box-shadow: 0 0 16px rgba(157, 77, 255, 0.25);
}

.faq-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-cat-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font: 600 0.72rem var(--font-mono);
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-cat-pill:hover {
  background: rgba(157, 77, 255, 0.15);
  border-color: rgba(192, 118, 255, 0.35);
  color: #ffffff;
}

.faq-cat-pill.is-active {
  background: rgba(157, 77, 255, 0.25);
  border-color: rgba(192, 118, 255, 0.7);
  color: #ffffff;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-faq-item {
  border-radius: 16px;
  background: rgba(18, 14, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.process-faq-item[open] {
  background: rgba(26, 20, 38, 0.9);
  border-color: rgba(192, 118, 255, 0.4);
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
  outline: none;
  font-weight: 600;
  font-size: 0.94rem;
  color: #ffffff;
}

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

.faq-icon {
  font-size: 1.2rem;
  color: var(--purple-2);
  transition: transform 0.25s ease;
}

.process-faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: #ffffff;
}

.faq-answer-content {
  padding: 0 24px 20px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

.faq-answer-content p {
  margin: 0;
}

/* Responsive Overrides */
@media (max-width: 960px) {
  .process-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-stepper {
    grid-template-columns: repeat(5, 1fr);
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .stage-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-disciplines-grid {
    grid-template-columns: 1fr;
  }

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

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

  .qa-cards-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .process-metrics-grid {
    grid-template-columns: 1fr;
  }

  .process-hero-quickbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .journey-stepper {
    display: flex;
    gap: 8px;
  }

  .journey-step-btn {
    min-width: 130px;
    flex-shrink: 0;
  }

  .journey-track-line {
    display: none;
  }

  .journey-stage-panel {
    padding: 20px 18px;
  }

  .stage-headline {
    font-size: 1.2rem;
  }

  .sim-radar-studio {
    grid-template-columns: 1fr;
  }

  .qa-cards-grid {
    grid-template-columns: 1fr;
  }

  .inspector-panel {
    padding: 20px 18px;
  }

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

/* Reduced motion is a fully rendered static state, including reveal content. */
@media (prefers-reduced-motion: reduce) {
  .is-landing *,
  .is-landing *::before,
  .is-landing *::after,
  .is-process *,
  .is-process *::before,
  .is-process *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .is-landing .landing-reveal,
  .is-landing .hero-copy > *,
  .is-landing .hero-visual,
  .is-process .landing-reveal,
  .is-process .journey-stage-panel,
  .is-process .display-card,
  .is-process .inspector-panel,
  .is-process .interactive-card,
  .is-process .process-hero-orb,
  .is-process .radar-line {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .is-landing .hero-grid,
  .is-landing .hero-grid::after,
  .hero-aurora,
  .hero-beam,
  .hero-orbit,
  .hero-star-field i,
  .momentum-track,
  .samples-home-preview-stack,
  .samples-home-preview,
  .samples-home-preview-mini,
  .samples-home-preview img,
  .samples-home-preview-mini img,
  .demo-art > span,
  .journey-track-fill {
    will-change: auto !important;
  }

  .momentum-track {
    transform: none !important;
  }
}


/* Process Page SVG Icon Styling */
.discipline-icon svg,
.qa-card-icon svg,
.metric-icon svg,
.tab-svg-icon svg,
.sec-shield-icon svg {
  display: block;
  stroke: var(--purple-2, #c076ff);
  flex-shrink: 0;
}

.discipline-icon svg {
  width: 24px;
  height: 24px;
}

.qa-card-icon svg {
  width: 22px;
  height: 22px;
}

.metric-icon svg {
  width: 22px;
  height: 22px;
}

.tab-svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.tab-svg-icon svg {
  width: 18px;
  height: 18px;
}

.sec-shield-icon svg {
  width: 36px;
  height: 36px;
  stroke: #8ef0be;
  margin: 0 auto 6px;
}

/* ==========================================================================
   High-Performance Top-of-Page Compositing & Containment Layer
   ========================================================================== */
.is-landing .hero {
  contain: layout style;
  transform: translateZ(0);
}

.is-landing .site-header {
  contain: layout style;
  transform: translateZ(0);
}

.is-landing .hero-glow {
  filter: none !important;
  transform: translateZ(0);
  will-change: transform;
}

.is-landing .hero-logo-ghost {
  mix-blend-mode: normal !important;
  opacity: 0.08 !important;
  transform: rotate(4deg) translateZ(0);
  will-change: transform;
  pointer-events: none;
}

.is-landing .browser-card {
  contain: layout style;
  overflow: visible;
  transform: translateZ(0);
}

.is-landing .business-preview-art,
.is-landing .business-preview-orbit {
  will-change: transform;
  transform: translateZ(0);
}

/* Scroll-Driven Progress Bar: Offloaded entirely to GPU compositor */
@keyframes landing-scroll-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@supports (animation-timeline: scroll()) {
  .landing-progress span {
    transform-origin: 0 50%;
    animation: landing-scroll-progress auto linear;
    animation-timeline: scroll();
    will-change: transform;
  }
}

/* Content Visibility Containment: Skips off-screen below-the-fold layout/render on load */
.is-landing .samples-home-feature,
.is-landing .fit-finder,
.is-landing .services-preview,
.is-landing .portfolio-showcase,
.is-landing .package-comparison,
.is-landing .next-steps,
.is-landing .difference-section,
.is-landing .approach-section,
.is-landing .friction-section,
.is-landing .process-band,
.is-landing .founder-band,
.is-landing .faq-section,
.is-landing .cta-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}

/* ==========================================================================
   WEBSITE BUILDER WOW FACTOR STYLING (/start-project)
   ========================================================================== */

/* Top HUD Controls */
.builder-wow-hud {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 26px;
  padding: 12px 20px;
  background: rgba(13, 13, 19, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(157, 77, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 5;
  animation: hudFadeIn 0.4s ease-out;
}

@keyframes hudFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hud-left, .hud-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hud-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(157, 77, 255, 0.12);
  border: 1px solid rgba(157, 77, 255, 0.35);
  border-radius: 10px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hud-btn:hover {
  background: rgba(157, 77, 255, 0.25);
  border-color: #9d4dff;
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(157, 77, 255, 0.3);
}

.hud-vibes, .hud-viewports {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hud-label {
  font-size: 0.65rem;
  font-family: ui-monospace, monospace;
  color: #8b8594;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-right: 2px;
}

.vibe-pill, .viewport-pill {
  padding: 5px 11px;
  background: #121118;
  border: 1px solid #282430;
  border-radius: 8px;
  color: #9b95a4;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vibe-pill:hover, .viewport-pill:hover {
  border-color: #5d5668;
  color: #fff;
}

.vibe-pill.active, .viewport-pill.active {
  background: rgba(157, 77, 255, 0.22);
  border-color: #9d4dff;
  color: #fff;
  box-shadow: 0 0 12px rgba(157, 77, 255, 0.35);
}

/* Sidebar Canvas Container (Removed per user request) */
.builder-canvas-container {
  display: none !important;
}

.canvas-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #c5bfcc;
}

.canvas-header-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.canvas-header-title svg {
  color: var(--vibe-accent, #9d4dff);
}

.canvas-live-tag {
  font-size: 0.55rem;
  font-family: ui-monospace, monospace;
  font-weight: 700;
  color: #62e19e;
  background: rgba(98, 225, 158, 0.1);
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.builder-canvas-container .canvas-site-body {
  max-height: 250px;
}

/* Simulated Browser Viewport */
.builder-canvas-viewport {
  background: #08080c;
  border: 1px solid #2a2634;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.builder-canvas-viewport[data-viewport="tablet"] {
  max-width: 85%;
  margin: 0 auto;
  border-radius: 20px;
}

.builder-canvas-viewport[data-viewport="mobile"] {
  max-width: 320px;
  margin: 0 auto;
  border-radius: 24px;
  border-width: 2px;
  border-color: #383244;
}

/* Browser Chrome */
.canvas-browser-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  background: #111018;
  border-bottom: 1px solid #231f2c;
}

.chrome-dots {
  display: flex;
  gap: 5px;
}

.chrome-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.chrome-address {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  max-width: 190px;
  padding: 3px 8px;
  background: #07070a;
  border-radius: 6px;
  color: #726c7c;
  font-size: 0.6rem;
  font-family: ui-monospace, monospace;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chrome-tag {
  font-size: 0.55rem;
  font-family: ui-monospace, monospace;
  font-weight: 700;
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* Themes / Vibes */
.builder-canvas-viewport[data-vibe="neon"],
.builder-wow-hud[data-vibe="neon"] ~ .flow-layout .builder-canvas-viewport {
  --vibe-accent: #9d4dff;
  --vibe-accent-2: #00f0ff;
  --vibe-bg: #09090e;
  --vibe-card: #12111a;
  --vibe-border: rgba(157, 77, 255, 0.3);
}

.builder-canvas-viewport[data-vibe="luxe"],
.builder-wow-hud[data-vibe="luxe"] ~ .flow-layout .builder-canvas-viewport {
  --vibe-accent: #d4af37;
  --vibe-accent-2: #f5e6c8;
  --vibe-bg: #0a0a0c;
  --vibe-card: #141416;
  --vibe-border: rgba(212, 175, 55, 0.3);
}

.builder-canvas-viewport[data-vibe="mint"],
.builder-wow-hud[data-vibe="mint"] ~ .flow-layout .builder-canvas-viewport {
  --vibe-accent: #62e19e;
  --vibe-accent-2: #34d399;
  --vibe-bg: #060d09;
  --vibe-card: #0d1a13;
  --vibe-border: rgba(98, 225, 158, 0.3);
}

.builder-canvas-viewport[data-vibe="quartz"],
.builder-wow-hud[data-vibe="quartz"] ~ .flow-layout .builder-canvas-viewport {
  --vibe-accent: #60a5fa;
  --vibe-accent-2: #93c5fd;
  --vibe-bg: #0b0f17;
  --vibe-card: #131a26;
  --vibe-border: rgba(96, 165, 250, 0.3);
}

/* Site Content in Canvas */
.canvas-site-body {
  padding: 14px;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #c4becc;
  background: var(--vibe-bg, #09090e);
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.canvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.canvas-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: #fff;
}

.canvas-logo-mark {
  color: var(--vibe-accent, #9d4dff);
  font-weight: 700;
}

.canvas-nav {
  display: flex;
  gap: 8px;
  font-size: 0.62rem;
  color: #8c8696;
}

.canvas-nav .nav-item.active {
  color: #fff;
  font-weight: 600;
}

.canvas-header-cta {
  font-size: 0.62rem;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--vibe-accent, #9d4dff);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

/* Canvas Hero */
.canvas-hero {
  padding: 10px 0 16px;
  text-align: left;
}

.canvas-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.58rem;
  color: var(--vibe-accent-2, #00f0ff);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 7px;
  border-radius: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.canvas-hero-badge span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--vibe-accent-2, #00f0ff);
  box-shadow: 0 0 6px var(--vibe-accent-2, #00f0ff);
}

.canvas-hero-title {
  font-size: 1.05rem;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 6px;
  font-weight: 700;
}

.canvas-hero-sub {
  font-size: 0.68rem;
  line-height: 1.4;
  color: #9d96a6;
  margin: 0 0 12px;
}

.canvas-hero-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mock-btn {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.64rem;
  font-weight: 600;
  cursor: default;
  border: none;
}

.mock-btn-primary {
  background: var(--vibe-accent, #9d4dff);
  color: #fff;
}

.mock-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.canvas-proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.proof-pill {
  font-size: 0.56rem;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #a8a2b0;
}

.proof-pill.highlight {
  border-color: var(--vibe-accent-2, #00f0ff);
  color: var(--vibe-accent-2, #00f0ff);
}

/* Features Grid */
.canvas-features {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.canvas-section-head small {
  font-size: 0.55rem;
  font-family: ui-monospace, monospace;
  color: var(--vibe-accent, #9d4dff);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.canvas-section-head h3 {
  font-size: 0.82rem;
  color: #fff;
  margin: 2px 0 10px;
}

.canvas-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
}

.canvas-feature-card {
  padding: 8px 10px;
  background: var(--vibe-card, #12111a);
  border: 1px solid var(--vibe-border, rgba(157, 77, 255, 0.2));
  border-radius: 8px;
}

.canvas-feature-card .feat-icon {
  color: var(--vibe-accent, #9d4dff);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.canvas-feature-card h4 {
  font-size: 0.68rem;
  color: #fff;
  margin: 0 0 3px;
}

.canvas-feature-card p {
  font-size: 0.58rem;
  color: #8c8696;
  margin: 0;
  line-height: 1.35;
}

/* Dynamic Modules in Canvas */
.canvas-module {
  margin: 12px 0;
  padding: 10px 12px;
  background: var(--vibe-card, #12111a);
  border: 1px solid var(--vibe-accent, #9d4dff);
  border-radius: 10px;
  animation: moduleSnap 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes moduleSnap {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.canvas-module-badge {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--vibe-accent, #9d4dff);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.canvas-booking-layout, .canvas-leads-layout {
  display: grid;
  gap: 8px;
}

.booking-calendar-sim {
  background: rgba(0, 0, 0, 0.3);
  padding: 8px;
  border-radius: 6px;
}

.cal-header {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  font-size: 0.55rem;
  text-align: center;
  color: #797382;
  margin-bottom: 6px;
}

.cal-days .day.active {
  background: var(--vibe-accent, #9d4dff);
  color: #fff;
  border-radius: 3px;
}

.cal-slots {
  display: flex;
  gap: 4px;
}

.cal-slots .slot {
  font-size: 0.55rem;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.cal-slots .slot.selected {
  background: var(--vibe-accent, #9d4dff);
  color: #fff;
}

.leads-form-sim {
  display: grid;
  gap: 5px;
}

.input-sim {
  display: block;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.58rem;
  color: #635d6c;
}

.btn-sim {
  display: block;
  text-align: center;
  padding: 4px 8px;
  background: var(--vibe-accent, #9d4dff);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.6rem;
}

.canvas-cms-grid, .canvas-shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.cms-card, .shop-card {
  padding: 8px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}

.cms-tag {
  font-size: 0.5rem;
  color: var(--vibe-accent-2, #00f0ff);
  font-weight: 700;
}

.cms-card h4, .shop-card h4 {
  font-size: 0.62rem;
  color: #fff;
  margin: 3px 0;
}

.shop-thumb {
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--vibe-accent, #9d4dff);
  margin-bottom: 4px;
}

.add-bag-btn {
  display: block;
  text-align: center;
  padding: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  font-size: 0.54rem;
  color: #fff;
  margin-top: 4px;
}

.canvas-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.56rem;
  color: #6a6473;
}

/* Card Pointer Glow Physics */
.flow-choice, .flow-addon-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.25s ease,
              box-shadow 0.25s ease,
              background 0.25s ease;
}

.flow-choice::before, .flow-addon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(157, 77, 255, 0.22), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: 0;
}

.flow-choice:hover::before, .flow-addon-card:hover::before {
  opacity: 1;
}

.flow-choice:hover, .flow-addon-card:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 77, 255, 0.55);
  box-shadow: 0 10px 28px rgba(157, 77, 255, 0.18);
}

.flow-choice.selected, .flow-addon-card.selected {
  border-color: #9d4dff;
  box-shadow: 0 0 0 2px rgba(157, 77, 255, 0.3), 0 12px 36px rgba(157, 77, 255, 0.25);
}

.flow-choice > *, .flow-addon-card > * {
  position: relative;
  z-index: 1;
}

/* Stage 8 Blueprint Super Suite */
.blueprint-super-suite {
  margin-bottom: 24px;
  position: relative;
}

.blueprint-view-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  padding: 4px;
  background: #09090e;
  border: 1px solid #231f2b;
  border-radius: 12px;
}

.bp-tab {
  flex: 1;
  padding: 10px 14px;
  background: transparent;
  border: none;
  border-radius: 9px;
  color: #928c9c;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bp-tab:hover {
  color: #fff;
}

.bp-tab.active {
  background: #191724;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(157, 77, 255, 0.3);
}

/* Investment Bar */
.blueprint-investment-bar {
  margin-bottom: 18px;
  padding: 14px 18px;
  background: #0b0b11;
  border: 1px solid #231f2c;
  border-radius: 14px;
}

.bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #c4bfcc;
  margin-bottom: 10px;
}

.bar-segments {
  display: flex;
  height: 24px;
  border-radius: 7px;
  overflow: hidden;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
}

.bar-segments .seg {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 4px;
  transition: opacity 0.2s ease;
}

.seg-strategy { background: #6e1cc1; }
.seg-design { background: #9d4dff; }
.seg-eng { background: #00f0ff; color: #000; }
.seg-launch { background: #62e19e; color: #000; }

.seg:hover {
  opacity: 0.85;
}

/* Export Suite */
.blueprint-export-suite {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.bp-export-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #14131d;
  border: 1px solid #2e2a38;
  border-radius: 10px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bp-export-btn:hover {
  background: rgba(157, 77, 255, 0.15);
  border-color: #9d4dff;
  transform: translateY(-1px);
}

/* Laser Sweep Animation */
.blueprint-laser-sweep {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00f0ff, #9d4dff, transparent);
  box-shadow: 0 0 20px #00f0ff, 0 0 35px #9d4dff;
  pointer-events: none;
  z-index: 10;
  animation: laserSweep 2s ease-in-out forwards;
}

@keyframes laserSweep {
  0% { top: 0; opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.blueprint-confetti-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
}

/* Sitemap Node Tree */
.blueprint-sitemap-graph {
  padding: 24px;
  background: #09090e;
  border: 1px solid #24202e;
  border-radius: 16px;
  margin-bottom: 20px;
}

.sitemap-graph-head h4 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 4px;
}

.sitemap-graph-head p {
  font-size: 0.8rem;
  color: #8c8696;
  margin: 0 0 20px;
}

.sitemap-node-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sitemap-node {
  padding: 12px 18px;
  background: #13121c;
  border: 1px solid #2e293a;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.sitemap-node .node-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-family: ui-monospace, monospace;
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  margin-bottom: 4px;
}

.sitemap-node strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 2px;
}

.sitemap-node small {
  font-size: 0.7rem;
  color: #837d8c;
}

.sitemap-level.level-1 {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.sitemap-flow-journey {
  margin-top: 24px;
  padding: 14px 20px;
  background: #111018;
  border: 1px solid #272332;
  border-radius: 12px;
  width: 100%;
}

.journey-head {
  font-size: 0.72rem;
  font-family: ui-monospace, monospace;
  font-weight: 700;
  color: #9d4dff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.journey-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: #c5bfcc;
}

.journey-steps .j-step.highlight {
  color: #62e19e;
  font-weight: 700;
}

.journey-steps .j-arrow {
  color: #726c7d;
}

@media print {
  .builder-wow-hud,
  .builder-canvas-container,
  .blueprint-view-tabs,
  .blueprint-export-suite,
  .blueprint-laser-sweep,
  .blueprint-confetti-canvas {
    display: none !important;
  }
  .blueprint-super-suite {
    margin: 0 !important;
  }
}
