:root {
  --ink: #071735;
  --ink-soft: #28405e;
  --muted: #64748b;
  --line: rgba(11, 42, 74, 0.12);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --blue: #1168d8;
  --blue-2: #47b7ff;
  --cyan: #9ee8ff;
  --gold: #ffb73e;
  --green: #3ed7a3;
  --shadow: 0 24px 80px rgba(15, 49, 92, 0.16);
  --shadow-strong: 0 34px 110px rgba(13, 56, 103, 0.24);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #eef8ff;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

[id] {
  scroll-margin-top: 7rem;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(158, 232, 255, 0.84), transparent 25rem),
    radial-gradient(circle at 88% 10%, rgba(255, 183, 62, 0.28), transparent 20rem),
    linear-gradient(180deg, #f8fcff 0%, #edf9ff 42%, #f7fbff 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(17, 104, 216, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 104, 216, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 75%);
}

body::after {
  position: fixed;
  inset: auto -10% -22rem -10%;
  z-index: -1;
  height: 34rem;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse at center, rgba(71, 183, 255, 0.18), transparent 65%);
}

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

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

[hidden] {
  display: none !important;
}

main {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  min-height: 4.25rem;
  margin: 0.75rem auto 0;
  padding: 0.7rem 0.85rem 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(250, 254, 255, 0.94);
  box-shadow: 0 16px 50px rgba(15, 49, 92, 0.12);
  backdrop-filter: blur(22px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-lockup img {
  width: clamp(8.7rem, 15vw, 11rem);
  height: auto;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  justify-content: center;
  gap: clamp(0.75rem, 1.7vw, 1.35rem);
  color: rgba(7, 23, 53, 0.74);
  font-size: 0.9rem;
  font-weight: 650;
}

.desktop-nav-list,
.mobile-nav-list,
.footer-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav-list {
  display: flex;
  gap: clamp(0.75rem, 1.7vw, 1.35rem);
  align-items: center;
}

.desktop-nav-list li {
  position: relative;
}

.desktop-nav a {
  white-space: nowrap;
}

.desktop-nav a:hover,
.ghost-link:hover {
  color: var(--blue);
}

.desktop-nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 14rem;
  margin: 0;
  padding: 0.45rem;
  border: 1px solid rgba(17, 104, 216, 0.13);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(15, 49, 92, 0.16);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.35rem);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.desktop-nav-list li:hover > .sub-menu,
.desktop-nav-list li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.desktop-nav-list .sub-menu a {
  display: block;
  padding: 0.62rem 0.72rem;
  border-radius: 0.65rem;
}

.desktop-nav-list .sub-menu a:hover {
  background: rgba(17, 104, 216, 0.07);
}

.header-actions {
  gap: 0.6rem;
  justify-content: flex-end;
  white-space: nowrap;
}

.ghost-link {
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(5, 29, 68, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.96), rgba(52, 184, 255, 0.95)),
    var(--blue);
  box-shadow: 0 18px 42px rgba(17, 104, 216, 0.24);
  color: white;
  font-weight: 780;
  line-height: 1;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  box-shadow: 0 24px 60px rgba(17, 104, 216, 0.32);
  transform: translateY(-1px);
}

.button-small {
  min-height: 2.55rem;
  padding: 0.72rem 1rem;
  font-size: 0.9rem;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(17, 104, 216, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(15, 49, 92, 0.1);
  color: var(--blue);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.icon-button:hover {
  border-color: rgba(17, 104, 216, 0.28);
  box-shadow: 0 18px 44px rgba(17, 104, 216, 0.16);
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(15, 49, 92, 0.11);
  color: var(--ink);
}

.button-light {
  background: #ffffff;
  color: var(--blue);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(26rem, 1.08fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
  width: min(1280px, calc(100% - 2rem));
  min-height: calc(100vh - 6.5rem);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(3rem, 5vw, 5rem);
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 20ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3.05rem, 4.7vw, 3.85rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.01;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.2rem;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.06;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.15;
}

p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-lead {
  max-width: 42rem;
  margin-bottom: 1.7rem;
  color: rgba(7, 23, 53, 0.78);
  font-size: clamp(1.12rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin: 0 0 1.5rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(17, 104, 216, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.85rem;
  font-weight: 720;
}

.hero-visual {
  position: relative;
  min-height: clamp(32rem, 55vw, 42rem);
  overflow: hidden;
}

.orbit-stage {
  position: absolute;
  top: 1rem;
  right: 0;
  z-index: 0;
  width: min(37rem, 74%);
  aspect-ratio: 1;
  opacity: 0.94;
  animation: heroOrbitDrift 9s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  inset: 7%;
  border: 1.4rem solid transparent;
  border-top-color: rgba(25, 119, 224, 0.84);
  border-right-color: rgba(25, 119, 224, 0.92);
  border-bottom-color: rgba(25, 119, 224, 0.36);
  border-radius: 50%;
  filter: drop-shadow(0 26px 54px rgba(41, 126, 224, 0.2));
  animation: orbitSpin 18s linear infinite;
}

.orbit-ring-soft {
  inset: 18%;
  border-width: 0.7rem;
  border-top-color: rgba(158, 232, 255, 0.42);
  border-right-color: rgba(255, 183, 62, 0.36);
  border-bottom-color: transparent;
  animation-duration: 28s;
  animation-direction: reverse;
}

.orbit-node {
  position: absolute;
  border-radius: 50%;
}

.orbit-node-blue {
  top: 18%;
  right: 18%;
  width: 3.1rem;
  height: 3.1rem;
  background: radial-gradient(circle at 34% 30%, #c4f4ff, #1887e8 58%, #075fbd);
  box-shadow: 0 20px 42px rgba(16, 104, 216, 0.28);
  animation: floatNode 5.5s ease-in-out infinite;
}

.orbit-node-gold {
  top: 47%;
  left: 45%;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--gold);
  box-shadow: 0 18px 36px rgba(255, 183, 62, 0.24);
}

.orbit-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7.5rem;
  height: 7.5rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 24px 70px rgba(17, 104, 216, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
  animation: orbitLogoPulse 5.5s ease-in-out infinite;
}

.product-stack {
  position: absolute;
  inset: 16% 0 0 18%;
  z-index: 1;
  display: grid;
  align-items: center;
}

.product-shot {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-strong);
}

.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-shot-main {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: min(100%, 47rem);
  aspect-ratio: 16 / 10;
  transform: rotate(-1.5deg);
}

.product-shot-phone {
  position: absolute;
  bottom: -1%;
  left: 0;
  width: clamp(8.5rem, 18vw, 13rem);
  aspect-ratio: 390 / 844;
  border-radius: 1.65rem;
  transform: rotate(4deg);
}

.signal-strip,
.section-grid,
.showcase-section,
.flow-section,
.pricing-preview,
.faq-section,
.cta-band,
.page-hero,
.plans-grid,
.blog-grid,
.article-page {
  width: min(1180px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
}

.signal-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: 1rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.signal-strip p {
  margin: 0;
  font-weight: 700;
}

.signal-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.signal-strip span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 104, 216, 0.08);
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.86rem;
  font-weight: 720;
}

.section-grid,
.faq-section {
  padding: clamp(2rem, 5vw, 4.5rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.52fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

.section-heading.compact {
  display: block;
  max-width: 48rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
}

.feature-card,
.plan-card,
.faq-grid details {
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1.35rem;
  background: var(--surface);
  box-shadow: 0 18px 54px rgba(15, 49, 92, 0.1);
  backdrop-filter: blur(18px);
}

.feature-card {
  min-height: 15rem;
  padding: 1.4rem;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover {
  border-color: rgba(17, 104, 216, 0.24);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
}

.feature-card h2,
.flow-steps h2,
.plan-card h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.feature-card span,
.plan-card span,
.pricing-card span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(20rem, 1.12fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.check-list li::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.device-gallery {
  position: relative;
  min-height: 34rem;
}

.device-gallery img {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 1.8rem;
  box-shadow: var(--shadow-strong);
}

.device-gallery img:first-child {
  bottom: 0;
  left: 0;
  width: clamp(9rem, 21vw, 15rem);
  transform: rotate(-4deg);
}

.device-gallery img:last-child {
  top: 0;
  right: 0;
  width: min(82%, 39rem);
  transform: rotate(2deg);
}

.flow-section {
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.flow-steps > div {
  min-height: 14rem;
  padding: 1.5rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 249, 255, 0.68)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.flow-steps span {
  display: inline-flex;
  margin-bottom: 2.4rem;
  color: rgba(17, 104, 216, 0.5);
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  gap: 1.5rem;
  align-items: stretch;
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.pricing-card {
  padding: 1.45rem;
  border: 1px solid rgba(17, 104, 216, 0.16);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.pricing-card.featured,
.plan-card.featured {
  border-color: rgba(17, 104, 216, 0.24);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 183, 62, 0.22), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 248, 255, 0.86));
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-accordion {
  display: grid;
  gap: 0.75rem;
  width: min(860px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.faq-grid details,
.faq-accordion-item {
  padding: 1.2rem 1.35rem;
}

.faq-grid summary,
.faq-accordion-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 780;
}

.faq-grid p,
.faq-accordion-item p {
  margin: 0.85rem 0 0;
}

.faq-accordion-item {
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(15, 49, 92, 0.09);
  backdrop-filter: blur(18px);
}

.faq-accordion-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  list-style: none;
}

.faq-accordion-item summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-item summary::after {
  color: var(--blue);
  font-size: 0.85rem;
  content: "▶";
}

.faq-accordion-item[open] summary::after {
  content: "▼";
}

.cta-band {
  width: min(980px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(17, 104, 216, 0.16);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 90% 16%, rgba(255, 183, 62, 0.2), transparent 18rem),
    linear-gradient(135deg, rgba(17, 104, 216, 0.95), rgba(17, 144, 216, 0.86));
  box-shadow: var(--shadow-strong);
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: white;
}

.cta-band p {
  max-width: 52rem;
  margin-bottom: 0;
  opacity: 0.86;
}

.cta-band h2 {
  max-width: 39rem;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.site-footer {
  position: relative;
  margin-top: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(3.2rem, 6vw, 4.8rem) 0 1.4rem;
  border-top: 1px solid rgba(17, 104, 216, 0.14);
  background:
    linear-gradient(180deg, rgba(232, 246, 255, 0.92), rgba(244, 251, 255, 0.78)),
    rgba(244, 251, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 -24px 70px rgba(15, 49, 92, 0.06);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 2rem));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 104, 216, 0.28), transparent);
  content: "";
  transform: translateX(-50%);
}

.footer-inner,
.footer-bottom {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  width: 10.5rem;
  height: auto;
  margin-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-nav-list {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-nav-list > li > a {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-nav-list .sub-menu {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid h2 {
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.footer-grid a,
.footer-nav-list .sub-menu a {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(7, 23, 53, 0.68);
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  color: rgba(7, 23, 53, 0.56);
  font-size: 0.9rem;
}

.page-hero {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.page-hero.narrow {
  max-width: 900px;
  text-align: center;
}

.page-hero.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(16rem, 0.7fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.page-hero h1 {
  max-width: 19ch;
  font-size: clamp(2.5rem, 4vw, 3.35rem);
  line-height: 1.04;
}

.page-hero.narrow h1 {
  max-width: 19ch;
  margin-right: auto;
  margin-left: auto;
}

.page-hero.narrow p {
  max-width: 46rem;
  margin-right: auto;
  margin-left: auto;
}

.page-visual {
  width: min(100%, 18rem);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.8rem;
  box-shadow: var(--shadow-strong);
}

.page-visual.wide {
  width: min(100%, 40rem);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.plan-card {
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  padding: 1.45rem;
}

.plan-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.plan-card .button {
  margin-top: auto;
}

.product-screens {
  position: relative;
  min-height: clamp(30rem, 54vw, 42rem);
}

.screen-orbit {
  position: absolute;
  top: 0;
  right: 0;
  width: min(33rem, 70%);
  aspect-ratio: 1;
  opacity: 0.88;
  animation: heroOrbitDrift 9s ease-in-out infinite;
}

.screen-orbit span {
  position: absolute;
  inset: 8%;
  border: 1rem solid transparent;
  border-top-color: rgba(17, 104, 216, 0.65);
  border-right-color: rgba(17, 104, 216, 0.85);
  border-bottom-color: rgba(255, 183, 62, 0.28);
  border-radius: 50%;
  filter: drop-shadow(0 22px 56px rgba(17, 104, 216, 0.16));
  animation: orbitSpin 22s linear infinite;
}

.screen-orbit span:nth-child(2) {
  inset: 24%;
  border-width: 0.55rem;
  border-top-color: rgba(158, 232, 255, 0.48);
  border-right-color: rgba(255, 183, 62, 0.34);
  animation-duration: 32s;
  animation-direction: reverse;
}

.screen-orbit img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5.5rem;
  height: 5.5rem;
  padding: 0.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 54px rgba(17, 104, 216, 0.16);
  transform: translate(-50%, -50%);
}

.screen-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-strong);
}

.screen-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-shot-main {
  right: 0;
  bottom: 9%;
  z-index: 2;
  width: min(88%, 48rem);
  aspect-ratio: 1440 / 920;
  transform: rotate(-1.2deg);
}

.screen-shot-mobile {
  bottom: 0;
  left: 2%;
  z-index: 3;
  width: clamp(8rem, 17vw, 13rem);
  aspect-ratio: 390 / 844;
  border-radius: 1.55rem;
  transform: rotate(3deg);
}

.screen-card {
  position: absolute;
  z-index: 4;
  max-width: 18rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 58px rgba(15, 49, 92, 0.16);
  backdrop-filter: blur(18px);
}

.screen-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 860;
  text-transform: uppercase;
}

.screen-card strong {
  display: block;
  line-height: 1.25;
}

.screen-card-top {
  top: 13%;
  left: 4%;
}

.screen-card-bottom {
  right: 2%;
  bottom: 1%;
}

.audience-router,
.capability-section,
.newsletter-section,
.pricing-builder {
  width: min(1180px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
}

.audience-cards,
.capability-grid,
.builder-steps {
  display: grid;
  gap: 1rem;
}

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

.audience-card,
.capability-card,
.builder-steps article,
.newsletter-card {
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(15, 49, 92, 0.1);
  backdrop-filter: blur(18px);
}

.audience-card {
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  padding: 1.35rem;
}

.audience-card-team {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 183, 62, 0.2), transparent 13rem),
    rgba(255, 255, 255, 0.82);
}

.audience-card-ai {
  background:
    radial-gradient(circle at 80% 0%, rgba(158, 232, 255, 0.42), transparent 13rem),
    rgba(255, 255, 255, 0.82);
}

.audience-card > span,
.capability-card h3,
.builder-steps span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1rem;
}

.audience-tags em {
  padding: 0.42rem 0.6rem;
  border-radius: 999px;
  background: rgba(17, 104, 216, 0.08);
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}

.audience-actions,
.builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.2rem;
}

.inline-link {
  color: var(--blue);
  font-weight: 780;
}

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

.capability-card {
  min-height: 19rem;
  padding: 1.35rem;
}

.capability-card h3 {
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-size: 0.98rem;
  text-transform: uppercase;
}

.capability-card p {
  margin-bottom: 1.1rem;
  color: rgba(7, 23, 53, 0.76);
  font-weight: 650;
  line-height: 1.55;
}

.capability-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  position: relative;
  padding-left: 1.05rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.9rem;
  font-weight: 620;
  line-height: 1.45;
}

.capability-card li::before {
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.pricing-builder {
  border-top: 1px solid rgba(17, 104, 216, 0.08);
  border-bottom: 1px solid rgba(17, 104, 216, 0.08);
}

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

.builder-steps article {
  min-height: 13rem;
  padding: 1.2rem;
}

.builder-steps span {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: rgba(17, 104, 216, 0.58);
}

.builder-actions {
  justify-content: center;
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 0.62fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.newsletter-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 104, 216, 0.18), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 249, 255, 0.78));
}

.newsletter-card label:not(.consent-row) {
  display: grid;
  gap: 0.35rem;
  color: rgba(7, 23, 53, 0.66);
  font-size: 0.85rem;
  font-weight: 760;
}

.newsletter-card input[type="email"] {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(17, 104, 216, 0.16);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
}

.consent-row {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  color: rgba(7, 23, 53, 0.7);
  font-size: 0.88rem;
  line-height: 1.45;
}

.consent-row input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
}

.consent-row a {
  color: var(--blue);
  font-weight: 760;
}

.newsletter-status {
  min-height: 1.4rem;
  margin: 0;
  color: rgba(7, 23, 53, 0.68);
  font-size: 0.9rem;
}

.legal-page {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.blog-card {
  min-height: 18rem;
  padding: 1.35rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 54px rgba(15, 49, 92, 0.1);
}

.blog-card span {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-card h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.article-page {
  max-width: 860px;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.article-page h1 {
  max-width: 14ch;
  margin-top: 0.8rem;
}

.article-lead {
  max-width: 44rem;
  font-size: 1.12rem;
}

.article-page section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(17, 104, 216, 0.1);
}

.article-page section h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.legal-document {
  margin-top: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.legal-document h1,
.legal-document h2,
.legal-document h3 {
  max-width: none;
}

.legal-document h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.legal-document h2 {
  margin-top: 2rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.legal-document pre {
  overflow-x: auto;
  padding: 0.9rem;
  border-radius: 0.85rem;
  background: rgba(7, 23, 53, 0.06);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  html.dl-motion-ready [data-reveal] {
    opacity: 1;
    transform: scale(0.94);
    transform-origin: 50% 50%;
    transition:
      opacity 240ms ease,
      transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--reveal-index, 0) * 64ms);
    will-change: opacity, transform;
  }

  html.dl-motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: scale(1);
  }

  html.dl-motion-ready .hero-copy[data-reveal] {
    transform: scale(0.965);
  }

  html.dl-motion-ready .hero-copy[data-reveal].is-visible {
    transform: scale(1);
  }

  html.dl-motion-ready .screen-shot img,
  html.dl-motion-ready .feature-live-shot img,
  html.dl-motion-ready .tour-demo-frame img,
  html.dl-motion-ready .audience-demo-image img {
    transform: scale(1.055);
    transition: transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  html.dl-motion-ready .is-visible :is(.screen-shot img, .feature-live-shot img, .tour-demo-frame img, .audience-demo-image img),
  html.dl-motion-ready .feature-live-panel.is-active :is(.feature-live-shot img),
  html.dl-motion-ready .tour-demo-frame.is-active img,
  html.dl-motion-ready .audience-demo-frame.is-active .audience-demo-image img {
    transform: scale(1);
  }

  html.dl-motion-ready .feature-live-panel,
  html.dl-motion-ready .tour-demo-frame,
  html.dl-motion-ready .audience-demo-frame {
    transform-origin: 50% 62%;
    transition:
      opacity 360ms ease,
      transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .feature-live-panel.is-active,
  .tour-demo-frame.is-active,
  .audience-demo-frame.is-active {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes revealRise {
  from {
    transform: translateY(14px);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatNode {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.3rem, -0.55rem, 0);
  }
}

@keyframes heroOrbitDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-0.5rem, 0.35rem, 0) rotate(2deg);
  }
}

@keyframes orbitLogoPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.045);
  }
}

@keyframes homeNativeLogoPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

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

  .desktop-nav {
    display: none;
  }

  .hero-section,
  .showcase-section,
  .page-hero.split,
  .footer-inner,
  .footer-nav-list {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-visual {
    min-height: 40rem;
    overflow: hidden;
  }

  .orbit-stage {
    top: 1rem;
    right: 0;
    width: min(24rem, 52vw);
  }

  h1 {
    font-size: clamp(3rem, 8vw, 4rem);
  }

  h2 {
    font-size: 2.75rem;
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 7vw, 3.2rem);
  }

  .section-heading,
  .signal-strip,
  .pricing-preview,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .feature-grid.three,
  .flow-steps,
  .faq-grid,
  .footer-grid,
  .audience-cards,
  .capability-grid,
  .builder-steps,
  .newsletter-section,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .product-screens {
    min-height: 38rem;
  }

  .screen-shot-main {
    width: min(100%, 46rem);
  }

  .screen-shot-mobile {
    left: 0;
  }

  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .plan-card {
    min-height: 28rem;
    padding: 1.15rem;
  }

  .plan-card h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  }

  .signal-strip div {
    justify-content: flex-start;
  }

  .device-gallery {
    min-height: 28rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 0.5rem;
    width: min(100% - 1rem, 1180px);
    min-height: 3.8rem;
    padding: 0.55rem 0.6rem;
  }

  .brand-lockup img {
    width: 8rem;
  }

  .ghost-link {
    display: none;
  }

  .button {
    width: 100%;
  }

  .header-actions .button {
    width: auto;
  }

  h1 {
    font-size: 2.48rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .hero-actions,
  .trust-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 29rem;
    margin-top: 0.75rem;
  }

  .orbit-stage {
    top: 0.5rem;
    right: 0.25rem;
    width: min(16rem, 68vw);
  }

  .trust-row {
    display: none;
  }

  .orbit-logo {
    width: 5.5rem;
    height: 5.5rem;
    padding: 0.8rem;
  }

  .feature-card,
  .plan-card,
  .audience-card,
  .capability-card,
  .builder-steps article {
    min-height: auto;
  }

  .audience-router,
  .capability-section,
  .newsletter-section,
  .pricing-builder {
    padding: 2.5rem 0;
  }

  .product-screens {
    min-height: 31rem;
  }

  .screen-orbit {
    width: min(18rem, 70vw);
  }

  .screen-orbit img {
    width: 4.4rem;
    height: 4.4rem;
  }

  .screen-shot-main {
    bottom: 22%;
    width: 100%;
    border-radius: 1rem;
  }

  .screen-shot-mobile {
    bottom: 22%;
    width: 8.4rem;
    border-radius: 1.15rem;
  }

  .screen-card {
    display: none;
  }

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

  .device-gallery {
    min-height: 34rem;
    margin-top: 1rem;
  }

  .device-gallery img:last-child {
    width: 96%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* 2026 marketing funnel upgrades */
.hero-section-sales {
  min-height: calc(100vh - 7rem);
}

.hero-section-sales h1 {
  max-width: 13ch;
  font-size: clamp(2.85rem, 5.2vw, 4.6rem);
}

.hero-section-sales .hero-lead {
  max-width: 45rem;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(17, 104, 216, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.82rem;
  font-weight: 720;
  box-shadow: 0 12px 30px rgba(15, 49, 92, 0.08);
}

.signal-strip-sales {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.social-proof-strip,
.before-after-section,
.customer-proof-section,
.scenario-section,
.product-tour,
.pricing-plans-section,
.seo-cluster,
.use-case-story,
.ai-examples-section,
.ai-premium-band {
  width: min(1180px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(2.8rem, 7vw, 6rem) 0;
}

.before-after-grid,
.social-proof-grid,
.customer-proof-grid,
.scenario-grid,
.seo-link-grid,
.ai-example-grid,
.pricing-faq-grid {
  display: grid;
  gap: 1rem;
}

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

.before-after-card,
.social-proof-grid article,
.customer-proof-grid article,
.scenario-card,
.seo-link-card,
.ai-example-grid article,
.use-case-story article,
.pricing-faq-grid details {
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(15, 49, 92, 0.09);
  backdrop-filter: blur(18px);
}

.before-after-card {
  padding: 1.2rem;
}

.before-after-card > span,
.scenario-card > span,
.seo-link-card > span,
.ai-example-grid span,
.use-case-story span,
.plan-topline span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.before-after-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.before-after-columns p {
  min-height: 9rem;
  margin: 0;
  padding: 0.9rem;
  border-radius: 0.75rem;
  background: rgba(239, 248, 255, 0.82);
  line-height: 1.55;
}

.before-after-columns p:last-child {
  background:
    linear-gradient(135deg, rgba(62, 215, 163, 0.14), rgba(158, 232, 255, 0.22)),
    rgba(255, 255, 255, 0.72);
}

.before-after-columns strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

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

.scenario-card,
.social-proof-grid article,
.customer-proof-grid article,
.seo-link-card,
.ai-example-grid article {
  padding: 1.15rem;
}

.social-proof-strip {
  padding-top: clamp(1rem, 3vw, 2rem);
}

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

.social-proof-grid article {
  min-height: 12rem;
  background:
    radial-gradient(circle at 92% 12%, rgba(158, 232, 255, 0.26), transparent 9rem),
    rgba(255, 255, 255, 0.82);
}

.social-proof-grid span,
.customer-proof-grid strong {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.newsletter-benefits,
.article-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.article-checklist li {
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(17, 104, 216, 0.1);
  border-radius: 999px;
  background: rgba(17, 104, 216, 0.07);
  color: rgba(7, 23, 53, 0.74);
  font-size: 0.82rem;
  font-weight: 720;
}

.tour-step ul {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.tour-step li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.9rem;
  font-weight: 620;
  line-height: 1.45;
}

.tour-step li::before {
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.scenario-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.scenario-card li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.9rem;
  font-weight: 620;
  line-height: 1.45;
}

.scenario-card li::before {
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.product-tour {
  position: relative;
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(24rem, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.tour-steps {
  display: grid;
  gap: 0.75rem;
}

.tour-step {
  padding: 1rem;
  border-left: 3px solid rgba(17, 104, 216, 0.22);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 34px rgba(15, 49, 92, 0.07);
}

.tour-step span {
  color: rgba(17, 104, 216, 0.6);
  font-size: 0.78rem;
  font-weight: 850;
}

.tour-step h3 {
  margin-top: 0.25rem;
}

.tour-step-shot {
  overflow: hidden;
  margin: 0.95rem 0 0;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.75rem;
  background: rgba(239, 248, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.tour-step-shot img {
  width: 100%;
  height: 8.5rem;
  object-fit: cover;
  object-position: 50% 30%;
}

.tour-visual {
  min-width: 0;
}

.tour-visual .product-screens {
  min-height: clamp(33rem, 48vw, 40rem);
}

.showcase-section-premium {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.showcase-section-premium .screen-shot-main,
.tour-visual .screen-shot-main {
  width: min(94%, 52rem);
}

.product-screens-task .screen-shot-main img {
  object-position: 42% 24%;
}

.product-screens-projects .screen-shot-main img {
  object-position: 55% 42%;
}

.product-screens-workflow .screen-shot-main img {
  object-position: 50% 38%;
}

.feature-story-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.feature-card-tight {
  min-height: 13rem;
  padding: 1.15rem;
}

.feature-card .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.75rem;
  background: rgba(239, 248, 255, 0.88);
  color: var(--blue);
}

.feature-card .feature-icon + span {
  display: block;
  margin-bottom: 0.65rem;
}

.customer-proof-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}

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

.customer-proof-grid article {
  display: grid;
  align-content: start;
  min-height: 15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 255, 0.68)),
    rgba(255, 255, 255, 0.82);
}

.customer-proof-grid strong {
  margin-top: 0.75rem;
  margin-bottom: 0;
  text-transform: none;
}

.scenario-detail-grid {
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.ai-premium-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.9fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(5, 18, 42, 0.96), rgba(8, 70, 112, 0.94)),
    var(--ink);
  box-shadow: 0 24px 82px rgba(7, 23, 53, 0.24);
}

.ai-premium-band h2,
.ai-premium-band p,
.ai-premium-band .eyebrow {
  color: white;
}

.ai-premium-band p {
  opacity: 0.88;
}

.ai-premium-examples {
  display: grid;
  gap: 0.8rem;
}

.ai-premium-examples article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.09);
}

.ai-premium-examples span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-plans-section {
  padding-top: clamp(2.5rem, 6vw, 5rem);
}

.plans-grid-commercial {
  align-items: stretch;
  margin-bottom: 2rem;
}

.plan-card-commercial {
  min-height: 0;
  padding: 1.25rem;
  border-radius: 0.9rem;
}

.plan-card-commercial.featured {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 248, 255, 0.86)),
    radial-gradient(circle at 88% 8%, rgba(255, 183, 62, 0.22), transparent 12rem);
  border-color: rgba(17, 104, 216, 0.22);
}

.plan-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.plan-topline em {
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  background: rgba(17, 104, 216, 0.08);
  color: rgba(7, 23, 53, 0.7);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 760;
}

.plan-price {
  display: grid;
  gap: 0.25rem;
  margin: 0.9rem 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(11, 116, 255, 0.08);
  border-radius: 0.9rem;
  background:
    linear-gradient(135deg, rgba(239, 248, 255, 0.9), rgba(255, 255, 255, 0.74)),
    rgba(239, 248, 255, 0.72);
}

.plan-price-mainline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.18rem 0.5rem;
  align-items: baseline;
}

.plan-price-amount {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.35rem;
  align-items: baseline;
  white-space: nowrap;
}

.plan-price strong {
  color: var(--ink);
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  line-height: 1.08;
}

.plan-price small {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.plan-price-saving {
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(17, 126, 87, 0.16);
  border-radius: 999px;
  background: rgba(225, 250, 238, 0.74);
  color: #08784f;
  font-size: 0.78rem;
  font-weight: 820;
}

.plan-card-commercial h4 {
  margin: 1rem 0 0.3rem;
  color: var(--ink);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(15, 49, 92, 0.09);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table caption {
  padding: 1rem;
  color: var(--ink);
  font-weight: 820;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(17, 104, 216, 0.1);
  color: var(--ink-soft);
  text-align: left;
}

.comparison-table th {
  color: var(--ink);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.pricing-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.pricing-faq-grid details {
  padding: 1rem;
}

.pricing-faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.pricing-faq-grid p {
  margin: 0.7rem 0 0;
}

.pricing-catalog .section-heading.compact {
  max-width: 58rem;
}

.pricing-intro-note,
.pricing-business-cta,
.pricing-info-grid article,
.pricing-legal-note {
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(15, 49, 92, 0.08);
  backdrop-filter: blur(18px);
}

.pricing-intro-note {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
}

.pricing-intro-note strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.pricing-intro-note p,
.pricing-business-cta p,
.pricing-info-grid p,
.pricing-legal-note {
  margin: 0;
  color: rgba(7, 23, 53, 0.72);
}

.pricing-catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.pricing-period-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(15, 49, 92, 0.08);
  backdrop-filter: blur(18px);
}

.pricing-period-toggle button {
  min-width: 5.8rem;
  min-height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(7, 23, 53, 0.68);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.pricing-period-toggle button.active {
  background:
    linear-gradient(135deg, rgba(11, 116, 255, 0.96), rgba(35, 196, 142, 0.92)),
    var(--blue);
  color: white;
  box-shadow: 0 12px 28px rgba(17, 104, 216, 0.2);
}

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

.plan-card-catalog,
.plan-card-placeholder,
.plan-card-error {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.plan-card-catalog {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.plan-card-catalog::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), transparent 42%);
  opacity: 0.86;
}

.plan-card-catalog > * {
  position: relative;
}

.plan-card-catalog:hover {
  border-color: rgba(11, 116, 255, 0.22);
  box-shadow: 0 24px 70px rgba(14, 45, 82, 0.14);
  transform: translateY(-2px);
}

.plan-card-catalog h3 {
  min-height: 3.6rem;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.25;
}

.plan-card-catalog ul {
  display: grid;
  gap: 0.52rem;
  margin: 0.45rem 0 0;
  padding: 0;
  list-style: none;
}

.plan-card-catalog li {
  position: relative;
  padding-left: 1rem;
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.88rem;
  font-weight: 620;
  line-height: 1.42;
}

.plan-card-catalog li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.plan-card-catalog .button {
  margin-top: auto;
}

.pricing-seat-control {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 0.9rem;
  padding: 0.85rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.78rem;
  background: rgba(255, 255, 255, 0.7);
}

.pricing-seat-control-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.pricing-seat-control-label strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.pricing-seat-control-label span,
.pricing-seat-control-hint,
.pricing-seat-control-breakdown,
.plan-cta-note {
  margin: 0;
  color: rgba(7, 23, 53, 0.64);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.pricing-seat-control-row {
  display: grid;
  grid-template-columns: 2.45rem minmax(4rem, 1fr) 2.45rem;
  gap: 0.55rem;
}

.pricing-seat-control-row button,
.pricing-seat-control-row input {
  min-width: 0;
  height: 2.35rem;
  border: 1px solid rgba(17, 104, 216, 0.16);
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  font-weight: 820;
  text-align: center;
}

.pricing-seat-control-row button {
  cursor: pointer;
}

.pricing-seat-control-row button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.pricing-seat-control-row input {
  appearance: textfield;
}

.pricing-seat-control-row input::-webkit-outer-spin-button,
.pricing-seat-control-row input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.plan-cta-note {
  margin-top: 0.65rem;
}

.plan-limit-list,
.plan-doc-list {
  padding-bottom: 1rem;
}

.pricing-comparison-wrap {
  margin-bottom: 1.4rem;
}

.pricing-comparison-table td:first-child {
  color: var(--ink);
  font-weight: 820;
}

.pricing-business-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 1rem 0;
  padding: 1.2rem;
}

.pricing-business-cta h3 {
  margin: 0.2rem 0 0.45rem;
}

.pricing-business-cta .button {
  flex: 0 0 auto;
}

.pricing-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.pricing-info-grid article {
  min-height: 14rem;
  padding: 1.15rem;
}

.pricing-info-grid span,
.pricing-addon-box strong {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-info-grid h3 {
  margin-top: 0;
}

.pricing-addon-box {
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 0.75rem;
  background: rgba(239, 248, 255, 0.76);
}

.pricing-addon-box strong {
  margin-bottom: 0.35rem;
  text-transform: none;
}

.pricing-addon-box ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.pricing-addon-box li {
  position: relative;
  padding-left: 1rem;
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.86rem;
  font-weight: 620;
  line-height: 1.42;
}

.pricing-addon-box li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.pricing-legal-note {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .plans-grid-catalog,
  .pricing-info-grid {
    grid-template-columns: 1fr;
  }

  .pricing-catalog-toolbar,
  .pricing-business-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .plan-card-catalog h3 {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .pricing-hero,
  .pricing-catalog {
    width: min(22.5rem, calc(100% - 1rem));
    margin-right: auto;
    margin-left: 0.5rem;
  }

  .pricing-hero h1,
  .pricing-catalog .section-heading.compact h2 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .pricing-hero p,
  .pricing-catalog .section-heading.compact p,
  .pricing-intro-note p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .pricing-catalog .plans-grid {
    width: 100%;
  }

  .pricing-intro-note,
  .pricing-business-cta,
  .pricing-info-grid article,
  .pricing-legal-note {
    border-radius: 0.8rem;
  }

  .pricing-period-toggle {
    width: 100%;
  }

  .pricing-period-toggle button {
    flex: 1 1 0;
    min-width: 0;
  }

  .pricing-business-cta .button {
    width: 100%;
  }

  .pricing-comparison-table {
    min-width: 720px;
  }
}

.seo-link-card {
  min-height: 13rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.seo-link-card:hover {
  border-color: rgba(17, 104, 216, 0.25);
  transform: translateY(-3px);
}

.newsletter-benefits li {
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.55;
  position: relative;
}

.newsletter-benefits li::before {
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.ai-examples-section {
  padding-top: clamp(1.5rem, 4vw, 3rem);
}

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

.use-case-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: clamp(1rem, 4vw, 2.5rem);
}

.use-case-story article {
  padding: 1.15rem;
}

.article-checklist {
  margin-top: 1rem;
}

.article-next-step {
  margin-top: 2.5rem;
  padding: 1.2rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(15, 49, 92, 0.09);
}

.article-next-step h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.article-next-step .button {
  margin-top: 0.5rem;
}

.page-hero-actions {
  margin-top: 1.3rem;
}

.pricing-hero,
.use-case-hero {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.cta-band {
  width: min(860px, calc(100% - 2rem));
  padding: clamp(1.15rem, 2.4vw, 1.7rem);
  border-radius: 1rem;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
}

.cta-band small {
  display: block;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 720;
}

@media (max-width: 980px) {
  .before-after-grid,
  .social-proof-grid,
  .customer-proof-grid,
  .scenario-grid,
  .seo-link-grid,
  .tour-layout,
  .ai-premium-band,
  .pricing-faq-grid,
  .ai-example-grid,
  .use-case-story {
    grid-template-columns: 1fr;
  }

  .tour-layout {
    align-items: start;
  }

  .ai-premium-band {
    padding: 1.25rem;
  }
}

@media (max-width: 640px) {
  .hero-section-sales h1 {
    max-width: 14ch;
    font-size: 2.6rem;
  }

  .before-after-columns {
    grid-template-columns: 1fr;
  }

  .before-after-columns p {
    min-height: auto;
  }

  .tour-visual .product-screens {
    min-height: 30rem;
  }

  .scenario-card,
  .seo-link-card,
  .before-after-card,
  .plan-card-commercial,
  .ai-example-grid article,
  .use-case-story article {
    padding: 1rem;
  }

  .comparison-table {
    min-width: 680px;
  }

  .cta-band {
    width: min(100% - 1rem, 860px);
  }
}

/* Calm typography pass: section headings should support the product, not overpower it. */
h1 {
  max-width: 18ch;
  font-size: clamp(2.05rem, 3vw, 2.85rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.22rem, 1.55vw, 1.55rem);
  line-height: 1.22;
}

h3 {
  font-size: clamp(1.02rem, 1.18vw, 1.16rem);
  line-height: 1.22;
}

.hero-section-sales h1 {
  max-width: 22ch;
  font-size: clamp(1.95rem, 2.55vw, 2.35rem);
  line-height: 1.14;
}

.hero-lead {
  font-size: clamp(1rem, 1.12vw, 1.12rem);
}

.page-hero h1,
.article-page h1,
.legal-document h1 {
  font-size: clamp(1.9rem, 2.65vw, 2.35rem);
  line-height: 1.14;
}

.feature-card h2,
.flow-steps h2,
.plan-card h2,
.blog-card h2,
.article-page section h2,
.article-next-step h2,
.legal-document h2,
.cta-band h2,
.ai-premium-band h2 {
  font-size: clamp(1.14rem, 1.42vw, 1.38rem);
  line-height: 1.24;
}

.feature-card h3,
.plan-card h3,
.scenario-card h3,
.before-after-card h3,
.seo-link-card h3,
.tour-step h3,
.ai-example-grid h3 {
  font-size: clamp(1.02rem, 1.15vw, 1.14rem);
  line-height: 1.24;
}

.section-heading.compact {
  max-width: 42rem;
}

.audience-router .section-heading.compact h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.82rem);
  line-height: 1.18;
}

.section-heading {
  align-items: start;
}

.audience-route-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.75fr);
  gap: 1rem;
  align-items: stretch;
}

.audience-feature,
.audience-row {
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(15, 49, 92, 0.09);
  backdrop-filter: blur(18px);
}

.audience-feature {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 1.15rem;
  background:
    radial-gradient(circle at 88% 8%, rgba(158, 232, 255, 0.32), transparent 13rem),
    rgba(255, 255, 255, 0.82);
}

.audience-side-list {
  display: grid;
  gap: 0.75rem;
}

.audience-row {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.audience-feature > span,
.audience-row span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.audience-feature h3,
.audience-row h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
}

.audience-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.audience-before-after p {
  margin: 0;
  padding: 0.75rem;
  border-radius: 0.7rem;
  background: rgba(239, 248, 255, 0.82);
  line-height: 1.5;
}

.audience-before-after p:last-child {
  background: rgba(62, 215, 163, 0.12);
}

.audience-before-after strong {
  color: var(--ink);
}

.audience-row-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.audience-row .audience-tags {
  margin: 0;
  padding: 0;
}

.showcase-section {
  grid-template-columns: minmax(0, 0.78fr) minmax(22rem, 1.22fr);
}

.showcase-section-premium .screen-shot-main,
.tour-visual .screen-shot-main {
  width: min(96%, 54rem);
}

@media (max-width: 980px) {
  .audience-route-layout,
  .showcase-section {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(1.95rem, 4.8vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.18rem, 3vw, 1.45rem);
  }

  .page-hero h1,
  .hero-section-sales h1 {
    font-size: clamp(1.9rem, 4.4vw, 2.3rem);
  }
}

@media (max-width: 640px) {
  h1,
  .hero-section-sales h1,
  .page-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.22rem);
    line-height: 1.14;
  }

  h2,
  .feature-card h2,
  .cta-band h2,
  .ai-premium-band h2 {
    font-size: 1.18rem;
  }

  .audience-before-after {
    grid-template-columns: 1fr;
  }
}

/* Conversion pass from the site roadmap: clearer hero, proof, pricing and navigation. */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-trigger::after {
  width: 0.38rem;
  height: 0.38rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 14rem;
  padding: 0.45rem;
  border: 1px solid rgba(17, 104, 216, 0.13);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(15, 49, 92, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.35rem);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 0.62rem 0.72rem;
  border-radius: 0.65rem;
}

.nav-dropdown-menu a:hover {
  background: rgba(17, 104, 216, 0.07);
}

.hero-eyebrow-pill {
  display: inline-flex;
  gap: 0.38rem;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.66rem;
  border: 1px solid rgba(15, 110, 86, 0.1);
  border-radius: 999px;
  background: #e1f5ee;
  box-shadow: 0 12px 30px rgba(15, 110, 86, 0.08);
  color: #0f6e56;
  font-size: 0.6875rem;
}

.hero-section-sales h1 {
  max-width: 25ch;
  font-size: clamp(2.25rem, 2.65vw, 2.5rem);
  line-height: 1.12;
}

.hero-green-line {
  display: block;
  color: #1d9e75;
}

.hero-section-sales .hero-lead {
  max-width: 30rem;
}

.hero-section-sales .hero-lead strong {
  color: var(--ink);
  font-weight: 500;
}

.hero-actions .button {
  gap: 0.45rem;
}

.hero-trust-line {
  margin: 0;
  color: #888;
  font-size: 0.75rem;
  font-weight: 680;
  line-height: 1.45;
}

.hero-people-proof {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.hero-avatar-stack {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.hero-avatar-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(17, 104, 216, 0.95), rgba(62, 215, 163, 0.72)),
    var(--blue);
  box-shadow: 0 12px 26px rgba(17, 104, 216, 0.16);
  color: white;
  font-size: 0.72rem;
  font-weight: 850;
}

.hero-avatar-stack span + span {
  margin-left: -0.65rem;
}

.hero-people-proof p {
  flex: 1 1 18rem;
}

.founder-story,
.use-cases-section {
  width: min(1180px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
}

.founder-story {
  display: grid;
  grid-template-columns: minmax(16rem, 0.52fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1rem, 2.5vw, 1.45rem);
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(225, 245, 238, 0.9), transparent 18rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(15, 49, 92, 0.1);
  backdrop-filter: blur(18px);
}

.founder-portraits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.founder-portraits figure {
  display: grid;
  align-content: space-between;
  min-height: 15rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.95rem;
  background:
    radial-gradient(circle at 50% 32%, rgba(71, 183, 255, 0.32), transparent 5rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 255, 0.76));
}

.founder-portraits figure > div {
  display: grid;
  place-items: center;
  min-height: 10rem;
  color: rgba(17, 104, 216, 0.74);
  font-size: 2rem;
  font-weight: 860;
}

.founder-portraits figcaption {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.74);
}

.founder-portraits strong,
.founder-portraits span {
  display: block;
}

.founder-portraits strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.founder-portraits span {
  margin-top: 0.2rem;
  color: rgba(7, 23, 53, 0.58);
  font-size: 0.82rem;
  font-weight: 680;
}

.founder-copy {
  padding: 0.35rem 0.2rem;
}

.founder-copy h2,
.use-cases-section h2 {
  font-size: clamp(1.22rem, 1.55vw, 1.55rem);
}

.founder-copy p:not(.eyebrow) {
  max-width: 48rem;
  margin-bottom: 0.8rem;
}

.audience-segment-grid,
.use-cases-grid {
  display: grid;
  gap: 1rem;
}

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

.audience-segment {
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  padding: 1.15rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 88% 8%, rgba(158, 232, 255, 0.3), transparent 13rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(15, 49, 92, 0.09);
  backdrop-filter: blur(18px);
}

.audience-segment > span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.audience-segment h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.08rem, 1.35vw, 1.26rem);
}

.audience-ai-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
  margin: 0.9rem 0 0;
  padding: 0.75rem;
  border: 1px solid rgba(62, 215, 163, 0.18);
  border-radius: 0.75rem;
  background: rgba(225, 245, 238, 0.72);
}

.audience-ai-note svg {
  color: #1d9e75;
}

.audience-ai-note p {
  margin: 0;
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.9rem;
  font-weight: 680;
  line-height: 1.5;
}

.use-cases-section {
  padding: clamp(2rem, 5vw, 4.5rem) 0;
}

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

.use-case-card {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  padding: 1.15rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 44px rgba(15, 49, 92, 0.09);
  backdrop-filter: blur(18px);
}

.use-case-icon {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: rgba(17, 104, 216, 0.08);
  color: var(--blue);
}

.use-case-card h3 {
  margin-bottom: 0.65rem;
}

.use-case-card em {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(7, 23, 53, 0.62);
  font-size: 0.92rem;
  line-height: 1.5;
}

.use-case-card p {
  margin-bottom: 1rem;
}

.use-case-card .inline-link {
  margin-top: auto;
}

.logo-proof-strip {
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(0.5rem, 2vw, 1.5rem) auto clamp(1.5rem, 4vw, 3rem);
  padding: 1rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 54px rgba(15, 49, 92, 0.08);
  overflow: hidden;
}

.logo-proof-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.logo-proof-heading .eyebrow {
  margin: 0;
}

.logo-proof-heading p:last-child {
  margin: 0;
  color: rgba(7, 23, 53, 0.68);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.5;
}

.logo-proof-track {
  display: none;
}

.logo-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.logo-proof-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(17, 104, 216, 0.1);
  border-radius: 999px;
  background: rgba(239, 248, 255, 0.72);
  color: rgba(7, 23, 53, 0.74);
  font-size: 0.88rem;
  font-weight: 760;
  white-space: nowrap;
}

.testimonial-section {
  width: min(1180px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(2.5rem, 6vw, 4.8rem) 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-grid article {
  min-height: 14rem;
  padding: 1.15rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(158, 232, 255, 0.28), transparent 10rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(15, 49, 92, 0.09);
  backdrop-filter: blur(18px);
}

.testimonial-top {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}

.testimonial-top > span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(17, 104, 216, 0.92), rgba(255, 183, 62, 0.78)),
    var(--blue);
  color: white;
  font-size: 0.78rem;
  font-weight: 850;
}

.testimonial-top strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.testimonial-top p {
  margin: 0.18rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.testimonial-grid em {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-faq-grid-compact {
  width: min(980px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.audience-router .section-heading.compact h2 {
  font-size: clamp(1.62rem, 2.45vw, 2.05rem);
}

.site-footer {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top-color: rgba(17, 104, 216, 0.18);
  background:
    radial-gradient(circle at 14% 12%, rgba(158, 232, 255, 0.22), transparent 18rem),
    linear-gradient(180deg, rgba(239, 248, 255, 0.78), rgba(248, 252, 255, 0.98));
}

@media (max-width: 980px) {
  .testimonial-grid,
  .logo-proof-heading,
  .founder-story,
  .audience-segment-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .logo-proof-track {
    display: block;
    overflow: hidden;
    margin: 0 -1rem;
    padding: 0 1rem;
  }

  .logo-proof-track .logo-proof-list {
    width: max-content;
    flex-wrap: nowrap;
    animation: logoProofMarquee 22s linear infinite;
  }

  .logo-proof-list-static {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-section-sales h1 {
    max-width: 18ch;
    font-size: 1.625rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-trust-line {
    text-align: center;
  }

  .hero-people-proof {
    justify-content: center;
    text-align: center;
  }

  .hero-people-proof p {
    flex-basis: 100%;
    margin: 0.35rem 0 0;
  }

  .testimonial-grid article,
  .logo-proof-strip,
  .founder-story,
  .audience-segment,
  .use-case-card {
    border-radius: 0.85rem;
  }

  .founder-portraits {
    grid-template-columns: 1fr;
  }

  .founder-portraits figure {
    min-height: 12rem;
  }

  .audience-segment,
  .use-case-card {
    min-height: auto;
  }
}

@keyframes logoProofMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

html {
  scroll-padding-top: 6rem;
}

[id] {
  scroll-margin-top: 6rem;
}

.hero-section-sales {
  min-height: auto;
  align-items: start;
  padding-top: clamp(3.2rem, 5vw, 4.4rem);
  padding-bottom: clamp(2rem, 4vw, 3.2rem);
}

.pricing-hero {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(1rem, 2vw, 1.4rem);
}

.pricing-plans-section {
  padding-top: clamp(1.3rem, 3vw, 2.2rem);
}

.pricing-plans-section .section-heading.compact {
  margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
}

.hero-section-sales .product-screens {
  min-height: clamp(28rem, 42vw, 34rem);
}

.hero-section-sales .screen-shot-main {
  bottom: 7%;
  width: min(92%, 46rem);
}

.pricing-hero + .pricing-plans-section {
  padding-top: 0;
}

@media (max-width: 980px) {
  .hero-section-sales {
    align-items: center;
    padding-top: 2.4rem;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 4.8rem;
  }

  [id] {
    scroll-margin-top: 4.8rem;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-actions .button {
    max-width: 10.4rem;
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .hero-section-sales {
    padding-top: 2rem;
  }
}

/* Phase 1 redesign slice: safer mobile navigation, product-led hero motion, responsive media. */
:root {
  --header-offset: 7.25rem;
}

html {
  scroll-padding-top: var(--header-offset);
}

[id] {
  scroll-margin-top: var(--header-offset);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(17, 104, 216, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(15, 49, 92, 0.1);
  color: var(--ink);
  cursor: pointer;
}

.mobile-menu-toggle .menu-close-icon {
  display: none;
}

.site-header.menu-open .mobile-menu-toggle .menu-open-icon {
  display: none;
}

.site-header.menu-open .mobile-menu-toggle .menu-close-icon {
  display: block;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  gap: 0.7rem;
  padding: 0.8rem;
  border: 1px solid rgba(17, 104, 216, 0.13);
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(158, 232, 255, 0.24), transparent 14rem),
    linear-gradient(180deg, #ffffff, #f8fcff);
  box-shadow: 0 28px 80px rgba(15, 49, 92, 0.2);
  backdrop-filter: blur(22px);
}

.mobile-menu-panel[hidden] {
  display: none;
}

.mobile-menu-panel nav,
.mobile-menu-audiences {
  display: grid;
  gap: 0.35rem;
}

.mobile-nav-list {
  display: grid;
  gap: 0.35rem;
}

.mobile-nav-list .sub-menu {
  display: grid;
  gap: 0.3rem;
  margin: 0.3rem 0 0;
  padding: 0 0 0 0.7rem;
  list-style: none;
}

.mobile-menu-panel a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 0.8rem;
  border-radius: 0.8rem;
  color: rgba(7, 23, 53, 0.82);
  font-weight: 780;
}

.mobile-menu-panel nav a {
  background: rgba(239, 248, 255, 0.92);
}

.mobile-menu-audiences {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(17, 104, 216, 0.1);
}

.mobile-menu-audiences a {
  min-height: 2.35rem;
  color: rgba(7, 23, 53, 0.66);
  font-size: 0.92rem;
}

.mobile-menu-panel .mobile-menu-cta {
  width: 100%;
  margin-top: 0.2rem;
  justify-content: center;
  color: #fff;
}

.product-screens {
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-phone-x: 0px;
  --hero-phone-y: 0px;
  --hero-orbit-x: 0px;
  --hero-orbit-y: 0px;
}

.screen-shot picture,
.tour-step-shot picture {
  display: block;
  width: 100%;
  height: 100%;
}

.screen-shot picture img,
.tour-step-shot picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-screens-hero .screen-shot-main {
  transition: transform 220ms ease-out;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) rotate(-1.2deg);
}

.product-screens-hero .screen-shot-mobile {
  transition: transform 220ms ease-out;
  transform: translate3d(var(--hero-phone-x), var(--hero-phone-y), 0) rotate(3deg);
}

.product-screens-hero .screen-orbit {
  transition: transform 240ms ease-out;
  transform: translate3d(var(--hero-orbit-x), var(--hero-orbit-y), 0);
}

.screen-flow-chip {
  position: absolute;
  top: 18%;
  left: 9%;
  z-index: 5;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.58rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(15, 49, 92, 0.15);
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.78rem;
  font-weight: 820;
  backdrop-filter: blur(18px);
}

.screen-flow-chip strong {
  color: #1d9e75;
}

.screen-card-ai {
  right: 5%;
  bottom: 0.2rem;
}

.screen-card span {
  display: inline-flex;
  gap: 0.32rem;
  align-items: center;
}

.screen-card p {
  display: inline-flex;
  gap: 0.32rem;
  align-items: center;
  margin: 0.5rem 0 0;
  color: rgba(7, 23, 53, 0.62);
  font-size: 0.82rem;
  font-weight: 720;
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -35%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  opacity: 0;
  transform: rotate(18deg) translateX(-160%);
  transition:
    opacity 180ms ease,
    transform 520ms ease;
}

.button:hover::after {
  opacity: 1;
  transform: rotate(18deg) translateX(520%);
}

/* V4 problem framing section. */
.problem-section {
  width: min(1180px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(2.2rem, 5vw, 4.6rem) 0;
}

.problem-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.2rem);
}

.problem-card {
  min-height: 100%;
  padding: clamp(1.1rem, 2.4vw, 1.45rem);
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 255, 0.76)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(15, 49, 92, 0.1);
}

.problem-card span {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(17, 104, 216, 0.13);
  border-radius: 0.85rem;
  background: rgba(239, 248, 255, 0.9);
  color: var(--blue);
}

.problem-card h3 {
  max-width: 18rem;
}

.problem-card p {
  margin-bottom: 0;
  color: rgba(7, 23, 53, 0.72);
}

.problem-conclusion {
  max-width: 62rem;
  margin: clamp(1rem, 2.6vw, 1.4rem) auto 0;
  padding: clamp(1rem, 2.4vw, 1.25rem) clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(29, 158, 117, 0.18);
  border-radius: 1rem;
  background: rgba(238, 250, 246, 0.82);
  box-shadow: 0 18px 52px rgba(15, 49, 92, 0.08);
  color: var(--ink);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 760;
  text-align: center;
}

@media (min-width: 981px) {
  .mobile-menu-panel {
    display: none !important;
  }
}

@media (max-width: 980px) {
  :root {
    --header-offset: 6.4rem;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  :root {
    --header-offset: 5.8rem;
  }

  .site-header {
    top: 0.45rem;
    width: min(100% - 0.75rem, 1180px);
  }

  .header-actions {
    gap: 0.45rem;
  }

  .header-actions .button {
    max-width: 9.7rem;
    min-height: 2.5rem;
    font-size: 0.84rem;
  }

  .mobile-menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 auto;
  }

  .mobile-menu-panel {
    max-height: calc(100vh - 5.9rem);
    overflow-y: auto;
  }

  .hero-section-sales .product-screens {
    min-height: 25.5rem;
  }

  .hero-section-sales .screen-shot-main {
    right: -8%;
    bottom: 14%;
    width: 106%;
  }

  .hero-section-sales .screen-shot-mobile {
    bottom: 8%;
    left: 1%;
    width: 8.8rem;
  }

  .screen-flow-chip {
    top: 5%;
    left: 0.2rem;
    font-size: 0.72rem;
  }

  .screen-card-ai {
    right: 0.1rem;
    bottom: 0;
    max-width: 13.5rem;
    padding: 0.78rem;
  }
}

@media (max-width: 980px) {
  .problem-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .problem-section {
    width: min(100% - 1rem, 1180px);
  }

  .problem-card,
  .problem-conclusion {
    border-radius: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-screens-hero .screen-shot-main,
  .product-screens-hero .screen-shot-mobile,
  .product-screens-hero .screen-orbit {
    transform: none;
  }

  .button::after {
    display: none;
  }
}

/* Interactive homepage core: audience switcher, use-case tabs and sticky product tour. */
.audience-switcher {
  width: min(1180px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
}

.audience-tabbar,
.use-case-tabbar {
  display: flex;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto clamp(1.1rem, 3vw, 1.6rem);
  padding: 0.35rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(15, 49, 92, 0.1);
  backdrop-filter: blur(18px);
}

.audience-tab,
.use-case-tab {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(7, 23, 53, 0.72);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.audience-tab:hover,
.use-case-tab:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.audience-tab.is-active,
.use-case-tab.is-active {
  background:
    linear-gradient(135deg, rgba(17, 104, 216, 0.96), rgba(29, 158, 117, 0.9)),
    var(--blue);
  box-shadow: 0 16px 36px rgba(17, 104, 216, 0.22);
  color: white;
}

.audience-tab:focus-visible,
.use-case-tab:focus-visible,
.tour-step-button:focus-visible {
  outline: 3px solid rgba(29, 158, 117, 0.34);
  outline-offset: 3px;
}

.audience-switcher-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.72fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: stretch;
}

.audience-panel-stack,
.audience-live-demo {
  min-width: 0;
}

.audience-panel {
  min-height: 100%;
  padding: clamp(1.1rem, 2.6vw, 1.55rem);
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 255, 0.78)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 64px rgba(15, 49, 92, 0.11);
  backdrop-filter: blur(18px);
  animation: panelLift 260ms ease both;
}

.audience-panel > span {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: #0f6e56;
  font-size: 0.76rem;
  font-weight: 860;
  text-transform: uppercase;
}

.audience-panel h3 {
  max-width: 36rem;
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
}

.audience-pain {
  display: block;
  max-width: 46rem;
  margin-bottom: 0.95rem;
  color: rgba(7, 23, 53, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  font-weight: 760;
  line-height: 1.55;
}

.audience-bullet-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.audience-bullet-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.5rem;
  align-items: start;
  color: rgba(7, 23, 53, 0.74);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.audience-bullet-list svg {
  margin-top: 0.12rem;
  color: #1d9e75;
}

.audience-panel-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.audience-panel-footer .audience-tags,
.audience-panel-footer .audience-actions {
  margin-top: 0;
}

.audience-live-demo {
  display: grid;
  align-items: stretch;
}

.audience-demo-frame {
  display: grid;
  place-items: center;
  height: clamp(30rem, 42vw, 36rem);
  min-height: 0;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 183, 62, 0.2), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(236, 249, 255, 0.78));
  box-shadow: 0 22px 64px rgba(15, 49, 92, 0.11);
  animation: panelLift 260ms ease both;
}

.audience-demo-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  min-height: clamp(26rem, 38vw, 32rem);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(15, 49, 92, 0.13);
}

.audience-demo-image picture,
.audience-demo-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.audience-demo-image img {
  object-fit: contain;
}

.audience-demo-freelancer .audience-demo-image {
  background:
    radial-gradient(circle at 50% 28%, rgba(62, 215, 163, 0.18), transparent 12rem),
    rgba(255, 255, 255, 0.78);
}

.audience-demo-freelancer .audience-demo-image picture {
  width: min(16rem, 68%);
  aspect-ratio: 390 / 844;
  overflow: hidden;
  border: 1px solid rgba(17, 104, 216, 0.1);
  border-radius: 1.45rem;
  box-shadow: 0 20px 56px rgba(15, 49, 92, 0.16);
}

.audience-demo-family .audience-demo-image img,
.audience-demo-leader .audience-demo-image img {
  object-position: 48% 38%;
}

.audience-demo-family .audience-demo-image,
.audience-demo-leader .audience-demo-image {
  min-height: 0;
  aspect-ratio: 1440 / 920;
}

.audience-demo-frame figcaption {
  margin-top: 1rem;
  padding: 0.95rem;
  border: 1px solid rgba(17, 104, 216, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.76);
}

.audience-demo-frame figcaption span,
.tour-demo-frame figcaption span {
  display: inline-flex;
  margin-bottom: 0.38rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 860;
  text-transform: uppercase;
}

.audience-demo-frame figcaption strong,
.tour-demo-frame figcaption strong {
  display: block;
  color: var(--ink);
  line-height: 1.28;
}

.audience-demo-frame figcaption ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.audience-demo-frame figcaption li {
  color: rgba(7, 23, 53, 0.68);
  font-size: 0.86rem;
  font-weight: 680;
  line-height: 1.4;
}

.use-cases-tabs {
  margin-top: 1.3rem;
}

.use-case-tabbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(920px, 100%);
  border-radius: 1rem;
}

.use-case-tab {
  justify-content: flex-start;
  min-width: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  white-space: normal;
}

.use-case-tab .use-case-icon {
  width: 2.1rem;
  height: 2.1rem;
  margin: 0;
  border-radius: 0.65rem;
  background: rgba(17, 104, 216, 0.08);
}

.use-case-tab.is-active .use-case-icon {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.use-case-panel-shell {
  max-width: 980px;
  margin: 0 auto;
}

.use-case-panel-shell .use-case-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0 1rem;
  min-height: auto;
  padding: clamp(1.1rem, 2.5vw, 1.45rem);
  border-radius: 1rem;
  animation: panelLift 260ms ease both;
}

.use-case-panel-shell .use-case-icon {
  grid-row: 1 / span 5;
}

.use-case-panel-shell .use-case-card p {
  max-width: 52rem;
  margin-bottom: 0.75rem;
}

.product-tour-sticky .tour-sticky-layout {
  display: grid;
  grid-template-columns: minmax(24rem, 1.05fr) minmax(0, 0.9fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: start;
}

.product-tour-sticky {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.proof-strip-product {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(2rem, 5vw, 4rem) auto;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(34, 184, 173, 0.15), transparent 22rem),
    linear-gradient(135deg, rgba(247, 253, 255, 0.96), rgba(255, 255, 255, 0.86));
  box-shadow: 0 24px 72px rgba(15, 49, 92, 0.1);
}

.proof-strip-copy {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  min-width: 0;
  padding: clamp(0.6rem, 1.6vw, 1.2rem);
}

.proof-strip-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  letter-spacing: 0;
  line-height: 1.02;
}

.proof-strip-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin: 0;
  color: rgba(7, 23, 53, 0.68);
  font-weight: 650;
  line-height: 1.65;
}

.proof-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1rem);
  min-width: 0;
}

.proof-strip-card {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 15rem;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(15, 49, 92, 0.08);
}

.proof-strip-card::before {
  content: "";
  position: absolute;
  inset: -35% -20% auto auto;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 184, 173, 0.18), transparent 66%);
  pointer-events: none;
}

.proof-strip-card span {
  justify-self: start;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(18, 119, 242, 0.08);
  color: #0c55b4;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0.26rem 0.56rem;
  text-transform: uppercase;
}

.proof-strip-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 920;
  letter-spacing: 0;
  line-height: 0.95;
}

.proof-strip-card h3 {
  margin: 0.7rem 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.18;
}

.proof-strip-card p {
  margin: 0.75rem 0 0;
  color: rgba(7, 23, 53, 0.66);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.55;
}

.tour-sticky-visual {
  position: sticky;
  top: calc(var(--header-offset) + 1rem);
  min-width: 0;
}

.tour-demo-shell {
  position: relative;
  min-height: clamp(26rem, 48vw, 38rem);
}

.tour-demo-frame {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 72px rgba(15, 49, 92, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.65rem) scale(0.985);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.tour-demo-frame.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.tour-demo-frame picture,
.tour-demo-frame img {
  display: block;
  width: 100%;
  height: 100%;
}

.tour-demo-frame img {
  object-fit: cover;
  object-position: 50% 36%;
}

.tour-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.tour-hotspot {
  position: absolute;
  left: var(--hotspot-x, 50%);
  top: var(--hotspot-y, 50%);
  display: inline-grid;
  transform: translate(-50%, -50%);
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  pointer-events: auto;
}

.tour-hotspot-dot {
  position: relative;
  display: block;
  width: 0.78rem;
  height: 0.78rem;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 0 0.55rem rgba(18, 119, 242, 0.15), 0 12px 30px rgba(7, 23, 53, 0.18);
}

.tour-hotspot-dot::after {
  content: "";
  position: absolute;
  inset: -0.9rem;
  border: 1px solid rgba(18, 119, 242, 0.24);
  border-radius: inherit;
  animation: tourHotspotPulse 2.4s ease infinite;
}

.tour-hotspot-card {
  position: absolute;
  bottom: calc(100% + 0.65rem);
  left: 50%;
  display: grid;
  gap: 0.18rem;
  width: min(16rem, 68vw);
  transform: translate(-50%, 0.4rem);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(15, 49, 92, 0.16);
  opacity: 0;
  padding: 0.7rem 0.8rem;
  text-align: left;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(16px);
  pointer-events: none;
}

.tour-hotspot-card strong {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 880;
  line-height: 1.2;
}

.tour-hotspot-card em {
  color: rgba(7, 23, 53, 0.68);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1.35;
}

.tour-hotspot:is(:hover, :focus-visible) {
  outline: none;
}

.tour-hotspot:is(:hover, :focus-visible) .tour-hotspot-card {
  opacity: 1;
  transform: translate(-50%, 0);
}

.tour-demo-frame figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(15, 49, 92, 0.14);
  backdrop-filter: blur(18px);
}

.tour-demo-frame figcaption p {
  margin: 0.38rem 0 0;
  color: rgba(7, 23, 53, 0.68);
  font-size: 0.9rem;
  font-weight: 680;
  line-height: 1.45;
}

.tour-stepper {
  display: grid;
  gap: 0.95rem;
}

.product-tour-sticky .tour-step {
  position: relative;
  min-height: 13rem;
  padding: 1.1rem 1.1rem 1.1rem 4.6rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-left: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 42px rgba(15, 49, 92, 0.08);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-tour-sticky .tour-step.is-active {
  border-color: rgba(29, 158, 117, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 250, 246, 0.78)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 60px rgba(15, 49, 92, 0.12);
  transform: translateY(-2px);
}

.tour-step-button {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(17, 104, 216, 0.14);
  border-radius: 50%;
  background: rgba(239, 248, 255, 0.92);
  color: var(--blue);
  font: inherit;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.tour-step-button span {
  margin: 0;
  color: inherit;
  font-size: 0.8rem;
  font-weight: 880;
}

.product-tour-sticky .tour-step.is-active .tour-step-button {
  background:
    linear-gradient(135deg, rgba(17, 104, 216, 0.96), rgba(29, 158, 117, 0.9)),
    var(--blue);
  color: white;
  transform: scale(1.04);
}

.product-tour-sticky .tour-step h3 {
  margin-top: 0;
}

@keyframes panelLift {
  from {
    opacity: 0;
    transform: translateY(0.45rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .audience-switcher-stage,
  .product-tour-sticky .tour-sticky-layout {
    grid-template-columns: 1fr;
  }

  .audience-bullet-list {
    grid-template-columns: 1fr;
  }

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

  .tour-sticky-visual {
    position: relative;
    top: auto;
  }

  .tour-demo-shell {
    min-height: clamp(22rem, 66vw, 34rem);
  }

  .use-case-tabbar {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .audience-switcher,
  .use-cases-section,
  .product-tour,
  .feature-showcase {
    width: min(22.5rem, calc(100% - 1rem));
    margin-right: auto;
    margin-left: 0.5rem;
  }

  .audience-switcher .section-heading.compact,
  .product-tour .section-heading.compact,
  .feature-showcase .section-heading.compact {
    max-width: 100%;
  }

  .audience-switcher .section-heading.compact h2,
  .product-tour .section-heading.compact h2,
  .feature-showcase .section-heading.compact h2 {
    overflow-wrap: break-word;
  }

  .audience-tabbar,
  .use-case-tabbar {
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    border-radius: 0.95rem;
    scroll-snap-type: x proximity;
  }

  .audience-tab,
  .use-case-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .use-case-tabbar {
    display: flex;
  }

  .use-case-tab {
    width: min(18rem, 82vw);
  }

  .audience-panel,
  .audience-demo-frame,
  .use-case-panel-shell .use-case-card,
  .product-tour-sticky .tour-step {
    border-radius: 0.85rem;
  }

  .audience-demo-freelancer .audience-demo-image {
    width: 100%;
  }

  .audience-panel-footer,
  .audience-actions {
    align-items: stretch;
  }

  .audience-actions .button,
  .audience-actions .inline-link {
    width: 100%;
  }

  .use-case-panel-shell .use-case-card {
    grid-template-columns: 1fr;
  }

  .use-case-panel-shell .use-case-icon {
    grid-row: auto;
  }

  .tour-demo-shell {
    min-height: 26rem;
  }

  .proof-strip-product {
    width: min(22.5rem, calc(100% - 1rem));
    margin-right: auto;
    margin-left: 0.5rem;
    border-radius: 1rem;
  }

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

  .proof-strip-card {
    min-height: auto;
  }

  .product-tour-sticky {
    margin-top: 3rem;
  }

  .tour-demo-frame {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .tour-demo-frame figcaption {
    position: static;
    margin: 0.7rem;
  }

  .tour-hotspots {
    display: none;
  }

  .product-tour-sticky .tour-step {
    min-height: auto;
    padding: 1rem 1rem 1rem 4.2rem;
  }
}

@keyframes tourHotspotPulse {
  0% {
    opacity: 0.9;
    transform: scale(0.74);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience-panel,
  .audience-demo-frame,
  .use-case-panel-shell .use-case-card,
  .tour-demo-frame {
    animation: none;
    transition: none;
  }

  .tour-hotspot-dot::after {
    animation: none;
  }

  .product-tour-sticky .tour-step.is-active,
  .audience-tab:hover,
  .use-case-tab:hover {
    transform: none;
  }
}

/* Product-led feature showcase. */
.feature-showcase {
  scroll-margin-top: calc(var(--header-offset) + 1.25rem);
  width: min(1180px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(2rem, 5vw, 4.5rem) 0;
}

.feature-showcase-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: stretch;
}

.feature-trigger-grid {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.feature-trigger {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.18rem 0.7rem;
  align-items: start;
  width: 100%;
  min-height: 5.4rem;
  padding: 0.85rem;
  border: 1px solid rgba(17, 104, 216, 0.1);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 34px rgba(15, 49, 92, 0.07);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.feature-trigger:hover {
  border-color: rgba(17, 104, 216, 0.2);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.feature-trigger.is-active {
  border-color: rgba(29, 158, 117, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 250, 246, 0.82)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 54px rgba(15, 49, 92, 0.12);
}

.feature-trigger:focus-visible {
  outline: 3px solid rgba(29, 158, 117, 0.34);
  outline-offset: 3px;
}

.feature-trigger-icon {
  grid-row: 1 / span 3;
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 0.75rem;
  background: rgba(239, 248, 255, 0.9);
  color: var(--blue);
}

.feature-trigger.is-active .feature-trigger-icon {
  background:
    linear-gradient(135deg, rgba(17, 104, 216, 0.96), rgba(29, 158, 117, 0.9)),
    var(--blue);
  color: white;
}

.feature-trigger > span:not(.feature-trigger-icon) {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 860;
  text-transform: uppercase;
}

.feature-trigger strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.25;
}

.feature-trigger p {
  grid-column: 2;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.9rem;
  font-weight: 620;
  line-height: 1.45;
  opacity: 0;
  transition:
    max-height 220ms ease,
    margin-top 220ms ease,
    opacity 160ms ease;
}

.feature-trigger.is-active p {
  max-height: 9rem;
  margin-top: 0.42rem;
  opacity: 1;
}

.feature-live-stack {
  min-width: 0;
}

.feature-live-panel {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: 100%;
  padding: clamp(0.85rem, 2vw, 1rem);
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 183, 62, 0.18), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 249, 255, 0.78));
  box-shadow: 0 24px 72px rgba(15, 49, 92, 0.12);
  animation: panelLift 260ms ease both;
}

.feature-live-shot {
  position: relative;
  overflow: visible;
  min-height: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-live-desktop .feature-live-shot {
  aspect-ratio: auto;
}

.feature-live-shot picture,
.feature-live-shot img {
  display: block;
  width: 100%;
}

.feature-live-shot img {
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 52px rgba(15, 49, 92, 0.13);
  object-fit: contain;
  object-position: 50% 36%;
}

.feature-live-phone .feature-live-shot {
  display: grid;
  place-items: center;
  justify-items: center;
  min-height: clamp(24rem, 42vw, 34rem);
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 50% 28%, rgba(62, 215, 163, 0.18), transparent 12rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(15, 49, 92, 0.13);
}

.feature-live-phone .feature-live-shot picture {
  width: min(16rem, 70%);
  height: auto;
  aspect-ratio: 390 / 844;
  overflow: hidden;
  border: 1px solid rgba(17, 104, 216, 0.1);
  border-radius: 1.45rem;
  box-shadow: 0 20px 56px rgba(15, 49, 92, 0.16);
}

.feature-live-shot figcaption {
  position: static;
  width: 100%;
  margin: 0.75rem 0 0;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(15, 49, 92, 0.1);
  backdrop-filter: blur(18px);
}

.feature-live-shot figcaption span,
.feature-live-copy > span {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 860;
  text-transform: uppercase;
}

.feature-live-shot figcaption strong {
  display: block;
  color: var(--ink);
  line-height: 1.24;
}

.feature-live-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0 clamp(0.35rem, 1.5vw, 0.65rem) clamp(0.35rem, 1.5vw, 0.65rem);
}

.feature-live-copy h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
}

.feature-live-copy p {
  color: rgba(7, 23, 53, 0.74);
}

.feature-live-copy ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0.95rem 0 1.1rem;
  padding: 0;
  list-style: none;
}

.feature-live-copy li {
  position: relative;
  padding-left: 1.05rem;
  color: rgba(7, 23, 53, 0.72);
  font-size: 0.9rem;
  font-weight: 660;
  line-height: 1.45;
}

.feature-live-copy li::before {
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #1d9e75;
  content: "";
}

.feature-live-copy .inline-link {
  display: inline-flex;
  gap: 0.32rem;
  align-items: center;
  width: fit-content;
  margin-top: auto;
}

@media (max-width: 980px) {
  .feature-showcase-layout,
  .feature-live-panel {
    grid-template-columns: 1fr;
  }

  .feature-trigger-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x proximity;
  }

  .feature-trigger {
    flex: 0 0 min(22rem, 78vw);
    scroll-snap-align: start;
  }

  .feature-live-shot {
    min-height: 0;
  }

  .feature-live-phone .feature-live-shot {
    min-height: clamp(22rem, 62vw, 32rem);
  }

  .feature-live-copy ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .feature-showcase {
    width: min(100% - 1rem, 1180px);
  }

  .feature-trigger {
    min-height: 5.4rem;
  }

  .feature-live-panel,
  .feature-live-shot {
    border-radius: 0.85rem;
  }

  .feature-live-shot {
    min-height: 0;
  }

  .feature-live-phone .feature-live-shot {
    min-height: 24rem;
  }

  .feature-live-phone .feature-live-shot picture {
    width: min(13.5rem, 72%);
  }

  .feature-live-shot figcaption {
    margin-top: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-live-panel {
    animation: none;
  }

  .feature-trigger,
  .feature-trigger:hover {
    transform: none;
  }
}

/* WordPress runtime layer. */
.wp-site-blocks,
.entry-content {
  min-width: 0;
}

.wp-block-shortcode {
  margin: 0;
}

.article-content > * {
  max-width: 48rem;
  margin-right: auto;
  margin-left: auto;
}

.article-content h2 {
  margin-top: 2.1rem;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.12;
}

.article-content p,
.article-content li {
  color: rgba(7, 23, 53, 0.74);
  font-size: 1.04rem;
  line-height: 1.72;
}

.article-content ul {
  display: grid;
  gap: 0.6rem;
  padding-left: 1.1rem;
}

.mobile-menu-toggle .menu-open-icon,
.mobile-menu-toggle .menu-close-icon {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.2rem;
  font-weight: 850;
  line-height: 1.25rem;
}

.admin-bar .site-header {
  top: calc(0.75rem + 32px);
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: calc(0.75rem + 46px);
  }
}

/* Elementor-reference redesign foundation: premium DAYLUMO components, no builder dependency. */
:root {
  --ink: #081426;
  --ink-soft: #334862;
  --muted: #69788c;
  --line: rgba(8, 20, 38, 0.11);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --blue: #0b74ff;
  --blue-2: #42b7ff;
  --cyan: #a9efff;
  --gold: #ffbc49;
  --green: #23c48e;
  --rose: #ff6fb7;
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.4rem;
  --radius-xl: 2rem;
  --shadow: 0 20px 70px rgba(14, 45, 82, 0.12);
  --shadow-strong: 0 34px 110px rgba(10, 40, 76, 0.2);
  --shadow-tight: 0 12px 34px rgba(14, 45, 82, 0.1);
}

body {
  background:
    radial-gradient(circle at 8% 6%, rgba(169, 239, 255, 0.72), transparent 26rem),
    radial-gradient(circle at 92% 9%, rgba(255, 188, 73, 0.24), transparent 22rem),
    radial-gradient(circle at 54% 0%, rgba(255, 255, 255, 0.94), transparent 34rem),
    linear-gradient(180deg, #f8fcff 0%, #eff9ff 38%, #f9fcff 100%);
}

body::before {
  opacity: 0.72;
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 66%);
}

.site-header {
  min-height: 4.55rem;
  padding: 0.62rem 0.7rem 0.62rem 1rem;
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 22px 70px rgba(14, 45, 82, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.desktop-nav {
  font-size: 0.92rem;
}

.desktop-nav a,
.nav-dropdown-trigger {
  padding: 0.58rem 0.1rem;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.desktop-nav a:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
  transform: translateY(-1px);
}

.button {
  min-height: 3.15rem;
  border-color: rgba(8, 20, 38, 0.08);
  background:
    linear-gradient(135deg, rgba(7, 20, 38, 0.98), rgba(14, 63, 113, 0.96)),
    var(--ink);
  box-shadow: 0 20px 48px rgba(8, 20, 38, 0.18);
}

.button:hover {
  box-shadow: 0 26px 66px rgba(8, 20, 38, 0.22);
}

.button-secondary {
  border-color: rgba(8, 20, 38, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(14, 45, 82, 0.1);
  color: var(--ink);
}

.button-light {
  background: #ffffff;
  color: var(--ink);
}

.eyebrow {
  color: var(--blue);
  font-size: 0.74rem;
}

h1 {
  font-weight: 880;
}

h2,
h3 {
  font-weight: 820;
}

.section-heading.compact {
  max-width: 50rem;
}

.feature-card,
.problem-card,
.audience-card,
.capability-card,
.plan-card,
.pricing-intro-note,
.pricing-business-cta,
.pricing-info-grid article,
.pricing-faq-grid details,
.faq-accordion-item,
.testimonial-grid article,
.use-case-card,
.audience-panel,
.audience-demo-frame,
.feature-live-panel,
.product-tour-sticky .tour-step {
  border-color: rgba(8, 20, 38, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.78)),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-tight);
}

.feature-card:hover,
.problem-card:hover,
.audience-card:hover,
.capability-card:hover,
.plan-card:hover,
.testimonial-grid article:hover,
.use-case-card:hover {
  border-color: rgba(11, 116, 255, 0.18);
  box-shadow: var(--shadow);
}

[data-spotlight-card] {
  position: relative;
  overflow: hidden;
}

[data-spotlight-card]::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at var(--spotlight-x, 50%) var(--spotlight-y, 0%), rgba(255, 255, 255, 0.78), transparent 15rem);
  opacity: 0;
  transition: opacity 180ms ease;
}

[data-spotlight-card]:hover::before {
  opacity: 1;
}

@media (max-width: 640px) {
  .site-header {
    min-height: 3.9rem;
  }

  .button {
    min-height: 2.9rem;
  }
}

/* Stage 2: cinematic first screen with real product media. */
.hero-cinematic {
  position: relative;
  grid-template-columns: minmax(0, 0.86fr) minmax(28rem, 1.14fr);
  width: min(1320px, calc(100% - 2rem));
  max-width: calc(100vw - 2rem);
  min-height: calc(100vh - 5.2rem);
  overflow: hidden;
  padding-top: clamp(3.8rem, 5.8vw, 6rem);
  padding-bottom: clamp(3.2rem, 5.5vw, 5.2rem);
}

.hero-cinematic-bg {
  position: absolute;
  inset: 1rem -1rem auto auto;
  z-index: -1;
  width: min(62rem, 72vw);
  height: min(42rem, 62vw);
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 188, 73, 0.34), transparent 16rem),
    radial-gradient(circle at 46% 42%, rgba(66, 183, 255, 0.24), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent);
  filter: blur(2px);
}

.hero-cinematic .hero-copy {
  align-self: center;
  min-width: 0;
  max-width: 100%;
}

.hero-cinematic h1 {
  max-width: 12.8ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.05rem, 4.8vw, 4.75rem);
  line-height: 1.02;
  overflow-wrap: normal;
}

.hero-cinematic .hero-lead {
  width: 100%;
  max-width: 40rem;
  color: rgba(8, 20, 38, 0.76);
  font-size: clamp(1.08rem, 1.45vw, 1.26rem);
  line-height: 1.62;
  overflow-wrap: break-word;
}

.hero-cinematic .hero-eyebrow-pill {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(14, 45, 82, 0.1);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 42rem;
  margin: 1.25rem 0 0;
}

.hero-metrics div {
  min-height: 6.4rem;
  padding: 0.9rem;
  border: 1px solid rgba(8, 20, 38, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 42px rgba(14, 45, 82, 0.09);
  backdrop-filter: blur(18px);
}

.hero-metrics dt {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 880;
  line-height: 1;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(8, 20, 38, 0.68);
  font-size: 0.82rem;
  font-weight: 690;
  line-height: 1.35;
}

.hero-cinematic .hero-visual {
  min-width: 0;
  max-width: 100%;
  min-height: clamp(34rem, 56vw, 44rem);
  overflow: visible;
}

.hero-cinematic .product-screens {
  max-width: 100%;
  min-height: clamp(34rem, 56vw, 44rem);
}

.hero-cinematic .screen-shot-main {
  right: -3%;
  bottom: 9%;
  width: min(96%, 54rem);
  border-radius: var(--radius-xl);
  transform: translate3d(var(--hero-x), var(--hero-y), 0) rotate(-1.4deg);
}

.hero-cinematic .screen-shot-mobile {
  bottom: 3%;
  left: -2%;
  width: clamp(9rem, 16vw, 13rem);
}

.hero-cinematic .screen-orbit {
  top: -2%;
  right: 2%;
}

.hero-cinematic .screen-card-top {
  top: 10%;
  left: 0;
}

.hero-cinematic .screen-card-ai {
  right: 2%;
  bottom: -2%;
  max-width: 19rem;
}

.hero-cinematic .screen-flow-chip {
  top: 30%;
  left: 8%;
}

@media (max-width: 980px) {
  .hero-cinematic {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-cinematic h1 {
    max-width: 17ch;
    font-size: clamp(2.75rem, 8vw, 4.4rem);
  }

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

  .hero-cinematic .hero-visual,
  .hero-cinematic .product-screens {
    min-height: clamp(31rem, 74vw, 43rem);
  }
}

@media (max-width: 640px) {
  .hero-cinematic {
    width: calc(100% - 1rem);
    max-width: calc(100vw - 1rem);
    padding-top: 2.2rem;
  }

  .hero-cinematic .hero-copy {
    width: 100%;
    max-width: min(100%, 22.5rem);
  }

  .hero-cinematic .hero-copy > :where(h1, .hero-lead, .hero-actions, .hero-people-proof, .hero-metrics) {
    width: 100%;
    max-width: min(100%, 22.5rem);
  }

  .hero-cinematic h1 {
    width: auto;
    max-width: 12ch;
    font-size: clamp(1.95rem, 8.6vw, 2.28rem);
  }

  .hero-cinematic .hero-copy > h1 {
    width: auto;
    max-width: 12ch;
  }

  .hero-cinematic .hero-lead {
    width: 100%;
    max-width: 22.5rem;
    font-size: 1rem;
  }

  .hero-cinematic .hero-people-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    justify-content: start;
    text-align: left;
  }

  .hero-cinematic .hero-trust-line {
    width: 100%;
    max-width: 22.5rem;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .hero-metrics {
    gap: 0.55rem;
  }

  .hero-metrics div {
    min-height: auto;
  }

  .hero-cinematic .hero-visual,
  .hero-cinematic .product-screens {
    min-height: 28.5rem;
    overflow: hidden;
  }

  .hero-cinematic .screen-shot-main {
    right: -8%;
    bottom: 19%;
    width: 110%;
    border-radius: 1rem;
  }

  .hero-cinematic .screen-shot-mobile {
    bottom: 11%;
    left: -0.2rem;
    width: 8.6rem;
  }

  .hero-cinematic .screen-flow-chip {
    top: 6%;
    left: 0;
  }

  .hero-cinematic .screen-card-top {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .hero-cinematic .screen-card-ai {
    display: none;
  }
}

.daylumo-builder-section {
  width: min(100% - 2rem, 1180px);
  margin: clamp(4rem, 8vw, 7rem) auto;
  border: 1px solid rgba(181, 215, 239, 0.74);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 10% 0%, rgba(42, 170, 255, 0.11), transparent 24rem),
    radial-gradient(circle at 92% 8%, rgba(255, 220, 145, 0.16), transparent 24rem),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.daylumo-builder-section-white {
  background: rgba(255, 255, 255, 0.94);
}

.daylumo-builder-section-product {
  background:
    linear-gradient(135deg, rgba(228, 250, 246, 0.92), rgba(239, 248, 255, 0.92)),
    #fff;
}

.daylumo-builder-section-glow {
  background:
    radial-gradient(circle at 18% 18%, rgba(21, 130, 246, 0.16), transparent 24rem),
    radial-gradient(circle at 84% 18%, rgba(28, 190, 174, 0.18), transparent 24rem),
    rgba(255, 255, 255, 0.9);
}

.daylumo-builder-section-narrow .daylumo-builder-section-inner {
  max-width: 820px;
}

.daylumo-builder-section-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.daylumo-builder-section-content {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.daylumo-block-shell {
  position: relative;
  margin-inline: auto;
}

.daylumo-block-width-narrow {
  width: min(100% - 2rem, 860px);
}

.daylumo-block-width-wide {
  width: min(100%, 1180px);
}

.daylumo-block-width-full {
  width: 100%;
}

.daylumo-block-padding-none {
  padding: 0;
}

.daylumo-block-padding-compact {
  padding: clamp(0.75rem, 2vw, 1.25rem);
}

.daylumo-block-padding-normal {
  padding: 0;
}

.daylumo-block-padding-large {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.daylumo-block-surface-soft,
.daylumo-block-surface-glass,
.daylumo-block-surface-ink {
  overflow: clip;
  border-radius: clamp(1.25rem, 3vw, 2rem);
}

.daylumo-block-surface-soft {
  border: 1px solid rgba(181, 215, 239, 0.72);
  background:
    radial-gradient(circle at 10% 0%, rgba(42, 170, 255, 0.1), transparent 22rem),
    radial-gradient(circle at 92% 8%, rgba(62, 215, 163, 0.12), transparent 24rem),
    rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 68px rgba(15, 49, 92, 0.12);
}

.daylumo-block-surface-glass {
  border: 1px solid rgba(181, 215, 239, 0.64);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 26px 90px rgba(15, 49, 92, 0.14);
  backdrop-filter: blur(18px);
}

.daylumo-block-surface-ink {
  border: 1px solid rgba(158, 232, 255, 0.24);
  color: #f8fbff;
  background:
    radial-gradient(circle at 16% 12%, rgba(71, 183, 255, 0.2), transparent 22rem),
    radial-gradient(circle at 88% 6%, rgba(62, 215, 163, 0.16), transparent 24rem),
    #071735;
  box-shadow: 0 34px 110px rgba(7, 23, 53, 0.24);
}

.daylumo-block-surface-ink .eyebrow,
.daylumo-block-surface-ink .section-heading p,
.daylumo-block-surface-ink .feature-copy p,
.daylumo-block-surface-ink .cta-panel p {
  color: rgba(248, 251, 255, 0.78);
}

@media (max-width: 767px) {
  .daylumo-block-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .daylumo-block-hide-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .daylumo-block-hide-desktop {
    display: none !important;
  }
}

/* Premium redesign pass: native Builder content, generated media assets, cinematic motion. */
body {
  background:
    linear-gradient(180deg, rgba(241, 250, 255, 0.96), rgba(250, 254, 255, 0.98) 28%, rgba(255, 249, 238, 0.52) 63%, rgba(238, 250, 247, 0.82)),
    #f6fbff;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 23, 53, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 23, 53, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 76%);
  content: "";
}

.daylumo-block-shell {
  isolation: isolate;
}

.home-cinematic-hero {
  width: 100%;
  max-width: none;
  margin-top: clamp(0.7rem, 2vw, 1.2rem);
  padding-inline: clamp(0.75rem, 2.6vw, 2rem);
}

.home-cinematic-hero .hero-cinematic {
  width: min(1480px, 100%);
  min-height: min(900px, calc(100vh - 2.5rem));
  margin-inline: auto;
  padding: clamp(4.8rem, 7vw, 7.6rem) clamp(1rem, 3.4vw, 3rem) clamp(3rem, 6vw, 5rem);
  border: 1px solid rgba(167, 207, 230, 0.68);
  border-radius: clamp(1.1rem, 2.6vw, 2.4rem);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.92) 0 34%, rgba(237, 250, 246, 0.9) 34% 67%, rgba(255, 248, 235, 0.76) 67% 100%),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 34px 110px rgba(15, 49, 92, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: clip;
}

.home-cinematic-hero .hero-cinematic::before,
.home-cinematic-hero .hero-cinematic::after {
  position: absolute;
  inset: auto;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.home-cinematic-hero .hero-cinematic::before {
  right: -7%;
  bottom: -16%;
  width: min(56rem, 66vw);
  height: min(44rem, 56vw);
  background:
    linear-gradient(135deg, rgba(18, 119, 242, 0.14), rgba(34, 184, 173, 0.18)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 1px, transparent 1px 32px);
  clip-path: polygon(14% 0, 100% 12%, 82% 100%, 0 78%);
  filter: blur(0.2px);
  transform: rotate(-9deg);
}

.home-cinematic-hero .hero-cinematic::after {
  top: 9%;
  left: 44%;
  width: min(35rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 119, 242, 0.28), rgba(34, 184, 173, 0.22), transparent);
  transform: rotate(-16deg);
}

.home-cinematic-hero .hero-cinematic-bg {
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(115deg, rgba(18, 119, 242, 0.06), transparent 36%),
    linear-gradient(245deg, rgba(255, 184, 78, 0.11), transparent 42%);
  filter: none;
}

.home-cinematic-hero .hero-cinematic h1 {
  max-width: 12.4ch;
  color: #061631;
  font-size: clamp(3.05rem, 5.25vw, 5.8rem);
  line-height: 0.96;
}

.home-cinematic-hero .hero-lead {
  max-width: 43rem;
  color: rgba(7, 23, 53, 0.74);
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
}

.home-cinematic-hero .hero-actions {
  margin-top: 1.45rem;
}

.home-cinematic-hero .hero-people-proof {
  max-width: 40rem;
}

.home-cinematic-hero .hero-metrics {
  max-width: 44rem;
  margin-top: 1.45rem;
}

.home-cinematic-hero .hero-metrics div,
.home-proof-chapter .proof-strip-card,
.home-problem-chapter .problem-card,
.home-pricing-chapter .plan-card,
.home-faq-chapter .faq-accordion-item {
  position: relative;
  overflow: hidden;
}

.home-cinematic-hero .hero-metrics div::after,
.home-proof-chapter .proof-strip-card::after,
.home-problem-chapter .problem-card::after,
.home-pricing-chapter .plan-card::after,
.home-faq-chapter .faq-accordion-item::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 38%);
  content: "";
}

.home-cinematic-hero .hero-visual {
  align-self: center;
  min-height: clamp(36rem, 58vw, 48rem);
}

.home-cinematic-hero .product-screens {
  min-height: clamp(36rem, 58vw, 48rem);
  perspective: 1500px;
}

.home-cinematic-hero .screen-shot-main {
  right: -7%;
  bottom: 8%;
  width: min(105%, 62rem);
  border-radius: clamp(1rem, 2vw, 1.55rem);
  box-shadow:
    0 42px 92px rgba(5, 24, 48, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.78);
  transform: translate3d(var(--hero-x), var(--hero-y), 0) rotateX(4deg) rotateY(-11deg) rotateZ(-1.4deg);
  transform-style: preserve-3d;
}

.home-cinematic-hero .screen-shot-main img {
  object-fit: cover;
}

.home-cinematic-hero .screen-shot-mobile {
  bottom: 2%;
  left: -1%;
  width: clamp(9.5rem, 16vw, 14.5rem);
  border-radius: clamp(1.4rem, 3vw, 2rem);
  box-shadow:
    0 32px 80px rgba(5, 24, 48, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.82);
  transform: translate3d(var(--hero-phone-x), var(--hero-phone-y), 3rem) rotateX(4deg) rotateY(10deg) rotateZ(4deg);
}

.home-cinematic-hero .screen-orbit {
  top: 2%;
  right: 5%;
  opacity: 0.92;
}

.home-cinematic-hero .screen-flow-chip {
  top: 56%;
  left: 12%;
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.82);
}

.home-cinematic-hero .screen-card {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(15, 49, 92, 0.16);
  backdrop-filter: blur(22px);
}

.home-cinematic-hero .screen-card-top {
  top: 4%;
  left: 4%;
  max-width: 18rem;
}

.home-cinematic-hero .screen-card-ai {
  right: 7%;
  bottom: 0;
}

.home-proof-chapter,
.home-problem-chapter,
.home-product-showcase,
.home-audience-chapter,
.home-tour-chapter,
.home-pricing-chapter,
.home-faq-chapter {
  width: min(1240px, calc(100% - 2rem));
  max-width: none;
  margin-top: clamp(4.5rem, 8vw, 8rem);
}

.home-proof-chapter .proof-strip-product {
  width: 100%;
  margin: 0;
  padding: clamp(1.1rem, 2.6vw, 2rem);
  border-color: rgba(167, 207, 230, 0.62);
  border-radius: clamp(1rem, 2.4vw, 1.8rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 250, 255, 0.74)),
    rgba(255, 255, 255, 0.86);
}

.home-proof-chapter .proof-strip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-proof-chapter .proof-strip-card {
  min-height: 17rem;
  transform-origin: 50% 100%;
}

.home-proof-chapter .proof-strip-card:nth-child(even) {
  margin-top: 1.3rem;
}

.home-problem-chapter .problem-section,
.home-product-showcase .feature-showcase,
.home-audience-chapter .audience-switcher,
.home-tour-chapter .product-tour,
.home-pricing-chapter .pricing-plans-section,
.home-faq-chapter .faq-section {
  width: 100%;
}

.home-problem-chapter .problem-card {
  min-height: 18rem;
  border-color: rgba(167, 207, 230, 0.66);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 250, 255, 0.74)),
    rgba(255, 255, 255, 0.9);
}

.home-product-showcase .feature-showcase {
  padding-block: clamp(3rem, 6vw, 5.8rem);
}

.home-product-showcase .feature-showcase-layout {
  grid-template-columns: minmax(18rem, 0.52fr) minmax(0, 1.48fr);
}

.home-product-showcase .feature-trigger {
  border-color: rgba(167, 207, 230, 0.62);
  background: rgba(255, 255, 255, 0.68);
}

.home-product-showcase .feature-trigger.is-active {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 250, 246, 0.82)),
    rgba(255, 255, 255, 0.9);
}

.home-product-showcase .feature-live-panel,
.home-audience-chapter .audience-switcher-stage,
.home-tour-chapter .tour-demo-frame,
.home-pricing-chapter .plan-card {
  border-color: rgba(167, 207, 230, 0.66);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 250, 255, 0.7)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 86px rgba(15, 49, 92, 0.13);
}

.home-product-showcase .feature-live-shot img,
.home-audience-chapter .audience-demo-image img,
.home-tour-chapter .tour-demo-frame img {
  filter: saturate(1.04) contrast(1.02);
}

.home-audience-chapter .audience-tabbar {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(167, 207, 230, 0.54);
  backdrop-filter: blur(18px);
}

.home-tour-chapter .product-tour-sticky .tour-sticky-layout {
  grid-template-columns: minmax(25rem, 1.12fr) minmax(0, 0.88fr);
}

.home-tour-chapter .tour-demo-shell {
  min-height: clamp(30rem, 52vw, 43rem);
  perspective: 1300px;
}

.home-tour-chapter .tour-demo-frame {
  border-radius: clamp(1rem, 2vw, 1.55rem);
  transform: rotateX(3deg) rotateY(-5deg) translateY(0.9rem) scale(0.975);
  transform-origin: 50% 72%;
}

.home-tour-chapter .tour-demo-frame.is-active {
  transform: rotateX(0) rotateY(0) translateY(0) scale(1);
}

.home-tour-chapter .tour-step {
  border-color: rgba(167, 207, 230, 0.6);
  background: rgba(255, 255, 255, 0.62);
}

.home-tour-chapter .tour-step.is-active {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 250, 246, 0.76)),
    rgba(255, 255, 255, 0.9);
}

.home-pricing-chapter {
  padding-block: clamp(2.4rem, 5vw, 4rem);
}

.home-pricing-chapter .pricing-plans-section {
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(167, 207, 230, 0.62);
  border-radius: clamp(1rem, 2.4vw, 1.8rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 249, 238, 0.62)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 90px rgba(15, 49, 92, 0.12);
}

.home-faq-chapter .faq-section {
  padding-block: clamp(2rem, 5vw, 4rem);
}

.home-faq-chapter .faq-accordion {
  max-width: 960px;
  margin-inline: auto;
}

.home-faq-chapter .faq-accordion-item {
  border-color: rgba(167, 207, 230, 0.66);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 46px rgba(15, 49, 92, 0.08);
}

@media (prefers-reduced-motion: no-preference) {
  html.dl-motion-ready [data-reveal] {
    filter: none;
    transform: scale(0.94) rotateX(1.5deg);
    transform-origin: 50% 50%;
    transition:
      opacity 220ms ease,
      transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  html.dl-motion-ready [data-reveal].is-visible {
    filter: none;
    transform: scale(1) rotateX(0);
  }

  html.dl-motion-ready .home-cinematic-hero .screen-shot-main {
    animation: daylumoHeroFloat 7.5s ease-in-out infinite;
  }

  html.dl-motion-ready .home-cinematic-hero .screen-shot-mobile {
    animation: daylumoPhoneFloat 8.2s ease-in-out infinite;
  }

  html.dl-motion-ready .home-proof-chapter .proof-strip-card.is-visible,
  html.dl-motion-ready .home-problem-chapter .problem-card.is-visible,
  html.dl-motion-ready .home-product-showcase .feature-trigger.is-visible,
  html.dl-motion-ready .home-tour-chapter .tour-step.is-visible {
    animation: daylumoPageSettle 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

@keyframes daylumoHeroFloat {
  0%,
  100% {
    transform: translate3d(var(--hero-x), var(--hero-y), 0) rotateX(4deg) rotateY(-11deg) rotateZ(-1.4deg);
  }

  50% {
    transform: translate3d(calc(var(--hero-x) + 0.4rem), calc(var(--hero-y) - 0.65rem), 0) rotateX(3deg) rotateY(-8deg) rotateZ(-0.7deg);
  }
}

@keyframes daylumoPhoneFloat {
  0%,
  100% {
    transform: translate3d(var(--hero-phone-x), var(--hero-phone-y), 3rem) rotateX(4deg) rotateY(10deg) rotateZ(4deg);
  }

  50% {
    transform: translate3d(calc(var(--hero-phone-x) - 0.25rem), calc(var(--hero-phone-y) + 0.55rem), 3rem) rotateX(3deg) rotateY(8deg) rotateZ(2.8deg);
  }
}

@keyframes daylumoPageSettle {
  from {
    transform: scale(0.965) rotateX(2deg);
  }

  to {
    transform: scale(1) rotateX(0);
  }
}

@media (max-width: 1180px) {
  .home-cinematic-hero .hero-cinematic {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .home-proof-chapter .proof-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home-cinematic-hero .hero-cinematic {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-cinematic-hero .hero-cinematic h1 {
    max-width: 13ch;
    font-size: clamp(2.9rem, 9vw, 4.8rem);
  }

  .home-cinematic-hero .hero-visual,
  .home-cinematic-hero .product-screens {
    min-height: clamp(32rem, 78vw, 44rem);
  }

  .home-product-showcase .feature-showcase-layout,
  .home-tour-chapter .product-tour-sticky .tour-sticky-layout {
    grid-template-columns: 1fr;
  }

  .home-tour-chapter .tour-sticky-visual {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  body::before {
    background-size: 42px 42px;
  }

  .home-cinematic-hero {
    padding-inline: 0.5rem;
  }

  .home-cinematic-hero .hero-cinematic {
    width: 100%;
    padding: 2.6rem 1rem 2rem;
    border-radius: 1.1rem;
  }

  .home-cinematic-hero .hero-cinematic h1 {
    max-width: 12.5ch;
    font-size: clamp(2.08rem, 9.3vw, 2.76rem);
  }

  .home-cinematic-hero .hero-copy,
  .home-cinematic-hero .hero-copy > :where(h1, .hero-lead, .hero-actions, .hero-people-proof, .hero-metrics) {
    max-width: 100%;
  }

  .home-cinematic-hero .hero-actions {
    align-items: stretch;
  }

  .home-cinematic-hero .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .home-cinematic-hero .hero-visual,
  .home-cinematic-hero .product-screens {
    min-height: 25rem;
    overflow: visible;
  }

  .home-cinematic-hero .hero-metrics {
    display: none;
  }

  .home-cinematic-hero .screen-shot-main {
    right: -24%;
    bottom: 14%;
    width: 134%;
    transform: translate3d(var(--hero-x), var(--hero-y), 0) rotateX(0) rotateY(-7deg) rotateZ(-1.2deg);
  }

  .home-cinematic-hero .screen-shot-mobile {
    bottom: 0;
    left: 0;
    width: 8.2rem;
  }

  .home-cinematic-hero .screen-flow-chip {
    top: 1rem;
    left: 0;
    max-width: calc(100% - 1rem);
  }

  .home-cinematic-hero .screen-orbit {
    top: 0.6rem;
    right: 0.5rem;
    transform: scale(0.82);
  }

  .home-proof-chapter,
  .home-problem-chapter,
  .home-product-showcase,
  .home-audience-chapter,
  .home-tour-chapter,
  .home-pricing-chapter,
  .home-faq-chapter {
    width: min(100% - 1rem, 1180px);
    margin-top: 4rem;
  }

  .home-proof-chapter .proof-strip-grid {
    grid-template-columns: 1fr;
  }

  .home-proof-chapter .proof-strip-card:nth-child(even) {
    margin-top: 0;
  }

  .home-product-showcase .feature-showcase,
  .home-audience-chapter .audience-switcher,
  .home-tour-chapter .product-tour {
    width: 100%;
    margin-left: 0;
  }

  .home-tour-chapter .tour-demo-shell {
    min-height: 25rem;
  }

  html.dl-motion-ready .home-cinematic-hero .screen-shot-main,
  html.dl-motion-ready .home-cinematic-hero .screen-shot-mobile {
    animation: none;
  }
}

/* 2026 premium design reset: native WordPress/Builder content, stronger layout and clean motion. */
:root {
  --ink: #071426;
  --ink-soft: #32455d;
  --muted: #6d7a8d;
  --line: rgba(8, 20, 38, 0.12);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --blue: #0e6ef6;
  --blue-2: #45b8ff;
  --cyan: #aef2ff;
  --mint: #36d4aa;
  --gold: #ffbd52;
  --rose: #ff7cae;
  --shadow: 0 24px 70px rgba(13, 42, 76, 0.12);
  --shadow-strong: 0 44px 140px rgba(7, 25, 48, 0.2);
  --header-offset: 6.75rem;
}

html {
  scroll-padding-top: var(--header-offset);
}

[id] {
  scroll-margin-top: var(--header-offset);
}

body {
  background:
    radial-gradient(circle at 8% 4%, rgba(174, 242, 255, 0.66), transparent 27rem),
    radial-gradient(circle at 92% 8%, rgba(255, 189, 82, 0.3), transparent 24rem),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.96), transparent 36rem),
    linear-gradient(180deg, #f7fcff 0%, #eef9ff 35%, #fff8ec 68%, #f3fbf8 100%);
}

body::before {
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 20, 38, 0.03) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 72%);
}

body::after {
  inset: 16rem -12% auto -12%;
  height: 44rem;
  background:
    radial-gradient(ellipse at 22% 20%, rgba(54, 212, 170, 0.13), transparent 52%),
    radial-gradient(ellipse at 78% 0%, rgba(14, 110, 246, 0.12), transparent 56%);
}

main {
  position: relative;
}

.site-header {
  top: 0.85rem;
  grid-template-columns: minmax(9.5rem, auto) minmax(0, 1fr) auto;
  gap: clamp(0.45rem, 1.5vw, 1rem);
  width: min(1220px, calc(100% - 1.5rem));
  min-height: 4.15rem;
  padding: 0.5rem;
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 253, 255, 0.82)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 26px 80px rgba(8, 32, 61, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.site-header::before {
  position: absolute;
  inset: 0.35rem;
  z-index: -1;
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(69, 184, 255, 0.18), transparent 12rem),
    radial-gradient(circle at 98% 16%, rgba(255, 189, 82, 0.18), transparent 13rem);
  content: "";
}

.brand-lockup {
  min-height: 3rem;
  padding-inline: 0.45rem 0.65rem;
  border-radius: 1rem;
}

.brand-lockup:focus-visible,
.desktop-nav-list a:focus-visible,
.mobile-menu-toggle:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(14, 110, 246, 0.28);
  outline-offset: 3px;
}

.desktop-nav {
  align-self: stretch;
  justify-content: center;
  font-size: 0.93rem;
}

.desktop-nav-list {
  gap: 0.14rem;
  height: 100%;
}

.desktop-nav-list > li {
  display: flex;
  align-items: center;
}

.desktop-nav-list > li > a {
  position: relative;
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  padding: 0.58rem 0.82rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(7, 20, 38, 0.72);
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.desktop-nav-list > li > a:hover,
.desktop-nav-list > li:focus-within > a {
  border-color: rgba(14, 110, 246, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  transform: scale(1.03);
}

body:not(.home) .desktop-nav-list > .current-menu-item > a,
body:not(.home) .desktop-nav-list > .current-menu-ancestor > a {
  border-color: rgba(14, 110, 246, 0.16);
  background: rgba(14, 110, 246, 0.08);
  color: var(--blue);
}

body.home .desktop-nav-list > .menu-item-home > a[aria-current="page"] {
  border-color: transparent;
  background: transparent;
  color: rgba(7, 20, 38, 0.72);
}

.desktop-nav-list .sub-menu {
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 16rem;
  padding: 0.55rem;
  border-color: rgba(14, 110, 246, 0.12);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 255, 0.94)),
    #fff;
  box-shadow: 0 28px 90px rgba(8, 32, 61, 0.18);
  transform: translateY(0.45rem) scale(0.98);
}

.desktop-nav-list li:hover > .sub-menu,
.desktop-nav-list li:focus-within > .sub-menu {
  transform: translateY(0) scale(1);
}

.desktop-nav-list .sub-menu a {
  min-height: 2.6rem;
  padding: 0.65rem 0.78rem;
  border-radius: 0.8rem;
  color: rgba(7, 20, 38, 0.76);
  font-weight: 760;
}

.desktop-nav-list .sub-menu a:hover {
  background: rgba(14, 110, 246, 0.08);
  color: var(--blue);
}

.header-actions .button-small {
  min-height: 3rem;
  padding-inline: 1.15rem;
  background:
    linear-gradient(135deg, #071426 0%, #0c315e 58%, #0e6ef6 100%),
    #071426;
  box-shadow: 0 20px 48px rgba(7, 20, 38, 0.22);
}

.mobile-menu-toggle {
  width: 3rem;
  height: 3rem;
  border-color: rgba(14, 110, 246, 0.14);
  background: rgba(255, 255, 255, 0.78);
}

.mobile-menu-toggle .menu-open-icon,
.mobile-menu-toggle .menu-close-icon {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  font-size: 1.25rem;
  line-height: 1;
}

.mobile-menu-panel {
  right: 0.5rem;
  left: 0.5rem;
  max-height: min(34rem, calc(100dvh - 7rem));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.85rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 189, 82, 0.18), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 255, 0.94)),
    #fff;
  box-shadow: 0 32px 100px rgba(8, 32, 61, 0.24);
  transform-origin: top center;
}

.mobile-menu-panel:not([hidden]) {
  animation: daylumoMenuBloom 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mobile-menu-panel a {
  min-height: 3.1rem;
  border: 1px solid rgba(14, 110, 246, 0.08);
  background: rgba(255, 255, 255, 0.64);
}

.mobile-nav-list .sub-menu {
  padding-left: 0;
}

.mobile-nav-list .sub-menu a {
  padding-left: 1.25rem;
  color: rgba(7, 20, 38, 0.66);
}

.blog .dlb-theme-template-archive,
.archive .dlb-theme-template-archive,
.search .page-hero,
.error404 .page-hero {
  width: min(1240px, calc(100% - 1.5rem));
  margin: clamp(1.3rem, 3vw, 2.4rem) auto 0;
}

.blog .dlb-block-heading {
  width: 100%;
  max-width: none;
}

.blog .dlb-heading {
  position: relative;
  overflow: clip;
  padding: clamp(3.4rem, 7vw, 6.4rem) clamp(1.2rem, 5vw, 4rem);
  border: 1px solid rgba(167, 207, 230, 0.62);
  border-radius: clamp(1.35rem, 3vw, 2.4rem);
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.94), rgba(232, 251, 247, 0.88) 52%, rgba(255, 247, 232, 0.84)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 36px 118px rgba(8, 32, 61, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  text-align: left;
}

.blog .dlb-heading::before,
.blog .dlb-heading::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.blog .dlb-heading::before {
  right: -10%;
  bottom: -28%;
  width: min(46rem, 58vw);
  height: min(34rem, 46vw);
  border-radius: 38% 62% 44% 56%;
  background:
    linear-gradient(135deg, rgba(14, 110, 246, 0.12), rgba(54, 212, 170, 0.14)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px 28px);
  transform: rotate(-12deg);
}

.blog .dlb-heading::after {
  top: 18%;
  right: 8%;
  width: min(18rem, 24vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 110, 246, 0.4), transparent);
  transform: rotate(-18deg);
}

.blog .dlb-eyebrow {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0;
}

.blog .dlb-heading h2 {
  position: relative;
  z-index: 1;
  max-width: 13.8ch;
  margin-bottom: 1.25rem;
  color: var(--ink);
  font-size: clamp(2.7rem, 6.4vw, 6.2rem);
  font-weight: 920;
  line-height: 0.96;
  text-wrap: balance;
}

.blog .dlb-heading .dlb-lead {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  color: rgba(7, 20, 38, 0.7);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
}

.dlb-latest-news,
.dlb-news-card,
.dlb-empty {
  border-color: rgba(167, 207, 230, 0.62);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 251, 255, 0.76)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 70px rgba(8, 32, 61, 0.1);
}

.dlb-latest-news {
  padding: clamp(1.1rem, 3vw, 2rem);
}

.home-cinematic-hero {
  margin-top: clamp(0.25rem, 1.4vw, 0.8rem);
  padding-inline: clamp(0.65rem, 2vw, 1.5rem);
}

.home-cinematic-hero .hero-cinematic {
  grid-template-columns: minmax(0, 0.74fr) minmax(34rem, 1.26fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  min-height: min(900px, calc(100svh - 5.5rem));
  padding: clamp(4rem, 7vw, 6.6rem) clamp(1rem, 4vw, 3.4rem) clamp(2.8rem, 5vw, 4.6rem);
  border-color: rgba(167, 207, 230, 0.66);
  border-radius: clamp(1.35rem, 3.4vw, 3rem);
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.96) 0 36%, rgba(232, 251, 247, 0.9) 36% 68%, rgba(255, 247, 230, 0.86) 68% 100%),
    #fff;
  box-shadow:
    0 44px 150px rgba(8, 32, 61, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-cinematic-hero .hero-cinematic::before {
  right: -9%;
  bottom: -20%;
  width: min(62rem, 68vw);
  height: min(48rem, 58vw);
  border-radius: 28% 72% 42% 58%;
  background:
    linear-gradient(135deg, rgba(14, 110, 246, 0.14), rgba(54, 212, 170, 0.18)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0 1px, transparent 1px 34px);
  clip-path: polygon(9% 2%, 100% 14%, 86% 100%, 0 82%);
  filter: none;
  transform: rotate(-8deg);
}

.home-cinematic-hero .hero-cinematic::after {
  top: 10%;
  left: 44%;
  width: min(28rem, 34vw);
  opacity: 0.8;
}

.home-cinematic-hero .hero-cinematic h1 {
  max-width: 11.7ch;
  font-size: clamp(3.4rem, 5.65vw, 6.35rem);
  font-weight: 940;
  letter-spacing: 0;
  line-height: 0.93;
}

.home-cinematic-hero .hero-lead {
  max-width: 42rem;
  color: rgba(7, 20, 38, 0.72);
}

.home-cinematic-hero .hero-actions .button {
  min-height: 3.25rem;
}

.home-cinematic-hero .hero-people-proof {
  padding-top: 0.2rem;
}

.home-cinematic-hero .hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-cinematic-hero .hero-metrics div {
  min-height: 6.8rem;
  padding: 1rem;
  border: 1px solid rgba(167, 207, 230, 0.58);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 54px rgba(8, 32, 61, 0.08);
}

.home-cinematic-hero .hero-visual {
  min-height: clamp(39rem, 58vw, 51rem);
  overflow: visible;
}

.home-cinematic-hero .product-screens {
  min-height: clamp(39rem, 58vw, 51rem);
  perspective: 1700px;
}

.home-cinematic-hero .screen-shot-main {
  right: -4%;
  bottom: 9%;
  width: min(108%, 67rem);
  border-radius: clamp(1rem, 2.2vw, 1.8rem);
  box-shadow:
    0 54px 120px rgba(6, 28, 54, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.82);
}

.home-cinematic-hero .screen-shot-mobile {
  bottom: 1%;
  left: -2%;
  width: clamp(10.2rem, 16vw, 15.2rem);
}

.home-cinematic-hero .screen-flow-chip {
  top: 55%;
  left: 8%;
}

.home-proof-chapter,
.home-problem-chapter,
.home-product-showcase,
.home-audience-chapter,
.home-tour-chapter,
.home-pricing-chapter,
.home-faq-chapter {
  width: min(1240px, calc(100% - 1.5rem));
  margin-top: clamp(5rem, 8.6vw, 9rem);
}

.home-proof-chapter .proof-strip-product,
.home-problem-chapter .problem-section,
.home-product-showcase .feature-showcase,
.home-audience-chapter .audience-switcher,
.home-tour-chapter .product-tour,
.home-pricing-chapter .pricing-plans-section,
.home-faq-chapter .faq-section {
  position: relative;
  overflow: clip;
  padding: clamp(2rem, 5vw, 4.8rem);
  border: 1px solid rgba(167, 207, 230, 0.62);
  border-radius: clamp(1.25rem, 3vw, 2.35rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(241, 251, 255, 0.72)),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    0 34px 112px rgba(8, 32, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.home-product-showcase .feature-showcase,
.home-tour-chapter .product-tour {
  background:
    radial-gradient(circle at 8% 10%, rgba(69, 184, 255, 0.1), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 251, 247, 0.76)),
    rgba(255, 255, 255, 0.9);
}

.home-audience-chapter .audience-switcher,
.home-pricing-chapter .pricing-plans-section {
  background:
    radial-gradient(circle at 92% 4%, rgba(255, 189, 82, 0.16), transparent 23rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 236, 0.7)),
    rgba(255, 255, 255, 0.9);
}

.section-heading.compact {
  max-width: 58rem;
}

.section-heading.compact h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  font-weight: 920;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading.compact p:not(.eyebrow),
.proof-strip-copy p:not(.eyebrow) {
  color: rgba(7, 20, 38, 0.68);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.home-proof-chapter .proof-strip-product {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.home-proof-chapter .proof-strip-copy {
  align-self: center;
}

.home-proof-chapter .proof-strip-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-proof-chapter .proof-strip-card {
  min-height: 15.5rem;
  border-color: rgba(167, 207, 230, 0.64);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 251, 255, 0.7)),
    rgba(255, 255, 255, 0.82);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.home-proof-chapter .proof-strip-card:hover,
.feature-card:hover,
.home-product-showcase .feature-trigger:hover,
.home-tour-chapter .tour-step:hover,
.home-pricing-chapter .plan-card:hover {
  border-color: rgba(14, 110, 246, 0.22);
  box-shadow: 0 28px 86px rgba(8, 32, 61, 0.14);
  transform: scale(1.018);
}

.home-proof-chapter .proof-strip-card:nth-child(even) {
  margin-top: 0;
}

.home-problem-chapter .feature-grid.three {
  width: 100%;
  margin-bottom: 0;
}

.home-problem-chapter .feature-card {
  min-height: 17rem;
  border-color: rgba(167, 207, 230, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 251, 255, 0.68)),
    rgba(255, 255, 255, 0.86);
}

.home-product-showcase .feature-showcase-layout,
.home-tour-chapter .product-tour-sticky .tour-sticky-layout {
  gap: clamp(1.2rem, 3vw, 2.2rem);
}

.home-product-showcase .feature-trigger-grid,
.home-tour-chapter .tour-stepper {
  position: relative;
  z-index: 2;
}

.home-product-showcase .feature-trigger,
.home-tour-chapter .tour-step {
  border-color: rgba(167, 207, 230, 0.58);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 48px rgba(8, 32, 61, 0.08);
}

.home-product-showcase .feature-trigger.is-active,
.home-tour-chapter .tour-step.is-active {
  border-color: rgba(14, 110, 246, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(231, 250, 246, 0.82)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 72px rgba(8, 32, 61, 0.12);
}

.home-product-showcase .feature-live-panel,
.home-audience-chapter .audience-switcher-stage,
.home-tour-chapter .tour-demo-frame,
.home-pricing-chapter .plan-card {
  border-color: rgba(167, 207, 230, 0.66);
  border-radius: clamp(1.1rem, 2.2vw, 1.6rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 251, 255, 0.72)),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    0 34px 96px rgba(8, 32, 61, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.home-product-showcase .feature-live-shot,
.home-tour-chapter .tour-demo-shell {
  perspective: 1400px;
}

.home-product-showcase .feature-live-shot img,
.home-audience-chapter .audience-demo-image img,
.home-tour-chapter .tour-demo-frame img {
  filter: saturate(1.06) contrast(1.03);
}

.home-audience-chapter .audience-tabbar {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 0.35rem;
  border: 1px solid rgba(167, 207, 230, 0.56);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.home-audience-chapter .audience-tab {
  border-radius: 999px;
}

.home-pricing-chapter .plans-grid {
  width: 100%;
}

.home-faq-chapter .faq-accordion {
  width: min(920px, 100%);
}

.home-faq-chapter .faq-accordion-item {
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.76);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(69, 184, 255, 0.16), transparent 22rem),
    linear-gradient(180deg, rgba(244, 251, 255, 0.92), rgba(232, 244, 248, 0.96));
}

@media (prefers-reduced-motion: no-preference) {
  html.dl-motion-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: perspective(900px) scale(0.962) rotateX(2deg);
    transform-origin: 50% 50%;
    transition:
      transform 820ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 420ms ease,
      border-color 420ms ease;
  }

  html.dl-motion-ready [data-reveal].is-visible {
    filter: none;
    transform: perspective(900px) scale(1) rotateX(0);
  }

  html.dl-motion-ready .home-proof-chapter[data-reveal],
  html.dl-motion-ready .home-audience-chapter[data-reveal] {
    transform: perspective(1000px) scale(0.965) rotateY(-2.5deg);
  }

  html.dl-motion-ready .home-problem-chapter[data-reveal],
  html.dl-motion-ready .home-tour-chapter[data-reveal] {
    transform: perspective(1000px) scale(0.965) rotateY(2.5deg);
  }

  html.dl-motion-ready .home-proof-chapter[data-reveal].is-visible,
  html.dl-motion-ready .home-audience-chapter[data-reveal].is-visible,
  html.dl-motion-ready .home-problem-chapter[data-reveal].is-visible,
  html.dl-motion-ready .home-tour-chapter[data-reveal].is-visible {
    transform: perspective(1000px) scale(1) rotateY(0);
  }

  html.dl-motion-ready .home-product-showcase .feature-live-panel.is-active,
  html.dl-motion-ready .home-tour-chapter .tour-demo-frame.is-active,
  html.dl-motion-ready .home-audience-chapter .audience-demo-frame.is-active {
    animation: daylumoPanelZoom 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  html.dl-motion-ready .home-proof-chapter .proof-strip-card.is-visible,
  html.dl-motion-ready .home-problem-chapter .feature-card.is-visible,
  html.dl-motion-ready .home-product-showcase .feature-trigger.is-visible,
  html.dl-motion-ready .home-tour-chapter .tour-step.is-visible {
    animation: daylumoPageSettle 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

@keyframes daylumoMenuBloom {
  from {
    opacity: 0.96;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes daylumoPanelZoom {
  from {
    transform: scale(0.972) rotateX(1.5deg);
  }

  to {
    transform: scale(1) rotateX(0);
  }
}

@media (max-width: 1180px) {
  .site-header {
    width: min(100% - 1rem, 1120px);
  }

  .home-cinematic-hero .hero-cinematic {
    grid-template-columns: minmax(0, 0.85fr) minmax(28rem, 1.15fr);
  }

  .home-proof-chapter .proof-strip-product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  :root {
    --header-offset: 6.4rem;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-grid;
  }

  .home-cinematic-hero .hero-cinematic {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(3rem, 7vw, 5rem);
  }

  .home-cinematic-hero .hero-cinematic h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 8.4vw, 5rem);
  }

  .home-cinematic-hero .hero-visual,
  .home-cinematic-hero .product-screens {
    min-height: clamp(30rem, 74vw, 42rem);
  }

  .home-cinematic-hero .screen-shot-main {
    right: -10%;
    width: 112%;
  }

  .home-product-showcase .feature-showcase-layout,
  .home-tour-chapter .product-tour-sticky .tour-sticky-layout {
    grid-template-columns: 1fr;
  }

  .home-proof-chapter .proof-strip-grid,
  .feature-grid.three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-offset: 5.8rem;
  }

  body {
    background:
      radial-gradient(circle at 0% 0%, rgba(174, 242, 255, 0.7), transparent 18rem),
      linear-gradient(180deg, #f8fcff 0%, #f0faff 42%, #fff8ed 100%);
  }

  .site-header {
    top: 0.45rem;
    width: min(100% - 0.7rem, 38rem);
    min-height: 3.7rem;
    border-radius: 1.1rem;
  }

  .brand-lockup img {
    width: clamp(7.8rem, 34vw, 9.5rem);
  }

  .header-actions .button-small {
    display: none;
  }

  .mobile-menu-panel {
    position: fixed;
    top: 4.6rem;
    right: 0.5rem;
    left: 0.5rem;
    max-height: calc(100dvh - 5.2rem);
  }

  .home-cinematic-hero {
    padding-inline: 0.5rem;
  }

  .home-cinematic-hero .hero-cinematic {
    padding: 2.6rem 1rem 1rem;
    border-radius: 1.25rem;
  }

  .home-cinematic-hero .hero-cinematic h1 {
    max-width: 11.5ch;
    font-size: clamp(2.55rem, 12.4vw, 3.45rem);
    line-height: 0.96;
  }

  .home-cinematic-hero .hero-lead {
    font-size: 1.02rem;
  }

  .home-cinematic-hero .hero-metrics {
    display: none;
  }

  .home-cinematic-hero .hero-visual,
  .home-cinematic-hero .product-screens {
    min-height: 26rem;
  }

  .home-cinematic-hero .screen-shot-main {
    right: -32%;
    bottom: 15%;
    width: 142%;
    transform: translate3d(var(--hero-x), var(--hero-y), 0) rotateX(0) rotateY(-6deg) rotateZ(-1deg);
  }

  .home-cinematic-hero .screen-shot-mobile {
    width: 8.4rem;
  }

  .home-cinematic-hero .screen-card {
    display: none;
  }

  .home-cinematic-hero .screen-flow-chip {
    top: 0.5rem;
    left: 0;
    max-width: 90%;
  }

  .home-proof-chapter,
  .home-problem-chapter,
  .home-product-showcase,
  .home-audience-chapter,
  .home-tour-chapter,
  .home-pricing-chapter,
  .home-faq-chapter {
    width: min(100% - 0.7rem, 38rem);
    margin-top: 3.8rem;
  }

  .home-proof-chapter .proof-strip-product,
  .home-problem-chapter .problem-section,
  .home-product-showcase .feature-showcase,
  .home-audience-chapter .audience-switcher,
  .home-tour-chapter .product-tour,
  .home-pricing-chapter .pricing-plans-section,
  .home-faq-chapter .faq-section {
    padding: 1rem;
    border-radius: 1.15rem;
  }

  .section-heading.compact h2,
  .blog .dlb-heading h2 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
    line-height: 1;
  }

  .blog .dlb-theme-template-archive {
    width: min(100% - 0.7rem, 38rem);
  }

  .blog .dlb-heading {
    padding: 2.4rem 1rem;
    border-radius: 1.2rem;
  }

  .home-audience-chapter .audience-tabbar {
    width: 100%;
    border-radius: 1rem;
  }
}

/* Visual QA correction: keep the first viewport composed on desktop and mobile. */
.home-cinematic-hero .hero-cinematic {
  grid-template-columns: minmax(0, 0.68fr) minmax(30rem, 1.32fr);
  min-height: min(780px, calc(100svh - 5.4rem));
  padding: clamp(3.2rem, 5.4vw, 5.2rem) clamp(1rem, 3.4vw, 2.8rem) clamp(2.2rem, 4vw, 3.6rem);
}

.home-cinematic-hero .hero-cinematic h1 {
  max-width: 14.8ch;
  font-size: clamp(3rem, 4.15vw, 4.85rem);
  line-height: 0.96;
}

.home-cinematic-hero .hero-copy {
  align-self: center;
}

.home-cinematic-hero .hero-lead {
  max-width: 38rem;
}

.home-cinematic-hero .hero-actions {
  margin-bottom: 1.1rem;
}

.home-cinematic-hero .hero-visual,
.home-cinematic-hero .product-screens {
  min-height: clamp(30rem, 42vw, 39rem);
}

.home-cinematic-hero .screen-shot-main {
  right: -1%;
  bottom: 5%;
  width: min(101%, 59rem);
}

.home-cinematic-hero .screen-shot-mobile {
  bottom: -1%;
  left: 1%;
  width: clamp(9rem, 13vw, 12.4rem);
}

.home-cinematic-hero .screen-card-top {
  top: 5%;
  left: 12%;
}

.home-cinematic-hero .screen-card-ai {
  right: 15%;
  bottom: 40%;
}

.home-cinematic-hero .screen-flow-chip {
  top: auto;
  bottom: 20%;
  left: 16%;
}

@media (max-width: 1180px) {
  .home-cinematic-hero .hero-cinematic {
    grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
  }

  .home-cinematic-hero .hero-cinematic h1 {
    font-size: clamp(2.85rem, 5vw, 4.25rem);
  }
}

@media (max-width: 980px) {
  .home-cinematic-hero .hero-cinematic {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-cinematic-hero .hero-cinematic h1 {
    max-width: 13.4ch;
  }

  .home-cinematic-hero .hero-visual,
  .home-cinematic-hero .product-screens {
    min-height: clamp(24rem, 62vw, 34rem);
  }
}

@media (max-width: 640px) {
  body,
  main {
    overflow-x: clip;
  }

  .home-cinematic-hero .hero-cinematic {
    overflow: hidden;
    padding: 2.15rem 1rem 1rem;
  }

  .home-cinematic-hero .hero-copy,
  .home-cinematic-hero .hero-copy > :where(h1, .hero-lead, .hero-actions, .hero-people-proof, .hero-metrics) {
    width: 100%;
    max-width: min(100%, 20rem);
    min-width: 0;
  }

  .home-cinematic-hero .hero-cinematic h1 {
    max-width: 9.8ch;
    margin-bottom: 0.85rem;
    font-size: clamp(1.92rem, 8.2vw, 2.18rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }

  .home-cinematic-hero .hero-lead {
    margin-bottom: 1rem;
    font-size: 0.98rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .home-cinematic-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
  }

  .home-cinematic-hero .hero-actions .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 1rem;
    justify-self: stretch;
  }

  .home-cinematic-hero .hero-people-proof {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .home-cinematic-hero .hero-visual,
  .home-cinematic-hero .product-screens {
    min-height: 12rem;
    width: 100%;
    max-width: min(100%, 20rem);
    overflow: clip;
    contain: paint;
  }

  .home-cinematic-hero .screen-shot-main {
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
  }

  .home-cinematic-hero .screen-shot-mobile {
    display: none;
  }

  .home-cinematic-hero .screen-flow-chip,
  .home-cinematic-hero .screen-orbit {
    display: none;
  }
}

/* Mobile navigation QA: stack menu icons in one slot and reveal only the active state. */
.mobile-menu-toggle {
  position: relative;
  grid-template-areas: "icon";
  place-items: center;
}

.mobile-menu-toggle .menu-open-icon,
.mobile-menu-toggle .menu-close-icon {
  grid-area: icon;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-header:not(.menu-open) .mobile-menu-toggle .menu-open-icon,
.site-header.menu-open .mobile-menu-toggle .menu-close-icon {
  opacity: 1;
  visibility: visible;
  transform: scale(1) rotate(0deg);
}

.site-header:not(.menu-open) .mobile-menu-toggle .menu-close-icon,
.site-header.menu-open .mobile-menu-toggle .menu-open-icon {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.72) rotate(-16deg);
}

.mobile-menu-panel .mobile-menu-cta,
.mobile-menu-panel .mobile-menu-cta:visited {
  border-color: transparent;
  background:
    linear-gradient(135deg, #071426 0%, #0c315e 58%, #0e6ef6 100%),
    #071426;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 20, 38, 0.2);
}

.mobile-menu-panel .mobile-menu-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* Visual QA: keep the orbit mark as a small animated brand cue, not a product overlay. */
.home-cinematic-hero .screen-orbit {
  top: 30%;
  right: 22%;
  z-index: 3;
  width: clamp(7rem, 8.6vw, 10.25rem);
  opacity: 0.78;
  pointer-events: none;
}

.home-cinematic-hero .screen-orbit span {
  inset: 5%;
  border-width: 0.34rem;
  border-top-color: rgba(17, 104, 216, 0.54);
  border-right-color: rgba(17, 104, 216, 0.72);
  border-bottom-color: rgba(255, 183, 62, 0.24);
}

.home-cinematic-hero .screen-orbit span:nth-child(2) {
  inset: 25%;
  border-width: 0.18rem;
  border-top-color: rgba(158, 232, 255, 0.5);
  border-right-color: rgba(255, 183, 62, 0.32);
}

.home-cinematic-hero .screen-orbit img {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.36rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(17, 104, 216, 0.14);
}

/* Visual QA: compact oversized homepage chapters while preserving Builder content. */
.home-proof-chapter,
.home-problem-chapter,
.home-product-showcase,
.home-audience-chapter,
.home-tour-chapter,
.home-pricing-chapter,
.home-faq-chapter {
  width: min(1120px, calc(100% - 2rem));
  margin-top: clamp(3.25rem, 6vw, 5.75rem);
}

.home-proof-chapter .proof-strip-product,
.home-problem-chapter .problem-section,
.home-product-showcase .feature-showcase,
.home-audience-chapter .audience-switcher,
.home-tour-chapter .product-tour,
.home-pricing-chapter .pricing-plans-section,
.home-faq-chapter .faq-section {
  padding: clamp(1.55rem, 3.1vw, 3rem);
  border-radius: clamp(1rem, 2.1vw, 1.7rem);
}

.section-heading.compact {
  max-width: 48rem;
  margin-bottom: clamp(1.5rem, 3.4vw, 2.4rem);
}

.section-heading.compact h2 {
  font-size: clamp(2.05rem, 3.25vw, 3.55rem);
  line-height: 1.03;
}

.section-heading.compact p:not(.eyebrow),
.proof-strip-copy p:not(.eyebrow) {
  font-size: clamp(0.98rem, 1.08vw, 1.1rem);
}

.home-product-showcase .feature-showcase {
  padding-block: clamp(2rem, 3.8vw, 3.45rem);
}

.home-product-showcase .feature-showcase-layout {
  grid-template-columns: minmax(15rem, 0.43fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.4vw, 1.7rem);
}

.home-product-showcase .feature-trigger-grid,
.home-tour-chapter .tour-stepper {
  gap: 0.55rem;
}

.home-product-showcase .feature-trigger {
  min-height: 4.7rem;
  padding: 0.72rem;
  border-radius: 0.85rem;
}

.home-product-showcase .feature-trigger-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.65rem;
}

.home-product-showcase .feature-trigger p {
  font-size: 0.84rem;
  line-height: 1.42;
}

.home-product-showcase .feature-live-panel {
  padding: clamp(0.7rem, 1.5vw, 0.9rem);
}

.home-product-showcase .feature-live-desktop .feature-live-shot img {
  height: clamp(20rem, 30vw, 28rem);
  object-fit: cover;
  object-position: 50% 34%;
}

.home-tour-chapter .tour-demo-shell {
  min-height: clamp(24rem, 38vw, 34rem);
}

.home-tour-chapter .tour-demo-frame img {
  max-height: clamp(22rem, 35vw, 31rem);
  object-fit: cover;
  object-position: 50% 35%;
}

/* Fine-grained native homepage rebuild: small editable Builder blocks, composed visually. */
.home-fine-hero {
  position: relative;
  display: grid;
  grid-template-areas:
    "copy visual"
    "actions visual"
    "stats visual";
  grid-template-columns: minmax(0, 0.78fr) minmax(25rem, 1.22fr);
  gap: clamp(1.1rem, 3vw, 2.4rem) clamp(1.4rem, 4vw, 4rem);
  align-items: center;
  min-height: min(760px, calc(100svh - 5.4rem));
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
  overflow: clip;
  border-color: rgba(167, 207, 230, 0.66);
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.96) 0 40%, rgba(232, 251, 247, 0.88) 40% 72%, rgba(255, 247, 230, 0.78) 72% 100%),
    #fff;
}

.home-fine-hero::before {
  position: absolute;
  right: -9%;
  bottom: -22%;
  width: min(55rem, 62vw);
  height: min(42rem, 52vw);
  border-radius: 30% 70% 38% 62%;
  background:
    linear-gradient(135deg, rgba(14, 110, 246, 0.13), rgba(54, 212, 170, 0.17)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0 1px, transparent 1px 34px);
  clip-path: polygon(10% 0, 100% 13%, 86% 100%, 0 80%);
  pointer-events: none;
  content: "";
}

.home-fine-hero-copy {
  grid-area: copy;
  max-width: 34rem;
  margin: 0;
  padding: 0;
}

.home-fine-hero-copy .dlb-heading {
  margin-bottom: 0;
}

.home-fine-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 4.4vw, 5rem);
  line-height: 0.96;
}

.home-fine-hero-copy .dlb-lead {
  max-width: 34rem;
  margin-top: 1rem;
  font-size: clamp(1.02rem, 1.22vw, 1.2rem);
}

.home-fine-actions {
  grid-area: actions;
  display: flex;
  width: auto;
  margin: 0;
  padding: 0 !important;
  border: 0;
  background: transparent;
  box-shadow: none;
  gap: 0.75rem;
  justify-content: flex-start;
}

.home-fine-actions .dlb-block-button {
  width: auto;
  margin: 0;
  padding: 0;
}

.home-fine-actions .dlb-button-wrap {
  margin: 0;
}

.home-fine-stats {
  grid-area: stats;
  margin: 0;
  padding: 0;
}

.home-fine-stats .dlb-stats {
  gap: 0.65rem;
}

.home-fine-stats .dlb-stat {
  min-height: 0;
  padding: 0.85rem;
  border-color: rgba(167, 207, 230, 0.58);
  background: rgba(255, 255, 255, 0.64);
}

.home-fine-stats .dlb-stat strong {
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
}

.home-fine-product-visual {
  grid-area: visual;
  align-self: center;
  margin: 0;
  padding: 0;
}

.home-fine-product-visual .product-screens {
  min-height: clamp(24rem, 39vw, 34rem);
  perspective: 1500px;
}

.home-fine-product-visual .screen-shot-main {
  right: 0;
  bottom: 8%;
  width: min(96%, 52rem);
  border-radius: clamp(0.9rem, 1.8vw, 1.45rem);
  transform: translate3d(var(--hero-x), var(--hero-y), 0) rotateX(4deg) rotateY(-8deg) rotateZ(-1deg);
}

.home-fine-product-visual .screen-shot-mobile {
  bottom: 0;
  left: 2%;
  width: clamp(7.8rem, 11vw, 11.2rem);
}

.home-fine-product-visual .screen-card-top {
  top: 7%;
  left: 42%;
}

.home-fine-product-visual .screen-card-ai {
  right: 6%;
  bottom: 7%;
}

.home-fine-product-visual .screen-flow-chip {
  left: 26%;
  bottom: 14%;
  top: auto;
}

.home-fine-product-visual .screen-orbit {
  top: 31%;
  right: 21%;
  z-index: 3;
  width: clamp(6.4rem, 7.6vw, 9.25rem);
  opacity: 0.72;
  pointer-events: none;
}

.home-fine-product-visual .screen-orbit span {
  inset: 5%;
  border-width: 0.3rem;
  border-top-color: rgba(17, 104, 216, 0.5);
  border-right-color: rgba(17, 104, 216, 0.68);
  border-bottom-color: rgba(255, 183, 62, 0.22);
}

.home-fine-product-visual .screen-orbit span:nth-child(2) {
  inset: 25%;
  border-width: 0.16rem;
}

.home-fine-product-visual .screen-orbit img {
  width: 2.1rem;
  height: 2.1rem;
  padding: 0.32rem;
  background: rgba(255, 255, 255, 0.76);
}

.home-fine-context,
.home-fine-problem,
.home-fine-features,
.home-fine-audience,
.home-fine-tour,
.home-fine-pricing {
  margin-top: clamp(3rem, 6vw, 5.2rem);
  margin-bottom: 0;
}

.home-fine-context,
.home-fine-features,
.home-fine-tour {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.home-fine-context .dlb-card,
.home-fine-problem .dlb-card,
.home-fine-features .dlb-card,
.home-fine-audience .dlb-card,
.home-fine-pricing .dlb-card {
  min-height: 0;
  padding: clamp(1rem, 1.8vw, 1.25rem);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.home-fine-context .dlb-card:hover,
.home-fine-problem .dlb-card:hover,
.home-fine-features .dlb-card:hover,
.home-fine-audience .dlb-card:hover,
.home-fine-pricing .dlb-card:hover {
  border-color: rgba(14, 110, 246, 0.22);
  box-shadow: 0 24px 72px rgba(8, 32, 61, 0.12);
  transform: scale(1.018);
}

.home-fine-media-row {
  display: grid;
  grid-template-columns: minmax(9rem, 0.45fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.6vw, 1.8rem);
  align-items: center;
  margin-top: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 0;
}

.home-fine-media-row .dlb-block-media {
  margin: 0;
  padding: 0;
}

.home-fine-media-row .dlb-media {
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.home-fine-media-phone .dlb-media img {
  width: min(12rem, 72%);
  max-height: 25rem;
  border-radius: 1.35rem;
  object-fit: contain;
}

.home-fine-media-desktop .dlb-media img {
  width: 100%;
  max-height: clamp(18rem, 31vw, 28rem);
  object-fit: cover;
  object-position: 50% 36%;
}

.home-fine-tour-tabs .dlb-tabs {
  overflow: hidden;
}

.home-fine-pricing .dlb-card-grid {
  align-items: stretch;
}

.home-fine-pricing .dlb-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 250, 255, 0.76)),
    rgba(255, 255, 255, 0.9);
}

/* Fine homepage QA pass: keep sections premium but compact and editor-friendly. */
.home-fine-hero.dlb-container-large {
  grid-template-columns: minmax(25rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(0.8rem, 2vw, 1.45rem) clamp(1.4rem, 3vw, 3rem);
  min-height: clamp(36rem, 72svh, 43rem);
  padding: clamp(2rem, 3.4vw, 3.35rem) clamp(2rem, 4vw, 4rem);
}

.home-fine-hero-copy {
  max-width: 38rem;
}

.home-fine-hero-copy h1 {
  max-width: 15.5ch;
  font-size: clamp(2.75rem, 4.35vw, 4.35rem);
  line-height: 0.98;
}

.home-fine-hero-copy .dlb-lead {
  max-width: 31rem;
  margin-top: 0.85rem;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.55;
}

.home-fine-actions {
  margin-top: 0.25rem;
}

.home-fine-actions .dlb-button {
  min-height: 2.9rem;
  padding: 0.76rem 1.1rem;
}

.home-fine-stats .dlb-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.home-fine-stats .dlb-stat {
  min-height: 6rem;
  padding: 0.75rem;
}

.home-fine-stats .dlb-stat strong {
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
}

.home-fine-stats .dlb-stat span,
.home-fine-stats .dlb-stat small {
  font-size: 0.78rem;
  line-height: 1.25;
}

.home-fine-product-visual {
  align-self: end;
}

.home-fine-product-visual .product-screens {
  min-height: clamp(20rem, 33vw, 28rem);
}

.home-fine-product-visual .screen-shot-main {
  bottom: 2%;
  width: min(94%, 45rem);
}

.home-fine-product-visual .screen-shot-mobile {
  width: clamp(6.8rem, 9vw, 9.4rem);
}

.home-fine-product-visual .screen-card {
  max-width: min(18rem, 34vw);
  padding: 0.82rem;
}

.home-fine-product-visual .screen-flow-chip {
  bottom: 8%;
}

.home-fine-context,
.home-fine-problem,
.home-fine-features,
.home-fine-audience,
.home-fine-tour,
.home-fine-pricing {
  margin-top: clamp(2.3rem, 4vw, 3.8rem);
}

.home-fine-context.dlb-container,
.home-fine-problem.dlb-container,
.home-fine-features.dlb-container,
.home-fine-audience.dlb-container,
.home-fine-tour.dlb-container,
.home-fine-pricing.dlb-container {
  padding: clamp(1.6rem, 3vw, 2.6rem);
}

.home-fine-context .dlb-heading h2,
.home-fine-problem .dlb-heading h2,
.home-fine-features .dlb-heading h2,
.home-fine-audience .dlb-heading h2,
.home-fine-tour .dlb-heading h2,
.home-fine-pricing .dlb-heading h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.02;
}

.home-fine-context .dlb-lead,
.home-fine-problem .dlb-lead,
.home-fine-features .dlb-lead,
.home-fine-audience .dlb-lead,
.home-fine-tour .dlb-lead,
.home-fine-pricing .dlb-lead {
  max-width: 49rem;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
}

.home-fine-media-row {
  grid-template-columns: minmax(8rem, 0.36fr) minmax(0, 1fr);
}

.home-fine-media-phone .dlb-media img {
  width: min(9.5rem, 64%);
}

.home-fine-media-desktop .dlb-media img {
  max-height: clamp(15rem, 25vw, 22rem);
}

.home-fine-hero.dlb-container-large {
  grid-template-columns: minmax(31rem, 0.96fr) minmax(0, 1.04fr);
  min-height: clamp(32rem, 66svh, 38rem);
  padding: clamp(1.75rem, 2.8vw, 2.85rem) clamp(1.75rem, 3.4vw, 3.35rem) !important;
}

.home-fine-hero-copy h1 {
  max-width: 18.5ch;
  font-size: clamp(2.35rem, 3.7vw, 3.75rem);
  line-height: 1.01;
}

.home-fine-hero-copy .dlb-lead {
  max-width: 32rem;
  margin-top: 0.7rem;
}

.home-fine-stats .dlb-stat {
  min-height: 4.9rem;
  padding: 0.58rem 0.65rem;
}

.home-fine-stats .dlb-stat strong {
  font-size: clamp(1.22rem, 1.55vw, 1.65rem);
}

.home-fine-stats .dlb-stat small {
  display: none;
}

.home-fine-product-visual .product-screens {
  min-height: clamp(18rem, 29vw, 24rem);
}

.home-fine-product-visual .screen-shot-main {
  width: min(92%, 40rem);
}

.home-fine-product-visual .screen-card {
  max-width: min(15.5rem, 31vw);
  padding: 0.72rem;
}

@media (max-width: 1100px) {
  .home-fine-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  }

  .home-fine-hero-copy h1 {
    font-size: clamp(2.6rem, 5vw, 4.1rem);
  }
}

@media (max-width: 880px) {
  .home-fine-hero,
  .home-fine-hero.dlb-container-large {
    grid-template-areas:
      "copy"
      "actions"
      "visual"
      "stats";
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .home-fine-product-visual .product-screens {
    min-height: clamp(21rem, 62vw, 32rem);
  }

  .home-fine-media-row {
    grid-template-columns: 1fr;
  }
}

/* Native homepage refinement: smaller editable pieces, working anchors, calmer motion. */
.home-fine-context,
.home-fine-problem,
.home-fine-features,
.home-fine-audience,
.home-fine-tour,
.home-fine-pricing,
.home-fine-faq,
.home-fine-final-cta {
  scroll-margin-top: 7.25rem;
}

.home-fine-problem.dlb-container,
.home-fine-audience.dlb-container,
.home-fine-pricing.dlb-container,
.home-fine-faq.dlb-container,
.home-fine-final-cta.dlb-container {
  border-color: rgba(143, 195, 224, 0.45);
  background:
    radial-gradient(circle at 88% 12%, rgba(62, 215, 163, 0.14), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 252, 255, 0.84));
}

.home-fine-problem,
.home-fine-audience,
.home-fine-pricing,
.home-fine-faq {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.home-fine-problem > .dlb-block-heading,
.home-fine-audience > .dlb-block-heading,
.home-fine-pricing > .dlb-block-heading,
.home-fine-faq > .dlb-block-heading {
  position: sticky;
  top: 7rem;
}

.home-fine-problem .dlb-heading h2,
.home-fine-audience .dlb-heading h2,
.home-fine-pricing .dlb-heading h2,
.home-fine-faq .dlb-heading h2 {
  max-width: 12.5ch;
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
}

.home-fine-features .dlb-heading h2,
.home-fine-tour .dlb-heading h2 {
  max-width: 16ch;
}

.home-fine-problem .dlb-card-grid,
.home-fine-audience .dlb-card-grid,
.home-fine-pricing .dlb-card-grid {
  gap: 0.72rem;
}

.home-fine-problem .dlb-card {
  min-height: 0;
  padding: 0.92rem;
}

.home-fine-features .dlb-card-grid {
  gap: 0.72rem;
}

.home-fine-features .dlb-card {
  position: relative;
  overflow: hidden;
  padding: 0.9rem;
}

.home-fine-features .dlb-card::after {
  position: absolute;
  right: -1.8rem;
  bottom: -2.2rem;
  width: 5.5rem;
  height: 5.5rem;
  border: 1px solid rgba(17, 104, 216, 0.12);
  border-radius: 50%;
  content: "";
}

.home-fine-features .dlb-card h3,
.home-fine-context .dlb-card h3,
.home-fine-problem .dlb-card h3,
.home-fine-audience .dlb-card h3,
.home-fine-pricing .dlb-card h3 {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.home-fine-features .dlb-card p,
.home-fine-context .dlb-card p,
.home-fine-problem .dlb-card p,
.home-fine-audience .dlb-card p,
.home-fine-pricing .dlb-card p {
  font-size: 0.94rem;
  line-height: 1.55;
}

.home-fine-media-compact {
  width: min(980px, 100%);
  margin-inline: auto;
  padding: 0.72rem !important;
  grid-template-columns: minmax(6rem, 0.25fr) minmax(0, 0.75fr);
  box-shadow: 0 18px 54px rgba(15, 49, 92, 0.09);
}

.home-fine-media-compact .dlb-media {
  min-height: 9rem;
}

.home-fine-media-compact .dlb-media figcaption {
  padding: 0.55rem 0.72rem 0.72rem;
  font-size: 0.82rem;
}

.home-fine-media-compact .home-fine-media-phone .dlb-media img {
  width: min(6.6rem, 76%);
  max-height: 13.5rem;
}

.home-fine-media-compact .home-fine-media-desktop .dlb-media img {
  max-height: 13.8rem;
  object-position: 50% 30%;
}

.home-fine-tour-tabs .dlb-tabs {
  width: min(920px, 100%);
  margin-inline: auto;
  box-shadow: 0 18px 54px rgba(15, 49, 92, 0.08);
}

.home-fine-faq .dlb-accordion {
  display: grid;
  gap: 0.65rem;
}

.home-fine-faq .dlb-accordion details {
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  box-shadow: 0 12px 32px rgba(15, 49, 92, 0.07);
}

.home-fine-final-cta {
  margin-top: clamp(2rem, 4vw, 3.4rem);
}

.home-fine-final-cta .dlb-cta {
  min-height: 0;
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
  border-radius: 1rem;
}

.home-fine-final-cta .dlb-cta h2 {
  max-width: 18ch;
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
}

@media (max-width: 880px) {
  .home-fine-problem,
  .home-fine-audience,
  .home-fine-pricing,
  .home-fine-faq {
    grid-template-columns: 1fr;
  }

  .home-fine-problem > .dlb-block-heading,
  .home-fine-audience > .dlb-block-heading,
  .home-fine-pricing > .dlb-block-heading,
  .home-fine-faq > .dlb-block-heading {
    position: static;
  }

  .home-fine-media-compact {
    grid-template-columns: 1fr 1.45fr;
  }
}

@media (max-width: 640px) {
  .home-fine-context,
  .home-fine-problem,
  .home-fine-features,
  .home-fine-audience,
  .home-fine-tour,
  .home-fine-pricing,
  .home-fine-faq,
  .home-fine-final-cta {
    margin-top: 1.6rem;
  }

  .home-fine-context.dlb-container,
  .home-fine-problem.dlb-container,
  .home-fine-features.dlb-container,
  .home-fine-audience.dlb-container,
  .home-fine-tour.dlb-container,
  .home-fine-pricing.dlb-container,
  .home-fine-faq.dlb-container,
  .home-fine-final-cta.dlb-container {
    padding: 1rem !important;
  }

  .home-fine-problem .dlb-heading h2,
  .home-fine-features .dlb-heading h2,
  .home-fine-audience .dlb-heading h2,
  .home-fine-tour .dlb-heading h2,
  .home-fine-pricing .dlb-heading h2,
  .home-fine-faq .dlb-heading h2 {
    max-width: 14ch;
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .home-fine-media-compact {
    grid-template-columns: 1fr;
    padding: 0.55rem !important;
  }

  .home-fine-media-compact .dlb-media {
    min-height: 7.5rem;
  }

  .home-fine-media-compact .home-fine-media-desktop .dlb-media img {
    max-height: 10.5rem;
  }
}

@media (max-width: 640px) {
  .home-fine-hero,
  .home-fine-hero.dlb-container-large {
    width: min(100% - 1rem, 1120px);
    padding: 1.25rem;
  }

  .home-fine-hero-copy,
  .home-fine-hero-copy .dlb-heading,
  .home-fine-hero-copy .dlb-lead {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-fine-hero-copy h1 {
    max-width: 10.8ch;
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .home-fine-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .home-fine-product-visual .product-screens {
    min-height: 14rem;
    overflow: clip;
  }

  .home-fine-product-visual .screen-shot-main {
    right: 0;
    bottom: auto;
    top: 0;
    width: 100%;
    transform: none;
  }

  .home-fine-product-visual .screen-shot-mobile,
  .home-fine-product-visual .screen-card,
  .home-fine-product-visual .screen-flow-chip,
  .home-fine-product-visual .screen-orbit {
    display: none;
  }
}

/* Native homepage recovery pass: compact sections, visible editable blocks, no nested visual shells. */
.home-fine-hero > .wp-block-dlb-container.home-fine-hero,
.home-fine-context > .wp-block-dlb-container.home-fine-context,
.home-fine-problem > .wp-block-dlb-container.home-fine-problem,
.home-fine-features > .wp-block-dlb-container.home-fine-features,
.home-fine-media-row > .wp-block-dlb-container.home-fine-media-row,
.home-fine-audience > .wp-block-dlb-container.home-fine-audience,
.home-fine-tour > .wp-block-dlb-container.home-fine-tour,
.home-fine-pricing > .wp-block-dlb-container.home-fine-pricing {
  display: contents;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.home-fine-hero,
.home-fine-hero.dlb-container-large {
  isolation: isolate;
  grid-template-areas:
    "copy visual"
    "actions visual"
    "stats visual";
  grid-template-columns: minmax(21rem, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(0.75rem, 1.5vw, 1.1rem) clamp(1.4rem, 3vw, 2.7rem);
  align-items: center;
  min-height: clamp(29rem, 58svh, 34rem);
  margin-top: 1rem;
  padding: clamp(1.4rem, 2.4vw, 2.35rem) clamp(1.35rem, 3vw, 2.8rem) !important;
  overflow: hidden;
  border-color: rgba(152, 199, 225, 0.55);
  border-radius: clamp(1rem, 2vw, 1.6rem);
  background:
    linear-gradient(119deg, rgba(255, 255, 255, 0.98) 0 44%, rgba(234, 252, 247, 0.92) 44% 100%),
    #fff;
  box-shadow: 0 24px 72px rgba(16, 54, 92, 0.12);
}

.home-fine-hero::before {
  z-index: 0;
  right: -4%;
  bottom: -14%;
  width: min(36rem, 48vw);
  height: min(25rem, 36vw);
  border-radius: 2.2rem;
  background:
    linear-gradient(135deg, rgba(17, 104, 216, 0.1), rgba(62, 215, 163, 0.15)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 1px, transparent 1px 30px);
  clip-path: polygon(12% 0, 100% 12%, 88% 100%, 0 82%);
}

.home-fine-hero > * {
  position: relative;
  z-index: 1;
}

.home-fine-hero-copy {
  grid-area: copy;
  max-width: 34rem;
}

.home-fine-hero-copy .dlb-eyebrow {
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(17, 104, 216, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 32px rgba(15, 49, 92, 0.08);
}

.home-fine-hero-copy h1 {
  max-width: 16.5ch;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 4.05rem);
  line-height: 1.02;
}

.home-fine-hero-copy .dlb-lead {
  max-width: 31rem;
  margin-top: 0.85rem;
  color: rgba(40, 64, 94, 0.86);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.58;
}

.home-fine-actions {
  grid-area: actions;
  margin-top: 0.1rem;
}

.home-fine-actions .dlb-button {
  min-height: 2.85rem;
  padding: 0.78rem 1.08rem;
}

.home-fine-stats {
  grid-area: stats;
  max-width: 34rem;
}

.home-fine-stats .dlb-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.home-fine-stats .dlb-stat {
  min-height: 4.2rem;
  padding: 0.62rem 0.68rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.7);
}

.home-fine-stats .dlb-stat strong {
  font-size: clamp(1.1rem, 1.45vw, 1.55rem);
}

.home-fine-stats .dlb-stat span {
  font-size: 0.76rem;
  line-height: 1.24;
}

.home-fine-product-visual {
  grid-area: visual;
  align-self: center;
}

.home-fine-product-visual .product-screens {
  min-height: clamp(18rem, 32vw, 25rem);
}

.home-fine-product-visual .screen-shot-main {
  right: 0;
  bottom: 3%;
  width: min(91%, 38rem);
  border-radius: 1.05rem;
  transform: rotateX(3deg) rotateY(-5deg) rotateZ(-0.8deg);
}

.home-fine-product-visual .screen-shot-mobile {
  bottom: 0;
  left: 2%;
  width: clamp(6.4rem, 8vw, 8.6rem);
}

.home-fine-product-visual .screen-card {
  max-width: min(14.5rem, 30vw);
  padding: 0.72rem 0.78rem;
  border-radius: 0.9rem;
}

.home-fine-product-visual .screen-card-top {
  top: 8%;
  left: 40%;
}

.home-fine-product-visual .screen-card-ai {
  right: 5%;
  bottom: 6%;
}

.home-fine-product-visual .screen-flow-chip {
  bottom: 8%;
  left: 25%;
}

.home-fine-product-visual .screen-orbit {
  top: 30%;
  right: 23%;
  width: clamp(5.5rem, 6.8vw, 7.6rem);
  opacity: 0.56;
}

.home-fine-context,
.home-fine-problem,
.home-fine-features,
.home-fine-audience,
.home-fine-tour,
.home-fine-pricing {
  margin-top: clamp(2.1rem, 4vw, 3.4rem);
}

.home-fine-context.dlb-container,
.home-fine-problem.dlb-container,
.home-fine-features.dlb-container,
.home-fine-audience.dlb-container,
.home-fine-tour.dlb-container,
.home-fine-pricing.dlb-container {
  padding: clamp(1.35rem, 2.4vw, 2.2rem);
  border-radius: 1.1rem;
}

.home-fine-context,
.home-fine-features,
.home-fine-tour {
  background: transparent;
  box-shadow: none;
}

.home-fine-context .dlb-heading h2,
.home-fine-problem .dlb-heading h2,
.home-fine-features .dlb-heading h2,
.home-fine-audience .dlb-heading h2,
.home-fine-tour .dlb-heading h2,
.home-fine-pricing .dlb-heading h2 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.04;
}

.home-fine-context .dlb-lead,
.home-fine-problem .dlb-lead,
.home-fine-features .dlb-lead,
.home-fine-audience .dlb-lead,
.home-fine-tour .dlb-lead,
.home-fine-pricing .dlb-lead {
  max-width: 50rem;
  font-size: clamp(0.96rem, 1vw, 1.05rem);
}

.home-fine-context .dlb-card,
.home-fine-problem .dlb-card,
.home-fine-features .dlb-card,
.home-fine-audience .dlb-card,
.home-fine-pricing .dlb-card {
  min-height: 0;
  padding: 1rem;
  border-radius: 0.9rem;
  box-shadow: 0 14px 42px rgba(15, 49, 92, 0.08);
}

.home-fine-context .dlb-card-grid,
.home-fine-audience .dlb-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-fine-features .dlb-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-fine-media-row {
  grid-template-columns: minmax(7.5rem, 0.32fr) minmax(0, 1fr);
  padding: 1rem !important;
  border-radius: 1rem;
}

.home-fine-media-row .dlb-media {
  border-radius: 0.9rem;
}

.home-fine-media-phone .dlb-media img {
  width: min(8.2rem, 62%);
}

.home-fine-media-desktop .dlb-media img {
  max-height: clamp(13rem, 21vw, 19rem);
  object-position: 50% 34%;
}

.home-fine-pricing .dlb-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dlb-latest-news {
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(2.4rem, 5vw, 4rem) auto 0;
}

.dlb-news-grid {
  gap: 0.9rem;
}

.dlb-news-card {
  border-radius: 0.9rem;
}

@media (max-width: 1100px) {
  .home-fine-hero,
  .home-fine-hero.dlb-container-large {
    grid-template-columns: minmax(19rem, 0.9fr) minmax(0, 1.1fr);
  }

  .home-fine-features .dlb-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .home-fine-hero,
  .home-fine-hero.dlb-container-large {
    grid-template-areas:
      "copy"
      "actions"
      "visual"
      "stats";
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-fine-context .dlb-card-grid,
  .home-fine-audience .dlb-card-grid,
  .home-fine-features .dlb-card-grid,
  .home-fine-pricing .dlb-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 3.45rem;
    padding: 0.42rem 0.52rem;
    border-radius: 1.25rem;
  }

  .brand-lockup img {
    width: 8.4rem;
  }

  .mobile-menu-toggle {
    width: 3rem;
    height: 3rem;
    font-size: 1.35rem;
  }

  .home-fine-hero,
  .home-fine-hero.dlb-container-large {
    width: min(100% - 1rem, 1180px);
    margin-top: 0.55rem;
    padding: 0.95rem !important;
    border-radius: 1rem;
  }

  .home-fine-hero-copy .dlb-eyebrow {
    margin-bottom: 0.55rem;
    padding: 0.24rem 0.48rem;
    font-size: 0.72rem;
  }

  .home-fine-hero-copy h1 {
    max-width: 13.8ch;
    font-size: clamp(1.72rem, 7.1vw, 2.08rem);
    line-height: 1.06;
  }

  .home-fine-hero-copy .dlb-lead {
    margin-top: 0.68rem;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .home-fine-actions .dlb-button {
    min-height: 2.72rem;
  }

  .home-fine-actions,
  .home-fine-stats .dlb-stats,
  .home-fine-context .dlb-card-grid,
  .home-fine-audience .dlb-card-grid,
  .home-fine-features .dlb-card-grid,
  .home-fine-pricing .dlb-card-grid {
    grid-template-columns: 1fr;
  }

  .home-fine-stats .dlb-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-fine-stats .dlb-stat {
    min-height: 3.25rem;
    padding: 0.42rem 0.5rem;
  }

  .home-fine-stats .dlb-stat strong {
    font-size: 1.02rem;
  }

  .home-fine-stats .dlb-stat span {
    font-size: 0.68rem;
  }

  .home-fine-product-visual .product-screens {
    min-height: 12.5rem;
  }

  .home-fine-product-visual .screen-shot-main {
    top: 0;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .home-fine-product-visual .screen-shot-mobile,
  .home-fine-product-visual .screen-card,
  .home-fine-product-visual .screen-flow-chip,
  .home-fine-product-visual .screen-orbit {
    display: none;
  }

  .home-fine-media-row {
    grid-template-columns: 1fr;
  }
}
/* Final EOF mobile compression override: keep after every recovery block. */
@media (max-width: 640px) {
  .home-fine-features .dlb-card-grid,
  .home-fine-audience .dlb-card-grid,
  .home-fine-pricing .dlb-card-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 0.72rem;
    margin-right: -1rem;
    padding-right: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
  }

  .home-fine-features .dlb-card,
  .home-fine-audience .dlb-card,
  .home-fine-pricing .dlb-card {
    flex: 0 0 min(17.5rem, 82vw);
    scroll-snap-align: start;
  }

  .home-fine-media-row.home-fine-media-compact {
    display: grid !important;
    grid-template-columns: 0.72fr 1.28fr !important;
    gap: 0.55rem;
  }

  .home-fine-media-row.home-fine-media-compact .dlb-media {
    min-height: 0;
    height: 9.6rem;
  }

  .home-fine-media-row.home-fine-media-compact .dlb-media figcaption {
    display: none;
  }

  .home-fine-media-row.home-fine-media-compact .home-fine-media-phone .dlb-media img {
    width: auto;
    max-height: 8.8rem;
  }

  .home-fine-media-row.home-fine-media-compact .home-fine-media-desktop .dlb-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: 50% 30%;
  }
}

/* Native hero rebuild: no monolithic product-screens block on the homepage. */
.home-native-hero-visual,
.home-native-hero-visual.dlb-container,
.home-fine-hero .home-native-hero-visual {
  grid-area: visual;
  position: relative;
  display: block;
  min-height: clamp(19rem, 31vw, 25.5rem);
  padding: 0 !important;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-native-hero-desktop {
  position: absolute;
  right: 0;
  top: 28%;
  z-index: 2;
  width: min(82%, 37rem);
}

.home-native-hero-phone {
  position: absolute;
  left: 2%;
  bottom: 4%;
  z-index: 3;
  width: clamp(6rem, 9vw, 8.2rem);
}

.home-native-hero-callouts {
  position: absolute;
  left: 0;
  top: 3%;
  z-index: 4;
  width: min(15.5rem, 42%);
}

.home-native-hero-flow {
  position: absolute;
  left: 26%;
  bottom: 5%;
  z-index: 5;
  width: min(19rem, 52%);
}

.home-native-hero-orbit {
  position: absolute;
  top: 12%;
  right: 8%;
  z-index: 1;
  display: grid;
  width: clamp(10rem, 15.5vw, 17.5rem);
  aspect-ratio: 1;
  place-items: center;
  opacity: 0.94;
  pointer-events: none;
}

.home-native-hero-orbit::before,
.home-native-hero-orbit::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-radius: 50%;
  animation: orbitSpin 11s linear infinite;
}

.home-native-hero-orbit::before {
  inset: 5%;
  border-width: clamp(0.32rem, 0.54vw, 0.62rem);
  border-color: rgba(17, 104, 216, 0.18) rgba(17, 104, 216, 0.72) rgba(255, 183, 62, 0.18) rgba(34, 184, 173, 0.14);
  filter: drop-shadow(0 24px 54px rgba(17, 104, 216, 0.16));
}

.home-native-hero-orbit::after {
  inset: 27%;
  border-width: clamp(0.18rem, 0.32vw, 0.36rem);
  border-color: rgba(255, 183, 62, 0.68) rgba(34, 184, 173, 0.12) rgba(17, 104, 216, 0.18) rgba(17, 104, 216, 0.5);
  animation-duration: 7.2s;
  animation-direction: reverse;
}

.home-native-hero-orbit .dlb-media {
  display: grid;
  margin: 0;
  width: clamp(6.85rem, 7.55vw, 8.75rem);
  height: clamp(6.85rem, 7.55vw, 8.75rem);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  place-items: center;
  transform-origin: 50% 50%;
  animation: homeNativeLogoPulse 4.8s ease-in-out infinite;
}

.home-native-hero-orbit .dlb-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  transform: none;
  animation: none;
}

.home-native-hero-orbit figcaption {
  display: none;
}

.home-native-hero-desktop .dlb-media,
.home-native-hero-phone .dlb-media,
.home-native-hero-callouts .dlb-card,
.home-native-hero-flow .dlb-stat {
  border: 1px solid rgba(152, 199, 225, 0.58);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(15, 49, 92, 0.12);
  backdrop-filter: blur(14px);
}

.home-native-hero-desktop .dlb-media {
  aspect-ratio: 16 / 10.4;
  overflow: hidden;
  border-radius: 1rem;
}

.home-native-hero-desktop .dlb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.home-native-hero-phone .dlb-media {
  aspect-ratio: 0.55;
  overflow: hidden;
  border-radius: 1rem;
}

.home-native-hero-phone .dlb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}

.home-native-hero-desktop figcaption,
.home-native-hero-phone figcaption {
  display: none;
}

.home-native-hero-callouts .dlb-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.58rem;
}

.home-native-hero-callouts .dlb-card {
  min-height: 0;
  padding: 0.72rem 0.78rem;
  border-radius: 0.86rem;
}

.home-native-hero-callouts .dlb-card h3 {
  color: #1168d8;
  font-size: 0.76rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-native-hero-callouts .dlb-card p,
.home-native-hero-callouts .dlb-card a {
  font-size: 0.82rem;
  line-height: 1.32;
}

.home-native-hero-callouts .dlb-card a {
  margin-top: 0.42rem;
  color: #0b1831;
}

.home-native-hero-flow .dlb-stats {
  display: block;
}

.home-native-hero-flow .dlb-stat {
  min-height: 0;
  padding: 0.58rem 0.72rem;
  border-radius: 999px;
  text-align: center;
}

.home-native-hero-flow .dlb-stat strong {
  color: #0aa889;
  font-size: 0.78rem;
}

.home-native-hero-flow .dlb-stat span {
  color: #32425c;
  font-size: 0.78rem;
  font-weight: 800;
}

.home-native-hero-flow .dlb-stat p {
  display: none;
}

@media (max-width: 1100px) {
  .home-native-hero-visual,
  .home-native-hero-visual.dlb-container,
  .home-fine-hero .home-native-hero-visual {
    min-height: clamp(18rem, 34vw, 24rem);
  }

  .home-native-hero-callouts .dlb-card:nth-child(2) {
    display: none;
  }
}

@media (max-width: 760px) {
  .home-fine-hero,
  .home-fine-hero.dlb-container-large {
    grid-template-areas:
      "copy"
      "actions"
      "visual"
      "stats";
  }

  .home-native-hero-visual,
  .home-native-hero-visual.dlb-container,
  .home-fine-hero .home-native-hero-visual {
    min-height: 17.6rem;
  }

  .home-native-hero-phone .dlb-media {
    height: 10.6rem;
  }

  .home-native-hero-desktop .dlb-media {
    aspect-ratio: 1.28;
  }

  .home-native-hero-desktop {
    right: 0;
    top: 1.8rem;
    width: 80%;
  }

  .home-native-hero-phone {
    left: 0;
    bottom: 0.6rem;
    width: 30%;
  }

  .home-native-hero-callouts {
    display: none;
  }

  .home-native-hero-flow {
    left: 26%;
    bottom: 0;
    width: 68%;
  }

  .home-native-hero-orbit {
    top: 0.9rem;
    right: 0.9rem;
    width: 6.8rem;
    opacity: 0.74;
  }

  .home-native-hero-orbit .dlb-media {
    width: 3.8rem;
    height: 3.8rem;
  }

  .home-native-hero-orbit .dlb-media img {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 520px) {
  .home-native-hero-visual,
  .home-native-hero-visual.dlb-container,
  .home-fine-hero .home-native-hero-visual {
    gap: 0.52rem;
  }

  .home-native-hero-callouts .dlb-card-grid {
    display: flex;
    gap: 0.52rem;
    margin-right: -0.7rem;
    padding-right: 0.7rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .home-native-hero-callouts .dlb-card {
    flex: 0 0 min(15.5rem, 78vw);
    scroll-snap-align: start;
  }

  .home-native-hero-callouts .dlb-card:nth-child(2) {
    display: none;
  }

  .home-native-hero-flow .dlb-stat {
    padding: 0.54rem 0.64rem;
  }
}

/* Mobile density pass for the native homepage rebuild. */
@media (max-width: 640px) {
  .home-fine-stats {
    display: none;
  }

  .home-fine-hero,
  .home-fine-hero.dlb-container-large {
    gap: 0.9rem;
  }

  .home-native-hero-visual,
  .home-native-hero-visual.dlb-container,
  .home-fine-hero .home-native-hero-visual {
    min-height: 14.8rem;
  }

  .home-native-hero-desktop {
    top: 1.4rem;
    width: 78%;
  }

  .home-native-hero-phone {
    bottom: 0.25rem;
    width: 26%;
  }

  .home-native-hero-phone .dlb-media {
    height: 9.4rem;
  }

  .home-native-hero-flow {
    left: 30%;
    bottom: 0.15rem;
    width: 64%;
  }

  .home-native-hero-orbit {
    display: none;
  }

  .home-native-hero-flow .dlb-stat span {
    font-size: 0.7rem;
  }

  .home-fine-context,
  .home-fine-problem,
  .home-fine-features,
  .home-fine-audience,
  .home-fine-tour,
  .home-fine-pricing,
  .home-fine-faq,
  .home-fine-final-cta {
    margin-top: 1.55rem;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .home-fine-context.dlb-container,
  .home-fine-problem.dlb-container,
  .home-fine-features.dlb-container,
  .home-fine-audience.dlb-container,
  .home-fine-tour.dlb-container,
  .home-fine-pricing.dlb-container,
  .home-fine-faq.dlb-container,
  .home-fine-final-cta.dlb-container {
    padding: 1rem !important;
  }

  .home-fine-context > *,
  .home-fine-problem > *,
  .home-fine-features > *,
  .home-fine-audience > *,
  .home-fine-tour > *,
  .home-fine-pricing > *,
  .home-fine-faq > *,
  .home-fine-final-cta > * {
    min-width: 0;
    max-width: 100%;
  }

  .home-fine-context .dlb-heading h2,
  .home-fine-problem .dlb-heading h2,
  .home-fine-features .dlb-heading h2,
  .home-fine-audience .dlb-heading h2,
  .home-fine-tour .dlb-heading h2,
  .home-fine-pricing .dlb-heading h2,
  .home-fine-faq .dlb-heading h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    max-width: 100%;
  }

  .home-fine-context .dlb-block-heading,
  .home-fine-problem .dlb-block-heading,
  .home-fine-features .dlb-block-heading,
  .home-fine-audience .dlb-block-heading,
  .home-fine-tour .dlb-block-heading,
  .home-fine-pricing .dlb-block-heading,
  .home-fine-faq .dlb-block-heading,
  .home-fine-context .dlb-heading,
  .home-fine-problem .dlb-heading,
  .home-fine-features .dlb-heading,
  .home-fine-audience .dlb-heading,
  .home-fine-tour .dlb-heading,
  .home-fine-pricing .dlb-heading,
  .home-fine-faq .dlb-heading,
  .home-fine-context .dlb-lead,
  .home-fine-problem .dlb-lead,
  .home-fine-features .dlb-lead,
  .home-fine-audience .dlb-lead,
  .home-fine-tour .dlb-lead,
  .home-fine-pricing .dlb-lead,
  .home-fine-faq .dlb-lead {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .home-fine-context .dlb-lead,
  .home-fine-problem .dlb-lead,
  .home-fine-features .dlb-lead,
  .home-fine-audience .dlb-lead,
  .home-fine-tour .dlb-lead,
  .home-fine-pricing .dlb-lead,
  .home-fine-faq .dlb-lead {
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .home-fine-context .dlb-card-grid,
  .home-fine-problem .dlb-card-grid,
  .dlb-latest-news .dlb-news-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 0.72rem;
    margin-right: -1rem;
    padding-right: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
  }

  .home-fine-context .dlb-card,
  .home-fine-problem .dlb-card,
  .dlb-latest-news .dlb-news-card {
    flex: 0 0 min(17.5rem, 82vw);
    min-height: 0;
    scroll-snap-align: start;
  }

  .dlb-latest-news {
    margin-top: 1.7rem;
  }

  .dlb-latest-news .dlb-news-card img {
    aspect-ratio: 16 / 9;
    max-height: 9.5rem;
    object-fit: cover;
  }

  .home-fine-final-cta .dlb-cta {
    padding: 1.05rem;
  }
}

/* Editor parity overrides: Gutenberg loads this theme stylesheet inside the
   canvas, so keep final editor-only rules here as the last word over public
   desktop grids. */
.editor-styles-wrapper .block-editor-block-list__layout {
  min-width: 0;
}

.editor-styles-wrapper .block-editor-block-list__block:not(.is-selected):not(.has-child-selected)::after {
  box-shadow: none !important;
  outline: 0 !important;
}

.editor-styles-wrapper :is(.home-fine-context, .home-fine-problem, .home-fine-features, .home-fine-audience, .home-fine-tour, .home-fine-pricing, .home-fine-faq, .home-fine-final-cta),
.editor-styles-wrapper :is(.home-fine-context, .home-fine-problem, .home-fine-features, .home-fine-audience, .home-fine-tour, .home-fine-pricing, .home-fine-faq, .home-fine-final-cta).dlb-container {
  display: block !important;
  width: min(100%, 1080px) !important;
  min-height: 0 !important;
  margin-inline: auto !important;
  padding: clamp(1rem, 2vw, 1.55rem) !important;
  overflow: visible !important;
}

.editor-styles-wrapper :is(.home-fine-context, .home-fine-problem, .home-fine-features, .home-fine-audience, .home-fine-tour, .home-fine-pricing, .home-fine-faq, .home-fine-final-cta) > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0.8rem !important;
  align-items: stretch !important;
}

.editor-styles-wrapper :is(.home-fine-context, .home-fine-problem, .home-fine-features, .home-fine-audience, .home-fine-tour, .home-fine-pricing, .home-fine-faq, .home-fine-final-cta) > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-editor-block-list__block {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.editor-styles-wrapper :is(.home-fine-context, .home-fine-problem, .home-fine-features, .home-fine-audience, .home-fine-tour, .home-fine-pricing, .home-fine-faq, .home-fine-final-cta) .dlb-block-heading,
.editor-styles-wrapper :is(.home-fine-context, .home-fine-problem, .home-fine-features, .home-fine-audience, .home-fine-tour, .home-fine-pricing, .home-fine-faq, .home-fine-final-cta) .dlb-heading,
.editor-styles-wrapper :is(.home-fine-context, .home-fine-problem, .home-fine-features, .home-fine-audience, .home-fine-tour, .home-fine-pricing, .home-fine-faq, .home-fine-final-cta) .dlb-lead {
  width: 100% !important;
  max-width: min(100%, 780px) !important;
}

.editor-styles-wrapper :is(.home-fine-context, .home-fine-problem, .home-fine-features, .home-fine-audience, .home-fine-tour, .home-fine-pricing, .home-fine-faq, .home-fine-final-cta) .dlb-align-center,
.editor-styles-wrapper :is(.home-fine-context, .home-fine-problem, .home-fine-features, .home-fine-audience, .home-fine-tour, .home-fine-pricing, .home-fine-faq, .home-fine-final-cta) .dlb-align-center :is(.dlb-eyebrow, h1, h2, h3, h4, .dlb-lead) {
  margin-inline: auto !important;
  text-align: center !important;
}

.editor-styles-wrapper :is(.home-fine-context, .home-fine-problem, .home-fine-features, .home-fine-audience, .home-fine-pricing, .home-fine-faq) :is(.dlb-card-grid, .dlb-editor-grid, .dlb-stats) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(13.5rem, 100%), 1fr)) !important;
  grid-auto-rows: 1fr !important;
  gap: 0.72rem !important;
  align-items: stretch !important;
}

.editor-styles-wrapper :is(.home-fine-context, .home-fine-problem, .home-fine-features, .home-fine-audience, .home-fine-pricing, .home-fine-faq) :is(.dlb-card, .dlb-editor-grid article, .dlb-stat, details) {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 8.25rem !important;
  padding: 0.85rem !important;
  white-space: normal !important;
}

.editor-styles-wrapper :is(.home-fine-context, .home-fine-problem, .home-fine-features, .home-fine-audience, .home-fine-pricing, .home-fine-faq) :is(.dlb-card h3, .dlb-card p, .dlb-card a, .dlb-editor-grid article *, .dlb-stat *, details *) {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  white-space: normal !important;
  line-height: 1.35 !important;
}

.editor-styles-wrapper .home-native-hero-visual,
.editor-styles-wrapper .home-native-hero-visual.dlb-container {
  display: block !important;
  min-height: 0 !important;
  padding: 0.8rem !important;
}

.editor-styles-wrapper .home-native-hero-visual > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr)) !important;
  gap: 0.7rem !important;
  align-items: stretch !important;
}

.editor-styles-wrapper :is(.home-native-hero-desktop, .home-native-hero-phone, .home-native-hero-callouts, .home-native-hero-flow, .home-native-hero-orbit) {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  opacity: 1 !important;
  transform: none !important;
}

.editor-styles-wrapper .home-native-hero-orbit::before,
.editor-styles-wrapper .home-native-hero-orbit::after {
  display: none !important;
}

.editor-styles-wrapper .home-native-hero-orbit .dlb-media {
  width: 6rem !important;
  height: 6rem !important;
  margin: 0 !important;
  border-radius: 999px !important;
  place-items: center !important;
}

.dlb-align-center :is(.dlb-eyebrow, h1, h2, h3, h4, .dlb-lead),
.home-fine-context .dlb-align-center :is(.dlb-eyebrow, h1, h2, h3, h4, .dlb-lead),
.home-fine-features .dlb-align-center :is(.dlb-eyebrow, h1, h2, h3, h4, .dlb-lead),
.home-fine-tour .dlb-align-center :is(.dlb-eyebrow, h1, h2, h3, h4, .dlb-lead) {
  margin-inline: auto;
}

/* Final native homepage QA: calmer section chrome, a real orbit logo cue, and
   compact CTA composition without a giant outer frame. */
.home-fine-problem.dlb-container,
.home-fine-audience.dlb-container,
.home-fine-pricing.dlb-container,
.home-fine-faq.dlb-container {
  border-color: rgba(164, 204, 226, 0.22);
}

.home-fine-tour .dlb-tabs,
.home-fine-media-compact {
  border-color: rgba(164, 204, 226, 0.22);
}

.home-native-hero-orbit {
  top: 7%;
  right: 3.5%;
  width: clamp(13.5rem, 20vw, 23rem);
  opacity: 0.9;
}

.home-native-hero-orbit::before {
  inset: 4%;
  border-width: clamp(0.34rem, 0.56vw, 0.66rem);
  border-color: rgba(17, 104, 216, 0.18) rgba(17, 104, 216, 0.72) rgba(255, 183, 62, 0.18) rgba(34, 184, 173, 0.14);
}

.home-native-hero-orbit::after {
  inset: 28%;
  border-width: clamp(0.18rem, 0.32vw, 0.38rem);
  border-color: rgba(255, 183, 62, 0.72) rgba(34, 184, 173, 0.16) rgba(17, 104, 216, 0.22) rgba(255, 183, 62, 0.54);
}

.home-native-hero-orbit .dlb-media {
  width: clamp(8rem, 8.7vw, 9.85rem);
  height: clamp(8rem, 8.7vw, 9.85rem);
  background: transparent;
  filter: none;
}

.home-native-hero-orbit .dlb-media img {
  width: 100%;
  height: 100%;
}

.home-fine-final-cta,
.home-fine-final-cta.dlb-container {
  width: min(1180px, calc(100% - 2rem));
  min-height: 0;
  margin: clamp(2.4rem, 5vw, 4rem) auto 0;
  padding: 0 !important;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-fine-final-cta .dlb-cta {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.2rem);
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  overflow: hidden;
  border-radius: clamp(1rem, 1.8vw, 1.35rem);
  text-align: left;
  box-shadow: 0 28px 90px rgba(7, 20, 38, 0.2);
}

.home-fine-final-cta .dlb-cta h2 {
  max-width: 15ch;
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.home-fine-final-cta .dlb-cta p {
  max-width: 48rem;
  margin: 0;
}

.home-fine-final-cta .dlb-cta .dlb-button {
  justify-self: end;
  margin: 0;
}

@media (max-width: 980px) {
  .home-fine-final-cta .dlb-cta {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .home-fine-final-cta .dlb-cta h2,
  .home-fine-final-cta .dlb-cta p,
  .home-fine-final-cta .dlb-cta .dlb-button {
    justify-self: center;
    margin-inline: auto;
  }
}

.editor-styles-wrapper :is(.home-fine-problem, .home-fine-audience, .home-fine-pricing, .home-fine-faq),
.editor-styles-wrapper :is(.home-fine-problem, .home-fine-audience, .home-fine-pricing, .home-fine-faq).dlb-container {
  display: block !important;
  grid-template-columns: minmax(0, 1fr) !important;
}

.editor-styles-wrapper :is(.home-fine-problem, .home-fine-audience, .home-fine-pricing, .home-fine-faq) > .dlb-block-heading,
.editor-styles-wrapper :is(.home-fine-problem, .home-fine-audience, .home-fine-pricing, .home-fine-faq) > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-editor-block-list__block > .dlb-block-heading {
  position: static !important;
  top: auto !important;
}

.editor-styles-wrapper :is(.home-fine-context, .home-fine-problem, .home-fine-features, .home-fine-audience, .home-fine-pricing, .home-fine-faq) :is(.dlb-card-grid, .dlb-editor-grid, .dlb-stats) {
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr)) !important;
}

.editor-styles-wrapper .home-fine-final-cta,
.editor-styles-wrapper .home-fine-final-cta.dlb-container {
  padding: 0.85rem !important;
  border-color: rgba(164, 204, 226, 0.18) !important;
  background: rgba(255, 255, 255, 0.74) !important;
  box-shadow: 0 12px 34px rgba(25, 82, 126, 0.07) !important;
}

.editor-styles-wrapper .home-fine-final-cta .dlb-cta,
.editor-styles-wrapper .home-fine-final-cta .dlb-editor-cta {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0.65rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 1rem !important;
  text-align: left !important;
}

/* Native homepage finishing pass: keep public sections compact, readable and
   free from accidental editor-like chrome. */
.home-fine-media-compact,
.home-fine-media-row.home-fine-media-compact {
  width: min(900px, 100%);
  padding: 0.72rem !important;
  grid-template-columns: minmax(6rem, 0.27fr) minmax(0, 0.73fr);
  gap: 0.72rem;
}

.home-fine-media-compact .dlb-media {
  position: relative;
  min-height: 0;
  height: clamp(8.75rem, 15vw, 12.5rem);
  background:
    linear-gradient(135deg, rgba(247, 252, 255, 0.9), rgba(239, 253, 249, 0.86)),
    rgba(255, 255, 255, 0.82);
}

.home-fine-media-compact .home-fine-media-phone .dlb-media img {
  width: auto;
  height: calc(100% - 1rem);
  max-height: none;
}

.home-fine-media-compact .home-fine-media-desktop .dlb-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 50% 52%;
}

.home-fine-media-compact .dlb-media figcaption {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.55rem;
  width: auto;
  padding: 0.34rem 0.54rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(15, 49, 92, 0.08);
}

.home-fine-media-compact .home-fine-media-phone .dlb-media figcaption {
  display: none;
}

.home-native-hero-orbit .dlb-media {
  filter: none;
}

.home-native-hero-orbit .dlb-media img {
  background: transparent;
  box-shadow: none;
}

@media (max-width: 760px) {
  .home-native-hero-orbit {
    top: 1rem;
    right: 1rem;
    width: 8.35rem;
    opacity: 0.56;
  }

  .home-native-hero-orbit .dlb-media {
    width: 5.05rem;
    height: 5.05rem;
    background: transparent;
    filter: none;
  }

  .home-native-hero-orbit .dlb-media img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 760px) {
  .home-fine-media-compact,
  .home-fine-media-row.home-fine-media-compact {
    grid-template-columns: minmax(5.5rem, 0.34fr) minmax(0, 0.66fr) !important;
  }
}

/* Native article template: Article Hero uses the first visible post paragraph,
   and the body is the editable post content. Keep both in one readable column. */
.dlb-theme-template-single {
  overflow: hidden;
}

.dlb-theme-template-single .dlb-block-article-hero {
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(1.35rem, 3vw, 2.5rem) auto 0;
}

.dlb-theme-template-single .dlb-block-table-of-contents {
  width: min(760px, calc(100% - 2rem));
  margin: clamp(1.2rem, 3vw, 2rem) auto;
}

.dlb-theme-template-single .dlb-toc {
  border-color: rgba(164, 204, 226, 0.34);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(25, 82, 126, 0.08);
}

.dlb-theme-template-single .dlb-single-content,
.dlb-theme-template-single .wp-block-post-content {
  width: min(760px, calc(100% - 2rem));
  margin: clamp(1rem, 3vw, 2.1rem) auto;
}

.dlb-theme-template-single .dlb-single-content.dlb-container {
  padding: 0 !important;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dlb-theme-template-single .wp-block-post-content > * {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.dlb-theme-template-single .wp-block-post-content :is(p, li) {
  color: rgba(7, 23, 53, 0.74);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.74;
}

.dlb-theme-template-single .wp-block-post-content h2 {
  margin-top: clamp(1.7rem, 4vw, 2.45rem);
  color: var(--ink);
  font-size: clamp(1.55rem, 2.6vw, 2.18rem);
  line-height: 1.12;
}

.dlb-theme-template-single .dlb-related-posts {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

/* Gutenberg canvas guardrails for theme styles loaded into the editor. */
body.block-editor-page .editor-styles-wrapper :is(.edit-post-visual-editor__post-title-wrapper, .editor-post-title) {
  width: min(100%, 1080px) !important;
  margin: 1.2rem auto 0.9rem !important;
  padding-inline: clamp(0.85rem, 2vw, 1.35rem) !important;
}

body.block-editor-page .editor-styles-wrapper :is(.editor-post-title__input, .wp-block-post-title) {
  max-width: 100% !important;
  margin-inline: auto !important;
  font-size: clamp(2rem, 4vw, 3.1rem) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  overflow-wrap: anywhere !important;
}

body.block-editor-page .editor-styles-wrapper .home-fine-hero-copy h1 {
  max-width: 15ch !important;
  font-size: clamp(1.9rem, 3.35vw, 2.75rem) !important;
  line-height: 1.04 !important;
}

body.block-editor-page .editor-styles-wrapper .home-fine-hero-copy .dlb-lead {
  font-size: 0.92rem !important;
  line-height: 1.45 !important;
}
