/* Casacabe — Marketing Landing Page */

:root {
  --bg: #ffffff;
  --text-primary: #111111;
  --text-secondary: #6b7280;
  --accent: #22c55e;
  --accent-hover: #16a34a;
  --border: #f0f0f0;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --section-padding: 48px;
  --block-gap: 24px;
  --container-max: 1100px;
  --container-pad: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section-headline {
  margin: 0 0 28px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--text-secondary);
}

.btn-block {
  width: 100%;
}

/* SECTION 1 — Hero */
.hero {
  position: relative;
  padding-top: 12px;
  padding-bottom: 32px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.hero-orb-1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -80px;
  background: rgba(34, 197, 94, 0.18);
  animation: orb-float 14s ease-in-out infinite;
}

.hero-orb-2 {
  width: 360px;
  height: 360px;
  bottom: -60px;
  left: -100px;
  background: rgba(34, 197, 94, 0.1);
  animation: orb-float 18s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 16px) scale(1.05); }
}

.hero .nav,
.hero-layout {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  padding-top: 24px;
}

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

.hero-copy .hero-eyebrow {
  margin-left: 0;
}

.hero-copy .hero-headline {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.hero-copy .hero-subheadline {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.hero-copy .hero-actions {
  justify-content: flex-start;
}

.hero-copy .trust-strip {
  justify-content: flex-start;
  margin-left: 0;
}

.hero-soon {
  margin-bottom: 28px;
}

.hero-soon-title {
  margin: 0 0 20px;
  font-size: clamp(3.25rem, 11vw, 5.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--text-primary);
}

.hero-soon-dots {
  color: var(--accent);
  display: inline-block;
  margin-left: 0.06em;
  animation: hero-soon-pulse 2.4s ease-in-out infinite;
}

.hero-soon-lead {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 400;
}

@keyframes hero-soon-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.btn-nav-soon {
  pointer-events: none;
  cursor: default;
  opacity: 0.92;
}

.hero-visual {
  position: relative;
  min-height: 380px;
}

.dash-window {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 24px 48px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(34, 197, 94, 0.06);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: dash-float 6s ease-in-out infinite;
}

.hero-visual:hover .dash-window {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
  box-shadow:
    0 8px 12px rgba(0, 0, 0, 0.04),
    0 32px 64px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(34, 197, 94, 0.12);
}

@keyframes dash-float {
  0%, 100% { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-8px); }
}

.dash-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dot-red { background: #ff5f57; }
.dash-dot-yellow { background: #febc2e; }
.dash-dot-green { background: #28c840; }

.dash-title {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.dash-body {
  padding: 20px;
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dash-kpi {
  padding: 12px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.dash-kpi-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.dash-kpi-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.dash-kpi-delta {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
}

.dash-kpi-up { color: var(--accent); }
.dash-kpi-ok { color: #16a34a; }

.dash-chart-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.dash-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.dash-bar {
  flex: 1;
  height: var(--h, 50%);
  background: rgba(34, 197, 94, 0.15);
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.dash-chart-bars.is-animated .dash-bar {
  transform: scaleY(1);
}

.dash-chart-bars.is-animated .dash-bar:nth-child(1) { transition-delay: 0.05s; }
.dash-chart-bars.is-animated .dash-bar:nth-child(2) { transition-delay: 0.1s; }
.dash-chart-bars.is-animated .dash-bar:nth-child(3) { transition-delay: 0.15s; }
.dash-chart-bars.is-animated .dash-bar:nth-child(4) { transition-delay: 0.2s; }
.dash-chart-bars.is-animated .dash-bar:nth-child(5) { transition-delay: 0.25s; }
.dash-chart-bars.is-animated .dash-bar:nth-child(6) { transition-delay: 0.3s; }
.dash-chart-bars.is-animated .dash-bar:nth-child(7) { transition-delay: 0.35s; }

.dash-bar-accent {
  background: var(--accent);
}

.dash-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.dash-mini-label {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.dash-progress {
  height: 6px;
  background: #f0f0f0;
  border-radius: 100px;
  overflow: hidden;
}

.dash-progress-fill {
  height: 100%;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--accent), #4ade80);
  border-radius: 100px;
  animation: progress-grow 1.2s ease 0.8s both;
}

@keyframes progress-grow {
  from { width: 0; }
  to { width: var(--w, 50%); }
}

.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  z-index: 2;
}

.float-badge-1 {
  top: 8%;
  left: -8%;
  animation: badge-float 5s ease-in-out infinite;
  color: #16a34a;
}

.float-badge-2 {
  bottom: 12%;
  right: -4%;
  animation: badge-float 5s ease-in-out infinite 1.5s;
  color: var(--accent);
}

.float-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease infinite;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-preview-fallback {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.hero-preview-fallback.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero-preview-fallback.is-visible ~ .dash-window {
  visibility: hidden;
}

.hero-preview-fallback img {
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 48px;
  padding: 0 24px 0 16px;
  gap: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 36px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.nav-items a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  color: var(--text-secondary);
  padding: 10px 0;
}

.nav-items a:hover {
  color: var(--text-primary);
}

.nav-items a.is-active {
  color: var(--text-primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  color: var(--text-secondary);
  padding: 10px 0;
  cursor: default;
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown.is-active .nav-dropdown-trigger {
  color: var(--text-primary);
}

.nav-dropdown-caret {
  font-size: 10px;
  opacity: 0.6;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  padding: 8px 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-secondary);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--text-primary);
  background: #fafafa;
}

.nav-dropdown-menu a.is-active {
  color: var(--text-primary);
  background: rgba(34, 197, 94, 0.08);
}

.btn-nav {
  margin-left: auto;
  flex-shrink: 0;
  padding: 12px 20px;
  font-size: 14px;
}

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

.hero-eyebrow {
  margin: 0 auto 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin: 32px auto 0;
  padding: 0;
  max-width: 720px;
  list-style: none;
}

.trust-strip li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}

.trust-strip li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

.section-lead {
  margin: -16px auto 28px;
  max-width: 560px;
  text-align: center;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.hero-headline {
  margin: 0 auto 24px;
  max-width: 820px;
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-subheadline {
  margin: 0 auto 40px;
  max-width: 640px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-note {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-preview {
  margin: 48px auto 0;
  max-width: 960px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

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

.hero-preview img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

@media (prefers-reduced-motion: reduce) {
  .hero-preview {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* SECTION 2 — Pain */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
}

/* SECTION 3  How it works */
.how {
  background: #fafafa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.step p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* SECTION 4  Solution */
.features {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.feature-text h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 600;
}

.feature-text p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* SECTION 5  Product screenshots */
.product {
  background: #fafafa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.showcase {
  max-width: 960px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

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

.showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.showcase-tab {
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.showcase-tab:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.showcase-tab.is-active {
  color: var(--text-primary);
  border-color: var(--accent);
  background: rgba(34, 197, 94, 0.08);
}

.showcase-frame {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: var(--bg);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.showcase-img.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .showcase,
  .showcase-img {
    transition: none;
  }

  .showcase {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .showcase-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .showcase-tab {
    flex-shrink: 0;
  }
}

/* SECTION 6  Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.trust-card h3 {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.trust-card p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* SECTION 7  Pricing */
.pricing-card {
  max-width: 320px;
  margin: 0 auto;
  padding: 22px 20px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
}

.badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(34, 197, 94, 0.1);
  border-radius: 100px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.price {
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-strike {
  font-size: 1rem;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.checklist {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  text-align: left;
}

.checklist li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.checklist li:last-child {
  margin-bottom: 0;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.pricing-footer-note {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.pricing-footer-note a {
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-footer-note a:hover {
  color: var(--accent);
}

/* SECTION 8  Audience */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.audience-title {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 600;
}

.audience-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-col li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.audience-col li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--text-primary);
  font-weight: 700;
}

.audience-col li:last-child {
  margin-bottom: 0;
}

.audience-col-muted .audience-title {
  color: var(--text-secondary);
}

/* SECTION 9  FAQ */
.faq-list {
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item dt {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
}

.faq-item dd {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* SECTION 10  Footer */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  padding-bottom: 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  width: 100%;
}

.footer-logo {
  justify-self: start;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.footer-email {
  justify-self: center;
  text-align: center;
  font-size: 15px;
  line-height: 1;
  color: var(--text-secondary);
}

.footer-email:hover {
  color: var(--text-primary);
}

.footer-links {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  line-height: 1;
  color: var(--text-secondary);
}

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

.footer-sep {
  color: var(--text-secondary);
}

.footer-copy {
  margin: 0;
  text-align: left;
  font-size: 13px;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
  .cards-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-logo,
  .footer-email,
  .footer-links {
    justify-self: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  border-bottom: 1px solid var(--border);
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-hero .nav {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px var(--container-pad) 28px;
}

.page-eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-hero-content .page-title {
  margin: 0 auto 10px;
  max-width: 720px;
  font-size: clamp(1.625rem, 3.5vw, 2.125rem);
}

.page-hero-content .page-intro {
  margin: 0 auto;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.6;
}

.page-after-hero {
  padding-top: 24px;
  padding-bottom: 40px;
}

.section.page,
.section.page-after-hero {
  padding-top: 24px;
  padding-bottom: 40px;
}

.page-header {
  padding: 12px 0 0;
  border-bottom: 1px solid var(--border);
}

.page-header .nav {
  margin-bottom: 16px;
}

.page {
  padding-top: 0;
  padding-bottom: 0;
}

.page-container {
  max-width: 720px;
}

.page-title {
  margin: 0 0 8px;
  font-size: clamp(1.625rem, 3.5vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.page-intro {
  margin: 0 0 24px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.content-block {
  margin-bottom: var(--block-gap);
}

.content-block h2 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 600;
}

.content-block p {
  margin: 0 0 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.content-block li {
  margin-bottom: 8px;
}

.content-block li:last-child {
  margin-bottom: 0;
}

.content-callout {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fafafa;
}

.content-callout p {
  margin: 0;
}

.page-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.page-cta p {
  margin: 0 0 20px;
  color: var(--text-secondary);
}

.page-cta .btn + .btn {
  margin-left: 12px;
}

.content-block a {
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-block a:hover {
  color: var(--accent);
}

/* Product subpages */
.product-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.product-sidebar {
  position: sticky;
  top: 24px;
}

.product-sidebar-title {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.product-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-sidebar nav a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-secondary);
  padding: 8px 0;
}

.product-sidebar nav a:hover {
  color: var(--text-primary);
}

.product-sidebar nav a.is-active {
  color: var(--text-primary);
  font-weight: 600;
}

.product-main .page-title {
  text-align: left;
}

.product-main .page-intro {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-sidebar {
    position: static;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  .product-sidebar nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
  }
}

@media (max-width: 900px) {
  .logo {
    margin-right: 20px;
  }

  .nav-items {
    gap: 18px;
  }

  .nav-items a {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .nav-items a:not(.nav-keep) {
    display: none;
  }

  .nav-dropdown-menu {
    left: auto;
    right: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 40px;
    --container-pad: 20px;
  }

  .nav {
    flex-wrap: wrap;
    row-gap: 12px;
    margin-bottom: 40px;
    padding-left: 12px;
    padding-right: 16px;
  }

  .logo {
    margin-right: 16px;
  }

  .nav-items {
    order: 3;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .btn-nav {
    margin-left: auto;
  }

  .trust-strip {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .section-lead {
    margin-top: -24px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .feature-row {
    flex-direction: column;
    gap: 16px;
  }

}

@media (max-width: 380px) {
  .btn,
  .btn-nav {
    white-space: normal;
    text-align: center;
  }

  .pricing-card {
    padding: 20px 18px;
  }
}

/* Homepage explore grid */
.explore {
  background: #fafafa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.explore-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.explore-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.explore-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(34, 197, 94, 0.1);
  border-radius: 8px;
  line-height: 1;
}

.explore-card h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.explore-card p {
  margin: 0 0 16px;
  flex: 1;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.explore-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* Stats bar */
.stats-bar {
  padding-top: 36px;
  padding-bottom: 36px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* CTA banner */
.cta-banner {
  background: #111;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner-text h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta-banner-text p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 480px;
}

.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cta-banner .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-banner .btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Enhanced footer */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer-tagline {
  margin: 8px 0 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 220px;
}

.footer-email-inline {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-email-inline:hover {
  color: var(--text-primary);
}

.footer-heading {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.3;
}

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

/* Inner page steps */
.steps-page {
  max-width: none;
  margin-bottom: 32px;
}

.steps-page .step h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Feature detail cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.feature-card {
  padding: 20px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.feature-card-visual {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #4ade80);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  border-color: rgba(34, 197, 94, 0.25);
}

.feature-card-visual:hover::before {
  opacity: 1;
}

.feature-card-visual h2::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
  transform: translateY(-1px);
}

.feature-card h2 {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.feature-card p + p {
  margin-top: 10px;
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 0;
  font-size: 15px;
}

.compare-table th,
.compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
}

.compare-table td:last-child {
  color: var(--accent);
  font-weight: 600;
}

/* FAQ categories */
.faq-category {
  margin-bottom: 28px;
}

.faq-category h2 {
  margin: 0 0 12px;
  font-size: 1.125rem;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.faq-list-wide {
  max-width: none;
}

/* Pricing extras */
.pricing-hero {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-comparison {
  margin-top: 28px;
}

.pricing-comparison h2 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.value-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.value-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
}

.value-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .feature-cards {
    grid-template-columns: 1fr;
  }

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

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-text p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner-actions .btn {
    width: 100%;
  }
}

/* ── Visuals & animations ── */

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

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-revealed > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.reveal-stagger.is-revealed > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: none; }
.reveal-stagger.is-revealed > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: none; }
.reveal-stagger.is-revealed > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: none; }
.reveal-stagger.is-revealed > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: none; }
.reveal-stagger.is-revealed > *:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: none; }

/* Flow diagram */
.flow {
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 40px;
  padding-bottom: 40px;
}

.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
  max-width: 900px;
  margin: 0 auto;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 12px;
  min-width: 100px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flow-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.flow-node-muted {
  opacity: 0.75;
}

.flow-node-accent {
  border-color: rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.1), 0 8px 24px rgba(34, 197, 94, 0.12);
}

.flow-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f5f5f5;
  color: var(--text-secondary);
}

.flow-icon-accent {
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent);
}

.flow-name {
  font-size: 14px;
  font-weight: 600;
}

.flow-desc {
  font-size: 12px;
  color: var(--text-secondary);
}

.flow-connector {
  width: 48px;
  color: var(--text-secondary);
  opacity: 0.4;
}

.flow-line {
  width: 100%;
  height: 24px;
}

.flow-arrow {
  color: var(--accent);
  margin: 0 4px;
  animation: arrow-nudge 2s ease-in-out infinite;
}

@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* Pain cards visual */
.card-visual {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--card-accent, var(--accent)), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(34, 197, 94, 0.2);
}

.card-visual:hover::before {
  opacity: 1;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 16px;
}

.card-icon-orange { background: rgba(251, 146, 60, 0.12); color: #ea580c; --card-accent: #ea580c; }
.card-icon-red { background: rgba(239, 68, 68, 0.12); color: #dc2626; --card-accent: #dc2626; }
.card-icon-purple { background: rgba(168, 85, 247, 0.12); color: #9333ea; --card-accent: #9333ea; }

/* Preview section */
.preview-section {
  background: #111;
  color: #fff;
  overflow: hidden;
}

.preview-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.preview-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.preview-headline {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.preview-text {
  margin: 0 0 24px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.preview-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.preview-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.preview-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.preview-visual {
  position: relative;
}

.preview-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 65%);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.preview-screen {
  position: relative;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.preview-screen-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-screen-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.preview-screen-body {
  padding: 24px;
}

.preview-metric-lg {
  margin-bottom: 24px;
}

.preview-metric-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.preview-metric-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.preview-metric-value-sm {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.preview-sparkline {
  margin-top: 16px;
  height: 32px;
  color: var(--accent);
}

.preview-sparkline-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw-line 2s ease 0.5s forwards;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

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

.preview-metric {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Explore card thumbs */
.explore-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.explore-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.explore-thumb {
  height: 100px;
  margin: -28px -24px 20px;
  border-bottom: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.explore-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.9) 100%);
}

.explore-thumb-1 { background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%); }
.explore-thumb-2 { background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 50%, #86efac 100%); }
.explore-thumb-3 { background: linear-gradient(135deg, #fafafa 0%, #e5e7eb 50%, #d1d5db 100%); }
.explore-thumb-4 { background: linear-gradient(135deg, #fefce8 0%, #fef08a 50%, #fde047 100%); }
.explore-thumb-5 { background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 50%, #fdba74 100%); }
.explore-thumb-6 { background: linear-gradient(135deg, #f5f3ff 0%, #ddd6fe 50%, #c4b5fd 100%); }

/* Decorative mini UI in thumbs */
.explore-thumb::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Stats glow */
.stats-bar {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.stat-glow {
  padding: 24px 16px;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-glow:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.1);
}

.stat-glow .stat-value {
  color: var(--accent);
}

/* Trust cards visual */
.trust-card-visual {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-card-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(34, 197, 94, 0.25);
}

.trust-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent);
}

/* CTA glow */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner-glow {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

/* Button hover lift */
.btn-primary {
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-copy .hero-headline,
  .hero-copy .hero-subheadline {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .hero-actions,
  .hero-copy .trust-strip {
    justify-content: center;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .float-badge-1 { left: 0; }
  .float-badge-2 { right: 0; }

  .dash-window {
    transform: none;
    animation: none;
  }

  .flow-diagram {
    flex-direction: column;
    gap: 12px;
  }

  .flow-connector,
  .flow-arrow {
    transform: rotate(90deg);
  }

  .preview-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dash-kpis {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-orb,
  .dash-window,
  .float-badge,
  .flow-arrow,
  .preview-glow,
  .preview-sparkline-path {
    animation: none;
  }

  .dash-bar {
    transform: scaleY(1);
  }

  .dash-progress-fill {
    animation: none;
  }
}

/* ── Inner page visual system ── */

.steps-visual {
  max-width: none;
  gap: 14px;
}

.step-card {
  padding: 20px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(34, 197, 94, 0.2);
}

.step-card .step-num {
  width: 44px;
  height: 44px;
  font-size: 1.125rem;
}

.content-block.reveal,
.content-callout.reveal {
  transition-delay: 0.05s;
}

.content-callout {
  background: linear-gradient(135deg, #fafafa 0%, rgba(34, 197, 94, 0.04) 100%);
  border-color: rgba(34, 197, 94, 0.15);
}

.pricing-card-glow {
  position: relative;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 24px 48px rgba(34, 197, 94, 0.1),
    0 0 0 1px rgba(34, 197, 94, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card-glow:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 12px rgba(0, 0, 0, 0.04),
    0 32px 64px rgba(34, 197, 94, 0.15),
    0 0 0 1px rgba(34, 197, 94, 0.15);
}

.pricing-card-glow .price {
  color: var(--accent);
}

.value-card-visual {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  background: var(--bg);
}

.value-card-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(34, 197, 94, 0.25);
}

.compare-table-visual {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.compare-table-visual th,
.compare-table-visual td {
  border-bottom-color: var(--border);
}

.compare-table-visual tbody tr {
  transition: background-color 0.15s ease;
}

.compare-table-visual tbody tr:hover {
  background: rgba(34, 197, 94, 0.04);
}

.compare-table-visual tbody tr:last-child td {
  background: rgba(34, 197, 94, 0.06);
  font-weight: 600;
}

.faq-category .faq-item {
  padding: 20px 24px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-category .faq-item:hover {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transform: translateX(4px);
}

.faq-category .faq-item:last-child {
  margin-bottom: 0;
}

.audience-grid-visual .audience-col {
  padding: 20px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-grid-visual .audience-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.audience-grid-visual .audience-col:first-child {
  border-color: rgba(34, 197, 94, 0.25);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.04) 0%, #fff 100%);
}

.page-cta-banner {
  margin-top: 32px;
  padding: 28px 24px;
  text-align: center;
  background: #111;
  color: #fff;
  border-radius: 16px;
  border-top: none;
  position: relative;
  overflow: hidden;
}

.page-cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-cta-banner p {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
}

.page-cta-banner .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  position: relative;
}

.page-cta-banner .btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.product-sidebar {
  padding: 20px 16px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.product-sidebar nav a.is-active {
  color: var(--accent);
  background: rgba(34, 197, 94, 0.08);
  padding-left: 10px;
  margin-left: -10px;
  padding-right: 10px;
  border-radius: 6px;
}

.product-main .showcase-frame {
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 24px 48px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.product-main .showcase-tab.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.product-stat {
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(135deg, #fafafa 0%, rgba(34, 197, 94, 0.05) 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.product-stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.product-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-secondary);
}

.legal-content .content-block {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  margin-bottom: 24px;
  transition: box-shadow 0.2s ease;
}

.legal-content .content-block:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

@media (max-width: 900px) {
  .page-hero-content {
    padding: 16px var(--container-pad) 24px;
  }

  .step-card {
    flex-direction: column;
  }

  .faq-category .faq-item:hover {
    transform: none;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* Pricing page layout */
.pricing-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 840px;
  margin: 0 auto var(--block-gap);
}

.pricing-layout .pricing-card {
  margin: 0;
}

.pricing-includes h2 {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 600;
}

.pricing-includes-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-includes-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-includes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

.pricing-includes-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pricing-includes-note a {
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-includes-note a:hover {
  color: var(--accent);
}

.page-compact.page-after-hero {
  padding-top: 20px;
  padding-bottom: 32px;
}

.compare-table th,
.compare-table td {
  padding: 10px 12px;
  font-size: 14px;
}

.faq-category .faq-item {
  padding: 14px 16px;
  margin-bottom: 8px;
}

.footer-grid {
  margin-bottom: 24px;
}

.explore-card {
  padding: 20px 18px;
}

.explore-thumb {
  height: 72px;
  margin: -20px -18px 14px;
}

.card {
  padding: 22px 20px;
}

.card-visual .card-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}

.stat-glow {
  padding: 16px 12px;
}

/* Purchase success page */
.page-hero--nav-only {
  padding-bottom: 0;
}

.success-body {
  background: var(--bg);
}

.success-page {
  padding: 56px var(--container-pad) 80px;
}

.success-page-inner {
  max-width: 560px;
  margin: 0 auto;
}

.success-hero {
  text-align: center;
  margin-bottom: 64px;
}

.success-check {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.success-title {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-primary);
}

.success-subtitle {
  margin: 0 auto 32px;
  max-width: 28rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.success-actions .btn {
  min-width: 11.5rem;
  padding: 14px 22px;
}

.success-help {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.success-help a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.success-help a:hover {
  color: var(--text-primary);
}

.success-steps {
  padding-top: 48px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.success-steps-title {
  margin: 0 0 28px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-align: center;
}

.success-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.success-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.success-step-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent);
  background: #dcfce7;
  border-radius: 50%;
}

.success-step-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-primary);
}

@media (max-width: 520px) {
  .success-page {
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .success-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .success-actions .btn {
    width: 100%;
    min-width: 0;
  }
}
