@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --brand: #6c00ff;
  --brand-600: #7a1fff;
  --brand-700: #5600cc;
  --brand-50: #f4efff;
  --sky: #0073ea;
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.18);
  --ink: #0c0d10;
  --header: #ffffff;
  --header-2: #111419;
  --canvas: #ffffff;
  --sunken: #f3f4f7;
  --surface: #ffffff;
  --border: #e6e9ef;
  --border-strong: #d0d5de;
  --fg: #101114;
  --fg-muted: #676d79;
  --warning: #a87800;
  --radius: 1.125rem;
  --shadow: 0 1px 2px rgba(16, 17, 20, 0.04);
  --shadow-md: 0 18px 48px rgba(16, 17, 20, 0.08);
  --shadow-lg: 0 28px 80px rgba(16, 17, 20, 0.12);
  --max: 72rem;
  --header-h: 4.25rem;
  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --page-atmosphere:
    radial-gradient(70% 45% at 50% -5%, rgba(108, 0, 255, 0.06), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 20%, rgba(0, 115, 234, 0.05), transparent 50%),
    var(--canvas);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--canvas);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: transparent;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Fixed atmosphere so every page matches the landing canvas */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--page-atmosphere);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.skip,
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 100;
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.skip:focus {
  top: 0.75rem;
}

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border-bottom: 1px solid rgba(230, 233, 239, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand img {
  height: 42px;
  width: auto;
  max-width: 220px;
  display: block;
  border-radius: 0.45rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav a,
.nav-btn {
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 0.65rem;
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.nav a:hover,
.nav-btn:hover,
.nav a.is-active {
  background: var(--canvas);
  color: var(--fg);
  text-decoration: none;
}

.drop {
  position: relative;
}

.drop-panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 13.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.45rem;
  box-shadow: var(--shadow-lg);
  z-index: 30;
}

.drop-panel--wide {
  min-width: 17.5rem;
}

.drop.open .drop-panel,
.drop:hover .drop-panel {
  display: grid;
  gap: 0.15rem;
}

.drop-panel a {
  display: grid;
  gap: 0.1rem;
  color: var(--fg);
  padding: 0.65rem 0.75rem;
  border-radius: 0.7rem;
  text-decoration: none;
}

.drop-panel a:hover {
  background: var(--brand-50);
  text-decoration: none;
}

.drop-panel a strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.drop-panel a span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.nav-mobile-actions {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.header-link {
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  text-decoration: none;
  border-radius: 0.65rem;
}

.header-link:hover {
  color: var(--fg);
  background: var(--sunken);
  text-decoration: none;
}

.btn-compact {
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
  box-shadow: none;
}

.btn-primary.btn-compact {
  box-shadow: 0 8px 20px rgba(108, 0, 255, 0.22);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 0.85rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary,
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 28px rgba(108, 0, 255, 0.28);
}

.btn-primary:hover {
  background: var(--brand-700);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(108, 0, 255, 0.34);
}

.btn-ghost,
.btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--fg);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand-700);
  transform: translateY(-1px);
}

.btn-outline,
.btn-outline {
  background: #fff;
  color: var(--fg);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand-700);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--fg);
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--fg);
  padding: clamp(3rem, 7vw, 4.75rem) 0 clamp(3rem, 6vw, 4rem);
  text-align: center;
}

.hero--product {
  text-align: left;
  padding-top: clamp(2rem, 4vw, 3rem);
}

.hero-product-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 16rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-radius: 1.75rem;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(108, 0, 255, 0.1), transparent 68%),
    linear-gradient(160deg, #ffffff 0%, #f4f6fb 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.hero-product-media img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 36px rgba(16, 17, 20, 0.12));
}

.hero-product-media--diagram img {
  max-width: min(100%, 480px);
}

.hero--product .hero-product-content {
  text-align: left;
}

.hero--product .hero-ctas {
  justify-content: flex-start;
}

.hero--product .hero-shot {
  margin-top: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
}

@media (max-width: 900px) {
  .hero-product-split {
    grid-template-columns: 1fr;
  }

  .hero--product .hero-product-content {
    text-align: center;
  }

  .hero--product .hero-ctas {
    justify-content: center;
  }

  .hero-product-media img {
    max-width: min(100%, 150px);
    margin: 0 auto;
  }

  .hero-product-media--diagram img {
    max-width: min(100%, 360px);
  }
}

/* Homepage — monday-inspired polish */
.page-home .site-header {
  background: rgba(255, 255, 255, 0.78);
}

.home-hero {
  position: relative;
  min-height: 100svh;
  background: #07080b;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #07080b;
}

.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.home-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.82) 0%, rgba(7, 8, 11, 0.45) 42%, rgba(7, 8, 11, 0.15) 70%, transparent 100%),
    linear-gradient(180deg, rgba(7, 8, 11, 0.25) 0%, transparent 35%, rgba(7, 8, 11, 0.55) 100%);
}

.home-hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: 6rem 0 5rem;
  max-width: 38rem;
  margin-left: max(1.25rem, calc((100% - 1120px) / 2));
  color: #fff;
}

.home-hero__brand {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1rem;
}

.home-hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 1.1rem;
  text-wrap: balance;
}

.home-hero__content .hl-brand {
  color: #c4a8ff;
}

.home-hero__lede {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 32rem;
}

.home-hero__content .hero-ctas {
  justify-content: flex-start;
}

.btn-ghost--on-dark {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(8px);
}

.btn-ghost--on-dark:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #fff !important;
}

.hero-video__actions {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}

.hero-video__chip,
.hero-video__audio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.85rem;
  background: rgba(10, 12, 17, 0.55);
  color: #fff;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.hero-video__chip:hover,
.hero-video__audio:hover {
  background: rgba(10, 12, 17, 0.78);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.hero-video__audio[aria-pressed="true"] {
  background: rgba(108, 0, 255, 0.78);
  border-color: rgba(183, 148, 246, 0.55);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.products-intro {
  padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.products-intro__inner {
  max-width: 44rem;
  margin-inline: auto;
}

.products-intro .kicker,
.product-feature .kicker,
.story-band .kicker,
.problem-band .kicker,
.market-band .kicker,
.solutions-band .kicker {
  font-family: var(--font-display);
}

.products-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 1rem;
  text-wrap: balance;
}

.products-intro .lede {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.85rem;
  font-size: 1.12rem;
}

.products-intro .hero-ctas {
  justify-content: center;
}

.product-feature {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}

.product-feature--alt {
  background: linear-gradient(180deg, #f7f8fb 0%, #f3f0ff 100%);
}

.product-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.product-feature__grid--flip .product-feature__visual {
  order: 2;
}

.product-feature__grid--flip .product-feature__copy {
  order: 1;
}

.product-feature__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 1.75rem;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(108, 0, 255, 0.1), transparent 68%),
    linear-gradient(160deg, #ffffff 0%, #f4f6fb 100%);
  border: 1px solid rgba(230, 233, 239, 0.95);
  box-shadow: var(--shadow-md);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.product-feature__visual:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-feature__visual img {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(16, 17, 20, 0.14));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-feature__visual:hover img {
  transform: scale(1.05);
}

.product-feature__copy {
  text-align: left;
}

.product-feature__copy h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 0.85rem;
}

.product-feature__copy .lede {
  margin-bottom: 0.85rem;
  max-width: 36rem;
  font-size: 1.08rem;
}

.product-feature__detail {
  margin: 0 0 1.35rem;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

.product-feature__modules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  max-width: 36rem;
}

.product-feature__modules li {
  margin: 0;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand);
  background: rgba(108, 0, 255, 0.07);
  border: 1px solid rgba(108, 0, 255, 0.12);
  border-radius: 0.45rem;
}

.product-feature__points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.85rem;
  max-width: 36rem;
}

.product-feature__points li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.45rem;
  font-size: 1rem;
  color: var(--fg-muted);
  border-bottom: 1px solid rgba(230, 233, 239, 0.85);
}

.product-feature__points li:last-child {
  border-bottom: 0;
}

.product-feature__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
}

.product-feature .hero-ctas {
  justify-content: flex-start;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.story-band,
.problem-band,
.market-band,
.solutions-band {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.story-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.story-band__lead h2,
.problem-band__intro h2,
.market-band__intro h2,
.solutions-band__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 1rem;
  text-align: left;
  text-wrap: balance;
}

.story-band__body {
  color: var(--fg-muted);
  max-width: 40rem;
  margin: 0 0 1.85rem;
  font-size: 1.05rem;
}

.story-band__lead .lede {
  margin-bottom: 1rem;
  font-size: 1.08rem;
}

.story-band__lead .hero-ctas {
  justify-content: flex-start;
}

.story-band__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.story-band__stats li {
  padding: 1.25rem 1.35rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.story-band__stats li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.story-band__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--brand);
  margin-bottom: 0.25rem;
}

.story-band__stats span {
  display: block;
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.problem-band {
  background: linear-gradient(180deg, #fff8ec 0%, #f6f2ff 100%);
  border-block: 1px solid rgba(230, 233, 239, 0.9);
}

.problem-band__intro,
.market-band__intro,
.solutions-band__intro {
  max-width: 46rem;
  margin-bottom: 2.35rem;
}

.problem-band__intro .lede,
.market-band__intro .lede,
.solutions-band__intro .lede {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.problem-band__grid,
.market-band__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.problem-band__card,
.market-band__panel,
.solutions-band__item {
  padding: 1.75rem 1.7rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(230, 233, 239, 0.95);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.problem-band__card:hover,
.market-band__panel:hover,
.solutions-band__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-band__card h3,
.market-band__panel h3,
.solutions-band__item h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.problem-band__card--solve {
  background: linear-gradient(165deg, #ffffff 0%, #f3eeff 100%);
  border-color: rgba(108, 0, 255, 0.16);
}

.problem-band__card .product-feature__points,
.market-band__panel .product-feature__points {
  margin-bottom: 0;
}

.market-band__panel p {
  color: var(--fg-muted);
  margin: 0 0 1rem;
}

.market-band__panel h3 a {
  color: inherit;
  text-decoration: none;
}

.market-band__panel h3 a:hover {
  color: var(--brand-700);
  text-decoration: underline;
}

.market-band__cta {
  text-align: center;
  color: var(--fg-muted);
  max-width: 40rem;
  margin: 2.25rem auto 1.35rem;
  font-size: 1.05rem;
}

.solutions-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.solutions-band__item p {
  color: var(--fg-muted);
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
}

.solutions-band__item--cta {
  background: linear-gradient(165deg, #fff8ec 0%, #f4efff 100%);
  border-color: rgba(201, 162, 39, 0.28);
}

.solutions-band__item--cta .hero-ctas {
  justify-content: flex-start;
}

.page-home .cta-band {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: linear-gradient(120deg, #16082b 0%, #2a0f55 45%, #0d1b33 100%);
  border: 0;
  color: #fff;
}

.page-home .cta-band h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
}

.page-home .cta-band .intro {
  color: rgba(255, 255, 255, 0.72);
  max-width: 38rem;
}

.page-home .cta-band .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.page-home .cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.page-home .section h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

@media (max-width: 900px) {
  .home-hero {
    min-height: 92svh;
  }

  .hero-video__media {
    object-fit: cover;
  }

  .home-hero__content {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    width: auto;
    max-width: none;
    padding: 5.5rem 0 6.5rem;
    justify-content: flex-end;
  }

  .home-hero__content h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .product-feature__grid,
  .product-feature__grid--flip,
  .story-band__grid,
  .problem-band__grid,
  .market-band__grid,
  .solutions-band__grid {
    grid-template-columns: 1fr;
  }

  .product-feature__grid--flip .product-feature__visual,
  .product-feature__grid--flip .product-feature__copy {
    order: initial;
  }

  .product-feature__visual {
    min-height: 14rem;
    padding: 1.75rem;
  }

  .product-feature__visual img {
    max-width: 170px;
  }

  .product-feature__copy,
  .product-feature .hero-ctas,
  .story-band__lead,
  .problem-band__intro,
  .market-band__intro,
  .solutions-band__intro {
    text-align: center;
  }

  .product-feature .hero-ctas,
  .story-band__lead .hero-ctas,
  .solutions-band__item--cta .hero-ctas {
    justify-content: center;
  }

  .story-band__lead h2,
  .problem-band__intro h2,
  .market-band__intro h2,
  .solutions-band__intro h2 {
    text-align: center;
  }

  .product-feature__copy .lede,
  .product-feature__detail,
  .product-feature__points,
  .story-band__lead .lede,
  .story-band__body,
  .problem-band__intro .lede,
  .market-band__intro .lede,
  .solutions-band__intro .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .product-feature__points li {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product-feature__visual,
  .product-feature__visual img,
  .btn {
    transition: none;
  }

  .hero-video__media {
    transform: none;
  }
}

.product-carousel-section {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.product-carousel-section__heading {
  margin-bottom: 0.35rem;
}

.hero-carousel {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: transparent;
  color: var(--fg);
  text-align: left;
}

.hero-carousel--dark {
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(126, 20, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(212, 175, 55, 0.08), transparent 50%),
    linear-gradient(180deg, #0c0e12 0%, #0a0c11 45%, #08090c 100%);
  color: #f4f5f7;
}

.hero-carousel--dark .lede {
  color: rgba(244, 245, 247, 0.72);
}

.hero-carousel--dark .kicker {
  color: #b794f6;
}

.hero-carousel--dark .hero-carousel__btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f4f5f7;
}

.hero-carousel--dark .hero-carousel__btn:hover {
  background: rgba(126, 20, 255, 0.2);
  border-color: rgba(183, 148, 246, 0.5);
}

.hero-carousel--dark .hero-carousel__dots button {
  background: rgba(255, 255, 255, 0.25);
}

.hero-carousel--dark .hero-carousel__dots button.is-active {
  background: var(--brand);
}

.btn-ghost--dark {
  color: #f4f5f7 !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: transparent !important;
}

.btn-ghost--dark:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  text-decoration: none;
}

.hero-carousel__viewport {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-carousel__track {
  width: 100%;
  position: relative;
}

.hero-carousel__slide {
  display: none;
  width: 100%;
  animation: hero-fade-in 0.5s ease;
}

.hero-carousel__slide.is-active {
  display: block;
}

.hero-carousel__inner {
  padding: 1rem 0 0.5rem;
}

.hero-carousel__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-carousel__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.hero-carousel__media img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
}

.hero-carousel__media--diagram img {
  max-width: min(100%, 560px);
}

.hero-carousel__media--label {
  min-height: 12rem;
}

.hero-carousel__product-name {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--warning);
  text-align: center;
}

.hero-carousel__content {
  text-align: left;
}

.hero-carousel .hero-ctas {
  justify-content: flex-start;
}

.hero-carousel__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  max-width: none;
}

.hero-slide-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  max-width: 28rem;
  text-align: left;
}

.hero-slide-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: 0.95rem;
}

.hero-slide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand);
}

.hero-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 0.25rem;
  vertical-align: middle;
}

.hero-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 0 0.5rem;
}

.hero-carousel__btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--fg);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.hero-carousel__btn:hover {
  border-color: var(--brand);
  background: var(--brand-50);
}

.hero-carousel__dots {
  display: flex;
  gap: 0.5rem;
}

.hero-carousel__dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.hero-carousel__dots button.is-active {
  background: var(--brand);
  transform: scale(1.25);
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .home-hero {
    min-height: 70svh;
  }

  .hero-carousel__split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-carousel__content {
    text-align: center;
  }

  .hero-carousel h1,
  .hero-carousel__title {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-carousel .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-slide-list {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-carousel .hero-ctas {
    justify-content: center;
  }

  .hero-carousel__media img {
    max-width: min(100%, 150px);
    margin: 0 auto;
  }

  .hero-carousel__media--diagram img {
    max-width: min(100%, 420px);
  }
}

@media (max-width: 480px) {
  .hero-carousel__inner {
    padding-top: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__slide {
    animation: none;
  }
}

.hero-carousel h1,
.hero h1 {
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: none;
  text-wrap: balance;
}

.hero-carousel .lede,
.hero .lede,
.hero .lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 40rem;
  margin: 0 0 1.75rem;
}

.kicker {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.hl-brand {
  color: var(--brand);
}

.hl-sky {
  color: var(--sky);
}

.hl-gold {
  color: var(--warning);
}

.hero-carousel--dark .hero-logo {
  margin-bottom: 1.25rem;
}

.hero-carousel--dark .hero-logo::before {
  display: none;
}

.hero-carousel--dark .hero-logo img {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  outline: none;
}

.hero-carousel--dark .hero-logo--wide img {
  height: clamp(52px, 9vw, 80px);
  width: auto;
  max-width: min(100%, 520px);
}

.hero-carousel--dark .hero-logo--product img {
  height: clamp(96px, 15vw, 150px);
  width: auto;
  max-width: min(100%, 360px);
}

.product-logo {
  height: 56px;
  width: auto;
  max-width: 100%;
  display: block;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
}

.hero-logo {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto 2.25rem;
}

.hero-logo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18rem;
  height: 12rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.45), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.hero-logo img {
  position: relative;
  height: clamp(110px, 18vw, 200px);
  width: auto;
  display: block;
  border-radius: 1.5rem;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 0 48px rgba(212, 175, 55, 0.28);
  outline: 1px solid rgba(251, 191, 36, 0.4);
}

.hero-ctas,
.hero-ctas,
.hero-ctas,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 auto 0.5rem;
  text-align: center;
  text-wrap: balance;
}

.section .intro {
  color: var(--fg-muted);
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3,
.grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2,
.grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem 1.55rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108, 0, 255, 0.16);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.98rem;
}

.card a.more,
a.more {
  display: inline-block;
  margin-top: 0.95rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warning);
  background: #fff6e5;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.5rem;
}

a.badge {
  color: #e8c547;
  background: var(--ink);
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
  padding: 0.4rem 0.85rem;
  margin: 0.85rem 0 0;
  white-space: nowrap;
  text-decoration: none;
}

a.badge:hover {
  background: #14161a;
  color: #fff;
  border-color: rgba(212, 175, 55, 0.75);
  text-decoration: none;
}

.list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--fg-muted);
}

.list li + li {
  margin-top: 0.35rem;
}

.cta-band,
.cta-band {
  background: linear-gradient(180deg, rgba(255, 248, 232, 0.85) 0%, rgba(246, 241, 255, 0.9) 100%);
  border-top: 1px solid rgba(230, 232, 236, 0.85);
  border-bottom: 1px solid rgba(230, 232, 236, 0.85);
  text-align: left;
}

.cta-band h2 {
  text-align: left;
  margin-left: 0;
}

.cta-band .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mock {
  background: var(--header-2);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  min-height: 12rem;
}

.mock-bar {
  height: 0.5rem;
  width: 40%;
  background: var(--brand-600);
  border-radius: 99px;
  margin-bottom: 0.75rem;
}

.mock-row {
  height: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.form {
  display: grid;
  gap: 0.95rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  padding: 1.75rem 1.7rem;
  box-shadow: var(--shadow-md);
}

.form h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  text-align: left;
  margin: 0;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border-strong);
  border-radius: 0.75rem;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(108, 0, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(108, 0, 255, 0.1);
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.checks label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.form-error {
  color: #d3282a;
  font-size: 0.9rem;
  margin: 0;
}

.form-status {
  background: #e8f7ee;
  border: 1px solid #b7e0c4;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  margin-bottom: 0.65rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease;
}

.faq details:hover {
  box-shadow: var(--shadow-md);
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 2rem;
}

.trust div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.05rem;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust strong {
  display: block;
  font-family: var(--font-display);
  color: var(--fg);
  letter-spacing: -0.02em;
}

.trust span {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

@media (max-width: 900px) {
  .form-row,
  .compare,
  .trust {
    grid-template-columns: 1fr;
  }
}

.contact-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.page-hero,
.page-hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 2.25rem;
  text-align: center;
  background: transparent;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 auto 0.85rem;
  text-wrap: balance;
}

.page-hero p {
  color: var(--fg-muted);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.6;
}

.page-hero .kicker {
  margin-bottom: 0.85rem;
}

.page-hero .hero-ctas {
  margin-top: 1.5rem;
  justify-content: center;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.site-footer {
  background: #0f1117;
  color: rgba(255, 255, 255, 0.68);
  padding: clamp(3.5rem, 7vw, 5rem) 0 1.75rem;
  margin-top: 3rem;
  border-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.75rem;
}

.site-footer h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  font-size: 0.92rem;
  margin: 0.35rem 0;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: none;
}

.site-footer .brand img {
  margin-bottom: 0.85rem;
  background: #fff;
  border-radius: 0.55rem;
  padding: 0.35rem 0.5rem;
}

.site-footer p {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.25rem;
  padding-top: 1.15rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .grid-3,
  .grid.grid-3,
  .grid-2,
  .grid.grid-2,
  .contact-grid,
  .contact-grid,
  .footer-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: calc(100svh - var(--header-h));
    overflow: auto;
  }

  .nav-mobile-actions {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
  }

  .nav-mobile-actions .btn {
    width: 100%;
  }

  .header-actions .header-link,
  .header-actions .btn-ghost {
    display: none;
  }

  .drop-panel {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.25rem 0.5rem;
    background: transparent;
  }

  .drop-panel--wide {
    min-width: 0;
  }

  .drop:hover .drop-panel {
    display: none;
  }

  .drop.open .drop-panel {
    display: grid;
  }
}

.hero .lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}

.hero-shot {
  margin-top: 2.25rem;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.hero-shot img {
  display: block;
  width: 100%;
}

.tour-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.tour-row--flip .tour-shot {
  order: 2;
}

.tour-shot img {
  display: block;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--sunken);
}

.tour-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-700);
  margin: 1rem 0 0.35rem;
}

.tour-row h3 {
  margin: 0;
}

.intro {
  color: var(--fg-muted);
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
}

@media (max-width: 900px) {
  .tour-row,
  .tour-row--flip .tour-shot {
    grid-template-columns: 1fr;
  }

  .tour-row--flip .tour-shot {
    order: 0;
  }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.form legend {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* —— Pricing —— */
.price-hero .lede {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
}

.price-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -0.04em;
}

.lineup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.lineup a {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  padding: 1.1rem 1.15rem;
  color: var(--fg);
  text-decoration: none;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.lineup a:hover {
  background: #fff;
  border-color: rgba(108, 0, 255, 0.28);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.lineup strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.4rem;
}

.lineup span {
  display: block;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.price-tools {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid rgba(230, 232, 236, 0.85);
}

.cta-band .hero-ctas {
  justify-content: flex-end;
}

.price-tools .hero-ctas {
  margin: 0;
  justify-content: flex-end;
}

.price-tools .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.price-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.price-jump a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-muted);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  text-decoration: none;
}

.price-jump a:hover,
.price-jump a.is-on {
  background: var(--brand-50);
  color: var(--brand-700);
  text-decoration: none;
}

.seg {
  display: inline-flex;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.15rem;
  background: var(--canvas);
}

.seg button {
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  border: 0;
  background: transparent;
  color: var(--fg-muted);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
}

.seg button[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
}

.price-block {
  scroll-margin-top: calc(var(--header-h) + 4.5rem);
}

.price-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.price-head a.badge {
  margin: 0.15rem 0 0;
  flex-shrink: 0;
}

.price-head h2 {
  text-align: left;
  margin: 0;
}

.price-head p {
  color: var(--fg-muted);
  max-width: 36rem;
  margin: 0.35rem 0 0;
  text-align: left;
}

.cta-band .intro {
  text-align: left;
  margin: 0;
}

.price-grid {
  display: grid;
  gap: 1rem;
}

.price-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.price-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  padding: 1.55rem 1.55rem 1.65rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card.is-hot {
  border-color: rgba(108, 0, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(108, 0, 255, 0.35), var(--shadow-md);
}

.price-card .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-700);
  background: var(--brand-50);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.6rem;
}

.price-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.price-card .who {
  color: var(--fg-muted);
  font-size: 0.92rem;
  margin: 0.35rem 0 1rem;
}

.price-amount {
  font-size: 2.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.price-amount small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0;
}

.price-bill {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin: 0.25rem 0 1rem;
}

.checks {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
}

.checks li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--fg-muted);
  font-size: 0.92rem;
  margin-top: 0.45rem;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.28rem;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.price-card .btn {
  width: 100%;
}

.crm-aed-note {
  font-size: 0.85rem;
  color: var(--warning);
  margin: 0 0 1rem;
}

.crm-aed-note[hidden] {
  display: none;
}

.compare-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.compare-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-wrap th,
.compare-wrap td {
  text-align: left;
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--border);
}

.compare-wrap th {
  background: var(--canvas);
  font-weight: 600;
}

.compare-wrap th:first-child,
.compare-wrap td:first-child {
  font-weight: 600;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.addon-grid article {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
}

.addon-grid h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.addon-grid p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.88rem;
}

.price-footnote {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin: 1rem 0 0;
}

.from-price {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-700);
}

@media (max-width: 1000px) {
  .lineup,
  .price-grid-3,
  .price-grid-2,
  .addon-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .lineup,
  .price-grid-3,
  .price-grid-2,
  .addon-grid {
    grid-template-columns: 1fr;
  }
}

/* SEO components */
.breadcrumbs {
  padding: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.breadcrumb-sep {
  margin: 0 0.4rem;
  opacity: 0.45;
}

.breadcrumbs a {
  color: var(--fg-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--brand-700);
}

.notice-banner {
  background: var(--brand-50);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.nav-badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--gold-soft);
  color: var(--warning);
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  margin-left: 0.25rem;
}

.ecosystem-tree {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.ecosystem-branches {
  margin: 0.75rem 0 0 1.25rem;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: var(--canvas);
  font-weight: 600;
}

.article {
  max-width: 48rem;
  padding-bottom: 3rem;
}

.article h2 {
  margin-top: 2rem;
}

.article-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.related-links .card h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.related-links .card h3 a {
  color: inherit;
  text-decoration: none;
}

.related-links .card h3 a:hover {
  color: var(--brand-700);
  text-decoration: underline;
}

