@charset "UTF-8";

:root {
  --bg: #ffffff;
  --bg-2: #f8fafc;
  --bg-3: #f1f5f9;
  --ink: #0b1220;
  --ink-2: #334155;
  --ink-3: #64748b;
  --ink-4: #94a3b8;
  --rule: #e2e8f0;
  --rule-2: #cbd5e1;
  --brand: #ea580c;
  --brand-dark: #c2410c;
  --brand-tint: #fff7ed;
  --red: #dc2626;
  --red-tint: #fef2f2;
  --green: #16a34a;
  --green-tint: #f0fdf4;
  --blue: #2563eb;
  --blue-tint: #eff6ff;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 4px 16px -4px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 40px -8px rgba(15, 23, 42, 0.12), 0 4px 12px -4px rgba(15, 23, 42, 0.06);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --content-max: 1280px;
  --content-narrow: 960px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01";
}

h1,
h2,
h3,
h4 {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--ink);
}

.site-main {
  min-height: 40vh;
}

.site-main a {
  text-decoration: none;
}

.container,
.container-narrow {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: 0;
}

.container-narrow {
  width: min(100%, var(--content-narrow));
}

.skip-link:focus {
  background: var(--ink);
  color: #fff;
}

.hl {
  color: var(--brand);
}

.eyebrow,
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn.ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--rule-2);
}

.btn.ghost:hover {
  background: var(--bg-2);
  border-color: var(--ink-3);
}

.btn.dark {
  background: var(--ink);
  border-color: var(--ink);
}

.btn.dark:hover {
  background: #1e293b;
  border-color: #1e293b;
}

.btn.sm {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 13px;
}

.btn.lg {
  min-height: 50px;
  padding: 14px 22px;
  font-size: 15px;
}

.btn .arrow {
  transition: transform 0.2s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px -10px rgba(15, 23, 42, 0.08);
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  cursor: pointer;
  text-decoration: none;
}

.wordmark img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: #fff;
}

.nav-mobile-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.nav-mobile-toggle-bars span {
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav.nav-is-open .nav-mobile-toggle-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-nav.nav-is-open .nav-mobile-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-nav.nav-is-open .nav-mobile-toggle-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile-panel {
  display: none;
}

.nav-links-wrap {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover,
.nav-links .is-active {
  color: var(--ink);
  background: var(--bg-3);
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-mobile-backdrop {
  display: none;
}

.hero {
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.hero .hero-cta, .cta-actions {
  justify-content: left;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-left {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 12.5px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 24px;
}

.hero-sub {
  max-width: 540px;
  margin-left: 0;
  margin-bottom: 32px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
}

.hero-cta,
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #1a2a4a 0%, #0f1e3a 50%, #0b1628 100%);
  aspect-ratio: 16 / 10;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), var(--shadow-lg);
  isolation: isolate;
}

.video-frame .hero-video__media,
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame .hero-video__teaser::before {
  background: linear-gradient(160deg, rgba(26, 42, 74, 0.4) 0%, rgba(11, 22, 40, 0.05) 100%);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-play-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-frame:hover .video-play-circle {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.06);
}

.video-play-circle svg {
  margin-left: 3px;
}

.video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  pointer-events: none;
}

.video-caption::before {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulse 1.8s ease-in-out infinite;
}

.proof-strip {
  padding: 32px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
}

.proof-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
}

.proof-strip .title {
  max-width: 320px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.proof-strip .stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
}

.proof-strip .stat .num {
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.proof-strip .stat .num.brand {
  color: var(--brand);
}

.proof-strip .stat .num.red {
  color: var(--red);
}

.proof-strip .stat .label {
  margin-top: 6px;
  color: var(--ink-3);
  font-size: 12.5px;
}

.section {
  padding: 96px 0;
}

.section.paper-2 {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-header {
  margin-bottom: 56px;
  max-width: 720px;
}

.section-header.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: end;
  max-width: none;
}

.section-title {
  font-size: clamp(32px, 3.8vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-lede {
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
}

.lenses,
.findings-grid,
.method,
.pricing-teaser,
.price-cards,
.reports,
.caps {
  display: grid;
  gap: 20px;
}

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

.lens,
.finding,
.tier,
.price-card,
.report,
.cap,
.method-step,
.faq-item {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}

.lens,
.finding,
.tier,
.report,
.cap,
.method-step {
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lens:hover,
.finding:hover,
.tier:hover,
.report:hover,
.cap:hover,
.method-step:hover {
  border-color: var(--rule-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.lens {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lens-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lens-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-tint);
}

.lenses .lens:nth-child(2) .lens-icon {
  color: var(--brand);
  background: var(--brand-tint);
}

.lenses .lens:nth-child(3) .lens-icon {
  color: var(--green);
  background: var(--green-tint);
}

.lens-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-3);
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 600;
}

.lens-badge.plus {
  background: var(--green-tint);
  color: var(--green);
}

.lens-title {
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.lens-desc,
.finding-desc,
.method-step .step-desc,
.report-desc,
.cap .cap-desc,
.price-desc,
.content-page-lede,
.thank-you-page__lead,
.thank-you-page__hint {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}

.lens-viz {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.mini-table {
  font-size: 13px;
}

.mini-table .row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--bg-3);
}

.mini-table .row:last-child {
  border-bottom: none;
}

.mini-table .label {
  color: var(--ink-2);
}

.mini-table .val {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
}

.mini-table .row.neg .val {
  color: var(--red);
}

.mini-table .row.pos .val {
  color: var(--green);
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 52px;
  margin-top: 12px;
}

.mini-chart .spark {
  flex: 1;
  min-height: 6px;
  border-radius: 3px 3px 0 0;
  background: var(--rule);
}

.mini-chart .spark.mid {
  background: var(--ink-4);
}

.mini-chart .spark.hi {
  background: var(--red);
}

.lens-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 6px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
}

.finding {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.findings-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.finding-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
}

.finding-meta .idx {
  color: var(--brand);
}

.finding-meta .cat {
  color: var(--ink-3);
  font-weight: 500;
}

.finding-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.finding-stat {
  color: var(--ink);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.finding-stat.red {
  color: var(--red);
}

.finding-stat.brand {
  color: var(--brand);
}

.finding-stat .unit {
  margin-left: 4px;
  color: var(--ink-3);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.split-bar {
  display: flex;
  height: 8px;
  margin: 10px 0 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--bg-3);
}

.split-bar .seg {
  height: 100%;
}

.split-bar .seg.red {
  background: var(--red);
}

.split-bar .seg.ink {
  background: var(--ink-3);
}

.split-bar .seg.green {
  background: var(--green);
}

.split-bar-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  color: var(--ink-3);
  font-size: 11.5px;
}

.split-bar-legend .item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.split-bar-legend .swatch {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 2px;
}

.method {
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.method::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 14%;
  right: 14%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--rule-2) 0 4px, transparent 4px 10px);
  z-index: 0;
}

.method-step {
  min-height: 240px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.method-step .step-num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.method-step .step-title {
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.method-step .step-time {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.method-step .t-label {
  color: var(--ink-3);
  font-weight: 500;
}

.pricing-teaser {
  grid-template-columns: 1fr 1fr;
}

.tier {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tier.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--brand-tint) 0%, #fff 40%);
}

.tier-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tier-tag {
  color: var(--ink-3);
  font-size: 12.5px;
  font-weight: 600;
}

.tier.featured .tier-tag {
  color: var(--brand);
}

.tier-name {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.tier-desc {
  color: var(--ink-3);
  font-size: 14px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.tier-price .amt {
  color: var(--ink);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.tier-price .per {
  color: var(--ink-3);
  font-size: 13px;
}

.tier-feat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0 10px;
}

.tier-feat-item,
.pfeat {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.45;
}

.tier-feat-item::before,
.pfeat::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--bg-3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8L6.5 11L12.5 5' stroke='%2364748b' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.tier.featured .tier-feat-item::before,
.price-card.featured .pfeat::before {
  background: var(--brand-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8L6.5 11L12.5 5' stroke='%23ea580c' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.cta-block {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.cta-block::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-block h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.cta-block p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--ink-2);
  font-size: 18px;
}

.product-hero,
.pricing-hero,
.content-page-hero {
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--rule);
}

.product-hero {
  padding: 80px 0 56px;
}

.product-hero .eyebrow {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 18px;
}

.product-hero h1,
.pricing-hero h1,
.content-page-hero h1 {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: clamp(36px, 4.8vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.product-hero .lede,
.pricing-hero .lede,
.content-page-hero .content-page-lede {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
}

.lens-section {
  padding: 96px 0;
}

.lens-section.paper-2 {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.lens-section .l-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  max-width: 820px;
  margin-bottom: 48px;
}

.l-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 600;
}

.l-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-4);
}

.lens-section.blue .l-eyebrow::before {
  background: var(--blue);
}

.lens-section.brand .l-eyebrow::before {
  background: var(--brand);
}

.lens-section.green .l-eyebrow::before {
  background: var(--green);
}

.l-title {
  margin-bottom: 16px;
  font-size: clamp(32px, 3.8vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.l-lede {
  max-width: 720px;
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.6;
}

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

.report {
  min-height: 300px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.report.highlight {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--brand-tint) 0%, #fff 40%);
}

.report-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.report-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.report-super {
  color: var(--ink-3);
  font-size: 12.5px;
  font-weight: 600;
}

.report-title {
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.report-key {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
}

.mini-report {
  margin-top: auto;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 12px;
}

.mini-report-head {
  display: grid;
  gap: 8px;
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-3);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
}

.mini-report-row {
  display: grid;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--rule);
}

.mini-report-row:last-child {
  border-bottom: none;
}

.mini-report-row .primary {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
}

.mini-report-row .secondary {
  color: var(--ink-3);
  font-family: var(--sans);
  font-size: 12.5px;
}

.mini-report-row .neg {
  color: var(--red);
  font-weight: 600;
}

.mini-report-row .pos {
  color: var(--green);
  font-weight: 600;
}

.wf-callout {
  grid-column: span 2;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
}

.wf-callout .head {
  margin-bottom: 10px;
  color: #4ade80;
  font-size: 13px;
  font-weight: 600;
}

.wf-callout h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.wf-callout p {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  line-height: 1.55;
}

.wf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wf-tag {
  margin-bottom: 8px;
  color: #4ade80;
  font-size: 12.5px;
  font-weight: 600;
}

.wf-body {
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.caps {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cap {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cap-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 8px;
  background: var(--brand-tint);
  color: var(--brand);
}

.cap-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.pricing-hero {
  padding: 72px 0 44px;
}

.pricing-hero .lede {
  max-width: 600px;
  margin: 0 auto 32px;
}

.billing-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.billing-toggle button {
  padding: 9px 22px;
  border-radius: 7px;
  color: var(--ink-3);
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.billing-toggle button.active {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}

.billing-toggle .save {
  margin-left: 6px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
}

.billing-toggle button.active .save {
  color: #fb923c;
}

.price-cards {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 56px;
}

.price-card {
  position: relative;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--brand-tint) 0%, #fff 35%);
  box-shadow: var(--shadow-md);
}

.price-card-ribbon {
  position: absolute;
  top: -12px;
  right: 32px;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.price-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-tag {
  color: var(--ink-3);
  font-size: 12.5px;
  font-weight: 600;
}

.price-card.featured .price-tag {
  color: var(--brand);
}

.price-name {
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.price-amount {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.price-amount .amt {
  color: var(--ink);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.price-amount .per {
  color: var(--ink-3);
  font-size: 14px;
}

.price-amount .sub {
  justify-self: end;
  color: var(--ink-3);
  font-size: 12.5px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 6px 0;
}

.price-features-head {
  margin-bottom: 6px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
}

.pfeat.bold {
  color: var(--ink);
  font-weight: 600;
}

.price-card .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.price-table-section {
  padding-bottom: 56px;
}

.price-table-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 20px;
}

.price-table-head h3 {
  font-size: 26px;
  letter-spacing: -0.025em;
}

.price-table-head .note {
  color: var(--ink-3);
  font-size: 13px;
}

.price-table-wrap {
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: #fff;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  padding: 16px 20px;
  text-align: left;
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 600;
}

.price-table th.center {
  text-align: center;
}

.price-table th:last-child,
.price-table td.cta {
  text-align: right;
}

.price-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table td.team {
  color: var(--ink);
  font-weight: 600;
}

.price-table td.num {
  color: var(--ink);
  text-align: center;
  font-family: var(--mono);
  font-weight: 600;
}

.price-table td.num.brand {
  color: var(--brand);
}

.roi {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--ink);
  color: #fff;
}

.roi::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.roi-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
}

.roi-left .label {
  margin-bottom: 14px;
  color: #fb923c;
  font-size: 13px;
  font-weight: 600;
}

.roi-left h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(32px, 4vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.roi-left .lead {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.roi-left .fine {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.5;
}

.roi-calc {
  padding: 28px 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.roi-calc-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 600;
}

.roi-calc-head .live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4ade80;
}

.roi-calc-head .live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 1.8s ease-in-out infinite;
}

.roi-input {
  margin-bottom: 18px;
}

.roi-input label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
}

.roi-input label span {
  color: #fff;
  font-family: var(--mono);
  font-weight: 600;
}

.roi-band-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.5;
}

.roi-input input[type="range"] {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  appearance: none;
}

.roi-input input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.3);
  appearance: none;
}

.roi-input input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--brand);
}

.roi-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-result-item .num {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.15s ease;
}

.roi-result-item .num.brand {
  color: var(--brand);
}

.roi-result-item .label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.4;
}

.roi-tag {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--brand);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
}

.faq-section {
  padding: 88px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
}

.faq-left h3 {
  margin-bottom: 14px;
  font-size: 32px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.faq-left p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.faq-item.open {
  border-color: var(--brand);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.faq-q .chev {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-3);
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item.open .faq-q .chev {
  background: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.25s ease, margin 0.25s ease;
}

.faq-item.open .faq-a {
  max-height: 280px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.content-page-shell,
.thank-you-page {
  background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%);
}

.content-page-hero {
  padding: 80px 0 40px;
}

.content-page-meta {
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 500;
}

.content-page-panel,
.thank-you-page__surface {
  max-width: var(--content-narrow);
  margin: 0 auto 88px;
  padding: 32px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.thank-you-page {
  min-height: calc(100vh - 120px);
  padding: 80px 0 88px;
}

.thank-you-page__hero {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-page__mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green);
}

.thank-you-page__title {
  margin-bottom: 16px;
  font-size: clamp(36px, 4.6vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.thank-you-page__hint {
  margin-top: 12px;
}

.thank-you-page__actions {
  margin: 28px 0 0;
}

.entry-prose {
  max-width: none;
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}

.entry-prose h2,
.entry-prose h2.wp-block-heading {
  margin: 2.4rem 0 0.85rem;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.025em;
}

.entry-prose h3,
.entry-prose h3.wp-block-heading {
  margin: 1.9rem 0 0.65rem;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 24px);
  letter-spacing: -0.02em;
}

.entry-prose a {
  color: var(--brand);
  text-decoration: underline;
}

.entry-prose strong {
  color: var(--ink);
}

.entry-prose blockquote {
  border-left-color: var(--brand);
  background: linear-gradient(90deg, var(--brand-tint), transparent);
}

.entry-prose table th {
  background: var(--bg-2);
  color: var(--ink);
}

.footer {
  padding: 56px 0 32px;
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.7fr) repeat(3, minmax(140px, 1fr));
  align-items: start;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .wordmark {
  color: #fff;
}

.footer-brand .wordmark img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 350px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col {
  min-width: 0;
}

.footer-col h4 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 600;
}

.footer-col a,
.footer-col .footer-links a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-col a:hover,
.footer-col .footer-links a:hover {
  color: var(--brand);
}

.footer-col .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col .footer-links li {
  margin: 0;
  padding: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-phone {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-phone:hover {
  color: rgba(255, 255, 255, 0.92);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.trust-badge:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.trust-badge svg {
  flex-shrink: 0;
}

.trust-badge .divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.demo-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(11, 18, 32, 0.56);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.demo-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.demo-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  width: min(92vw, 560px);
  max-height: min(88vh, 820px);
  overflow-y: auto;
  padding: 28px 28px 24px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 20px 60px -16px rgba(15, 23, 42, 0.28), 0 8px 24px -12px rgba(15, 23, 42, 0.18);
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s ease;
}

.demo-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.demo-modal-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.demo-modal-content h2 {
  margin: 0 44px 24px 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.demo-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.92);
  color: var(--ink-3);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.demo-modal-close:hover,
.demo-modal-close:focus-visible {
  background: #fff;
  border-color: rgba(148, 163, 184, 0.95);
  color: var(--ink);
  outline: none;
}

.demo-modal-content .rz-embed-slot {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.demo-modal-content .rz-web-form--embed {
  min-height: 1.5rem;
}

.demo-modal-content .rz-web-form--embed[hidden] {
  display: none !important;
}

.demo-modal-content .rz-embed-slot > .rz-web-form,
.demo-modal-content .rz-web-form,
.demo-modal-content form.rz-web-form,
.demo-modal-content .rz-web-form .rz-web-form {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-sizing: border-box;
}

.demo-modal-content form.rz-web-form,
.demo-modal-content .rz-web-form .rz-web-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.demo-modal-content .rz-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.demo-modal-content .rz-label {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.demo-modal-content .rz-input {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.demo-modal-content .rz-input::placeholder {
  color: var(--ink-4);
}

.demo-modal-content .rz-input:hover {
  border-color: rgba(148, 163, 184, 0.95);
}

.demo-modal-content .rz-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}

.demo-modal-content .rz-submit-btn {
  width: 100%;
  margin: 4px 0 0;
}

.demo-modal-content form.rz-web-form > div:first-child:not(.rz-web-form):not(.rz-submit-btn) {
  display: none;
}

.demo-modal-content .rz-submit-btn .btn {
  width: 100%;
  min-height: 50px;
  padding: 0.95rem 1.5rem;
  border: 1px solid var(--brand);
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 24px -14px rgba(234, 88, 12, 0.65);
}

.demo-modal-content .rz-submit-btn .btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.demo-modal-content .rz-submit-btn .btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.demo-modal-promise {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
  text-align: center;
}

.demo-modal-promise__text {
  max-width: 380px;
  margin: 0 auto;
  color: var(--ink-3);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.stagger-parent .reveal.is-visible:nth-child(1) {
  transition-delay: 0s;
}

.stagger-parent .reveal.is-visible:nth-child(2) {
  transition-delay: 0.08s;
}

.stagger-parent .reveal.is-visible:nth-child(3) {
  transition-delay: 0.16s;
}

.stagger-parent .reveal.is-visible:nth-child(4) {
  transition-delay: 0.24s;
}

.stagger-parent .reveal.is-visible:nth-child(5) {
  transition-delay: 0.32s;
}

.stagger-parent .reveal.is-visible:nth-child(6) {
  transition-delay: 0.4s;
}

.hero-anim {
  opacity: 0;
  transform: translateY(10px);
  animation: heroRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-anim-1 {
  animation-delay: 0.05s;
}

.hero-anim-2 {
  animation-delay: 0.15s;
}

.hero-anim-3 {
  animation-delay: 0.25s;
}

.hero-anim-4 {
  animation-delay: 0.35s;
}

.hero-anim-5 {
  animation-delay: 0.25s;
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

.mini-chart .spark {
  transform-origin: bottom center;
}

.mini-chart.pre-anim .spark {
  transform: scaleY(0);
}

.mini-chart.pre-anim.anim-in .spark {
  transform: scaleY(1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.mini-chart.pre-anim.anim-in .spark:nth-child(1) { transition-delay: 0.02s; }
.mini-chart.pre-anim.anim-in .spark:nth-child(2) { transition-delay: 0.06s; }
.mini-chart.pre-anim.anim-in .spark:nth-child(3) { transition-delay: 0.10s; }
.mini-chart.pre-anim.anim-in .spark:nth-child(4) { transition-delay: 0.14s; }
.mini-chart.pre-anim.anim-in .spark:nth-child(5) { transition-delay: 0.18s; }
.mini-chart.pre-anim.anim-in .spark:nth-child(6) { transition-delay: 0.22s; }
.mini-chart.pre-anim.anim-in .spark:nth-child(7) { transition-delay: 0.26s; }
.mini-chart.pre-anim.anim-in .spark:nth-child(8) { transition-delay: 0.30s; }
.mini-chart.pre-anim.anim-in .spark:nth-child(9) { transition-delay: 0.34s; }

.split-bar .seg {
  transform-origin: left center;
}

.split-bar.pre-anim .seg {
  transform: scaleX(0);
}

.split-bar.pre-anim.anim-in .seg {
  transform: scaleX(1);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.split-bar.pre-anim.anim-in .seg:nth-child(1) { transition-delay: 0.02s; }
.split-bar.pre-anim.anim-in .seg:nth-child(2) { transition-delay: 0.12s; }
.split-bar.pre-anim.anim-in .seg:nth-child(3) { transition-delay: 0.22s; }
.split-bar.pre-anim.anim-in .seg:nth-child(4) { transition-delay: 0.32s; }

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn:focus-visible,
.nav-links a:focus-visible,
.billing-toggle button:focus-visible,
.faq-item:focus-visible,
.trust-badge:focus-visible {
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .header-inner,
  .container,
  .container-narrow {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-inner {
    gap: 24px;
  }

  .nav-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner > .nav-links,
  .header-inner > .nav-right {
    display: none;
  }

  .nav-mobile-panel {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .site-nav.nav-is-open .nav-mobile-panel {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-mobile-panel .header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links-wrap {
    margin-left: 0;
  }

  .nav-mobile-panel .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-mobile-panel .nav-links a {
    padding: 14px 4px;
    border-radius: 0;
  }

  .nav-mobile-panel .nav-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 8px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
  }

  .nav-mobile-panel .btn {
    width: 100%;
  }

  .nav-mobile-backdrop {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: block;
    background: rgba(15, 23, 42, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.nav-is-open .nav-mobile-backdrop:not([hidden]) {
    opacity: 1;
    visibility: visible;
  }

  .hero-grid,
  .roi-grid,
  .faq-grid,
  .section-header.split,
  .proof-strip-inner,
  .lenses,
  .findings-grid,
  .method,
  .pricing-teaser,
  .price-cards,
  .reports,
  .caps,
  .wf-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .method::before {
    display: none;
  }

  .proof-strip .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-sub,
  .hero-cta {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .price-table-head,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-actions {
    justify-content: flex-start;
  }

  .price-amount {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-amount .sub {
    justify-self: start;
  }

  .wf-callout {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .section,
  .lens-section,
  .faq-section,
  .roi,
  .cta-block {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero {
    padding: 56px 0 72px;
  }

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

  .price-table th,
  .price-table td {
    padding: 12px;
    font-size: 13px;
  }

  .content-page-panel,
  .thank-you-page__surface,
  .roi-calc,
  .price-card,
  .tier,
  .lens,
  .report {
    padding: 24px 20px;
  }

  .trust-badge {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
    transition-delay: 0s !important;
  }

  .reveal,
  .hero-anim {
    opacity: 1;
    transform: none;
  }

  .mini-chart.pre-anim .spark {
    transform: scaleY(1);
  }

  .split-bar.pre-anim .seg {
    transform: scaleX(1);
  }
}
