:root {
  color-scheme: dark;
  --bg: #06160d;
  --bg-2: #0a1f12;
  --surface: rgba(10, 31, 18, 0.72);
  --surface-strong: rgba(15, 42, 26, 0.9);
  --surface-faint: rgba(74, 222, 128, 0.055);
  --line: rgba(134, 168, 146, 0.18);
  --line-strong: rgba(74, 222, 128, 0.46);
  --text: #f4fff6;
  --muted: #b6cdbd;
  --dim: #6b9278;
  --primary: #4ade80;
  --primary-2: #22c55e;
  --lime: #a3e635;
  --blue: #34d399;
  --purple: #86efac;
  --orange: #d9f99d;
  --red: #bef264;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-glow: 0 0 42px rgba(74, 222, 128, 0.32);
  --font-display: Inter, Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-app: Roboto, Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -30%, rgba(74, 222, 128, 0.14), transparent 38rem),
    radial-gradient(circle at 14% 26%, rgba(34, 197, 94, 0.08), transparent 32rem),
    linear-gradient(180deg, #06160d 0%, #0a1f12 45%, #06160d 100%);
  color: var(--text);
  font-family: var(--font-display);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::selection {
  background: rgba(74, 222, 128, 0.36);
  color: white;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

#auroraCanvas {
  position: fixed;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  opacity: 0.76;
}

.site-noise,
.scan-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.site-noise {
  z-index: -2;
  opacity: 0.12;
  background-image:
    linear-gradient(115deg, rgba(255,255,255,0.07), transparent 30%),
    repeating-radial-gradient(circle at 12% 18%, rgba(255,255,255,0.12) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}

.scan-grid {
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(74, 222, 128, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 222, 128, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 28%, black 0, transparent 68%);
}

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded', 'Material Symbols Outlined', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  /* Critical: enable ligatures so the text content (e.g. "upload_file")
     gets substituted with the icon glyph. Google's served CSS no longer
     includes this, so we set it explicitly. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 32;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 8, 6, 0.64);
  backdrop-filter: blur(26px) saturate(130%);
  border-radius: 999px;
  box-shadow: 0 18px 80px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.08);
}

.brand-lockup,
.site-nav,
.nav-cta,
.button,
.hero-proof,
.glass-panel,
.motion-card,
.usecase-grid article,
.workflow-shell,
.cta-shell {
  border: 1px solid rgba(255,255,255,0.11);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 0 22px rgba(74, 222, 128, 0.55);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
}

.site-nav a {
  padding: 9px 13px;
  color: rgba(244,255,246,0.68);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(74, 222, 128, 0.12);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #07120d;
  font-weight: 900;
  font-size: 13px;
  box-shadow: var(--shadow-glow);
}

.section-pad {
  padding: clamp(84px, 11vw, 150px) clamp(20px, 5vw, 70px);
}

main > section {
  scroll-margin-top: 104px;
}

main {
  overflow-x: clip;
}

.hero-scrolly {
  position: relative;
  min-height: 360vh;
  padding: 0 clamp(20px, 5vw, 70px);
  overflow-x: clip;
}

.hero-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(460px, 1.12fr);
  align-items: center;
  width: min(1320px, 100%);
  margin: 0 auto;
  gap: clamp(24px, 4vw, 58px);
  pointer-events: none;
  padding-top: 88px;
}

.hero-copy,
.phone-column,
.hero-phone-stage,
.hero-component-stage,
.hero-status,
.story-card {
  pointer-events: auto;
}

.hero-copy {
  margin-top: 44px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 4.2vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-wrap: balance;
}

.hero-lede {
  max-width: 620px;
  color: rgba(244,255,246,0.76);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 580px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(244,255,246,0.76);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
}

.hero-bullets li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #061007;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 44px rgba(74, 222, 128, 0.32);
  border-color: rgba(74, 222, 128, 0.58);
}

.button-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(18px);
}

.button-ghost:hover {
  border-color: rgba(74, 222, 128, 0.36);
  background: rgba(74, 222, 128, 0.1);
}

.store-buttons {
  align-items: center;
}

.store-button {
  display: inline-grid;
  grid-template-columns: 30px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  min-height: 56px;
  min-width: 174px;
  padding: 9px 16px 9px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 17px;
  color: var(--text);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 18px 52px rgba(0,0,0,0.25);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(74,222,128,0.38);
  background: rgba(74,222,128,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 18px 52px rgba(74,222,128,0.14);
}

.store-button .material-symbols-rounded {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #061007;
  background: var(--primary);
}

.store-button small,
.store-button strong {
  display: block;
  line-height: 1;
}

.store-button small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.store-button strong {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.store-play {
  border-color: rgba(74,222,128,0.28);
}

.store-ios {
  border-color: rgba(255,255,255,0.18);
}

.compact-store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.compact-store-buttons .store-button {
  min-width: 158px;
  min-height: 52px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 560px;
  margin: 34px 0 0;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
}

.hero-proof div {
  padding: 13px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
}

.hero-proof dt {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  font-weight: 900;
}

.hero-proof dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phone-column {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  min-height: 100svh;
}

.phone-halo {
  position: absolute;
  width: min(82vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 180deg, transparent, rgba(74,222,128,0.18), transparent, rgba(34,197,94,0.12), transparent),
    radial-gradient(circle, rgba(74,222,128,0.24), transparent 56%);
  filter: blur(18px);
  animation: spin-slow 18s linear infinite;
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(315px, 72vw, calc((100svh - 242px) * 0.462));
  min-width: 205px;
  aspect-ratio: 768 / 1663;
  padding: 10px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.025)),
    #121513;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 0 0 6px rgba(0,0,0,0.35),
    0 30px 100px rgba(0,0,0,0.65),
    0 0 70px rgba(74,222,128,0.28),
    inset 0 1px 0 rgba(255,255,255,0.2);
  overflow: hidden;
  transform-style: preserve-3d;
}

.phone-topbar {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 5;
  width: 110px;
  height: 23px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 0 0 15px 15px;
  background: #0b0d0c;
}

.phone-topbar span:first-child {
  width: 42px;
  height: 5px;
  border-radius: 99px;
  background: #262b28;
}

.phone-topbar span:last-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #222826;
}

.phone-screen-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 31px;
  background: #111;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.06) contrast(1.05);
  transition: opacity 360ms ease, transform 700ms cubic-bezier(.2,.9,.2,1), filter 360ms ease;
}

.phone-screen.is-swapping {
  opacity: 0;
  transform: scale(1.035) translateY(10px);
  filter: saturate(1.3) contrast(1.18) blur(2px);
}

.phone-reflection,
.phone-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.phone-reflection {
  background: linear-gradient(115deg, rgba(255,255,255,0.22), transparent 28%, transparent 70%, rgba(74,222,128,0.08));
  mix-blend-mode: screen;
}

.phone-scanline {
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 5px);
  opacity: 0.5;
}

.phone-caption,
.hero-status,
.glass-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  backdrop-filter: blur(24px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 20px 70px rgba(0,0,0,0.28);
}

.phone-caption {
  position: relative;
  z-index: 2;
  width: min(370px, 84vw);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
}

.phone-caption .material-symbols-rounded {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #07120d;
  background: var(--primary);
  box-shadow: 0 0 26px rgba(74,222,128,0.35);
}

.phone-caption strong,
.phone-caption span:last-child {
  display: block;
}

.phone-caption strong {
  font-size: 14px;
}

.phone-caption span:last-child {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.hero-status {
  align-self: end;
  margin-bottom: clamp(42px, 10vh, 90px);
  padding: 14px;
  border-radius: 16px;
  color: var(--muted);
}

.status-light {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 18px var(--primary);
}

.hero-status p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.hero-status strong {
  color: var(--text);
}

.hero-phone-stage {
  position: relative;
  min-height: min(820px, calc(100svh - 16px));
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding-top: 24px;
  isolation: isolate;
}

.hero-story-band {
  position: relative;
  z-index: 6;
  width: min(660px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(230px, 0.95fr);
  align-items: stretch;
  gap: 10px;
}

.hero-phone-stage .phone-column {
  z-index: 2;
  min-height: auto;
  transform: none;
  pointer-events: none;
}

.hero-phone-stage .phone-shell {
  width: min(365px, 54vw, calc((100svh - 98px) * 0.462));
  min-width: 270px;
}

.hero-phone-stage .phone-halo {
  width: min(620px, 80vw);
  opacity: 0.94;
}

.hero-layover-card {
  position: relative;
  inset: auto;
  z-index: 5;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 18px;
}

.hero-layover-card .material-symbols-rounded {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #061007;
  background: var(--primary);
  box-shadow: 0 0 28px rgba(74,222,128,0.34);
}

.hero-layover-card > div > strong,
.hero-layover-card > div > span,
.hero-layover-card > div > small {
  display: block;
}

.hero-layover-card > div > strong {
  font-size: 14px;
  line-height: 1.15;
}

.hero-layover-card > div > span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.hero-layover-card small {
  margin-top: 8px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-component-stage {
  position: relative;
  min-height: min(800px, calc(100svh - 64px));
  display: grid;
  align-content: center;
  justify-items: center;
  padding-top: 50px;
  isolation: isolate;
}

.component-aura {
  position: absolute;
  inset: 10% -12% 0;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 28%, rgba(74,222,128,0.28), transparent 32%),
    radial-gradient(circle at 74% 56%, rgba(34,197,94,0.16), transparent 36%),
    conic-gradient(from 220deg, rgba(74,222,128,0.0), rgba(74,222,128,0.22), rgba(134,239,172,0.14), rgba(163,230,53,0.12), rgba(74,222,128,0.0));
  filter: blur(24px);
  opacity: 0.86;
  animation: spin-slow 24s linear infinite;
}

.scene-summary {
  position: relative;
  z-index: 4;
  width: min(520px, 92%);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 18px;
}

.scene-summary .material-symbols-rounded {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #061007;
  background: var(--primary);
  box-shadow: 0 0 28px rgba(74,222,128,0.36);
}

.scene-summary strong,
.scene-summary span:last-child {
  display: block;
}

.scene-summary strong {
  font-size: 14px;
}

.scene-summary span:last-child {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.component-deck {
  position: relative;
  width: min(760px, 52vw);
  aspect-ratio: 1.2;
  perspective: 1400px;
  transform-style: preserve-3d;
  transform: rotateX(var(--deck-tilt-y, 0deg)) rotateY(var(--deck-tilt-x, 0deg));
  transition: transform 260ms ease;
}

.component-deck::before {
  content: "";
  position: absolute;
  inset: 11% 7% 12%;
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 36px;
  background:
    linear-gradient(rgba(74,222,128,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,222,128,0.08) 1px, transparent 1px),
    rgba(255,255,255,0.02);
  background-size: 38px 38px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 30px 120px rgba(0,0,0,0.3);
  transform: translateZ(-90px) rotateX(58deg) translateY(18%);
}

.component-layer {
  position: absolute;
  max-width: none;
  transition:
    transform 760ms cubic-bezier(.2,.9,.2,1),
    opacity 420ms ease,
    filter 420ms ease;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  filter: saturate(1.06) drop-shadow(0 26px 42px rgba(0,0,0,0.34));
}

.layer-lead {
  width: 55%;
  left: 2%;
  top: 14%;
  z-index: 5;
}

.layer-crm {
  width: 39%;
  right: 7%;
  top: 2%;
  z-index: 3;
}

.layer-disposition {
  width: 58%;
  right: -1%;
  top: 34%;
  z-index: 6;
}

.layer-message {
  width: 46%;
  right: 2%;
  bottom: 1%;
  z-index: 4;
}

.layer-task {
  width: 43%;
  left: 0;
  bottom: 9%;
  z-index: 4;
}

.dialer-component,
.outcome-component {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(5,8,6,0.82);
  backdrop-filter: blur(22px) saturate(145%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 30px 80px rgba(0,0,0,0.35);
}

.dialer-component {
  width: 41%;
  left: 31%;
  top: 39%;
  z-index: 8;
  border-radius: 28px;
}

.dialer-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialer-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 16px var(--primary);
}

.dialer-component strong,
.dialer-component small,
.outcome-component span,
.outcome-component strong,
.outcome-component small {
  display: block;
}

.dialer-component strong {
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.04em;
}

.dialer-component small,
.outcome-component small {
  margin-top: 4px;
  color: var(--muted);
}

.dialer-component button {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  color: #061007;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font: 900 14px var(--font-display);
  box-shadow: 0 0 42px rgba(74,222,128,0.32);
}

.dialer-progress {
  height: 7px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
}

.dialer-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--lime));
  animation: meter-load 3.8s ease-in-out infinite alternate;
}

.outcome-component {
  width: 39%;
  left: 16%;
  bottom: 2%;
  z-index: 7;
  border-radius: 22px;
}

.outcome-component span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outcome-component strong {
  margin-top: 7px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.flow-ribbon {
  position: absolute;
  left: 50%;
  bottom: 13%;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(5,8,6,0.78);
  color: rgba(244,255,246,0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.34);
  font-size: 12px;
  font-weight: 900;
  transform: translate3d(-50%, 0, 180px);
}

.flow-ribbon i {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.hero-stepper {
  position: relative;
  inset: auto;
  z-index: 6;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 6px;
  margin-top: 0;
}

.hero-step-chip {
  min-height: 48px;
  padding: 8px 9px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  background: rgba(255,255,255,0.045);
  color: rgba(244,255,246,0.68);
  transition: border-color 260ms ease, background 260ms ease, color 260ms ease, transform 260ms ease;
}

.hero-step-chip.is-active {
  color: var(--text);
  border-color: rgba(74,222,128,0.52);
  background: rgba(74,222,128,0.12);
  box-shadow: 0 0 0 1px rgba(74,222,128,0.32);
}

.hero-step-chip span,
.hero-step-chip strong,
.hero-step-chip small {
  display: block;
}

.hero-step-chip span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-step-chip strong {
  margin-top: 2px;
  font-size: 13px;
}

.hero-step-chip small {
  display: none;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.hero-component-stage[data-scene="0"] .layer-lead {
  opacity: 1;
  transform: translate3d(-38px, 34px, 170px) rotateZ(-7deg) scale(1.08);
}

.hero-component-stage[data-scene="0"] .layer-crm {
  opacity: 0.58;
  transform: translate3d(24px, -8px, 30px) rotateZ(6deg) scale(0.88);
}

.hero-component-stage[data-scene="0"] .layer-dialer {
  opacity: 0.82;
  transform: translate3d(4px, 22px, 90px) rotateZ(3deg) scale(0.92);
}

.hero-component-stage[data-scene="0"] .layer-disposition,
.hero-component-stage[data-scene="0"] .layer-message,
.hero-component-stage[data-scene="0"] .layer-task,
.hero-component-stage[data-scene="0"] .layer-outcome {
  opacity: 0.36;
  filter: saturate(0.76) blur(0.2px) drop-shadow(0 20px 34px rgba(0,0,0,0.28));
}

.hero-component-stage[data-scene="0"] .layer-disposition { transform: translate3d(70px, 44px, -16px) rotateZ(-4deg) scale(0.82); }
.hero-component-stage[data-scene="0"] .layer-message { transform: translate3d(54px, 54px, -34px) rotateZ(8deg) scale(0.78); }
.hero-component-stage[data-scene="0"] .layer-task { transform: translate3d(-54px, 30px, 0) rotateZ(6deg) scale(0.78); }
.hero-component-stage[data-scene="0"] .layer-outcome { transform: translate3d(-48px, 50px, 14px) rotateZ(-4deg) scale(0.86); }

.hero-component-stage[data-scene="1"] .layer-dialer {
  opacity: 1;
  transform: translate3d(-12px, -8px, 190px) rotateZ(-2deg) scale(1.1);
}

.hero-component-stage[data-scene="1"] .layer-lead {
  opacity: 0.86;
  transform: translate3d(-92px, 16px, 70px) rotateZ(-10deg) scale(0.95);
}

.hero-component-stage[data-scene="1"] .layer-disposition {
  opacity: 0.78;
  transform: translate3d(36px, 22px, 92px) rotateZ(5deg) scale(0.92);
}

.hero-component-stage[data-scene="1"] .layer-crm,
.hero-component-stage[data-scene="1"] .layer-message,
.hero-component-stage[data-scene="1"] .layer-task,
.hero-component-stage[data-scene="1"] .layer-outcome {
  opacity: 0.42;
  filter: saturate(0.82) drop-shadow(0 18px 30px rgba(0,0,0,0.28));
}

.hero-component-stage[data-scene="1"] .layer-crm { transform: translate3d(66px, -20px, 0) rotateZ(8deg) scale(0.76); }
.hero-component-stage[data-scene="1"] .layer-message { transform: translate3d(86px, 56px, -28px) rotateZ(9deg) scale(0.76); }
.hero-component-stage[data-scene="1"] .layer-task { transform: translate3d(-56px, 68px, -24px) rotateZ(6deg) scale(0.76); }
.hero-component-stage[data-scene="1"] .layer-outcome { transform: translate3d(-22px, 66px, 4px) rotateZ(-3deg) scale(0.84); }

.hero-component-stage[data-scene="2"] .layer-disposition {
  opacity: 1;
  transform: translate3d(0, -34px, 170px) rotateZ(-3deg) scale(1.08);
}

.hero-component-stage[data-scene="2"] .layer-message {
  opacity: 1;
  transform: translate3d(34px, 34px, 142px) rotateZ(7deg) scale(0.94);
}

.hero-component-stage[data-scene="2"] .layer-task {
  opacity: 0.92;
  transform: translate3d(-70px, 40px, 124px) rotateZ(5deg) scale(0.9);
}

.hero-component-stage[data-scene="2"] .layer-outcome {
  opacity: 1;
  transform: translate3d(-34px, 3px, 190px) rotateZ(-4deg) scale(1);
}

.hero-component-stage[data-scene="2"] .layer-lead,
.hero-component-stage[data-scene="2"] .layer-crm,
.hero-component-stage[data-scene="2"] .layer-dialer {
  opacity: 0.43;
  filter: saturate(0.78) drop-shadow(0 18px 30px rgba(0,0,0,0.28));
}

.hero-component-stage[data-scene="2"] .layer-lead { transform: translate3d(-92px, 10px, 10px) rotateZ(-9deg) scale(0.84); }
.hero-component-stage[data-scene="2"] .layer-crm { transform: translate3d(84px, -30px, -10px) rotateZ(7deg) scale(0.74); }
.hero-component-stage[data-scene="2"] .layer-dialer { transform: translate3d(-4px, 26px, 20px) rotateZ(2deg) scale(0.82); }

.scene-markers {
  position: relative;
  z-index: 0;
  width: 1px;
  margin-left: auto;
  padding-top: 46vh;
  padding-bottom: 46vh;
  pointer-events: none;
}

.scene-markers .story-step {
  display: block;
  min-height: 68vh;
}

.story-steps {
  position: relative;
  z-index: 8;
  width: min(420px, 86vw);
  margin-left: auto;
  padding-top: 76vh;
  padding-bottom: 86vh;
}

.story-step {
  min-height: 86vh;
  display: flex;
  align-items: center;
}

.story-card {
  width: 100%;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius-lg);
  transform: translateY(36px) scale(0.96);
  opacity: 0.42;
  transition: opacity 360ms ease, transform 500ms cubic-bezier(.2,.9,.2,1), border-color 300ms ease;
}

.story-step.is-active .story-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(74,222,128,0.62);
  box-shadow: 0 22px 90px rgba(74,222,128,0.16), inset 0 1px 0 rgba(255,255,255,0.14);
}

.step-number {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.story-card h2,
.section-heading h2,
.workflow-copy h2,
.cta-shell h2 {
  font-size: clamp(34px, 5.8vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-wrap: balance;
}

.story-card h2 {
  font-size: clamp(28px, 2.8vw, 42px);
  margin-bottom: 16px;
}

.story-card p,
.section-heading p,
.workflow-copy p,
.cta-shell p {
  color: var(--muted);
  line-height: 1.62;
}

.story-card ul,
.price-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.story-card li,
.price-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(244,255,246,0.78);
  font-size: 14px;
  line-height: 1.45;
}

.story-card li::before,
.price-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 14px var(--primary);
}

.section-heading {
  max-width: 940px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.compact {
  max-width: 780px;
}

.section-heading p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
}

.crm-shell,
.incoming-shell,
.reports-dashboard {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.crm-section {
  padding-top: clamp(118px, 12vw, 178px);
}

.crm-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  margin-top: 28px;
  padding: clamp(28px, 5.5vw, 58px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 14%, rgba(74,222,128,0.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
}

.crm-copy h2,
.incoming-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.2vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-wrap: balance;
}

.crm-copy p,
.incoming-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.crm-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.crm-points div,
.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  background: rgba(5,8,6,0.5);
}

.crm-points .material-symbols-rounded,
.feature-list .material-symbols-rounded {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #07120d;
  background: var(--primary);
}

.crm-points strong,
.crm-points small {
  grid-column: 2;
  display: block;
}

.crm-points small {
  margin-top: 3px;
  color: var(--muted);
}

.crm-review {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

.crm-visual {
  position: relative;
  min-height: 800px;
  isolation: isolate;
}

/* ── CRM stacked image group ───────────────────────────────── */
.crm-stack {
  position: relative;
  width: 100%;
  min-height: 800px;
}

.crm-stack-img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
}

/* Main image — centre, z-index 1 */
.crm-stack-img--main {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  min-height: 800px;
  z-index: 1;
}

/* Top-left */
.crm-stack-img--top-left {
  width: 52%;
  top: -40px;
  left: -6%;
  z-index: 2;
  animation: crm-float-tl 5.5s ease-in-out infinite 0.4s;
}

/* Bottom-right */
.crm-stack-img--bottom-right {
  width: 60%;
  bottom: -20px;
  right: -4%;
  border-radius: 16px;
  z-index: 2;
  animation: crm-float-br 4.8s ease-in-out infinite 0.8s;
}

@keyframes crm-float-main {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50%       { transform: translateX(-50%) translateY(-16px); }
}
@keyframes crm-float-tl {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes crm-float-br {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.crm-phone-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
}

.crm-phone-wrap .phone-halo {
  width: min(620px, 78vw);
  opacity: 0.86;
}

.crm-phone-shell {
  width: min(340px, 42vw);
  min-width: 275px;
  transform: rotateX(3deg) rotateY(-7deg);
  animation: crm-phone-float 7s ease-in-out infinite;
}

.crm-layer {
  position: absolute;
  z-index: 4;
  filter: drop-shadow(0 28px 52px rgba(0,0,0,0.42));
  transition: transform 260ms ease, filter 260ms ease;
}

.crm-visual:hover .crm-layer {
  filter: drop-shadow(0 34px 62px rgba(0,0,0,0.5));
}

.crm-layer-stage {
  width: min(240px, 28vw);
  right: 5%;
  top: 16%;
  transform: translate3d(0, 0, 150px) rotate(6deg);
  animation: crm-layer-stage-float 6.4s ease-in-out infinite;
}

.crm-layer-task {
  width: min(215px, 25vw);
  left: 8%;
  bottom: 13%;
  transform: translate3d(0, 0, 140px) rotate(-4deg);
  animation: crm-layer-task-float 7.2s ease-in-out infinite;
}

.incoming-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.incoming-visual {
  min-height: 620px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 14%, rgba(74,222,128,0.2), transparent 34%),
    rgba(255,255,255,0.045);
}

.incoming-phone {
  width: min(360px, 78vw);
  min-height: 560px;
  padding: 18px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03)),
    #0c100d;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 34px 110px rgba(0,0,0,0.56), 0 0 80px rgba(74,222,128,0.15);
}

.incoming-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  color: rgba(244,255,246,0.72);
  font-size: 12px;
  font-weight: 800;
}

.incoming-call-card,
.last-context-card {
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.065);
  backdrop-filter: blur(22px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.incoming-call-card {
  margin-top: 42px;
  padding: 24px;
  border-radius: 28px;
  text-align: center;
}

.incoming-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(74,222,128,0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.incoming-call-card strong {
  display: block;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.incoming-call-card small,
.incoming-call-card p,
.last-context-card small,
.last-context-card span {
  color: var(--muted);
}

.incoming-call-card p {
  margin: 18px 0 0;
  line-height: 1.5;
}

.incoming-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.incoming-actions span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07120d;
  background: var(--primary);
  box-shadow: 0 0 22px rgba(74,222,128,0.28);
}

.last-context-card {
  margin-top: 16px;
  padding: 18px;
  border-radius: 22px;
}

.last-context-card span,
.last-context-card strong,
.last-context-card small {
  display: block;
}

.last-context-card strong {
  margin-top: 8px;
}

.last-context-card small {
  margin-top: 6px;
  line-height: 1.45;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  color: rgba(244,255,246,0.82);
}

.reports-dashboard {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr 0.8fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border-radius: 34px;
}

.report-kpis,
.report-breakdown {
  display: grid;
  gap: 12px;
}

.report-kpis div,
.report-breakdown div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background: rgba(5,8,6,0.5);
}

.report-kpis span,
.report-kpis small,
.report-breakdown small {
  color: var(--muted);
}

.report-kpis span,
.report-kpis strong,
.report-kpis small,
.report-breakdown strong,
.report-breakdown small {
  display: block;
}

.report-kpis strong {
  margin: 8px 0 4px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.report-chart {
  min-height: 430px;
  display: flex;
  align-items: end;
  gap: clamp(8px, 1.4vw, 16px);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    rgba(5,8,6,0.5);
  background-size: 100% 25%, 16.66% 100%, auto;
}

.report-chart i {
  flex: 1;
  height: var(--h);
  min-height: 32px;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, var(--primary), rgba(74,222,128,0.18));
  box-shadow: 0 0 34px rgba(74,222,128,0.18);
  animation: bar-bounce 2.8s ease-in-out infinite alternate;
}

.report-chart i:nth-child(even) {
  background: linear-gradient(180deg, var(--blue), rgba(52,211,153,0.18));
}

.report-breakdown div {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 14px currentColor;
}

.dot.green { color: var(--primary); background: var(--primary); }
.dot.orange { color: var(--lime); background: var(--lime); }
.dot.blue { color: var(--blue); background: var(--blue); }
.dot.purple { color: var(--purple); background: var(--purple); }

.payment-stack {
  display: grid;
  gap: 10px;
}

.payment-stack div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.28));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  font-size: 14px;
}
.payment-stack div:first-child { border-color: rgba(74,222,128,0.32); background: linear-gradient(180deg, rgba(74,222,128,0.14), rgba(74,222,128,0.04)); }
.payment-stack div:first-child strong { color: var(--primary); }
.payment-stack strong { font-weight: 700; letter-spacing: -0.01em; }

.payment-stack span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.backup-viz i {
  background: linear-gradient(180deg, var(--lime), rgba(163,230,53,0.18));
}

.momentum-grid,
.pricing-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.motion-card {
  position: relative;
  min-height: 360px;
  padding: clamp(22px, 4vw, 32px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 20px 70px rgba(0,0,0,0.24);
}

.motion-card > .material-symbols-rounded {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.08);
}

.motion-card h3,
.bento-card h3,
.price-card h3,
.usecase-grid h3 {
  font-size: 24px;
  line-height: 1.08;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.motion-card p,
.bento-card p,
.price-card p,
.usecase-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.danger-card .material-symbols-rounded { color: var(--red); }
.success-card .material-symbols-rounded { color: var(--primary); }
.flow-card .material-symbols-rounded { color: var(--blue); }

.messy-stack {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 140px;
}

.messy-stack i {
  position: absolute;
  inset: auto 0 0;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transform: rotate(var(--r)) translateY(var(--y));
}

.messy-stack i:nth-child(1) { --r: -8deg; --y: 0; }
.messy-stack i:nth-child(2) { --r: 5deg; --y: -30px; }
.messy-stack i:nth-child(3) { --r: -3deg; --y: -62px; }
.messy-stack i:nth-child(4) { --r: 8deg; --y: -94px; }

.flow-orbit {
  position: absolute;
  inset: 92px 30px 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px dashed rgba(74,222,128,0.35);
  animation: float-soft 5s ease-in-out infinite;
}

.flow-orbit::before {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 60px rgba(74,222,128,0.35);
}

.flow-orbit b {
  position: absolute;
  z-index: 1;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(5,8,6,0.78);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-size: 12px;
}

.flow-orbit b:nth-child(1) { transform: translate(0, -115px); }
.flow-orbit b:nth-child(2) { transform: translate(125px, -32px); }
.flow-orbit b:nth-child(3) { transform: translate(74px, 105px); }
.flow-orbit b:nth-child(4) { transform: translate(-86px, 104px); }
.flow-orbit b:nth-child(5) { transform: translate(-130px, -32px); }

.success-meter {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 42px;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.success-meter span {
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--lime));
  box-shadow: 0 0 24px rgba(74,222,128,0.45);
  animation: meter-load 3.8s ease-in-out infinite alternate;
}

.bento-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  grid-auto-flow: row dense;
  gap: 18px;
}

/* Asymmetric tier — desktop only.
   4-col grid; 8 cards fill exactly 20 cells = 5 rows, no orphan space.
     1 Payment tracking      -> tall feature, span 2 cols x 2 rows  (4 cells)
     2 Invoice maker         -> 2 cols
     3 SMS templates (img)   -> 2 cols
     4 Business card         -> 2 cols
     5 Follow-up (wide)      -> 4 cols
     6 Backup                -> 2 cols
     7 Rechurn               -> 2 cols
     8 Tasks (img)           -> 2 cols  */
.bento-grid > .bento-card { grid-column: span 2; }
.bento-grid > .bento-large { grid-column: span 2; grid-row: span 2; }
.bento-grid > .bento-wide  { grid-column: 1 / -1; }

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  padding: 26px;
  border-radius: 22px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(74,222,128,0.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 22px 50px rgba(0,0,0,0.32);
  overflow: hidden;
  isolation: isolate;
}

/* Gradient hairline border on hover */
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(74,222,128,0.58), rgba(34,197,94,0.36) 48%, rgba(163,230,53,0.28));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
  z-index: 1;
}

/* Soft themed glow that follows the icon color */
.bento-card::after {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--card-glow, rgba(74,222,128,0.22)), transparent 60%);
  filter: blur(20px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  transition: opacity 360ms ease, transform 600ms ease;
}

.bento-card > * { position: relative; z-index: 2; }
.bento-card > .card-icon { margin-bottom: 0; }
.bento-card > h3 { margin-bottom: 0; }
.bento-card > p { margin: 0; }

/* Per-card glow palette */
.bento-card:has(.card-icon.blue)   { --card-glow: rgba(52,211,153,0.24); }
.bento-card:has(.card-icon.yellow) { --card-glow: rgba(163,230,53,0.22); }
.bento-card:has(.card-icon.purple) { --card-glow: rgba(134,239,172,0.24); }
.bento-card:has(.card-icon.orange) { --card-glow: rgba(190,242,100,0.22); }
.bento-card:has(.card-icon.red)    { --card-glow: rgba(190,242,100,0.22); }

.bento-large {
  background:
    radial-gradient(140% 90% at 0% 0%, rgba(74,222,128,0.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}
.bento-large > .payment-stack { margin-top: auto; }

.bento-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
  gap: 24px;
  align-items: center;
}
.bento-wide > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pixel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle, rgba(74,222,128,0.7) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(115deg, transparent, black 45%, transparent 82%);
  animation: pixel-drift 8s linear infinite;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(74,222,128,0.22), rgba(74,222,128,0.06));
  color: var(--primary);
  border: 1px solid rgba(74,222,128,0.28);
  box-shadow: 0 8px 22px rgba(74,222,128,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
}
.card-icon .material-symbols-rounded { font-size: 26px; }

.card-icon.blue   { color: var(--blue);  background: linear-gradient(160deg, rgba(52,211,153,0.2), rgba(52,211,153,0.06)); border-color: rgba(52,211,153,0.3); box-shadow: 0 8px 22px rgba(52,211,153,0.16), inset 0 1px 0 rgba(255,255,255,0.12); }
.card-icon.yellow { color: var(--lime);  background: linear-gradient(160deg, rgba(163,230,53,0.18), rgba(163,230,53,0.05)); border-color: rgba(163,230,53,0.28); box-shadow: 0 8px 22px rgba(163,230,53,0.14), inset 0 1px 0 rgba(255,255,255,0.12); }
.card-icon.purple { color: var(--purple);background: linear-gradient(160deg, rgba(134,239,172,0.2), rgba(134,239,172,0.06)); border-color: rgba(134,239,172,0.3); box-shadow: 0 8px 22px rgba(134,239,172,0.15), inset 0 1px 0 rgba(255,255,255,0.12); }
.card-icon.orange { color: var(--orange);background: linear-gradient(160deg, rgba(190,242,100,0.18), rgba(190,242,100,0.05)); border-color: rgba(190,242,100,0.28); box-shadow: 0 8px 22px rgba(190,242,100,0.14), inset 0 1px 0 rgba(255,255,255,0.12); }
.card-icon.red    { color: var(--red);   background: linear-gradient(160deg, rgba(190,242,100,0.18), rgba(190,242,100,0.05)); border-color: rgba(190,242,100,0.28); box-shadow: 0 8px 22px rgba(190,242,100,0.14), inset 0 1px 0 rgba(255,255,255,0.12); }

.mini-dialer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(5,8,6,0.72);
  border: 1px solid rgba(255,255,255,0.1);
}

.mini-pulse {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #07120d;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.72);
  animation: pulse-ring 2.2s infinite;
}

.mini-dialer strong,
.mini-dialer small {
  display: block;
}

.mini-dialer small {
  margin-top: 4px;
  color: var(--muted);
}

.screenshot-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) 1fr;
  align-items: center;
  gap: 20px;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 20px 50px rgba(0,0,0,0.32);
}

.component-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 20px 34px rgba(0,0,0,0.32));
}

.message-preview {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.45));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 18px 40px rgba(0,0,0,0.32);
}

.message-preview span {
  display: block;
  color: rgba(244,255,246,0.92);
  line-height: 1.5;
  font-size: 14px;
}

.message-preview div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.message-preview b {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(74,222,128,0.14);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(74,222,128,0.28);
}
.message-preview b:nth-child(2) { background: rgba(52,211,153,0.14); color: var(--blue); border-color: rgba(52,211,153,0.28); }
.message-preview b:nth-child(3) { background: rgba(134,239,172,0.14); color: var(--purple); border-color: rgba(134,239,172,0.28); }

.bar-viz {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 92px;
  display: flex;
  align-items: end;
  gap: 9px;
}

.bar-viz i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--primary), rgba(74,222,128,0.22));
  animation: bar-bounce 2.8s ease-in-out infinite alternate;
}

.bar-viz i:nth-child(1) { height: 36%; animation-delay: 0ms; }
.bar-viz i:nth-child(2) { height: 64%; animation-delay: 140ms; }
.bar-viz i:nth-child(3) { height: 92%; animation-delay: 260ms; }
.bar-viz i:nth-child(4) { height: 54%; animation-delay: 380ms; }
.bar-viz i:nth-child(5) { height: 78%; animation-delay: 520ms; }

.dialer-stage {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 0.86fr 1.15fr 0.92fr;
  gap: 16px;
}

.queue-panel,
.active-call-panel,
.after-call-panel {
  min-height: 520px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(5,8,6,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}

.queue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.queue-header strong {
  color: var(--primary);
}

.queue-list {
  display: grid;
  gap: 10px;
}

.queue-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 16px;
  color: rgba(244,255,246,0.72);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, transform 200ms ease;
}

.queue-item.is-current {
  color: var(--text);
  background: rgba(74,222,128,0.13);
  border-color: rgba(74,222,128,0.45);
  transform: translateX(6px);
}

.queue-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 18px var(--primary);
}

.queue-item small,
.active-call-panel p,
.after-call-panel p {
  color: var(--muted);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 26px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.26);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 16px var(--primary);
}

.active-call-panel h3 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.95;
  margin-bottom: 10px;
  letter-spacing: -0.055em;
}

.call-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 210px;
  margin: 26px 0 20px;
}

.ring-wave {
  position: absolute;
  width: 170px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(74,222,128,0.55);
  animation: wave 2.4s linear infinite;
}

.call-button {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #07120d;
  box-shadow: 0 0 72px rgba(74,222,128,0.45);
  cursor: pointer;
}

.call-button .material-symbols-rounded {
  font-size: 46px;
}

.countdown-line {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.countdown-line span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--lime));
  transform-origin: left center;
}

.dispo-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.dispo-actions button {
  min-height: 46px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255,255,255,0.055);
  font: 900 13px var(--font-display);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.dispo-actions button:hover,
.dispo-actions button.is-selected {
  transform: translateY(-2px);
  background: rgba(74,222,128,0.16);
  border-color: rgba(74,222,128,0.45);
}

.after-call-panel h3 {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.action-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.action-stack div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.action-stack .material-symbols-rounded {
  color: var(--primary);
}

.workflow-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 44px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(74,222,128,0.12), rgba(34,197,94,0.055)),
    rgba(255,255,255,0.045);
  overflow: hidden;
}

.workflow-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.workflow-track {
  position: relative;
  display: grid;
  gap: 12px;
}

.workflow-track::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(var(--primary), var(--blue), var(--lime));
  opacity: 0.6;
}

.workflow-track div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(5,8,6,0.58);
  border: 1px solid rgba(255,255,255,0.09);
}

.workflow-track span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #07120d;
  background: var(--primary);
  font-weight: 900;
}

.workflow-track strong,
.workflow-track small {
  display: block;
}

.workflow-track small {
  margin-top: 4px;
  color: var(--muted);
}

.audience-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(74,222,128,0.12), transparent 32rem),
    radial-gradient(circle at 84% 58%, rgba(34,197,94,0.09), transparent 30rem),
    rgba(10,31,18,0.5);
}

.audience-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.audience-intro {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.audience-label {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience-intro h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
  text-wrap: balance;
}

.audience-intro p:last-child {
  max-width: 620px;
  margin: 0;
  color: #86a892;
  font-size: 15px;
  line-height: 1.6;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.audience-tile {
  min-height: 252px;
  padding: 20px 18px;
  border: 1px solid rgba(29,77,42,0.9);
  border-radius: 14px;
  background: #0f2a1a;
  cursor: default;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.audience-tile:hover {
  transform: translateY(-3px);
  border-color: #2d7a42;
  background: #122e1d;
}

.audience-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 10px;
  background: #1a3d24;
}

.audience-icon .material-symbols-rounded {
  color: var(--primary);
  font-size: 22px;
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 28;
}

.audience-num {
  display: block;
  margin-bottom: 6px;
  color: #2d7a42;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.audience-tile h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.audience-tile p {
  margin: 0;
  color: #6b9278;
  font-size: 12px;
  line-height: 1.55;
}

.usecase-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.usecase-grid article {
  min-height: 260px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.usecase-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(74,222,128,0.36);
  background: rgba(74,222,128,0.07);
}

.usecase-grid article > a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  border-bottom: 1px dotted rgba(74,222,128,0.42);
}

.usecase-grid span,
.plan-label {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-card {
  min-height: 520px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.price-card.featured {
  border-color: rgba(74,222,128,0.54);
  box-shadow: 0 0 90px rgba(74,222,128,0.17), inset 0 1px 0 rgba(255,255,255,0.12);
  transform: translateY(-18px);
}

.price-card strong {
  display: block;
  margin: 24px 0 4px;
  font-size: 20px;
  line-height: 1.25;
}

.price-card .button {
  margin-top: 26px;
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-list details {
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  overflow: hidden;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.faq-list details:hover {
  border-color: rgba(74, 222, 128, 0.28);
  background: rgba(255,255,255,0.06);
}

.faq-list details[open] {
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.06);
  box-shadow: 0 18px 48px -28px rgba(74, 222, 128, 0.55), inset 0 0 0 1px rgba(74, 222, 128, 0.08);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 20px 64px 20px 22px;
  font-weight: 900;
  list-style: none;
  transition: color 0.25s ease;
}

.faq-list summary:hover { color: var(--primary); }

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

/* Toggle pill: a circle with a horizontal bar (the "−") always present,
   and a vertical bar that scales from 1 → 0 on open, leaving a clean − . */
.faq-list .faq-toggle {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  pointer-events: none;
  transition: background 0.3s ease;
}

.faq-list .faq-toggle::before,
.faq-list .faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--primary);
  border-radius: 1px;
}

/* Horizontal bar */
.faq-list .faq-toggle::before {
  width: 12px;
  height: 2px;
  margin: -1px 0 0 -6px;
}

/* Vertical bar — collapses on open */
.faq-list .faq-toggle::after {
  width: 2px;
  height: 12px;
  margin: -6px 0 0 -1px;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
  transform-origin: center center;
}

.faq-list details[open] .faq-toggle {
  background: rgba(74, 222, 128, 0.22);
}

.faq-list details[open] .faq-toggle::after {
  transform: scaleY(0);
}

/* Animated answer wrapper. Height is driven by JS for a smooth open/close. */
.faq-list .faq-answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    height 0.42s cubic-bezier(.2,.7,.2,1),
    opacity 0.32s ease,
    transform 0.42s cubic-bezier(.2,.7,.2,1);
  will-change: height, opacity, transform;
}

.faq-list .faq-answer.is-open {
  opacity: 1;
  transform: translateY(0);
}

.faq-list .faq-answer p {
  margin: 0;
  padding: 4px 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .faq-list details,
  .faq-list summary,
  .faq-list summary::after,
  .faq-list .faq-answer { transition: none; }
}

.final-cta {
  padding-top: 60px;
}

.social-proof-section {
  padding-top: clamp(2px, 2vw, 18px);
  padding-bottom: clamp(2px, 2vw, 18px);
}

.proof-strip,
.proof-market-row,
.vertical-selector,
.calculator-shell,
.pricing-comparison,
.lead-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.11);
  background: linear-gradient(135deg, rgba(74,222,128,0.13), rgba(34,197,94,0.07)), rgba(10,31,18,0.48);
}

.proof-strip div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(5,8,6,0.46);
  border: 1px solid rgba(255,255,255,0.08);
}

.proof-kicker,
.calculator-results span,
.comparison-table-wrap td,
.lead-form label {
  color: var(--muted);
}

.proof-kicker {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.proof-strip small {
  display: block;
  margin-top: 8px;
  color: rgba(244,255,246,0.7);
  line-height: 1.4;
}

.proof-market-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.proof-market-row span {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(244,255,246,0.82);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: 13px;
  font-weight: 800;
}

.vertical-selector {
  padding: clamp(18px, 4vw, 30px);
  margin-bottom: 22px;
  border-radius: 30px;
  background: radial-gradient(circle at 80% 8%, rgba(74,222,128,0.14), transparent 34%), rgba(10,31,18,0.48);
}

.vertical-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(5,8,6,0.48);
  border: 1px solid rgba(255,255,255,0.08);
}

.vertical-tabs button,
.lead-form input,
.lead-form select {
  font: inherit;
}

.vertical-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 13px;
  padding: 9px 14px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.vertical-tabs button:hover,
.vertical-tabs button.is-active {
  color: #07120d;
  background: var(--primary);
  transform: translateY(-1px);
}

.vertical-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  margin-top: 24px;
}

.vertical-copy h3,
.comparison-heading h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 32px;
  line-height: 1.06;
  letter-spacing: 0;
}

.vertical-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.vertical-copy ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.vertical-copy li {
  position: relative;
  padding-left: 24px;
  color: rgba(244,255,246,0.82);
  line-height: 1.45;
}

.vertical-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(74,222,128,0.65);
}

.vertical-phone {
  justify-self: center;
  width: min(230px, 54vw);
  padding: 8px;
  border-radius: 34px;
  background: #111513;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 26px 80px rgba(0,0,0,0.5), 0 0 42px rgba(74,222,128,0.18);
}

.vertical-phone img {
  width: 100%;
  border-radius: 27px;
  aspect-ratio: 727 / 1600;
  object-fit: cover;
  object-position: top center;
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr) minmax(250px, 0.58fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 5vw, 46px);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(74,222,128,0.09)), rgba(10,31,18,0.48);
}

.calculator-copy h2,
.lead-copy h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

.calculator-copy p,
.lead-copy p {
  color: var(--muted);
  line-height: 1.62;
}

.calculator-controls {
  display: grid;
  align-content: center;
  gap: 12px;
}

.calculator-controls label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(244,255,246,0.86);
  font-size: 14px;
  font-weight: 800;
}

.calculator-controls output {
  color: var(--primary);
}

.calculator-controls input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

.calculator-results {
  display: grid;
  gap: 12px;
}

.calculator-results div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(5,8,6,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}

.calculator-results strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
}

.pricing-comparison {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255,255,255,0.045);
}

.comparison-heading {
  max-width: 780px;
  margin-bottom: 20px;
}

.comparison-table-wrap {
  overflow-x: auto;
}

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

.pricing-comparison th,
.pricing-comparison td {
  padding: 15px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  vertical-align: top;
}

.pricing-comparison thead th {
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-comparison tbody th,
.pricing-comparison tbody td:last-child {
  color: rgba(244,255,246,0.92);
  font-weight: 800;
}

.pricing-comparison tbody td:last-child {
  background: rgba(74,222,128,0.08);
}

.lead-section {
  padding-top: clamp(64px, 8vw, 110px);
}

.lead-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
  padding: clamp(26px, 5vw, 52px);
  border-radius: 34px;
  background: radial-gradient(circle at 88% 4%, rgba(74,222,128,0.12), transparent 30%), rgba(10,31,18,0.48);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.lead-form label[hidden] { display: none; }

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text);
  background: rgba(5,8,6,0.62);
  border: 1px solid rgba(255,255,255,0.13);
}

.lead-form input::placeholder {
  color: rgba(169,183,174,0.62);
}

.lead-form-status {
  min-height: 20px;
  margin: 0;
  color: var(--primary);
  font-size: 13px;
  line-height: 1.4;
}

.lead-form-status.is-error {
  color: var(--lime);
}

.install-modal {
  width: min(520px, calc(100% - 28px));
  margin: auto;
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
}

.install-modal::backdrop {
  background: rgba(0,0,0,0.68);
  backdrop-filter: blur(8px);
}

.install-modal-panel {
  position: relative;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(145deg, rgba(17,24,21,0.98), rgba(5,8,6,0.96));
  box-shadow: 0 34px 120px rgba(0,0,0,0.72), 0 0 80px rgba(74,222,128,0.16);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}

.install-modal .lead-copy h2 {
  padding-right: 40px;
  font-size: 32px;
}

.direct-store-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px dotted rgba(255,255,255,0.24);
}

.install-modal.is-open {
  display: block;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(720px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(7,18,13,0.94);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 40px rgba(74,222,128,0.12);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 13px;
}

.cookie-banner > div {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner .button {
  min-height: 40px;
  padding: 9px 14px;
}

.content-page main {
  padding-top: 96px;
}

.landing-hero,
.landing-section,
.blog-hero,
.article-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.landing-hero,
.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 72svh;
  padding: clamp(54px, 8vw, 98px) 0 clamp(44px, 7vw, 86px);
}

.landing-hero h1,
.blog-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
}

.landing-hero p,
.blog-hero p,
.article-shell p {
  color: var(--muted);
  line-height: 1.65;
}

.landing-panel {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.11);
  background: linear-gradient(145deg, rgba(74,222,128,0.11), rgba(255,255,255,0.04));
}

.landing-panel ul,
.article-shell ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.landing-panel li,
.article-shell li {
  color: rgba(244,255,246,0.84);
  line-height: 1.5;
}

.landing-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landing-card,
.blog-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
}

.landing-card h2,
.landing-card h3,
.blog-card h2,
.blog-card h3 {
  margin-top: 0;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

.landing-card a,
.blog-card a,
.article-shell a:not(.button) {
  color: var(--primary);
  font-weight: 900;
  border-bottom: 1px dotted rgba(74,222,128,0.42);
}

.landing-cta {
  margin: clamp(42px, 8vw, 84px) auto;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.11);
  background: linear-gradient(135deg, rgba(74,222,128,0.14), rgba(34,197,94,0.06)), rgba(10,31,18,0.48);
}

.article-shell {
  padding: clamp(58px, 8vw, 110px) 0;
}

.article-shell article {
  max-width: 820px;
  margin: 0 auto;
}

.article-shell h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
}

.article-shell h2 {
  margin-top: 42px;
  font-size: 30px;
  letter-spacing: 0;
}

.article-meta {
  color: var(--muted);
  font-size: 14px;
}

.cta-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 72px);
  border-radius: 34px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(74,222,128,0.16), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.045);
  box-shadow: 0 0 120px rgba(74,222,128,0.15);
}

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

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) 1fr;
  align-items: start;
  gap: 32px 56px;
  padding: 56px clamp(20px, 5vw, 70px) 36px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.09);
  background: rgba(0,0,0,0.22);
}

.site-footer > div:first-child {
  max-width: 380px;
}

.site-footer strong {
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.site-footer p {
  margin: 8px 0 0;
  max-width: 520px;
  line-height: 1.55;
  font-size: 14px;
}

.site-footer > nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  align-items: start;
  justify-self: end;
  align-self: center;
  max-width: 420px;
  width: 100%;
}

.site-footer > nav a {
  font-size: 14px;
  white-space: nowrap;
}

.site-footer .footer-meta {
  grid-column: 1 / -1;
}

.site-footer a:hover {
  color: var(--primary);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(.2,.9,.2,1);
}

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

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes meter-load {
  0% { width: 62%; }
  100% { width: 92%; }
}

@keyframes pixel-drift {
  to { background-position: 36px 36px; }
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.72); }
  70% { box-shadow: 0 0 0 22px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

@keyframes bar-bounce {
  0% { transform: scaleY(0.78); opacity: 0.72; }
  100% { transform: scaleY(1); opacity: 1; }
}

@keyframes wave {
  from { transform: scale(0.72); opacity: 0.72; }
  to { transform: scale(1.55); opacity: 0; }
}

@keyframes crm-phone-float {
  0%, 100% { transform: rotateX(3deg) rotateY(-7deg) translateY(0); }
  50% { transform: rotateX(4deg) rotateY(-5deg) translateY(-10px); }
}

@keyframes crm-layer-stage-float {
  0%, 100% { transform: translate3d(0, 0, 150px) rotate(6deg); }
  50% { transform: translate3d(-10px, -16px, 170px) rotate(3deg); }
}

@keyframes crm-layer-task-float {
  0%, 100% { transform: translate3d(0, 0, 140px) rotate(-4deg); }
  50% { transform: translate3d(12px, 14px, 165px) rotate(-1deg); }
}

@media (max-width: 1180px) {
  .hero-sticky {
    grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  }

  .hero-story-band {
    width: min(620px, 100%);
  }

  .hero-phone-stage .phone-column {
    transform: none;
  }

  .hero-layover-card {
    width: 100%;
  }

  .hero-stepper {
    width: 100%;
  }

  .hero-status {
    display: none;
  }

  .story-steps {
    width: min(380px, 42vw);
  }

  /* Bento: clean 2-col on tablet; large + wide both span 2 cols */
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .bento-grid > .bento-card,
  .bento-grid > .bento-large,
  .bento-grid > .bento-wide {
    grid-column: auto;
    grid-row: auto;
  }
  .bento-wide {
    grid-column: span 2;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 260px);
  }
}

@media (max-width: 1400px) and (min-width: 921px) {
  .hero-sticky {
    grid-template-columns: minmax(430px, 0.82fr) minmax(470px, 1fr);
    padding-top: 72px;
  }

  .hero-copy {
    align-self: start;
    margin-top: 36px;
  }

  .hero-status {
    display: none;
  }

  .story-steps {
    width: min(390px, 34vw);
  }

  .hero-phone-stage {
    padding-top: 22px;
  }

  .hero-phone-stage .phone-column {
    transform: none;
  }

  .hero-layover-card {
    width: 100%;
  }

  .hero-stepper {
    width: 100%;
  }

  h1 {
    font-size: clamp(48px, 5.4vw, 76px);
    max-width: 620px;
  }

  .hero-proof {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    top: 10px;
    width: calc(100% - 18px);
  }

  .site-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
    margin-left: auto;
  }

  .hero-scrolly {
    min-height: auto;
    padding: 96px 18px 42px;
  }

  .hero-sticky {
    position: relative;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 34px;
  }

  .hero-component-stage {
    min-height: auto;
    padding-top: 0;
  }

  .hero-phone-stage {
    min-height: auto;
    padding-top: 0;
    gap: 14px;
  }

  .hero-story-band {
    width: min(500px, 100%);
    grid-template-columns: 1fr;
  }

  .component-deck {
    width: min(720px, 100%);
    aspect-ratio: 1.05;
    transform: none !important;
  }

  .scene-summary {
    width: 100%;
  }

  .hero-layover-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 2px;
  }

  .hero-stepper {
    position: relative;
    inset: auto;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
  }

  .scene-markers {
    display: none;
  }

  h1 {
    font-size: clamp(46px, 14vw, 76px);
  }

  .hero-copy {
    margin-top: 0;
  }

  .hero-proof {
    display: none;
  }

  .phone-column {
    position: sticky;
    top: 78px;
    min-height: auto;
    z-index: 4;
    pointer-events: none;
  }

  .hero-phone-stage .phone-column {
    position: relative;
    top: auto;
    z-index: 2;
    transform: none;
  }

  .phone-shell {
    width: min(270px, 58vw);
  }

  .hero-phone-stage .phone-shell {
    width: min(315px, 74vw);
    min-width: 230px;
  }

  .phone-caption {
    display: none;
  }

  .story-steps {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .story-step {
    min-height: 62vh;
  }

  .momentum-grid,
  .pricing-grid,
  .workflow-shell,
  .dialer-stage,
  .proof-strip,
  .vertical-preview,
  .calculator-shell,
  .lead-shell,
  .landing-hero,
  .blog-hero,
  .landing-grid,
  .blog-grid,
  .crm-shell,
  .incoming-shell,
  .reports-dashboard {
    grid-template-columns: 1fr;
  }

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

  .audience-intro {
    max-width: 680px;
  }

  .audience-tile {
    min-height: 236px;
  }

  .content-page main {
    padding-top: 78px;
  }

  .landing-hero,
  .blog-hero {
    min-height: auto;
  }

  .proof-strip,
  .calculator-shell,
  .lead-shell,
  .vertical-selector,
  .pricing-comparison {
    border-radius: 24px;
  }

  .vertical-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vertical-tabs button {
    width: 100%;
  }

  .vertical-phone {
    order: -1;
  }

  .crm-shell,
  .incoming-visual,
  .reports-dashboard {
    border-radius: 26px;
  }

  .crm-section {
    padding-top: clamp(96px, 16vw, 132px);
  }

  .crm-visual {
    min-height: 650px;
    order: -1;
  }

  .crm-phone-shell {
    width: min(305px, 58vw);
    min-width: 245px;
  }

  .crm-layer-stage {
    width: min(230px, 42vw);
    right: 2%;
    top: 17%;
  }

  .crm-layer-task {
    width: min(205px, 38vw);
    left: 4%;
    bottom: 14%;
  }

  .incoming-visual {
    min-height: 560px;
  }

  .reports-dashboard {
    gap: 14px;
  }

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

  .report-chart {
    min-height: 320px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid > .bento-card,
  .bento-grid > .bento-large,
  .bento-grid > .bento-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-wide {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .queue-panel,
  .active-call-panel,
  .after-call-panel {
    min-height: auto;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer > nav {
    justify-self: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .brand-lockup span:last-child {
    display: none;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .hero-component-stage {
    overflow: hidden;
  }

  .component-deck {
    width: 112%;
    margin-inline: -6%;
    aspect-ratio: 0.92;
  }

  .scene-summary {
    grid-template-columns: 38px 1fr;
  }

  .scene-summary .material-symbols-rounded {
    width: 38px;
    height: 38px;
  }

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

  .hero-step-chip {
    min-height: auto;
    padding: 8px 7px;
  }

  .hero-step-chip small {
    display: none;
  }

  .flow-ribbon {
    left: 50%;
    max-width: 92%;
    overflow: hidden;
    white-space: nowrap;
    font-size: 11px;
  }

  .dialer-component {
    padding: 12px;
  }

  .dialer-component button {
    min-height: 44px;
  }

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

  .button {
    width: 100%;
  }

  .store-button {
    width: 100%;
  }

  .story-card,
  .motion-card,
  .bento-card,
  .price-card,
  .workflow-shell,
  .dialer-stage,
  .proof-strip,
  .vertical-selector,
  .calculator-shell,
  .lead-shell,
  .pricing-comparison,
  .crm-shell,
  .incoming-visual,
  .reports-dashboard,
  .cta-shell {
    border-radius: 22px;
  }

  .proof-strip div,
  .calculator-results div {
    padding: 16px;
  }

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

  .calculator-copy h2,
  .lead-copy h2 {
    font-size: 30px;
  }

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

  .audience-intro h2 {
    font-size: 32px;
  }

  .audience-tile {
    min-height: auto;
  }

  .calculator-results strong {
    font-size: 28px;
  }

  .install-modal-panel {
    padding: 24px 18px 20px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .crm-copy h2,
  .incoming-copy h2,
  .story-card h2,
  .section-heading h2,
  .workflow-copy h2,
  .cta-shell h2 {
    letter-spacing: -0.04em;
  }

  .crm-visual {
    min-height: 590px;
    margin-inline: -8px;
  }

  .crm-phone-shell {
    width: min(270px, 70vw);
    min-width: 210px;
  }

  .crm-layer-stage {
    width: min(205px, 52vw);
    right: -2%;
    top: 86px;
  }

  .crm-layer-task {
    width: min(185px, 48vw);
    left: -1%;
    bottom: 92px;
  }

  .report-kpis,
  .report-breakdown {
    grid-template-columns: 1fr;
  }

  .report-chart {
    min-height: 260px;
    padding: 16px;
  }

  .screenshot-card {
    grid-template-columns: 1fr;
  }

  .screenshot-card img {
    width: 100%;
    height: 280px;
  }

  .component-card img {
    height: auto;
    max-height: 280px;
    object-fit: contain;
  }

  .dispo-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* ========== Phase 4: Micro-interactions, polish, responsive alignment ========== */

/* Skip-to-content link (a11y) */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--primary);
  color: #061007;
  font-weight: 800;
  font-size: 13px;
  transition: top 200ms ease;
}
.skip-to-content:focus {
  top: 16px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Global focus ring — subtle but always visible for keyboard users */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Reveal: slight scale + blur for a more premium entrance */
[data-reveal] {
  filter: blur(4px);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(.2,.9,.2,1), filter 700ms ease;
}
[data-reveal].is-visible {
  filter: blur(0);
}

/* Magnetic button — pointer follows. JS sets --mx / --my (-1..1). */
.magnetic {
  transition: transform 240ms cubic-bezier(.2,.9,.2,1), box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
  will-change: transform;
}
.magnetic:hover {
  transform: translate(calc(var(--mx, 0) * 6px), calc(var(--my, 0) * 6px)) translateY(-3px);
}

/* Store buttons: animated glow shimmer on hover */
.store-button {
  position: relative;
  overflow: hidden;
}
.store-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(74,222,128,0.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 700ms ease;
  pointer-events: none;
}
.store-button:hover::before {
  transform: translateX(120%);
}

/* Nav links: animated underline */
.site-nav a {
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms cubic-bezier(.2,.9,.2,1);
}
.site-nav a:hover::after {
  transform: scaleX(1);
}

/* Nav CTA: gentle breathing pulse on idle, lift on hover */
.nav-cta {
  transition: transform 220ms cubic-bezier(.2,.9,.2,1), box-shadow 220ms ease, background 220ms ease;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 32px rgba(74,222,128,0.55), 0 12px 36px rgba(0,0,0,0.32);
}
@keyframes nav-cta-breathe {
  0%, 100% { box-shadow: 0 0 24px rgba(74,222,128,0.32); }
  50%      { box-shadow: 0 0 38px rgba(74,222,128,0.55); }
}
.nav-cta { animation: nav-cta-breathe 4.2s ease-in-out infinite; }

/* Brand-mark: subtle float */
@keyframes brand-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.brand-mark { animation: brand-pulse 5.5s ease-in-out infinite; }

/* Generic card hover — works for bento, usecase, price */
.bento-card,
.usecase-grid article,
.price-card {
  transition: transform 320ms cubic-bezier(.2,.9,.2,1), border-color 320ms ease, box-shadow 320ms ease, background 320ms ease;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover::after  { opacity: 0.85; transform: translate3d(-12px, 8px, 0); }

.usecase-grid article:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74,222,128,0.36);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(74,222,128,0.18) inset;
}

/* Card icon micro-bounce on parent hover */
.card-icon {
  transition: transform 320ms cubic-bezier(.2,.9,.2,1);
}
.bento-card:hover .card-icon {
  transform: rotate(-6deg) scale(1.08);
}

/* FAQ details: smooth chevron rotation, hover glow on summary */
.faq-list summary {
  position: relative;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease;
}
.faq-list summary:hover {
  color: var(--text);
}
.faq-list summary::after {
  display: inline-block;
  transition: transform 240ms cubic-bezier(.2,.9,.2,1);
  transform-origin: center;
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.faq-list details {
  transition: background 200ms ease, border-color 200ms ease;
}
.faq-list details[open] {
  border-color: rgba(74,222,128,0.28);
  background: rgba(74,222,128,0.04);
}

/* Disposition buttons: micro feedback */
.dispo-actions button {
  transition: transform 180ms cubic-bezier(.2,.9,.2,1), background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.dispo-actions button:hover {
  transform: translateY(-2px);
}
.dispo-actions button:active {
  transform: scale(0.97);
}

/* Queue items: hover slide */
.queue-item {
  transition: transform 220ms cubic-bezier(.2,.9,.2,1), background 220ms ease, border-color 220ms ease;
}
.queue-item:hover {
  transform: translateX(4px);
  background: rgba(74,222,128,0.06);
}

/* Hero step chips: hover state */
.hero-step-chip {
  cursor: pointer;
  transition: transform 240ms cubic-bezier(.2,.9,.2,1), background 240ms ease, border-color 240ms ease;
}
.hero-step-chip:hover {
  transform: translateY(-2px);
}

/* Phone screen swap micro-fade (hooks into JS .is-swapping class) */
.phone-screen {
  transition: opacity 220ms ease, transform 320ms cubic-bezier(.2,.9,.2,1), filter 320ms ease;
}
.phone-screen.is-swapping {
  opacity: 0;
  filter: blur(6px);
  transform: scale(0.98);
}

/* Footer link micro hover */
.site-footer a {
  position: relative;
  transition: color 200ms ease;
}
.site-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}
.site-footer nav a:hover::after {
  transform: scaleX(1);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--fg);
}

/* ========== Mobile nav ========== */

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.mobile-nav-overlay.is-open {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--surface, #0d1f13);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 32px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav:not([hidden]) {
  transform: translateX(0);
}

.mobile-nav[hidden] {
  display: flex !important;
  transform: translateX(100%);
}

.mobile-nav-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  margin-bottom: 12px;
  line-height: 1;
}

.mobile-nav-close:hover {
  color: var(--fg);
}

.mobile-nav-link {
  display: block;
  padding: 14px 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.15s;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-nav-cta {
  margin-top: 24px;
  text-align: center;
  width: 100%;
}

/* ========== Responsive alignment polish ========== */

/* Header collapses cleanly on mid-tablets */
@media (max-width: 760px) {
  .site-header {
    padding: 8px 8px 8px 12px;
    gap: 10px;
  }
  .nav-cta {
    padding: 9px 14px;
    font-size: 12px;
  }
  .brand-lockup {
    padding: 5px 10px 5px 5px;
    font-size: 13px;
  }
}

/* Tighter section padding on small phones */
@media (max-width: 480px) {
  .section-pad {
    padding: clamp(60px, 13vw, 96px) 16px;
  }
  h1 {
    font-size: clamp(38px, 11vw, 60px);
    letter-spacing: -0.045em;
  }
  h2 {
    font-size: clamp(28px, 8vw, 44px) !important;
    letter-spacing: -0.04em;
  }
  .hero-lede {
    font-size: 16px;
    line-height: 1.5;
  }
  .eyebrow {
    font-size: 11px;
  }

  /* Store buttons stack full-width with consistent baseline */
  .store-buttons {
    gap: 10px;
  }
  .store-button {
    min-height: 54px;
    min-width: 0;
    padding: 8px 14px 8px 10px;
  }

  /* CRM section — keep floating layers from clipping */
  .crm-layer-stage,
  .crm-layer-task {
    box-shadow: 0 18px 42px rgba(0,0,0,0.45);
  }

  /* Footer stacks centered */
  .site-footer {
    text-align: center;
    padding: 28px 18px;
  }
  .site-footer > div:first-child { margin: 0 auto; }
  .site-footer > nav {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 10px 16px;
  }
  .site-footer .footer-meta {
    flex-direction: column;
    text-align: center;
  }
  .site-footer .footer-meta nav { justify-content: center; }
  .site-footer p {
    margin-inline: auto;
  }

  /* FAQ summary readable on tiny screens */
  .faq-list summary {
    font-size: 15px;
    padding: 16px 18px !important;
  }
  .faq-list p {
    font-size: 14px;
    padding: 0 18px 18px;
  }

  /* Pricing cards: a touch more breathing room */
  .price-card {
    padding: 22px;
  }
}

/* Ultra-narrow safety (≤360px / older devices) */
@media (max-width: 360px) {
  .site-header { width: calc(100% - 12px); top: 8px; }
  .brand-lockup span:last-child { display: none; }
  .nav-cta { padding: 8px 12px; }
}

/* Honor reduced-motion for the new animations too */
@media (prefers-reduced-motion: reduce) {
  .nav-cta,
  .brand-mark { animation: none !important; }
  .magnetic:hover,
  .bento-card:hover,
  .usecase-grid article:hover,
  .price-card:hover,
  .queue-item:hover,
  .hero-step-chip:hover,
  .nav-cta:hover { transform: none !important; }
  .store-button::before { display: none; }
  [data-reveal] { filter: none !important; }
}

/* Header morphs slightly after scroll (JS toggles .is-scrolled) */
.site-header {
  transition: padding 240ms ease, background 240ms ease, box-shadow 240ms ease, border-color 240ms ease, top 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(5, 8, 6, 0.82);
  border-color: rgba(74, 222, 128, 0.22);
  box-shadow: 0 14px 60px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ============================================================
   Layout fixes (v20260506b)
   - Stop absolutely-positioned demo widgets inside bento cards
     from overlapping the heading/copy on narrow viewports.
   - Clip overflowing decorative phone/CRM layers.
   - Make hero/workflow text columns wrap correctly on small screens.
   ============================================================ */
/* `overflow: clip` prevents horizontal scrollbar from oversized
   decorative layers WITHOUT creating a new scroll container, so
   `position: sticky` (parallax/scrollytelling) keeps working. */
html { overflow-x: clip; }
body { overflow-x: clip; }

.crm-visual,
.incoming-visual,
.dialer-stage {
  overflow: hidden;
}

@media (max-width: 960px) {
  .bento-card {
    min-height: auto;
  }
  .bento-card .payment-stack,
  .bento-card .mini-dialer,
  .bento-card .message-preview,
  .bento-card .bar-viz,
  .bento-card .backup-viz,
  .bento-card .messy-stack,
  .bento-card .success-meter {
    position: static;
    inset: auto;
    margin-top: 0;
    width: 100%;
    height: auto;
  }
  .bento-card .messy-stack { height: 140px; position: relative; }
  .bento-card .bar-viz,
  .bento-card .backup-viz { height: 90px; position: relative; }

  /* workflow cards: keep the row wide enough so labels don't wrap word-by-word */
  .workflow-track div {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 14px;
  }
  .workflow-track span {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  .workflow-track small {
    font-size: 13px;
    line-height: 1.45;
    word-spacing: normal;
  }
}

@media (max-width: 600px) {
  .workflow-shell {
    padding: 22px;
  }
  .workflow-track div {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }
  .workflow-track span {
    width: 36px; height: 36px; font-size: 14px; border-radius: 12px;
  }
}

/* Dynamic copyright row in footer */
.site-footer {
  position: relative;
}
.footer-meta {
  width: 100%;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.footer-meta a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.18);
}
.footer-meta a:hover { color: var(--text); }
.footer-meta nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* Geo-localized pricing widgets */
.price-card .price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0 6px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}
.price-card .price-amount .price-value {
  font-size: clamp(34px, 4.5vw, 44px);
  line-height: 1;
}
.price-card .price-amount .price-currency {
  font-size: 18px;
  color: var(--muted);
  font-weight: 700;
}
.price-card .price-period {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.price-card .price-tabs {
  display: inline-flex;
  margin: 14px 0 6px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.price-card .price-tabs button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.price-card .price-tabs button.is-active {
  background: var(--primary);
  color: #061007;
}
.price-card .price-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}
.price-card .price-saving {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(74,222,128,0.18);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}
.price-card .price-saving[hidden] { display: none; }

/* workflow-track: ensure strong+small share the second column */
.workflow-track div span { grid-column: 1; grid-row: 1 / span 2; align-self: center; }
.workflow-track div strong { grid-column: 2; grid-row: 1; }
.workflow-track div small { grid-column: 2; grid-row: 2; }

/* ── Trust bar ───────────────────────────────────────────────────── */
.trust-bar-section {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 32px 0 20px;
  margin-top: 50px;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 24px 28px;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.trust-stat strong {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.trust-stat span {
  font-size: 12px;
  color: rgba(244,255,246,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.trust-press {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-label {
  font-size: 13px;
  color: rgba(244,255,246,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trust-press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  justify-content: center;
}

.trust-press-logos span,
.trust-press-logos a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.trust-press-logos a:hover .press-logo {
  filter: grayscale(100%) brightness(0.85) invert(1);
  opacity: 0.9;
}

.press-logo {
  height: 22px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.trust-press-logos span + span::before,
.trust-press-logos a + a::before {
  content: none;
}

.trust-awards {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.trust-award-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: rgba(244,255,246,0.75);
}

.trust-award-item .material-symbols-rounded {
  font-size: 20px;
  color: #f5c542;
}

.trust-platforms {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(244,255,246,0.65);
}

.trust-platforms .material-symbols-rounded {
  font-size: 18px;
  color: rgba(244,255,246,0.5);
}

@media (max-width: 900px) {
  .trust-bar-inner { flex-wrap: wrap; gap: 18px 24px; }
}

@media (max-width: 640px) {
  .trust-divider { display: none; }
  .trust-awards { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── Auto-dialer intro section ───────────────────────────────────── */
.autodialer-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.autodialer-visual {
  position: sticky;
  top: 100px;
}

.autodialer-img {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
}

/* ── Autodialer stacked image group ─────────────────────────────── */
.autodialer-stack {
  position: relative;
  width: 100%;
  min-height: 800px;
  margin-top: 120px;
}

.autodialer-stack-img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
}

/* Back image — left-shifted, slightly rotated, slow float */
.autodialer-stack-img--back {
  width: 52%;
  top: -75px;
  left: -6%;
  transform: rotate(-4deg);
  animation: float-back 5.5s ease-in-out infinite;
  z-index: 4;
}

/* Mid image — bottom-right floating card */
.autodialer-stack-img--mid {
  width: 78%;
  bottom: 80px;
  right: -4%;
  border-radius: 16px;
  animation: float-mid 4.8s ease-in-out infinite 0.6s;
  z-index: 3;
}

/* Front image — main phone, center, static */
.autodialer-stack-img--front {
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  min-height: 800px;
}

@keyframes float-back {
  0%, 100% { transform: rotate(-4deg) translateY(0px); }
  50%       { transform: rotate(-4deg) translateY(-14px); }
}

@keyframes float-mid {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes float-front {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50%       { transform: translateX(-50%) translateY(-18px); }
}

.autodialer-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
}

.autodialer-img-placeholder .material-symbols-rounded {
  font-size: 48px;
}

.autodialer-img-placeholder small {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.autodialer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.autodialer-content h2 {
  margin: 0;
  font-size: clamp(46px, 4.2vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-wrap: balance;
}

.autodialer-body {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  margin: 0;
}

.autodialer-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.autodialer-tile {
  padding: 22px 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.autodialer-tile h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.autodialer-tile p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.autodialer-review {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.autodialer-bullets {
  margin-top: 24px;
}

.autodialer-cta {
  margin-top: 28px;
  display: inline-flex;
}

@media (max-width: 900px) {
  .autodialer-shell { grid-template-columns: 1fr; gap: 36px; }
  .autodialer-visual { position: static; }
  .autodialer-img-placeholder { aspect-ratio: 16 / 9; }
}

@media (max-width: 540px) {
  .autodialer-tiles { grid-template-columns: 1fr; }
}

/* ── Tasks & Reminders section ───────────────────────────────────── */
.tasks-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.tasks-visual {
  position: sticky;
  top: 100px;
}

/* ── Tasks stacked image group ───────────────────────────────── */
.tasks-stack {
  position: relative;
  width: 100%;
  min-height: 800px;
}

.tasks-stack-img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
}

/* Main image — centre, z-index 1 */
.tasks-stack-img--main {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  min-height: 800px;
  z-index: 1;
}

/* Top-left */
.tasks-stack-img--top-left {
  width: 52%;
  top: -40px;
  left: -6%;
  z-index: 2;
  animation: tasks-float-tl 5.5s ease-in-out infinite 0.4s;
}

/* Bottom-right */
.tasks-stack-img--bottom-right {
  width: 60%;
  bottom: -20px;
  right: -4%;
  border-radius: 16px;
  z-index: 2;
  animation: tasks-float-br 4.8s ease-in-out infinite 0.8s;
}

@keyframes tasks-float-main {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50%       { transform: translateX(-50%) translateY(-16px); }
}
@keyframes tasks-float-tl {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes tasks-float-br {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
}

.tasks-img-placeholder .material-symbols-rounded {
  font-size: 48px;
}

.tasks-img-placeholder small {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tasks-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tasks-content h2 {
  margin: 0;
  font-size: clamp(46px, 4.2vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-wrap: balance;
}

.tasks-body {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  margin: 0;
}

.tasks-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tasks-tile {
  padding: 22px 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tasks-tile h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.tasks-tile p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.tasks-review {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .tasks-shell { grid-template-columns: 1fr; gap: 36px; }
  .tasks-visual { position: static; }
  .tasks-img-placeholder { aspect-ratio: 16 / 9; }
}

@media (max-width: 540px) {
  .tasks-tiles { grid-template-columns: 1fr; }
}

/* ── Pipeline & Follow-ups section ──────────────────────────────── */
.pipeline-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.pipeline-visual {
  position: sticky;
  top: 100px;
}

.pipeline-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
}

.pipeline-img-placeholder .material-symbols-rounded { font-size: 48px; }
.pipeline-img-placeholder small { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; }

.pipeline-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pipeline-content h2 {
  margin: 0;
  font-size: clamp(46px, 4.2vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-wrap: balance;
}

.pipeline-body {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  margin: 0;
}

.pipeline-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pipeline-tile {
  padding: 22px 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pipeline-tile h3 { font-size: 15px; font-weight: 700; margin: 0; color: var(--text); }
.pipeline-tile p  { font-size: 13px; line-height: 1.6; color: var(--muted); margin: 0; }

.pipeline-review { font-size: 13px; color: var(--muted); margin: 0; }

@media (max-width: 900px) {
  .pipeline-shell { grid-template-columns: 1fr; gap: 36px; }
  .pipeline-visual { position: static; }
  .pipeline-img-placeholder { aspect-ratio: 16 / 9; }
}

@media (max-width: 540px) {
  .pipeline-tiles { grid-template-columns: 1fr; }
}

/* ── Incoming call lead capture section ─────────────────────────── */
.incoming-leads-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.incoming-leads-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.incoming-leads-content h2 {
  margin: 0;
  font-size: clamp(46px, 4.2vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-wrap: balance;
}

.incoming-leads-body {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  margin: 0;
}

.incoming-leads-tiles {
  display: grid;
  gap: 14px;
}

.incoming-leads-tile {
  padding: 22px 20px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-items: start;
}

.incoming-leads-tile .card-icon {
  grid-row: 1 / span 2;
}

.incoming-leads-tile h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.incoming-leads-tile p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.incoming-leads-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.incoming-leads-visual {
  position: sticky;
  top: 100px;
}

.incoming-leads-img {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
}

/* ── Incoming leads stacked image group ─────────────────────────── */
.incoming-stack {
  position: relative;
  width: 100%;
  min-height: 800px;
}

.incoming-stack-img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
}

/* Main image — center, tallest, z-index 1 */
.incoming-stack-img--main {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  min-height: 800px;
  z-index: 1;
}

/* Top-left */
.incoming-stack-img--top-left {
  width: 50%;
  top: -40px;
  left: -6%;
  z-index: 2;
  animation: incoming-float-tl 5.5s ease-in-out infinite 0.4s;
}

/* Bottom-left → centre of phone screen */
.incoming-stack-img--bottom-left {
  width: 110%;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: incoming-float-bl 4.8s ease-in-out infinite 0.8s;
}


/* Bottom-right */
.incoming-stack-img--bottom-right {
  width: 60%;
  bottom: -20px;
  right: -4%;
  border-radius: 16px;
  z-index: 3;
  animation: incoming-float-br 5.2s ease-in-out infinite 1.2s;
}

@keyframes incoming-float-main {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50%       { transform: translateX(-50%) translateY(-16px); }
}
@keyframes incoming-float-tl {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes incoming-float-bl {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}
@keyframes incoming-float-br {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.incoming-leads-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
}

.incoming-leads-img-placeholder .material-symbols-rounded {
  font-size: 48px;
}

.incoming-leads-img-placeholder small {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .incoming-leads-shell { grid-template-columns: 1fr; gap: 36px; }
  .incoming-leads-visual { position: static; }
  .incoming-leads-img-placeholder { aspect-ratio: 16 / 9; }
}

@media (max-width: 540px) {
  .incoming-leads-tile { grid-template-columns: 1fr; }
  .incoming-leads-tile .card-icon { grid-row: auto; }
}
