/* ==========================================================================
   00 Foundations and tokens
   ========================================================================== */

:root {
  --leo-navy: #131933;
  --leo-blue: #2f3657;
  --leo-page-bg: #2f3657;
  --leo-navy-gradient-top: #1a2140;
  --leo-navy-gradient: linear-gradient(180deg, #171d38 0%, #30385d 28%, #424b73 44%, #374067 60%, #202742 76%, #171d38 88%, #171d38 100%);
  --leo-pricing-navy-gradient: linear-gradient(180deg, #171d38 0%, #30385d 24%, #424b73 50%, #374067 66%, #202742 78%, #171d38 91%, #171d38 100%);
  --leo-cloud: #e1e9f4;
  --leo-snow: #f0f4f9;
  --leo-yellow: #fdc85e;
  --leo-ivory: #fbf7ed;
  --leo-white: #ffffff;
  --leo-ink: #11162d;
  --leo-muted: rgba(255, 255, 255, 0.68);
  --leo-ivory-muted: rgba(19, 25, 51, 0.62);
  --leo-line: rgba(251, 247, 237, 0.16);
  --leo-card-line: rgba(19, 25, 51, 0.12);
  --font-body: "Varela Round", Arial, sans-serif;
  --line-height-body: 1.55;
  --text-xs: 13px;
  --text-sm: 14px;
  --text-md: 15px;
  --text-lg: 16px;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --button-height: 48px;
  --button-height-small: 44px;
  --button-height-compact: 40px;
  --z-header: 10;
  --leo-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  --leo-shadow-menu: 0 18px 42px rgba(0, 0, 0, 0.28);
  --leo-shadow-cta: 0 12px 30px rgba(253, 200, 94, 0.32);
  --leo-shadow-cta-hover: 0 16px 36px rgba(253, 200, 94, 0.42);
  --leo-shadow-nav-cta: 0 8px 20px rgba(253, 200, 94, 0.18);
  --leo-avatar-ring: 1px solid var(--leo-yellow);
  --leo-avatar-glow: 0 0 0 3px rgba(253, 200, 94, 0.16);
  --leo-avatar-shadow: var(--leo-avatar-glow);
  --leo-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --leo-ease-snap: cubic-bezier(0.2, 0.8, 0.2, 1);
  --leo-motion-micro: 160ms;
  --leo-motion-card: 240ms;
  --leo-motion-reveal: 620ms;
  --page-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(64px, 6vw, 96px);
  --content-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--leo-white);
  background:
    var(--leo-navy-gradient),
    var(--leo-page-bg);
  line-height: var(--line-height-body);
}

.pricing-page {
  background:
    var(--leo-pricing-navy-gradient),
    var(--leo-page-bg);
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--leo-yellow);
  outline-offset: 4px;
}

/* ==========================================================================
   01 Shared chrome: header and footer
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px var(--page-x);
  border-bottom: 1px solid rgba(251, 247, 237, 0.12);
  background: rgba(19, 25, 51, 0.94);
  backdrop-filter: blur(18px);
  transition:
    padding var(--leo-motion-card) var(--leo-ease),
    background var(--leo-motion-card) ease,
    border-color var(--leo-motion-card) ease,
    box-shadow var(--leo-motion-card) ease;
}

.site-header.is-scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
  border-bottom-color: rgba(251, 247, 237, 0.1);
  background: rgba(19, 25, 51, 0.985);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 56px var(--page-x) 28px;
  border-top: 1px solid rgba(251, 247, 237, 0.12);
  color: rgba(255, 255, 255, 0.78);
  background: var(--leo-navy);
}

.footer-content,
.footer-bottom {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.footer-brand span,
.footer-bottom span {
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-sm);
}

.footer-logo {
  display: block;
  width: 132px;
  height: auto;
  margin-bottom: 12px;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--leo-motion-micro) ease, transform var(--leo-motion-micro) ease;
}

.footer-socials a:hover,
.footer-column a:hover {
  color: var(--leo-yellow);
  transform: translateX(2px);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.footer-column h3 {
  margin-bottom: 4px;
  color: var(--leo-white);
  font-size: var(--text-sm);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 247, 237, 0.12);
}

.brand {
  color: var(--leo-white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-lockup {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.brand-logo {
  width: 122px;
  height: auto;
}

.site-footer p {
  color: var(--leo-white);
  font-size: 22px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  flex: 0 1 auto;
  gap: 24px;
}

.header-actions {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: var(--button-height-compact);
  height: var(--button-height-compact);
  padding: 0;
  border: 1px solid rgba(251, 247, 237, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(251, 247, 237, 0.06);
  cursor: pointer;
  list-style: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  border-radius: var(--radius-pill);
  background: var(--leo-white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu summary:hover {
  border-color: rgba(253, 200, 94, 0.44);
  background: rgba(253, 200, 94, 0.1);
}

.mobile-menu[open] summary span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] summary span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  min-width: 190px;
  padding: 12px;
  border: 1px solid rgba(251, 247, 237, 0.14);
  border-radius: var(--radius-sm);
  background: var(--leo-navy);
  box-shadow: var(--leo-shadow-menu);
}

.mobile-menu[open] nav {
  display: grid;
}

.mobile-menu nav a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.mobile-menu nav a:hover {
  background: rgba(253, 200, 94, 0.1);
  color: var(--leo-white);
  transform: translateX(2px);
}

.main-nav a,
.site-footer a,
.nav-cta,
.login-link,
.lang-switch,
.text-link {
  text-decoration: none;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-md);
  white-space: nowrap;
  transition: color var(--leo-motion-micro) ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--leo-yellow);
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity var(--leo-motion-micro) ease,
    transform var(--leo-motion-micro) var(--leo-ease-snap);
  transform-origin: center;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--leo-white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav a:hover svg,
.main-nav a:focus-visible svg {
  color: var(--leo-yellow);
}

.main-nav svg,
.mobile-menu nav svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: currentColor;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  transition: color 160ms ease, transform 160ms ease;
}

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(253, 200, 94, 0.9);
  font-size: 15px;
  white-space: nowrap;
  transition: color 160ms ease, transform 160ms ease;
}

.login-link:hover {
  color: var(--leo-yellow);
  transform: translateY(-1px);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(251, 247, 237, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(251, 247, 237, 0.035);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms var(--leo-ease-snap),
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.lang-switch svg {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lang-switch:hover,
.lang-switch:focus-visible {
  border-color: rgba(253, 200, 94, 0.28);
  background: rgba(253, 200, 94, 0.07);
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

/* ==========================================================================
   02 Shared layout and type scale
   ========================================================================== */

.section {
  padding: var(--section-y) var(--page-x);
}

.section-content {
  max-width: var(--content-width);
  margin: 0 auto;
}

.hero-section {
  padding-top: 64px;
  padding-bottom: clamp(76px, 7vw, 112px);
}

.conversation-section .section-content {
  text-align: center;
}

.conversation-section h2,
.conversation-section p {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.eyebrow,
.supporting-text,
.section-note {
  color: var(--leo-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid rgba(47, 54, 87, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(251, 247, 237, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-xs);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leo-yellow);
  box-shadow: 0 0 0 0 rgba(253, 200, 94, 0.55);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(253, 200, 94, 0.5);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 0 8px rgba(253, 200, 94, 0);
    opacity: 0.72;
  }
}

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

h1,
h2,
h3 {
  color: var(--leo-white);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.6vw, 68px);
  line-height: 1.02;
}

h1 span {
  display: block;
}

.headline-secondary {
  font-size: 0.8em;
}

.fr-home-hero-title {
  font-size: clamp(44px, 4.4vw, 52px);
  line-height: 1.04;
}

.fr-home-hero-title .headline-secondary {
  font-size: 1em;
}

.fr-home-section-title {
  font-size: clamp(36px, 3.8vw, 48px);
}

.fr-home-section-title span {
  display: inline-block;
  font-size: 0.9em;
}

h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
}

.section-title-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.page-hero-content {
  display: grid;
  justify-items: center;
  max-width: 860px;
  text-align: center;
}

.page-hero-content h1 {
  max-width: 860px;
  margin-right: auto;
  margin-bottom: 14px;
  margin-left: auto;
  font-size: clamp(38px, 4.4vw, 54px);
  line-height: 1.06;
}

.page-hero-content p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 18px;
  line-height: 1.45;
}

.page-section-copy h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.08;
}

.page-section-copy p {
  font-size: 18px;
  line-height: 1.6;
}

/* ==========================================================================
   03 Skills page sections and mockups
   ========================================================================== */

.skills-page .site-header + main {
  background: var(--leo-white);
}

.skills-hero-section {
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(56px, 6vw, 84px);
  background: var(--leo-navy-gradient-top);
}

.skills-page .lead {
  max-width: 620px;
}

.skills-hero-content {
  display: grid;
  justify-items: center;
  max-width: 860px;
  text-align: center;
}

.leo-hero-avatar {
  --leo-avatar-shadow:
    var(--leo-avatar-glow),
    0 18px 42px rgba(0, 0, 0, 0.22);
  display: block;
  width: 82px;
  height: 82px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--leo-yellow);
  object-fit: cover;
}

.skills-hero-content h1 {
  max-width: 860px;
  margin-bottom: 14px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(38px, 4.4vw, 54px);
  line-height: 1.06;
}

.skills-hero-content p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.45;
}

.feature-mini-card,
.enrichment-card,
.action-card,
.feature-dashboard {
  border: 1px solid var(--leo-card-line);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: var(--leo-shadow);
}

.feature-mini-card h3,
.enrichment-card strong,
.action-card h3,
.dashboard-header strong,
.dashboard-metrics strong {
  color: var(--leo-navy);
}

.feature-step-section p,
.feature-mini-card p,
.enrichment-card p,
.action-card p,
.dashboard-metrics span {
  color: var(--leo-ivory-muted);
}

.feature-mini-card p,
.action-card p {
  margin-bottom: 0;
}

.feature-step-section {
  background: var(--leo-white);
}

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

.lead-discovery-section .feature-step-grid {
  grid-template-columns: minmax(0, 430px) minmax(0, 560px);
  justify-content: center;
  max-width: 1060px;
  gap: clamp(54px, 5vw, 84px);
}

.lead-discovery-section .feature-step-grid > div:last-child {
  max-width: 560px;
}

.feature-step-ivory {
  background: var(--leo-ivory);
}

.strategy-section {
  background: var(--leo-ivory);
}

.strategy-section .feature-step-grid h2 {
  color: var(--leo-navy);
}

.strategy-section .feature-step-grid > div:first-child > p {
  color: var(--leo-ivory-muted);
}

.feature-step-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.feature-step-grid-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
}

.feature-step-section h2,
.feature-section-heading h2 {
  color: var(--leo-navy);
}

.section-inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  margin: 6px 0 0;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--leo-yellow);
  color: var(--leo-navy);
  box-shadow: var(--leo-shadow-cta);
  font-size: var(--text-md);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform var(--leo-motion-micro) var(--leo-ease-snap),
    box-shadow var(--leo-motion-card) ease,
    background var(--leo-motion-micro) ease;
}

.section-inline-cta:hover {
  box-shadow: var(--leo-shadow-cta-hover);
  transform: translateY(-2px);
}

.section-inline-cta:active {
  transform: translateY(0) scale(0.985);
}

.strategy-card-grid,
.outreach-preview-grid {
  display: grid;
  gap: 18px;
}

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

.feature-mini-card {
  padding: 24px;
}

.strategy-brief-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border-color: var(--leo-card-line);
  background: linear-gradient(180deg, #f8fbff 0%, var(--leo-white) 100%);
}

.feature-mini-card p span,
.action-card .action-card-badge,
.dashboard-metrics span,
.dashboard-pipeline span {
  display: block;
  margin-bottom: 8px;
  color: rgba(19, 25, 51, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.brief-card-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(19, 25, 51, 0.1);
  background: var(--leo-navy);
}

.brief-card-header > span:not(.brief-card-title-icon) {
  margin-bottom: 0;
  color: var(--leo-white);
  font-size: 16px;
  font-weight: 700;
}

.brief-card-title-icon {
  display: grid;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  place-items: center;
  margin-bottom: 0;
  border-radius: 9px;
  background: rgba(253, 200, 94, 0.16);
  color: var(--leo-yellow);
}

.brief-card-title-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brief-field-list {
  display: grid;
  gap: 7px;
  padding: 10px 14px;
}

.brief-field-list div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(111, 134, 163, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.brief-field-list p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  min-height: 24px;
}

.brief-field-icon {
  display: grid;
  align-self: center;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-bottom: 0;
  border-radius: 0;
  background: transparent;
  color: var(--leo-navy);
  line-height: 1;
}

.brief-field-icon svg {
  display: block;
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brief-field-list p,
.brief-status {
  margin-bottom: 0;
}

.brief-field-list p strong {
  display: block;
  margin-bottom: 0;
  color: var(--leo-navy);
  font-size: 12px;
  line-height: 1.2;
}

.brief-field-list p span {
  display: block;
  margin-bottom: 0;
  color: var(--leo-ivory-muted);
  font-size: 12px;
  line-height: 1.2;
}

.brief-status {
  align-self: flex-start;
  margin: 0;
  padding: 5px 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--leo-yellow);
  color: var(--leo-navy);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.strategy-brief-card .brief-status {
  margin: 9px 14px 11px;
}

.strategy-brief-card::after {
  display: block;
  height: 1px;
  width: 100%;
  margin: auto 0 0;
  background: rgba(19, 25, 51, 0.1);
  content: "";
  order: 2;
}

.strategy-brief-card .brief-status {
  order: 3;
}

.feature-step-section .brief-status {
  color: var(--leo-navy);
}

.lead-card-stack {
  --lead-card-visible-width: 430px;
  --lead-card-visible-height: 415px;
  position: relative;
  width: 500px;
  max-width: 100%;
  height: 500px;
  margin-right: auto;
  margin-left: auto;
  transform: translate(-18px, -16px);
}

.lead-card-stack::before,
.lead-card-stack::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, var(--lead-card-visible-width));
  height: var(--lead-card-visible-height);
  border: 1px solid var(--leo-card-line);
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, var(--leo-white) 100%);
  box-shadow: 0 18px 46px rgba(19, 25, 51, 0.08);
  content: "";
  pointer-events: none;
}

.lead-card-stack::before {
  z-index: 1;
  transform: translate(-46%, -47%) rotate(1.8deg);
}

.lead-card-stack::after {
  z-index: 0;
  transform: translate(-42%, -44%) rotate(3.2deg);
  opacity: 0.7;
  box-shadow: 0 18px 46px rgba(19, 25, 51, 0.07);
}

.lead-stack-card {
  border: 1px solid var(--leo-card-line);
  border-radius: 14px;
  background: var(--leo-white);
  box-shadow: 0 22px 60px rgba(19, 25, 51, 0.14);
}

.lead-stack-card-main {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  gap: 0;
  width: var(--lead-card-visible-width);
  max-width: 100%;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, var(--leo-white) 100%);
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.lead-stack-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(19, 25, 51, 0.1);
  background: var(--leo-navy);
}

.lead-stack-title {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
}

.lead-stack-title strong {
  display: inline-block;
  color: var(--leo-white);
  font-size: 19px;
  line-height: 1.1;
}

.lead-stack-search-icon {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: rgba(253, 200, 94, 0.16);
  color: var(--leo-yellow);
}

.lead-stack-search-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-stack-stars {
  display: inline-block;
  color: var(--leo-yellow);
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1;
}

.lead-stack-body {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px 26px 18px 70px;
}

.lead-stack-prospect,
.lead-stack-company,
.lead-stack-analysis {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(111, 134, 163, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.lead-stack-prospect {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}

.lead-stack-prospect strong,
.lead-stack-company strong {
  display: block;
  color: var(--leo-navy);
  font-size: 17px;
  line-height: 1.15;
}

.lead-stack-prospect p,
.lead-stack-company p,
.lead-stack-analysis p {
  margin-bottom: 0;
  color: var(--leo-ivory-muted);
  font-size: 13px;
  line-height: 1.35;
}

.lead-stack-prospect a {
  display: inline-block;
  margin-top: 4px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.lead-stack-company {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.lead-stack-label {
  color: var(--leo-ivory-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-stack-company-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lead-stack-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.lead-stack-metrics span {
  min-height: 36px;
  padding: 10px 8px;
  border: 1px solid rgba(111, 134, 163, 0.16);
  border-radius: var(--radius-md);
  background: rgba(248, 251, 255, 0.86);
  color: var(--leo-navy);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.lead-stack-analysis {
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.94) 0%, rgba(248, 251, 255, 0.66) 100%);
}

.lead-stack-analysis div {
  margin-bottom: 7px;
}

.lead-stack-analysis strong {
  color: var(--leo-ivory-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-stack-body .lead-avatar-placeholder {
  width: 44px;
  height: 44px;
  font-size: 13px;
}

.lead-photo-placeholder,
.lead-logo-placeholder {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
}

.lead-photo-placeholder {
  border-radius: 50%;
  border: 2px solid var(--leo-white);
  box-shadow: 0 0 0 1px rgba(111, 134, 163, 0.24);
}

img.lead-photo-placeholder,
img.enrichment-photo-placeholder {
  display: block;
  object-fit: cover;
  object-position: 50% 30%;
}

img.lead-logo-placeholder {
  display: block;
  object-fit: contain;
  padding: 4px;
}

.lead-logo-placeholder {
  border: 1px solid rgba(111, 134, 163, 0.2);
  border-radius: 11px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
  box-shadow: 0 8px 18px rgba(19, 25, 51, 0.08);
}

.lead-stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 26px 22px;
  border-top: 1px solid rgba(19, 25, 51, 0.08);
  background: rgba(248, 251, 255, 0.74);
}

.lead-stack-actions button {
  flex: 1 1 0;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(111, 134, 163, 0.22);
  border-radius: 999px;
  background: var(--leo-white);
  color: var(--leo-navy);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
}

.lead-stack-actions button:first-child {
  border-color: transparent;
  background: var(--leo-yellow);
}

.enrichment-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(100%, 460px);
  justify-self: center;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #f8fbff 0%, var(--leo-white) 100%);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-metrics div {
  padding: 14px;
  border: 1px solid rgba(47, 54, 87, 0.1);
  border-radius: 8px;
  background: var(--leo-white);
}

.enrichment-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(19, 25, 51, 0.1);
  background: var(--leo-navy);
}

.enrichment-card-title {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.enrichment-card-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 0;
  border-radius: var(--radius-md);
  background: rgba(253, 200, 94, 0.16);
  color: var(--leo-yellow);
}

.enrichment-card-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.enrichment-card-title strong {
  display: block;
  color: var(--leo-white);
  font-size: 18px;
  line-height: 1.15;
}

.enrichment-card-body {
  display: grid;
  gap: 10px;
  padding: 14px 18px 18px;
}

.enriched-profile {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(111, 134, 163, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.enrichment-photo-placeholder {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 2px solid var(--leo-white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(111, 134, 163, 0.18);
}

.enriched-profile strong {
  display: block;
  margin-bottom: 2px;
  color: var(--leo-navy);
  font-size: 16px;
  line-height: 1.15;
}

.enriched-profile p {
  margin: 0;
  color: var(--leo-ivory-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.enriched-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.enriched-contact-grid span {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 7px;
  margin-bottom: 0;
  padding: 8px 10px;
  border: 1px solid rgba(111, 134, 163, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  color: var(--leo-blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.enriched-contact-grid svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  color: var(--leo-navy);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.enrichment-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.enrichment-insight-grid section {
  padding: 11px 12px;
  border: 1px solid rgba(111, 134, 163, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.enrichment-insight-grid h3 {
  margin-bottom: 9px;
  color: rgba(19, 25, 51, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.enrichment-insight-grid dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.enrichment-insight-grid div {
  display: grid;
  gap: 1px;
}

.enrichment-insight-grid dt {
  color: var(--leo-navy);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
}

.enrichment-insight-grid dd {
  margin: 0;
  color: var(--leo-ivory-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
}

.feature-section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.feature-section-footer {
  max-width: 760px;
  margin: 30px auto 0;
  text-align: center;
}

.feature-section-footer p {
  margin: 0 auto 18px;
  color: var(--leo-ivory-muted);
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.35;
}

.page-section-copy.feature-section-footer p {
  font-size: 18px;
  line-height: 1.6;
}

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

.nba-grid-vertical {
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
}

.nba-grid-vertical {
  align-content: center;
  gap: 10px;
  max-width: 390px;
  margin-right: auto;
  margin-left: auto;
}

.nba-grid-vertical .action-card {
  width: min(100%, 390px);
  margin-right: auto;
  margin-left: auto;
}

.nba-grid-vertical .action-card-secondary {
  width: min(90%, 340px);
}

.nba-grid-vertical .action-card-secondary .action-card-body {
  display: none;
}

.nba-grid-vertical .action-card-header {
  padding: 10px 12px;
}

.nba-grid-vertical .action-card-icon {
  width: 26px;
  height: 26px;
}

.nba-grid-vertical .action-card-title strong {
  font-size: 15px;
}

.nba-grid-vertical .action-card-body {
  padding: 10px 12px 12px;
}

.nba-grid-vertical .action-card-body section {
  padding: 8px 10px;
}

.nba-grid-vertical .action-card-footer {
  padding: 10px 12px 12px;
}

.action-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #f8fbff 0%, var(--leo-white) 100%);
}

.action-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(19, 25, 51, 0.1);
}

.action-card-title {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
}

.action-card-icon {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 0;
  border-radius: var(--radius-md);
  background: rgba(20, 184, 123, 0.1);
  color: #07825e;
}

.action-card-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action-card-title strong {
  color: var(--leo-navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

.action-card .action-card-badge,
.outreach-email-card .action-card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 0;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(253, 200, 94, 0.34);
  background: rgba(253, 200, 94, 0.12);
  color: var(--leo-yellow);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.action-card-body {
  display: grid;
  gap: 8px;
  padding: 12px 14px 14px;
}

.action-card-body section {
  padding: 10px 11px;
  border: 1px solid rgba(111, 134, 163, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.78);
}

.action-card-body h3 {
  margin-bottom: 6px;
  color: rgba(19, 25, 51, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.action-card-body p,
.action-card-body a {
  margin-bottom: 0;
  color: var(--leo-ivory-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.action-card-body p + p {
  margin-top: 2px;
}

.action-card-body a {
  display: inline-flex;
  margin-top: 3px;
  color: #2563eb;
  text-decoration: none;
}

.action-card-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 8px;
  margin-top: auto;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(19, 25, 51, 0.1);
}

.action-card-footer button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(111, 134, 163, 0.2);
  border-radius: 999px;
  background: var(--leo-white);
  color: var(--leo-navy);
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.05;
}

.action-card-footer button:first-child {
  border-color: transparent;
  background: var(--leo-yellow);
}

.skills-page .outreach-card {
  box-shadow: var(--leo-shadow);
}

.feature-dashboard {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #f8fbff 0%, var(--leo-white) 100%);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(19, 25, 51, 0.1);
  background: var(--leo-navy);
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.dashboard-title-icon,
.dashboard-section-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  margin-bottom: 0;
  background: rgba(20, 184, 123, 0.1);
  color: #07825e;
}

.dashboard-title-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  background: rgba(253, 200, 94, 0.16);
  color: var(--leo-yellow);
}

.dashboard-title-icon svg {
  width: 17px;
  height: 17px;
}

.dashboard-section-icon {
  width: 22px;
  height: 22px;
  border-radius: 8px;
}

.dashboard-section-icon svg {
  width: 13px;
  height: 13px;
}

.dashboard-title-icon svg,
.dashboard-section-icon svg {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-title strong {
  color: var(--leo-white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
}

.dashboard-body {
  display: grid;
  gap: 10px;
  padding: 14px 18px 18px;
}

.dashboard-panel {
  padding: 12px;
  border: 1px solid rgba(111, 134, 163, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.dashboard-panel h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(19, 25, 51, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.dashboard-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.dashboard-metrics strong {
  display: block;
  margin-bottom: 3px;
  color: var(--leo-navy);
  font-size: 22px;
  line-height: 1;
}

.dashboard-metrics div {
  padding: 10px;
  border: 1px solid rgba(111, 134, 163, 0.13);
  border-radius: var(--radius-md);
  background: rgba(248, 251, 255, 0.72);
}

.dashboard-metrics span {
  display: block;
  margin-bottom: 0;
  color: var(--leo-ivory-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.dashboard-pipeline {
  display: grid;
  gap: 10px;
}

.dashboard-pipeline div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.dashboard-pipeline div::after {
  grid-column: 1 / -1;
  display: block;
  width: var(--bar-width);
  height: 9px;
  border-radius: 999px;
  background: var(--leo-yellow);
  content: "";
}

.dashboard-pipeline span {
  margin-bottom: 0;
  color: var(--leo-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.dashboard-pipeline strong {
  color: var(--leo-navy);
  font-size: 12px;
  line-height: 1.1;
}

.dashboard-pipeline div {
  position: relative;
}

.dashboard-pipeline div::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 9px;
  border-radius: 999px;
  background: rgba(19, 25, 51, 0.08);
}

.skills-page .mode-card-grid {
  margin-top: 8px;
}

.skills-page .mode-loop-card {
  gap: 18px;
}

/* ==========================================================================
   04 Shared content primitives and CTAs
   ========================================================================== */

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.42;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 32px 0 0;
}

.page-hero-cta-row {
  justify-content: center;
  gap: 14px;
  margin: 0;
}

.page-hero-cta-row .button {
  gap: 10px;
}

.cta-supporting-text {
  display: grid;
  gap: 6px;
  max-width: 280px;
  margin: 0;
  color: var(--leo-muted);
  font-size: 14px;
  line-height: 1.35;
}

.cta-supporting-text span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-supporting-text svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: rgba(253, 200, 94, 0.9);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: var(--text-md);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform var(--leo-motion-micro) var(--leo-ease-snap),
    box-shadow var(--leo-motion-card) ease,
    background var(--leo-motion-micro) ease,
    border-color var(--leo-motion-micro) ease;
}

.button svg,
.login-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button svg {
  margin-left: 8px;
  transition: transform var(--leo-motion-micro) var(--leo-ease-snap);
}

.button .button-icon-leading {
  margin-right: 0;
  margin-left: 0;
}

.nav-cta {
  min-height: var(--button-height-compact);
  padding: 0 18px;
  white-space: nowrap;
  box-shadow: var(--leo-shadow-nav-cta);
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button:active,
.nav-cta:active {
  transform: translateY(0) scale(0.985);
}

.leo-hero-avatar,
.leo-message-cta-avatar img,
.chat-avatar img,
.about-hero-avatar {
  border: var(--leo-avatar-ring);
  box-shadow: var(--leo-avatar-shadow);
}

.primary:hover,
.nav-cta:hover {
  box-shadow: var(--leo-shadow-cta-hover);
}

.primary,
.nav-cta {
  background: var(--leo-yellow);
  color: var(--leo-navy);
  box-shadow: var(--leo-shadow-cta);
}

.nav-cta {
  box-shadow: var(--leo-shadow-nav-cta);
}

.secondary {
  border-color: var(--leo-line);
  background: rgba(251, 247, 237, 0.08);
  color: var(--leo-white);
}

.text-link,
.placeholder-card a {
  display: inline-block;
  color: var(--leo-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(253, 200, 94, 0.8);
  text-underline-offset: 5px;
  transition:
    color var(--leo-motion-micro) ease,
    text-decoration-color var(--leo-motion-micro) ease,
    transform var(--leo-motion-micro) var(--leo-ease-snap);
}

#built-for .placeholder-card:hover a,
.feature-card:hover a {
  text-decoration-color: var(--leo-yellow);
  transform: translateX(3px);
}

.placeholder,
.placeholder-card {
  border: 1px dashed var(--leo-card-line);
  border-radius: var(--radius-sm);
  background: var(--leo-ivory);
  box-shadow: var(--leo-shadow);
}

.placeholder-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

/* ==========================================================================
   05 Pricing page and plan components
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-plan-label {
  max-width: none;
  margin-bottom: 14px;
  color: var(--leo-blue);
  font-size: 14px;
  font-weight: 700;
}

.pricing-note {
  max-width: 920px;
  margin: 24px auto 0;
  text-align: center;
}

.pricing-note p {
  max-width: none;
  margin: 0;
}

.pricing-credit-note {
  font-size: 14px;
}

.billing-note.pricing-credit-billing-note {
  margin-top: 4px;
  color: var(--leo-muted);
  font-size: 14px;
}

.pricing-call-note {
  margin-top: 4px;
}

.pricing-note a {
  color: var(--leo-yellow);
  font-weight: 700;
  text-decoration-color: rgba(253, 200, 94, 0.62);
  text-underline-offset: 4px;
}

.pricing-plans-section {
  padding-top: clamp(44px, 5vw, 72px);
}

.pricing-plans-section .section-content {
  max-width: 1320px;
}

.pricing-page main > .section > .section-content > h2,
.pricing-page main > .section > .section-content > p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.pricing-page main > .section > .section-content > h2,
.pricing-page .pricing-toolbar h1,
.pricing-page .section-heading-row h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.pricing-section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 34px;
  text-align: center;
}

.pricing-page .page-section-copy h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.08;
}

.pricing-page .page-section-copy p {
  font-size: 18px;
  line-height: 1.6;
}

.pricing-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.pricing-toolbar h1 {
  max-width: 860px;
  margin-bottom: 14px;
  font-size: clamp(38px, 4.4vw, 54px);
  line-height: 1.06;
}

.pricing-page .pricing-toolbar h1 {
  font-size: clamp(38px, 4.4vw, 54px);
  line-height: 1.06;
}

.pricing-toolbar p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 18px;
  line-height: 1.45;
}

.pricing-page .pricing-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.pricing-page .section-heading-row {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 34px;
  text-align: center;
}

.pricing-page .pricing-toolbar > div:first-child,
.pricing-page .section-heading-row > div:first-child {
  display: grid;
  justify-items: center;
  width: 100%;
}

.pricing-page .pricing-toolbar > .page-hero-content {
  max-width: 860px;
}

.pricing-page .pricing-toolbar h1,
.pricing-page .pricing-toolbar p,
.pricing-page .section-heading-row h2,
.pricing-page .section-heading-row p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.pricing-page .pricing-toolbar .billing-control {
  justify-self: center;
}

.billing-control {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.billing-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(251, 247, 237, 0.14);
  border-radius: 8px;
  background: rgba(19, 25, 51, 0.36);
}

.billing-toggle button,
.billing-toggle span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
}

.billing-toggle button.is-active,
.billing-toggle span.is-active {
  background: var(--leo-yellow);
  color: var(--leo-navy);
}

.billing-toggle strong {
  font-size: 12px;
}

.billing-note {
  min-height: 18px;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.35;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--leo-motion-micro) ease,
    transform var(--leo-motion-micro) var(--leo-ease-snap);
}

.billing-note.is-empty {
  opacity: 0;
  transform: translateY(-3px);
}

.billing-note[hidden] {
  display: none;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  color: var(--leo-blue);
}

.popular-badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  background: var(--leo-yellow);
  color: var(--leo-navy);
  font-size: 12px;
  font-weight: 700;
}

.pricing-card h3 {
  color: var(--leo-navy);
  margin-bottom: 10px;
  font-size: 34px;
}

.pricing-card h3 span {
  color: var(--leo-ivory-muted);
  font-size: var(--text-md);
}

.pricing-card h3 [data-plan-price] {
  color: inherit;
  font-size: inherit;
}

.pricing-card p {
  color: var(--leo-blue);
  font-size: var(--text-md);
}

.pricing-card ul {
  margin-bottom: 24px;
  padding-left: 18px;
}

.pricing-card li {
  color: var(--leo-blue);
  font-size: var(--text-sm);
  line-height: 1.42;
}

.pricing-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height-small);
  margin-top: auto;
  border-radius: var(--radius-sm);
  background: var(--leo-navy);
  color: var(--leo-white);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  transition:
    background var(--leo-motion-micro) ease,
    color var(--leo-motion-micro) ease,
    transform var(--leo-motion-micro) var(--leo-ease-snap),
    box-shadow var(--leo-motion-micro) ease;
}

.custom-plans-section {
  padding-top: clamp(44px, 5vw, 72px);
}

.comparison-note {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.placeholder-card:hover {
  border-color: rgba(253, 200, 94, 0.42);
  box-shadow: 0 28px 70px rgba(19, 25, 51, 0.24);
  transform: translateY(-3px);
}

/* ==========================================================================
   06 Marketing content cards and media
   ========================================================================== */

.persona-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  border: 1px solid rgba(19, 25, 51, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--leo-motion-card) ease, box-shadow var(--leo-motion-card) ease;
}

.persona-card-media picture,
.custom-solution-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.persona-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms var(--leo-ease), filter 320ms ease;
}

.persona-card-image-founder {
  object-position: 40% center;
  transform: scale(1.035);
}

.persona-card-image-sdr {
  object-position: center center;
  transform: scale(1.02);
}

.placeholder-card:hover .persona-card-image-founder {
  transform: scale(1.07);
}

.placeholder-card:hover .persona-card-image-sdr {
  transform: scale(1.055);
}

.placeholder-card:hover .persona-card-media {
  border-color: rgba(253, 200, 94, 0.5);
  box-shadow: 0 18px 36px rgba(19, 25, 51, 0.13);
}

.use-cases-page .site-header + main {
  background: var(--leo-white);
}

.use-cases-hero-section {
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(56px, 6vw, 84px);
  background: var(--leo-navy-gradient-top);
}

.use-cases-hero-content {
  max-width: 860px;
}

.use-cases-hero-content h1 {
  max-width: 860px;
}

.use-cases-hero-content .lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.use-cases-hero-content .cta-row {
  justify-content: center;
}

.use-case-section {
  background: var(--leo-white);
}

.use-case-section-salespeople {
  background: var(--leo-ivory);
}

.use-case-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.use-case-grid-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.use-case-copy .eyebrow {
  border-color: rgba(19, 25, 51, 0.12);
  background: rgba(253, 200, 94, 0.14);
  color: var(--leo-blue);
}

.use-case-copy h2 {
  color: var(--leo-navy);
}

.use-case-copy p {
  max-width: 660px;
  color: var(--leo-ivory-muted);
  font-size: 18px;
  line-height: 1.65;
}

.use-case-copy .section-inline-cta {
  gap: 10px;
}

.use-case-copy .section-inline-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.use-case-visual-card {
  border-style: solid;
  overflow: hidden;
}

.use-case-visual-card .persona-card-media {
  margin-bottom: 22px;
}

.use-case-persona-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid rgba(253, 200, 94, 0.36);
  border-radius: var(--radius-pill);
  background: rgba(253, 200, 94, 0.13);
  color: var(--leo-navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.use-case-action-stack span {
  border: 1px solid rgba(19, 25, 51, 0.09);
  border-radius: var(--radius-sm);
  background: var(--leo-white);
}

.use-case-action-stack svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--leo-yellow);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.use-case-action-stack {
  display: grid;
  gap: 12px;
}

.use-case-action-stack span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: var(--leo-blue);
  font-size: 15px;
  font-weight: 700;
}

.use-cases-final-cta {
  background: var(--leo-navy-gradient-top);
}

.use-cases-final-cta .leo-message-cta {
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.use-cases-final-cta .leo-message-cta:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.use-cases-final-cta .leo-message-cta h2 {
  margin-bottom: 26px;
}

.use-cases-final-cta .leo-message-cta-note {
  margin-top: 22px;
}

.use-case-detail-overview-section,
.use-case-detail-step-section {
  background: var(--leo-white);
}

.use-case-detail-step-ivory {
  background: var(--leo-ivory);
}

.use-case-detail-testimonials-section {
  background: var(--leo-white);
}

.use-case-detail-testimonials-section .section-title-centered {
  color: var(--leo-navy);
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.08;
}

.use-case-detail-overview-grid,
.use-case-detail-step-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.use-case-detail-step-grid-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

@media (min-width: 961px) {
  .salespeople-use-case-page .sales-step-copy-left {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  }

  .salespeople-use-case-page .sales-step-copy-left .use-case-detail-step-copy {
    order: 1;
  }

  .salespeople-use-case-page .sales-step-copy-left > :not(.use-case-detail-step-copy) {
    order: 2;
  }

  .salespeople-use-case-page .sales-step-mockup-left {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  }

  .salespeople-use-case-page .sales-step-mockup-left .use-case-detail-step-copy {
    order: 2;
  }

  .salespeople-use-case-page .sales-step-mockup-left > :not(.use-case-detail-step-copy) {
    order: 1;
  }
}

.use-case-detail-overview-copy p,
.use-case-detail-step-copy p {
  max-width: 660px;
  color: var(--leo-ivory-muted);
}

.use-case-detail-overview-copy h2,
.use-case-detail-step-copy h2 {
  color: var(--leo-navy);
}

.use-case-detail-step-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(253, 200, 94, 0.36);
  border-radius: var(--radius-pill);
  background: rgba(253, 200, 94, 0.13);
  color: var(--leo-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.use-case-system-card,
.business-context-card {
  border-style: solid;
}

.use-case-system-card {
  display: grid;
  gap: 22px;
}

.use-case-system-card h3 {
  margin: 0;
  color: var(--leo-navy);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.08;
  letter-spacing: 0;
}

.use-case-system-list {
  display: grid;
  gap: 12px;
}

.use-case-system-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(19, 25, 51, 0.09);
  border-radius: var(--radius-sm);
  background: var(--leo-white);
  color: var(--leo-blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.use-case-system-list svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--leo-yellow);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-context-card {
  overflow: hidden;
}

.placeholder-card.feature-mini-card.strategy-brief-card.business-context-card {
  padding: 0;
}

.business-context-field-list {
  grid-template-columns: 1fr;
}

.business-context-field-list > .business-context-linkedin-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.business-context-inline-field {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 11px 12px;
  border: 1px solid rgba(111, 134, 163, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.business-context-inline-field p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  min-height: 24px;
  margin: 0;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: rgba(253, 200, 94, 0.18);
  color: var(--leo-navy);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.card-title-row-between {
  justify-content: space-between;
  gap: 18px;
}

.card-title-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.card-title-row .feature-icon {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.card-title-row h3 {
  margin-bottom: 0;
}

.plan-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(253, 200, 94, 0.38);
  border-radius: 999px;
  background: rgba(253, 200, 94, 0.22);
  color: var(--leo-navy);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.placeholder-card p {
  color: var(--leo-blue);
  font-size: 16px;
}

.placeholder-card > .placeholder {
  width: 100%;
  margin-top: 22px;
  margin-bottom: 22px;
  box-shadow: none;
}

.placeholder-card > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 4px;
}

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  margin-top: 32px;
  padding: 28px;
  color: var(--leo-ivory-muted);
  text-align: center;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  margin-top: 32px;
}

.two-column > * {
  min-width: 0;
}

.section-split {
  align-items: center;
}

.hero-section .two-column,
.section-content.two-column {
  margin-top: 0;
}

.feature-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.feature-grid {
  gap: 16px;
}

.feature-grid .placeholder-card {
  min-height: 210px;
}

.feature-card {
  border: 1px solid rgba(253, 200, 94, 0.48);
  background: #1a2140;
  box-shadow: 0 18px 42px rgba(19, 25, 51, 0.2);
  transition:
    border-color var(--leo-motion-card) ease,
    box-shadow var(--leo-motion-card) ease,
    transform var(--leo-motion-card) var(--leo-ease);
}

.home-feature-link-card {
  height: 184px;
  padding: 24px;
  background: var(--leo-navy);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.feature-grid .home-feature-link-card {
  min-height: 0;
}

.home-feature-link-card:focus-visible {
  outline: 3px solid rgba(253, 200, 94, 0.78);
  outline-offset: 4px;
}

.feature-card:hover {
  border-color: rgba(253, 200, 94, 0.78);
  box-shadow: 0 26px 58px rgba(19, 25, 51, 0.3);
}

#features .home-feature-link-card {
  border-color: rgba(19, 25, 51, 0.12);
  background: var(--leo-ivory);
  box-shadow: var(--leo-shadow);
}

#features .home-feature-link-card:hover {
  border-color: rgba(253, 200, 94, 0.5);
  box-shadow: 0 28px 70px rgba(19, 25, 51, 0.24);
}

#features .home-feature-link-card .feature-icon {
  background: rgba(253, 200, 94, 0.2);
  color: #d69500;
}

#features .home-feature-link-card h3 {
  color: var(--leo-navy);
}

#features .home-feature-link-card p {
  color: var(--leo-blue);
}

.feature-card:hover .feature-icon,
.mode-loop-card:hover .feature-icon {
  background: rgba(253, 200, 94, 0.24);
  transform: translateY(-2px);
}

.feature-card .feature-icon {
  background: rgba(253, 200, 94, 0.16);
  color: var(--leo-yellow);
}

.placeholder-card.feature-card h3 {
  color: var(--leo-yellow);
  font-size: 20px;
  line-height: 1.15;
}

.feature-card p {
  color: rgba(251, 247, 237, 0.88);
}

.feature-card a {
  color: var(--leo-yellow);
  text-decoration-color: rgba(253, 200, 94, 0.66);
}

.feature-card:hover a {
  color: #ffda86;
  text-decoration-color: rgba(253, 200, 94, 0.95);
}

.feature-style-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.feature-style-heading .feature-icon {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.feature-style-heading h3 {
  margin-bottom: 0;
}

.home-modes-heading {
  display: grid;
  justify-items: center;
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-modes-heading h2 {
  margin-bottom: 14px;
}

.home-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.home-mode-card {
  display: flex;
  flex-direction: column;
}

.home-mode-media {
  margin-bottom: 20px;
}

.home-mode-image {
  object-position: center;
  transform: none;
}

.home-mode-card:hover .home-mode-image {
  transform: scale(1.035);
}

.home-mode-badge-row,
.persona-tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.home-mode-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(253, 200, 94, 0.42);
  border-radius: var(--radius-pill);
  background: rgba(253, 200, 94, 0.18);
  color: var(--leo-navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.home-mode-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(19, 25, 51, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(19, 25, 51, 0.04);
  color: var(--leo-blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.home-mode-badge svg,
.home-mode-plan-badge svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-mode-card h3 {
  margin-bottom: 12px;
  color: var(--leo-navy);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.1;
}

.home-mode-card p {
  margin: 0 0 16px;
  color: var(--leo-blue);
  font-size: 17px;
}

.mode-loop-card {
  gap: 0;
  overflow: hidden;
  padding: 0;
  padding-bottom: 22px;
  border-style: solid;
  border-color: var(--leo-card-line);
  background: linear-gradient(180deg, #f8fbff 0%, var(--leo-white) 100%);
}

.mode-loop-card:hover {
  border-color: rgba(253, 200, 94, 0.42);
}

.mode-card-grid {
  align-items: start;
  margin-top: 0;
}

.mode-column {
  display: grid;
  align-content: start;
  gap: 26px;
  min-width: 0;
}

.mode-column h2 {
  margin-bottom: 0;
}

.mode-loop-card > p,
.mode-loop-card .mode-timeline,
.mode-loop-card .mode-best-fit,
.mode-loop-card > a {
  margin-right: 24px;
  margin-left: 24px;
}

.mode-loop-card > p {
  margin-top: 18px;
  margin-bottom: 0;
}

.control-variant-section .control-mode-statement {
  color: var(--leo-navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}

.control-variant-section .control-mode-statement strong {
  color: inherit;
  font-weight: 800;
}

.mode-card-header {
  margin-bottom: 0;
  padding: 14px 18px;
  background: var(--leo-navy);
}

.placeholder-card .mode-card-header h3 {
  color: var(--leo-white);
}

.mode-card-header h3 span {
  display: block;
  color: var(--leo-white);
  font-size: 0.62em;
  font-weight: 800;
  text-transform: uppercase;
}

.mode-card-header .feature-icon {
  background: rgba(253, 200, 94, 0.16);
  color: var(--leo-yellow);
}

.mode-loop-card .feature-icon {
  background: rgba(253, 200, 94, 0.16);
  color: var(--leo-yellow);
}

.mode-loop-card .plan-badge {
  border-color: rgba(253, 200, 94, 0.34);
  background: rgba(253, 200, 94, 0.12);
  color: var(--leo-yellow);
  font-size: 12px;
  font-weight: 800;
}

.mode-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 14px 0 18px;
  padding: 0 52px 0 0;
  list-style: none;
}

.mode-timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 16px;
  bottom: 32px;
  width: 36px;
  border: 2px solid rgba(207, 154, 55, 0.58);
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.mode-timeline::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 40px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid rgba(207, 154, 55, 0.58);
  border-left: 2px solid rgba(207, 154, 55, 0.58);
  transform: rotate(45deg);
}

.mode-loop-card .mode-timeline::before,
.mode-loop-card .mode-timeline::after {
  content: none;
}

.mode-loop-card .mode-timeline {
  padding-right: 0;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 54px;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(19, 25, 51, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(19, 25, 51, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mode-loop-card:hover .timeline-step {
  transform: translateX(2px);
}

.timeline-step + .timeline-step {
  margin-top: 9px;
}

.timeline-step + .timeline-step::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 33px;
  width: 2px;
  height: 9px;
  background: rgba(207, 154, 55, 0.58);
}

.timeline-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.timeline-step-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-step strong {
  color: var(--leo-navy);
  font-size: 15px;
  line-height: 1.25;
}

.leo-timeline-step {
  border-color: rgba(253, 200, 94, 0.38);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(19, 25, 51, 0.08);
}

.leo-timeline-step strong {
  color: var(--leo-navy);
}

.leo-timeline-step .timeline-step-icon {
  background: rgba(253, 200, 94, 0.2);
  color: #b7791f;
}

.you-timeline-step {
  border-color: rgba(111, 134, 163, 0.18);
  background: #f3f4f6;
}

.you-timeline-step .timeline-step-icon {
  background: rgba(111, 134, 163, 0.12);
  color: #6f86a3;
}

.copilot-timeline .you-timeline-step {
  box-shadow: 0 12px 30px rgba(19, 25, 51, 0.1), inset 0 0 0 1px rgba(74, 91, 141, 0.08);
}

.autopilot-timeline .timeline-step {
  grid-template-columns: 48px minmax(0, 1fr);
}

.mode-best-fit {
  margin: 0 0 20px;
  padding: 2px 0 2px 14px;
  border-left: 3px solid var(--leo-yellow);
  background: transparent;
  color: var(--leo-blue);
  font-size: 15px;
  line-height: 1.45;
}

.mode-loop-card > .mode-best-fit {
  margin-top: 0;
  margin-bottom: 20px;
}

.mode-loop-card > a {
  margin-top: 0;
}

.mode-best-fit strong {
  color: var(--leo-navy);
}

.testimonial-grid .review-card {
  display: flex;
  flex-direction: column;
  max-width: none;
  min-height: 230px;
  margin: 0;
}

.testimonial-grid .review-author {
  margin-top: 0;
}

.review-card {
  max-width: 420px;
  padding: 22px;
  border: 1px solid rgba(19, 25, 51, 0.08);
  border-radius: 3px;
  background: var(--leo-white);
  box-shadow: 0 14px 34px rgba(19, 25, 51, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.review-card:hover {
  border-color: rgba(19, 25, 51, 0.14);
  box-shadow: 0 18px 44px rgba(19, 25, 51, 0.16);
  transform: translateY(-3px);
}

.review-stars {
  order: 2;
  margin: 0 0 12px;
  color: #f5b301;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.review-card p {
  order: 3;
  margin-bottom: 22px;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.45;
}

.review-author {
  display: flex;
  order: 1;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(19, 25, 51, 0.08);
}

.review-author picture {
  display: flex;
  flex: 0 0 auto;
}

.review-avatar {
  display: block;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(19, 25, 51, 0.1);
  border-radius: 50%;
  background: rgba(253, 200, 94, 0.22);
  object-fit: cover;
}

.review-author strong {
  display: block;
  color: #111827;
  font-size: 13px;
  line-height: 1.2;
}

.review-author span {
  display: block;
  margin-top: 3px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.25;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 38px 0 32px;
}

.steps article {
  padding: 24px;
  border: 1px solid var(--leo-card-line);
  border-radius: 8px;
  background: var(--leo-ivory);
}

.placeholder-card h3,
.steps h3 {
  color: var(--leo-navy);
}

.steps p {
  color: var(--leo-blue);
}

.steps h3 {
  font-size: 18px;
}

.steps p {
  font-size: 15px;
}

blockquote {
  margin: 0;
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--leo-ivory-muted);
  font-size: 14px;
  font-style: normal;
}

.final-cta {
  padding-top: clamp(72px, 7vw, 108px);
  padding-bottom: clamp(72px, 7vw, 108px);
  text-align: center;
}

.final-cta .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2,
.final-cta p {
  color: var(--leo-white);
}

.leo-message-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  padding: clamp(32px, 5vw, 46px) clamp(42px, 7vw, 76px);
  border: 1px solid rgba(253, 200, 94, 0.26);
  border-radius: var(--radius-sm);
  background: var(--leo-ivory);
  box-shadow: 0 22px 56px rgba(19, 25, 51, 0.2);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.leo-message-cta:hover {
  border-color: rgba(253, 200, 94, 0.56);
  box-shadow: 0 28px 70px rgba(19, 25, 51, 0.26);
  transform: translateY(-2px);
}

.leo-message-cta-navy {
  border-color: rgba(253, 200, 94, 0.46);
  background: var(--leo-navy);
  box-shadow: 0 24px 60px rgba(19, 25, 51, 0.34);
}

.final-cta .leo-message-cta {
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.final-cta .leo-message-cta:hover,
.has-reveal .final-cta .leo-message-cta.is-visible:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.leo-message-cta-agent {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}

.leo-message-cta-avatar {
  position: relative;
  display: block;
  width: 82px;
  height: 82px;
}

.leo-message-cta-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.leo-message-cta h2 {
  max-width: 620px;
  color: var(--leo-navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.leo-message-cta-navy h2 {
  color: var(--leo-white);
}

.leo-message-cta p {
  max-width: 590px;
  margin: 18px 0 28px;
  color: var(--leo-blue);
  font-size: 18px;
  line-height: 1.6;
}

.leo-message-cta-navy p {
  color: rgba(251, 247, 237, 0.84);
}

.leo-message-cta .button {
  margin-top: 0;
}

.leo-message-cta .leo-message-cta-note {
  margin: 18px 0 0;
  color: rgba(47, 54, 87, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.leo-message-cta-navy .leo-message-cta-note {
  color: rgba(251, 247, 237, 0.66);
}

.final-cta-note {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.final-cta-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.final-cta-note svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skills-final-cta {
  background: var(--leo-navy-gradient-top);
}

.skills-final-cta .leo-message-cta {
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.skills-final-cta .leo-message-cta:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.skills-final-cta .leo-message-cta h2 {
  margin-bottom: 26px;
}

.skills-final-cta .leo-message-cta .button {
  margin-bottom: 22px;
}

.skills-final-cta .leo-message-cta-note {
  margin-top: 0;
}

.pricing-final-cta {
  background: transparent;
}

.pricing-final-cta .leo-message-cta {
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.has-reveal .pricing-final-cta .leo-message-cta {
  opacity: 1;
  transform: none;
}

.pricing-final-cta .leo-message-cta:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.pricing-final-cta .leo-message-cta h2 {
  margin-bottom: 0;
}

.pricing-final-cta .leo-message-cta .button {
  margin-top: 0;
}

.pricing-final-cta .leo-message-cta-note {
  max-width: 620px;
  margin: 18px 0 28px;
  color: rgba(251, 247, 237, 0.84);
  font-size: 18px;
  line-height: 1.6;
}

ul {
  margin: 0;
  padding-left: 20px;
  color: var(--leo-blue);
}

li + li {
  margin-top: 8px;
}

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

.custom-solution-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(19, 25, 51, 0.11);
  border-radius: 8px;
  background: var(--leo-ivory);
  box-shadow: 0 18px 42px rgba(19, 25, 51, 0.14);
  transition:
    border-color var(--leo-motion-micro) ease,
    box-shadow var(--leo-motion-micro) ease,
    transform var(--leo-motion-micro) var(--leo-ease-snap);
}

.custom-solution-card:hover {
  border-color: rgba(253, 200, 94, 0.42);
  box-shadow: 0 28px 70px rgba(19, 25, 51, 0.24);
  transform: translateY(-3px);
}

.custom-solution-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: -10px -10px 24px;
  border-radius: 8px;
  background: var(--leo-navy);
}

.custom-solution-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms var(--leo-ease-snap);
}

.custom-solution-card:hover .custom-solution-image {
  transform: scale(1.025);
}

.custom-solution-card h3 {
  color: var(--leo-navy);
}

.custom-solution-card p {
  color: var(--leo-blue);
  font-size: 15px;
}

.custom-solution-card .pricing-card-cta {
  align-self: flex-start;
  min-width: 150px;
  padding-right: 18px;
  padding-left: 18px;
}

.section-simple-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 28px;
  text-align: center;
}

.section-simple-cta p {
  max-width: none;
  margin: 0;
  color: var(--leo-white);
  font-size: 18px;
  font-weight: 800;
}

.faq-accordion {
  max-width: 900px;
  margin: 24px auto 0;
  border: 1px solid rgba(19, 25, 51, 0.12);
  border-radius: var(--radius-sm);
  background: var(--leo-ivory);
  box-shadow: 0 18px 46px rgba(19, 25, 51, 0.1);
}

.faq-accordion-item {
  border-bottom: 1px solid rgba(19, 25, 51, 0.1);
}

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

.faq-accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--leo-navy);
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  transition:
    background var(--leo-motion-micro) ease,
    color var(--leo-motion-micro) ease;
}

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

.faq-accordion-item summary:hover,
.faq-accordion-item summary:focus-visible {
  background: rgba(253, 200, 94, 0.08);
}

.faq-accordion-item summary:focus-visible {
  outline: 2px solid rgba(253, 200, 94, 0.72);
  outline-offset: -2px;
}

.faq-accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(19, 25, 51, 0.1);
  border-radius: 50%;
  background: var(--leo-white);
  color: var(--leo-navy);
  transition:
    background var(--leo-motion-micro) ease,
    border-color var(--leo-motion-micro) ease,
    transform var(--leo-motion-micro) var(--leo-ease-snap);
}

.faq-accordion-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-accordion-item[open] summary {
  background: rgba(253, 200, 94, 0.08);
}

.faq-accordion-item[open] .faq-accordion-icon {
  border-color: rgba(253, 200, 94, 0.4);
  background: rgba(253, 200, 94, 0.2);
  transform: rotate(180deg);
}

.faq-accordion-answer {
  padding: 0 22px 20px;
}

.faq-accordion-answer p {
  max-width: 740px;
  margin: 0;
  color: var(--leo-blue);
  font-size: var(--text-md);
  line-height: 1.65;
}

/* ==========================================================================
   07 Comparison tables
   ========================================================================== */

.design-comparison-table-wrap {
  overflow-x: auto;
  max-width: 1160px;
  margin: 24px auto 0;
  padding: 0;
  border: 1px solid rgba(253, 200, 94, 0.2);
  border-radius: var(--radius-sm);
  background: var(--leo-navy);
  box-shadow: 0 24px 64px rgba(5, 10, 30, 0.24);
}

.design-comparison-table {
  width: 100%;
  min-width: 760px;
  table-layout: fixed;
  border-collapse: collapse;
  color: var(--leo-white);
  font-size: var(--text-sm);
}

.design-comparison-table td {
  padding: 15px 10px;
  border: 0;
  text-align: center;
}

.design-comparison-table td:first-child {
  width: 30%;
  padding-left: 24px;
  color: var(--leo-white);
  text-align: left;
}

.design-comparison-table td:nth-child(2) {
  width: 16%;
}

.design-comparison-table td:nth-child(n+3) {
  width: 13.5%;
}

.design-comparison-table td:last-child {
  padding-right: 24px;
}

.design-comparison-table tbody td {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.design-comparison-table td + td {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.design-comparison-table tbody tr {
  transition: background var(--leo-motion-micro) ease;
}

.design-comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.045);
}

.design-comparison-table .comparison-group-row td {
  padding-top: 18px;
  padding-bottom: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(253, 200, 94, 0.06);
  color: var(--leo-yellow);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.design-comparison-table .comparison-group-row td:not(:first-child) {
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
}

.pricing-page .design-comparison-table .comparison-group-row td:not(:first-child) {
  color: var(--leo-yellow);
}

.pricing-page .comparison-credit-pill {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.pricing-page .comparison-credit-pill-strong {
  background: rgba(255, 255, 255, 0.14);
}

.comparison-group-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.comparison-group-label svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-credit-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(253, 200, 94, 0.26);
  border-radius: 999px;
  background: rgba(253, 200, 94, 0.11);
  color: var(--leo-yellow);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.comparison-credit-pill-strong {
  background: rgba(253, 200, 94, 0.2);
}

.design-comparison-table .comparison-group-row:first-child td {
  padding-top: 15px;
  border-top: 0;
}

.design-comparison-table .comparison-group-row:hover {
  background: transparent;
}

.comparison-check,
.comparison-cross,
.comparison-empty,
.comparison-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.comparison-check,
.comparison-cross {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.comparison-check {
  background: rgba(38, 196, 111, 0.13);
  color: #35d07f;
}

.comparison-cross {
  background: rgba(255, 90, 90, 0.13);
  color: #ff6b6b;
}

.comparison-check svg,
.comparison-cross svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-empty {
  color: rgba(255, 255, 255, 0.32);
  font-weight: 700;
}

.comparison-custom {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}

/* ==========================================================================
   08 Pricing UI variants
   ========================================================================== */

.pricing-card-variant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  margin-top: 28px;
}

.pricing-card-variant h4 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.pricing-card-ui {
  overflow: hidden;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  transition:
    border-color var(--leo-motion-card) ease,
    box-shadow var(--leo-motion-card) ease,
    transform var(--leo-motion-card) var(--leo-ease);
}

.pricing-card-ui-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.pricing-card-ui-header .popular-badge {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.pricing-mode-badge {
  flex: 0 0 auto;
  margin-left: 0;
  padding: 5px 8px;
  font-size: 12px;
  white-space: nowrap;
}

.pricing-card-ui h3 {
  margin-bottom: 0;
  font-size: 38px;
  line-height: 1;
  white-space: nowrap;
}

.pricing-card-ui-copy {
  margin: 14px 0 0;
}

.pricing-card-ui-clean {
  padding: 26px;
  border-color: rgba(253, 200, 94, 0.82);
  background: var(--leo-white);
  box-shadow: 0 18px 42px rgba(19, 25, 51, 0.14);
}

.pricing-card-ui-clean .pricing-metric-grid {
  margin-top: 24px;
}

.pricing-card-ui-clean .pricing-metric-grid div,
.pricing-card-ui-clean .pricing-feature-list li.feature-rollup {
  background: var(--leo-ivory);
}

.pricing-card-refined {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 6px;
  border-color: rgba(19, 25, 51, 0.12);
  background: var(--leo-white);
  box-shadow:
    0 0 0 1px rgba(19, 25, 51, 0.04),
    0 20px 48px rgba(19, 25, 51, 0.14);
}

.pricing-card-refined .pricing-card-summary-panel {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(19, 25, 51, 0.1);
  border-radius: 8px;
  background: #fbfaf7;
}

.pricing-card-refined .pricing-card-expanded-header {
  display: block;
  padding: 0;
  border-bottom: 0;
  background: transparent;
}

.pricing-plan-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.pricing-card-refined .pricing-plan-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 13px;
  margin-bottom: 0;
  border: 1px solid rgba(19, 25, 51, 0.16);
  border-radius: 999px;
  background: var(--leo-navy);
  color: var(--leo-white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.pricing-card-refined h3 {
  font-size: 42px;
  line-height: 0.98;
}

.pricing-card-refined h3 span:last-child {
  color: rgba(19, 25, 51, 0.6);
  font-size: 16px;
  font-weight: 700;
}

.pricing-card-refined .pricing-card-ui-copy {
  margin-top: 14px;
  color: rgba(19, 25, 51, 0.68);
  font-size: 16px;
  line-height: 1.35;
}

.pricing-card-refined .pricing-card-stat-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
}

.pricing-card-refined .pricing-card-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
  padding: 9px 15px;
  border: 1px solid rgba(19, 25, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.pricing-card-refined .pricing-card-stat-label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.pricing-card-refined .pricing-card-stat-row strong {
  color: var(--leo-navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.pricing-card-refined .pricing-card-stat-value {
  flex: 0 0 auto;
  color: var(--leo-navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: right;
}

.pricing-card-refined .pricing-card-stat-period {
  color: rgba(19, 25, 51, 0.52);
  font-size: 13px;
  font-weight: 700;
}

.pricing-card-refined .pricing-card-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--leo-navy);
}

.pricing-card-refined .pricing-card-stat-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card-refined .pricing-card-included-block {
  grid-column: 1 / -1;
  padding: 24px 26px 22px;
}

.pricing-card-refined .pricing-card-included-block .pricing-feature-list {
  gap: 8px;
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
}

.pricing-card-refined .pricing-card-included-block .pricing-feature-list li {
  color: var(--leo-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.pricing-card-refined .pricing-card-included-block .pricing-feature-list li.feature-rollup {
  margin-left: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--leo-navy);
  font-weight: 800;
}

.pricing-card-refined .pricing-inline-emphasis {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.pricing-card-refined .pricing-card-cta {
  margin: auto 26px 24px;
  background: var(--leo-yellow);
  color: var(--leo-navy);
  box-shadow: 0 10px 22px rgba(253, 200, 94, 0.24);
}

.pricing-card-refined .pricing-card-cta:hover {
  background: #f1b941;
  color: var(--leo-navy);
}

.pricing-card-refined-navy {
  border-color: rgba(19, 25, 51, 0.12);
  background: var(--leo-navy);
  box-shadow:
    0 0 0 1px rgba(19, 25, 51, 0.04),
    0 20px 48px rgba(19, 25, 51, 0.14);
}

.pricing-card-refined-navy .pricing-card-summary-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(251, 247, 237, 0.06);
}

.pricing-card-refined-navy .pricing-plan-label {
  border-color: rgba(253, 200, 94, 0.28);
  background: var(--leo-yellow);
  color: var(--leo-navy);
}

.pricing-card-refined-navy .pricing-mode-badge {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card-refined-navy h3,
.pricing-card-refined-navy h3 [data-plan-price],
.pricing-card-refined-navy .pricing-card-stat-row strong,
.pricing-card-refined-navy .pricing-card-stat-value,
.pricing-card-refined-navy .pricing-card-stat-icon,
.pricing-card-refined-navy .pricing-card-included-block .pricing-feature-list li {
  color: var(--leo-white);
}

.pricing-card-refined-navy .pricing-card-included-block .pricing-feature-list li.feature-rollup {
  color: var(--leo-white);
}

.pricing-card-refined-navy h3 span:last-child,
.pricing-card-refined-navy .pricing-card-ui-copy,
.pricing-card-refined-navy .pricing-card-stat-period {
  color: rgba(255, 255, 255, 0.66);
}

.pricing-card-refined-navy .pricing-card-stat-row {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(251, 247, 237, 0.06);
}

.pricing-card-refined-navy .pricing-card-cta {
  background: var(--leo-yellow);
  color: var(--leo-navy);
}

.pricing-card-refined-navy .pricing-card-cta:hover {
  background: #ffd776;
  color: var(--leo-navy);
}

.pricing-card-refined-gold {
  border-color: rgba(253, 200, 94, 0.52);
  background: #ffedbd;
}

.pricing-card-refined-gold .pricing-card-summary-panel {
  border-color: rgba(206, 146, 32, 0.22);
  background: #fff4d7;
}

.pricing-card-ui-navy .pricing-feature-icon {
  background: rgba(38, 196, 111, 0.16);
  color: #4ee091;
}

.pricing-page .pricing-card-ui {
  min-height: 100%;
}

.pricing-page .pricing-faq-section,
.modes-page .pricing-faq-section {
  background: transparent;
}

.pricing-page .pricing-faq-section .section-content,
.modes-page .pricing-faq-section .section-content {
  max-width: 1040px;
}

.pricing-page .pricing-faq-section h2 {
  color: var(--leo-white);
}

.pricing-page .pricing-faq-section .faq-accordion,
.modes-page .pricing-faq-section .faq-accordion {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin-top: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pricing-page .pricing-faq-section .faq-accordion-item,
.modes-page .pricing-faq-section .faq-accordion-item {
  overflow: hidden;
  border: 1px solid rgba(253, 200, 94, 0.16);
  border-radius: 8px;
  background: var(--leo-white);
  box-shadow: 0 14px 34px rgba(5, 10, 30, 0.18);
}

.pricing-page .pricing-faq-section .faq-accordion-item[open],
.modes-page .pricing-faq-section .faq-accordion-item[open] {
  border-color: rgba(253, 200, 94, 0.42);
}

.pricing-page .pricing-faq-section .faq-accordion-item summary,
.modes-page .pricing-faq-section .faq-accordion-item summary {
  padding: 14px 18px;
  transition:
    background var(--leo-motion-micro) ease,
    color var(--leo-motion-micro) ease;
}

.pricing-page .pricing-faq-section .faq-accordion-item summary:hover,
.pricing-page .pricing-faq-section .faq-accordion-item summary:focus-visible,
.pricing-page .pricing-faq-section .faq-accordion-item[open] summary,
.modes-page .pricing-faq-section .faq-accordion-item summary:hover,
.modes-page .pricing-faq-section .faq-accordion-item summary:focus-visible,
.modes-page .pricing-faq-section .faq-accordion-item[open] summary {
  background: var(--leo-white);
}

.pricing-page .pricing-faq-section .faq-accordion-item summary:focus-visible,
.modes-page .pricing-faq-section .faq-accordion-item summary:focus-visible {
  outline-offset: -3px;
}

.pricing-page .pricing-faq-section .faq-accordion-icon,
.modes-page .pricing-faq-section .faq-accordion-icon {
  width: 28px;
  height: 28px;
  border-color: rgba(19, 25, 51, 0.12);
  background: var(--leo-ivory);
}

.pricing-page .pricing-faq-section .faq-accordion-item[open] .faq-accordion-icon,
.modes-page .pricing-faq-section .faq-accordion-item[open] .faq-accordion-icon {
  border-color: rgba(253, 200, 94, 0.64);
  background: var(--leo-yellow);
}

.pricing-page .pricing-faq-section .faq-accordion-answer,
.modes-page .pricing-faq-section .faq-accordion-answer {
  padding: 0 18px 16px;
}

.pricing-page .pricing-faq-section .faq-accordion-answer p,
.modes-page .pricing-faq-section .faq-accordion-answer p {
  color: var(--leo-ivory-muted);
}

.pricing-page .pricing-card-ui-copy {
  min-height: 44px;
}

/* ==========================================================================
   09 Modes page
   ========================================================================== */

.modes-page .modes-hero-section {
  padding-bottom: clamp(10px, 1.4vw, 22px);
  background: transparent;
}

.modes-page {
  background:
    var(--leo-pricing-navy-gradient),
    var(--leo-page-bg);
}

.modes-page .modes-overview-section {
  padding-top: 0;
  padding-bottom: clamp(70px, 7vw, 108px);
  background: transparent;
}

.modes-page .modes-overview-section .mode-card-grid {
  margin-top: 0;
}

.modes-page .mode-timeline::before {
  top: 104px;
}

.modes-page .mode-timeline::after {
  top: 100px;
}

.mode-loop-card > .mode-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height-small);
  margin: 0 24px 24px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
  transition:
    background var(--leo-motion-micro) ease,
    color var(--leo-motion-micro) ease,
    transform var(--leo-motion-micro) var(--leo-ease-snap),
    box-shadow var(--leo-motion-micro) ease;
}

.mode-card-cta-primary {
  background: var(--leo-yellow);
  color: var(--leo-navy);
  box-shadow: var(--leo-shadow-cta);
}

.mode-card-cta-primary:hover {
  background: #ffd776;
  color: var(--leo-navy);
  box-shadow: var(--leo-shadow-cta-hover);
  transform: translateY(-1px);
}

.mode-loop-card > .mode-card-cta-navy {
  background: var(--leo-navy);
  color: var(--leo-white);
  box-shadow: 0 12px 28px rgba(19, 25, 51, 0.22);
}

.mode-loop-card > .mode-card-cta-navy:hover {
  background: #202742;
  color: var(--leo-white);
  transform: translateY(-1px);
}

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

.modes-section-heading p {
  margin-right: auto;
  margin-left: auto;
}

.modes-decision-section {
  background: transparent;
}

.modes-decision-section h2,
.modes-faq-section h2 {
  color: var(--leo-white);
}

.modes-decision-section .modes-section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.modes-comparison-table-wrap {
  max-width: 960px;
}

.modes-decision-table {
  min-width: 680px;
}

.modes-decision-table td:first-child {
  width: 38%;
}

.modes-decision-table td:nth-child(2),
.modes-decision-table td:nth-child(3) {
  width: 31%;
}

.modes-decision-table td {
  vertical-align: middle;
}

.modes-table-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--leo-yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.modes-decision-table .comparison-group-row td:not(:first-child) {
  color: var(--leo-yellow);
}

.modes-final-cta .leo-message-cta h2 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.pricing-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pricing-metric-grid div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(19, 25, 51, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.pricing-metric-grid strong {
  color: var(--leo-navy);
  font-size: 26px;
  line-height: 1;
}

.pricing-metric-grid span {
  color: var(--leo-blue);
  font-size: 13px;
}

.pricing-feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--leo-blue);
  font-size: 14px;
  line-height: 1.42;
}

.pricing-feature-list li.feature-rollup {
  box-sizing: border-box;
  display: block;
  justify-self: stretch;
  align-self: stretch;
  width: auto;
  margin-right: 0;
  margin-left: -14px;
  margin-bottom: 2px;
  padding: 10px 12px 10px 48px;
  border: 1px solid rgba(19, 25, 51, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--leo-navy);
  font-weight: 800;
}

.pricing-feature-icon {
  position: absolute;
  top: 0.18em;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(38, 196, 111, 0.14);
  color: #21975d;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.pricing-feature-icon svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-feature-list li.feature-rollup .pricing-feature-icon {
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.pricing-grid .pricing-card-ui:first-child .pricing-feature-list li .pricing-feature-icon {
  top: 0.18em;
  left: 0;
  transform: none;
}

/* ==========================================================================
   09 Product demo and chat mockups
   ========================================================================== */

.video-demo-placeholder {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 860px;
  min-height: 430px;
  align-content: center;
  margin: 40px auto 0;
  padding: 40px;
  border: 1px solid rgba(253, 200, 94, 0.48);
  border-radius: 8px;
  background: #1a2140;
  box-shadow: 0 18px 42px rgba(19, 25, 51, 0.2);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.video-demo-placeholder:hover {
  border-color: rgba(253, 200, 94, 0.78);
  box-shadow: 0 28px 64px rgba(19, 25, 51, 0.3);
  transform: translateY(-2px);
}

.video-demo-card {
  max-width: 900px;
  aspect-ratio: 2880 / 1556;
  margin: 40px auto 0;
  overflow: hidden;
  border: 1px solid rgba(253, 200, 94, 0.42);
  border-radius: 8px;
  background: #131933;
  box-shadow: 0 18px 42px rgba(19, 25, 51, 0.24);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.video-demo-card:hover {
  border-color: rgba(253, 200, 94, 0.78);
  box-shadow: 0 28px 64px rgba(19, 25, 51, 0.3);
  transform: translateY(-2px);
}

.video-demo-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.video-demo-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #000;
  color: var(--leo-yellow);
  cursor: pointer;
}

.video-demo-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: filter 220ms ease;
}

.video-demo-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 24, 0.18);
  transition: background 180ms ease;
}

.video-demo-trigger:hover img {
  filter: brightness(0.9);
}

.video-demo-trigger:hover::after {
  background: rgba(3, 8, 24, 0.12);
}

.video-demo-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: inline-flex;
  justify-content: center;
  width: 72px;
  height: 72px;
  align-items: center;
  border: 1px solid rgba(253, 200, 94, 0.28);
  border-radius: 50%;
  background: rgba(253, 200, 94, 0.14);
  color: var(--leo-yellow);
  transition: background 180ms ease, transform 180ms ease;
  transform: translate(-50%, -50%);
  animation: play-ring 2.8s ease-in-out infinite;
}

.video-demo-placeholder:hover .video-demo-play,
.video-demo-trigger:hover .video-demo-play {
  background: rgba(253, 200, 94, 0.22);
  transform: translate(-50%, -50%) scale(1.04);
}

@keyframes play-ring {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(253, 200, 94, 0.32);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(253, 200, 94, 0);
  }
}

.video-demo-play svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linejoin: round;
}

.video-demo-placeholder strong {
  display: block;
  margin-bottom: 8px;
  color: var(--leo-yellow);
  font-size: 20px;
}

.video-demo-placeholder span {
  display: block;
  max-width: 560px;
  color: rgba(251, 247, 237, 0.88);
  font-size: 15px;
  line-height: 1.55;
}

.hero-chat-mockup {
  min-width: 0;
  max-width: 520px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(19, 25, 51, 0.1);
  border-radius: 8px;
  background: var(--leo-white);
  box-shadow: var(--leo-shadow);
  color: var(--leo-navy);
  transition:
    border-color var(--leo-motion-card) ease,
    box-shadow var(--leo-motion-card) ease,
    transform var(--leo-motion-card) var(--leo-ease);
}

.hero-chat-mockup-home {
  display: flex;
  flex-direction: column;
  width: min(100%, 460px);
  height: 450px;
  justify-self: center;
  align-self: center;
  margin-top: 0;
  transform: translateY(28px);
}

.hero-chat-mockup-home:hover {
  border-color: rgba(253, 200, 94, 0.42);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.3);
  transform: translateY(22px);
}

.hero-chat-mockup-home .chat-body {
  flex: 1;
  gap: 12px;
  min-height: 0;
  height: 390px;
  max-height: none;
  padding: 16px;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

.hero-chat-mockup-home .chat-message {
  padding: 11px 13px;
  font-size: 14px;
}

.hero-chat-mockup-home .lead-preview-card,
.hero-chat-mockup-home .outreach-card {
  padding: 14px;
}

.hero-chat-mockup-home .outreach-card {
  overflow: visible;
  border: 1px solid rgba(19, 25, 51, 0.1);
  border-radius: 8px;
  background: var(--leo-ivory);
  box-shadow: none;
}

.hero-chat-mockup-home .outreach-card-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 10px;
  padding: 0;
  border-bottom: 0;
  background: transparent;
}

.hero-chat-mockup-home .outreach-card-header span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(253, 200, 94, 0.22);
  color: var(--leo-navy);
  font-size: 12px;
  font-weight: 700;
}

.hero-chat-mockup-home .outreach-card-header svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-chat-mockup-home .lead-preview-top h4 {
  font-size: 16px;
}

.hero-chat-mockup-home .lead-preview-top p,
.hero-chat-mockup-home .lead-preview-card p,
.hero-chat-mockup-home .outreach-card > p,
.hero-chat-mockup-home .email-field p {
  font-size: 13px;
}

.hero-chat-mockup-home .email-field p {
  color: var(--leo-blue);
}

.chat-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--leo-navy);
}

.chat-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--leo-yellow);
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.chat-avatar-status {
  position: absolute;
  right: -1px;
  bottom: 1px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--leo-navy);
  border-radius: 50%;
  background: #26c46f;
  animation: online-pulse 2.4s ease-in-out infinite;
}

@keyframes online-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(38, 196, 111, 0.48);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(38, 196, 111, 0);
  }
}

.chat-agent-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chat-agent-line strong {
  color: var(--leo-white);
  font-size: 15px;
  line-height: 1.1;
}

.chat-agent-line span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.1;
}

.chat-body {
  display: grid;
  align-content: start;
  min-width: 0;
  gap: 16px;
  max-height: 440px;
  padding: 20px;
  overflow-y: auto;
  background: var(--leo-white);
}

.chat-body > * {
  align-self: start;
}

.chat-message {
  max-width: 78%;
  padding: 13px 15px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.42;
}

.chat-playback .chat-body > *[hidden] {
  display: none;
}

.chat-playback .chat-body > *.chat-item-visible {
  animation: chat-item-in 420ms var(--leo-ease) both;
}

.chat-playback .chat-body {
  transition: opacity 360ms ease;
}

.chat-playback .chat-body.is-resetting {
  opacity: 0;
}

.chat-typing {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  max-width: 78%;
  min-height: 36px;
  padding: 11px 14px;
  border-radius: 8px;
  background: #f1f3f6;
  color: var(--leo-navy);
  animation: chat-item-in 260ms var(--leo-ease) both;
}

.chat-typing-user {
  justify-self: end;
  background: var(--leo-yellow);
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(19, 25, 51, 0.42);
  animation: typing-dot 920ms ease-in-out infinite;
}

.chat-typing-user span {
  background: rgba(19, 25, 51, 0.48);
}

.chat-typing span:nth-child(2) {
  animation-delay: 120ms;
}

.chat-typing span:nth-child(3) {
  animation-delay: 240ms;
}

.chat-action-pulse {
  animation: action-pulse 520ms ease-out both;
}

@keyframes chat-item-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

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

@keyframes typing-dot {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@keyframes action-pulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(253, 200, 94, 0.46);
  }

  45% {
    transform: translateY(-1px) scale(1.035);
    box-shadow: 0 0 0 8px rgba(253, 200, 94, 0.2);
  }

  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 14px rgba(253, 200, 94, 0);
  }
}

.user-message {
  justify-self: end;
  background: var(--leo-yellow);
  color: var(--leo-navy);
}

.leo-message {
  justify-self: start;
  background: #f1f3f6;
  color: var(--leo-navy);
}

.lead-preview-card {
  padding: 16px;
  border: 1px solid rgba(19, 25, 51, 0.1);
  border-radius: 8px;
  background: var(--leo-ivory);
}

.lead-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(253, 200, 94, 0.22);
  color: var(--leo-navy);
  font-size: 12px;
}

.lead-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.lead-card-badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-preview-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.lead-profile-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.lead-avatar-placeholder {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(19, 25, 51, 0.08);
  color: var(--leo-navy);
  font-size: 13px;
}

.lead-avatar-picture {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

.lead-avatar-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 30%;
  box-shadow: 0 0 0 2px var(--leo-white), 0 0 0 3px rgba(111, 134, 163, 0.24);
}

.lead-preview-top h4 {
  margin: 0 0 4px;
  color: var(--leo-navy);
  font-size: 18px;
}

.lead-preview-top p,
.lead-preview-card p {
  margin-bottom: 0;
  color: var(--leo-blue);
  font-size: 14px;
}

.lead-preview-top span {
  color: inherit;
}

.lead-rating {
  flex: 0 0 auto;
  display: inline-flex;
  gap: 1px;
  color: rgba(19, 25, 51, 0.18);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}

.star {
  display: inline-block;
  color: rgba(19, 25, 51, 0.18);
}

.star.is-full {
  color: var(--leo-yellow);
}

.star.is-half {
  background: linear-gradient(90deg, var(--leo-yellow) 50%, rgba(19, 25, 51, 0.18) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.lead-preview-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(19, 25, 51, 0.06);
  color: var(--leo-blue);
  font-size: 12px;
}

.lead-reason {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(19, 25, 51, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
}

.lead-reason strong {
  color: var(--leo-navy);
  font-size: 12px;
}

.lead-reason p {
  margin-bottom: 0;
  color: var(--leo-blue);
  font-size: 14px;
}

.lead-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.lead-preview-actions button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(19, 25, 51, 0.12);
  border-radius: 8px;
  background: var(--leo-white);
  color: var(--leo-navy);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition:
    background var(--leo-motion-micro) ease,
    border-color var(--leo-motion-micro) ease,
    transform var(--leo-motion-micro) var(--leo-ease-snap),
    box-shadow var(--leo-motion-micro) ease;
}

.lead-preview-actions button:hover {
  border-color: rgba(253, 200, 94, 0.48);
  transform: translateY(-1px);
}

.lead-preview-actions button:first-child:hover {
  box-shadow: 0 10px 20px rgba(253, 200, 94, 0.24);
}

.lead-preview-actions button:first-child {
  border-color: transparent;
  background: var(--leo-yellow);
}

.lead-preview-actions button:active {
  transform: translateY(0) scale(0.98);
}

.outreach-email-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--leo-card-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fbff 0%, var(--leo-white) 100%);
  box-shadow: var(--leo-shadow);
}

.outreach-email-card {
  width: min(100%, 460px);
  justify-self: center;
}

.outreach-email-card .outreach-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 0;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(19, 25, 51, 0.1);
  background: var(--leo-navy);
}

.outreach-email-card .outreach-card-title {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 11px;
}

.outreach-email-card .outreach-card-title strong {
  color: var(--leo-white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
}

.outreach-email-card .outreach-card-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 0;
  padding: 0;
  border-radius: var(--radius-md);
  background: rgba(253, 200, 94, 0.16);
  color: var(--leo-yellow);
}

.outreach-email-card .outreach-card-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outreach-email-card .outreach-card-body {
  display: grid;
  gap: 10px;
  padding: 14px 18px 18px;
}

.outreach-email-card .outreach-card-body section {
  padding: 11px 12px;
  border: 1px solid rgba(111, 134, 163, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.outreach-email-card .outreach-card-body h3 {
  margin-bottom: 8px;
  color: rgba(19, 25, 51, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.outreach-email-card .outreach-card-body .email-recipient-line {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 0;
}

.email-recipient-line span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(111, 134, 163, 0.16);
  border-radius: 999px;
  background: var(--leo-ivory);
  color: var(--leo-navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.outreach-email-card .outreach-card-body p {
  margin-bottom: 0;
  color: var(--leo-ivory-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.outreach-email-card .outreach-card-body p + p {
  margin-top: 6px;
}

.outreach-email-card .outreach-card-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: 10px;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(19, 25, 51, 0.1);
}

.outreach-email-card .outreach-card-footer button {
  min-height: var(--button-height-compact);
  padding: 0 14px;
  border: 1px solid rgba(111, 134, 163, 0.2);
  border-radius: var(--radius-pill);
  background: var(--leo-white);
  color: var(--leo-navy);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.outreach-email-card .outreach-card-footer button:first-child {
  border-color: transparent;
  background: var(--leo-yellow);
}

/* ==========================================================================
   10 Feature-page mockup harmonization
   ========================================================================== */

/* Shared visual language for feature-page mockup cards. */
.strategy-brief-card,
.lead-stack-card-main,
.enrichment-card,
.action-card,
.outreach-email-card,
.feature-dashboard {
  border: 1px solid var(--leo-card-line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #f8fbff 0%, var(--leo-white) 100%);
  box-shadow: var(--leo-shadow);
}

.brief-card-header,
.lead-stack-header,
.enrichment-card-header,
.action-card-header,
.outreach-email-card .outreach-card-header,
.dashboard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--leo-navy);
}

.brief-card-header,
.action-card-header,
.dashboard-header {
  justify-content: space-between;
}

.brief-card-header {
  justify-content: flex-start;
}

.brief-card-header > span:not(.brief-card-title-icon),
.lead-stack-title strong,
.enrichment-card-title strong,
.action-card-title strong,
.outreach-email-card .outreach-card-title strong,
.dashboard-header strong {
  color: var(--leo-white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
}

.brief-card-title-icon,
.lead-stack-search-icon,
.enrichment-card-icon,
.action-card-icon,
.outreach-email-card .outreach-card-icon,
.dashboard-title-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 0;
  padding: 0;
  border-radius: var(--radius-md);
  background: rgba(253, 200, 94, 0.16);
  color: var(--leo-yellow);
}

.brief-card-title-icon svg,
.lead-stack-search-icon svg,
.enrichment-card-icon svg,
.action-card-icon svg,
.outreach-email-card .outreach-card-icon svg,
.dashboard-title-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brief-field-list > div,
.lead-stack-prospect,
.lead-stack-company,
.lead-stack-analysis,
.enriched-profile,
.enriched-contact-grid span,
.enrichment-insight-grid section,
.action-card-body section,
.outreach-email-card .outreach-card-body section,
.dashboard-panel {
  border: 1px solid rgba(111, 134, 163, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.brief-status,
.lead-stack-actions button:first-child,
.action-card-footer button:first-child,
.outreach-email-card .outreach-card-footer button:first-child {
  border-color: transparent;
  background: var(--leo-yellow);
  color: var(--leo-navy);
}

.lead-stack-actions button,
.action-card-footer button,
.outreach-email-card .outreach-card-footer button {
  border-radius: 999px;
}

/* Harmonized prospect-card stack. */
.lead-card-stack {
  --lead-card-visible-width: 400px;
  --lead-card-visible-height: 455px;
  width: 470px;
  height: 475px;
}

.lead-stack-card-main {
  grid-template-rows: auto 1fr auto;
  height: var(--lead-card-visible-height);
}

.lead-stack-body {
  align-content: stretch;
  padding-left: 16px;
}

.lead-stack-body .lead-stack-metrics {
  position: relative;
  z-index: 1;
}

.lead-stack-prospect,
.lead-stack-company,
.lead-stack-analysis {
  min-height: 0;
}

.lead-stack-prospect {
  min-height: 68px;
}

.lead-stack-prospect-content {
  display: grid;
  align-content: center;
  gap: 0;
}

.lead-stack-company {
  min-height: 114px;
}

.lead-stack-analysis {
  min-height: 74px;
}

.lead-stack-actions {
  background: rgba(248, 251, 255, 0.74);
}

.lead-stack-header {
  min-height: 58px;
}

.lead-stack-stars {
  font-size: 16px;
}

.lead-stack-body {
  gap: 8px;
  padding: 12px 14px;
}

.lead-stack-prospect,
.lead-stack-company,
.lead-stack-analysis {
  padding: 10px 11px;
}

.lead-stack-prospect {
  gap: 11px;
}

.lead-stack-company {
  gap: 8px;
}

.lead-photo-placeholder,
.lead-logo-placeholder {
  width: 40px;
  height: 40px;
}

.lead-stack-metrics {
  gap: 7px;
}

.lead-stack-metrics span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 7px;
  gap: 5px;
  line-height: 1;
  white-space: nowrap;
}

.lead-stack-metrics svg {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-stack-analysis div {
  margin-bottom: 6px;
}

.lead-stack-actions {
  gap: 9px;
  padding: 12px 14px 14px;
}

.lead-stack-actions button {
  min-height: 38px;
  font-size: 13px;
}

/* Feature-page mockup proportions and spacing. */
.brief-card-header,
.lead-stack-header,
.enrichment-card-header,
.action-card-header,
.outreach-email-card .outreach-card-header,
.dashboard-header {
  min-height: 60px;
  padding: 12px 16px;
}

.brief-card-title-icon,
.lead-stack-search-icon,
.enrichment-card-icon,
.action-card-icon,
.outreach-email-card .outreach-card-icon,
.dashboard-title-icon {
  width: 32px;
  height: 32px;
}

.brief-card-title-icon svg,
.lead-stack-search-icon svg,
.enrichment-card-icon svg,
.action-card-icon svg,
.outreach-email-card .outreach-card-icon svg,
.dashboard-title-icon svg {
  width: 16px;
  height: 16px;
}

.brief-card-header > span:not(.brief-card-title-icon),
.lead-stack-title strong,
.enrichment-card-title strong,
.action-card-title strong,
.outreach-email-card .outreach-card-title strong,
.dashboard-header strong {
  font-size: 17px;
}

.brief-field-list,
.lead-stack-body,
.enrichment-card-body,
.action-card-body,
.outreach-email-card .outreach-card-body,
.dashboard-body {
  gap: 10px;
  padding: 14px 16px;
}

.lead-stack-body {
  padding-left: 16px;
}

.brief-field-list > div,
.lead-stack-prospect,
.lead-stack-company,
.lead-stack-analysis,
.enriched-profile,
.enrichment-insight-grid section,
.action-card-body section,
.outreach-email-card .outreach-card-body section,
.dashboard-panel {
  padding: 11px 12px;
}

.brief-field-list {
  gap: 8px;
}

.brief-field-list > div {
  grid-template-columns: 24px minmax(0, 1fr);
  min-height: 54px;
  gap: 12px;
}

.brief-field-icon {
  width: 18px;
  height: 18px;
}

.brief-field-list p strong,
.brief-field-list p span {
  font-size: 12px;
}

.strategy-brief-card .brief-status {
  margin: 0 16px 14px;
  padding: 7px 14px;
  font-size: 12px;
}

.strategy-brief-card::after {
  margin: 2px 0 14px;
  width: 100%;
}

.lead-stack-prospect {
  gap: 12px;
}

.lead-stack-company {
  gap: 10px;
}

.lead-stack-prospect strong,
.lead-stack-company strong,
.enriched-profile strong {
  font-size: 16px;
}

.lead-stack-prospect p,
.lead-stack-company p,
.lead-stack-analysis p,
.enriched-profile p,
.outreach-email-card .outreach-card-body p {
  font-size: 12px;
}

.lead-stack-actions,
.action-card-footer,
.outreach-email-card .outreach-card-footer {
  gap: 10px;
  padding: 14px 16px 16px;
}

.lead-stack-actions button,
.outreach-email-card .outreach-card-footer button {
  min-height: var(--button-height-compact);
  font-size: var(--text-xs);
}

.action-card-footer button {
  min-height: 36px;
  font-size: 11px;
}

.action-card-recommended {
  border-color: rgba(253, 200, 94, 0.78);
  box-shadow: 0 28px 62px rgba(19, 25, 51, 0.18);
}

.action-card-secondary {
  align-self: center;
  background: linear-gradient(180deg, #f1f3f7 0%, #eef1f5 100%);
  opacity: 0.7;
}

.action-card-secondary .action-card-header {
  border-bottom-color: rgba(19, 25, 51, 0.08);
  background: #f1f3f7;
}

.action-card-secondary .action-card-title strong {
  color: var(--leo-navy);
}

.action-card-secondary .action-card-icon {
  background: rgba(111, 134, 163, 0.14);
  color: rgba(19, 25, 51, 0.46);
}

.action-card-secondary .action-card-body section {
  background: rgba(255, 255, 255, 0.58);
}

.enriched-contact-grid,
.enrichment-insight-grid {
  gap: 9px;
}

.enriched-contact-grid span {
  min-height: 36px;
  padding: 8px 10px;
  font-size: 11px;
}

.enrichment-insight-grid h3,
.action-card-body h3,
.outreach-email-card .outreach-card-body h3,
.lead-stack-analysis strong {
  margin-bottom: 7px;
  font-size: 10px;
}

.feature-dashboard {
  max-width: 560px;
  justify-self: center;
}

.dashboard-panel {
  padding: 14px;
}

.dashboard-metrics {
  gap: 10px;
}

.dashboard-metrics div {
  padding: 12px;
}

.dashboard-pipeline {
  gap: 10px;
}

/* Feature-page mockup internal labels and content rhythm. */
.lead-stack-label,
.lead-stack-analysis strong,
.enrichment-insight-grid h3,
.action-card-body h3,
.outreach-email-card .outreach-card-body h3,
.dashboard-panel h3 {
  display: flex;
  align-items: center;
  min-height: 14px;
  margin: 0 0 8px;
  color: rgba(19, 25, 51, 0.54);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.05;
  text-transform: uppercase;
}

.dashboard-panel h3 {
  gap: 8px;
}

.lead-stack-label {
  margin-bottom: 0;
}

.brief-field-list p strong,
.lead-stack-prospect strong,
.lead-stack-company strong,
.enriched-profile strong,
.enrichment-insight-grid dt {
  color: var(--leo-navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}

.lead-stack-prospect strong,
.lead-stack-company strong,
.enriched-profile strong {
  font-size: 16px;
}

.brief-field-list p span,
.lead-stack-prospect p,
.lead-stack-company p,
.lead-stack-analysis p,
.enriched-profile p,
.enrichment-insight-grid dd,
.action-card-body p,
.outreach-email-card .outreach-card-body p,
.dashboard-metrics span {
  color: var(--leo-ivory-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.enrichment-insight-grid dt,
.enrichment-insight-grid dd {
  font-size: 11px;
}

.lead-stack-prospect a,
.action-card-body a,
.enriched-contact-grid span {
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
}

.lead-stack-prospect a:hover,
.action-card-body a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-stack-metrics span,
.dashboard-pipeline span,
.dashboard-pipeline strong {
  color: var(--leo-navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.lead-stack-metrics span {
  align-items: center;
  line-height: 1;
}

.dashboard-metrics strong {
  color: var(--leo-navy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.dashboard-section-icon {
  width: 22px;
  height: 22px;
  border-radius: 8px;
}

.dashboard-section-icon svg {
  width: 13px;
  height: 13px;
}

/* Compact final pass for Prospect identified. */
.lead-stack-header {
  min-height: 58px;
  padding: 12px 14px;
}

.lead-stack-body {
  gap: 8px;
  padding: 12px 14px;
}

.lead-stack-prospect,
.lead-stack-company,
.lead-stack-analysis {
  padding: 10px 11px;
}

.lead-stack-prospect {
  min-height: 68px;
}

.lead-stack-company {
  min-height: 72px;
}

.lead-stack-analysis {
  min-height: 74px;
}

.lead-stack-actions {
  padding: 12px 14px 14px;
}

.lead-stack-actions button {
  min-height: 38px;
}

.lead-stack-prospect a {
  display: block;
  margin-top: 0;
}

.email-field {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(19, 25, 51, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
}

.email-field + .email-field {
  margin-top: 10px;
}

.email-field strong {
  color: var(--leo-navy);
  font-size: 12px;
}

.outreach-card .lead-preview-actions {
  margin-top: 14px;
}

.mockup-motion-ready .strategy-card-grid .strategy-brief-card,
.mockup-motion-ready .lead-card-stack::before,
.mockup-motion-ready .lead-card-stack::after,
.mockup-motion-ready .lead-card-stack .lead-stack-card-main,
.mockup-motion-ready .enrichment-card .enriched-profile,
.mockup-motion-ready .enrichment-card .enriched-contact-grid span,
.mockup-motion-ready .enrichment-card .enrichment-insight-grid section,
.mockup-motion-ready .nba-grid .action-card,
.mockup-motion-ready .outreach-email-card .outreach-card-body section,
.mockup-motion-ready .mode-card-grid .control-mode-statement,
.mockup-motion-ready .mode-card-grid .timeline-step {
  opacity: 0;
  transform: translateY(10px);
}

.mockup-motion-ready .lead-card-stack::before,
.mockup-motion-ready .lead-card-stack::after,
.mockup-motion-ready .lead-card-stack .lead-stack-card-main {
  transform: translate(-50%, -47%) scale(0.98);
}

.mockup-motion-ready .lead-card-stack::before {
  transform: translate(-46%, -44%) rotate(1.8deg) scale(0.98);
}

.mockup-motion-ready .lead-card-stack::after {
  transform: translate(-42%, -41%) rotate(3.2deg) scale(0.98);
}

.mockup-motion-ready .strategy-card-grid.is-sequenced .strategy-brief-card,
.mockup-motion-ready .enrichment-card.is-sequenced .enriched-profile,
.mockup-motion-ready .enrichment-card.is-sequenced .enriched-contact-grid span,
.mockup-motion-ready .enrichment-card.is-sequenced .enrichment-insight-grid section,
.mockup-motion-ready .nba-grid.is-sequenced .action-card,
.mockup-motion-ready .outreach-email-card.is-sequenced .outreach-card-body section,
.mockup-motion-ready .mode-card-grid.is-sequenced .control-mode-statement,
.mockup-motion-ready .mode-card-grid.is-sequenced .timeline-step {
  animation: feature-item-in 720ms var(--leo-ease) both;
}

.mockup-motion-ready .mode-card-grid.is-sequenced .timeline-step {
  animation-delay: 120ms;
}

.mockup-motion-ready .strategy-card-grid.is-sequenced .strategy-brief-card:nth-child(2),
.mockup-motion-ready .enrichment-card.is-sequenced .enriched-contact-grid span:nth-child(2),
.mockup-motion-ready .enrichment-card.is-sequenced .enrichment-insight-grid section:nth-child(2),
.mockup-motion-ready .nba-grid.is-sequenced .action-card:nth-child(2),
.mockup-motion-ready .outreach-email-card.is-sequenced .outreach-card-body section:nth-child(2),
.mockup-motion-ready .mode-card-grid.is-sequenced .timeline-step:nth-child(2) {
  animation-delay: 240ms;
}

.mockup-motion-ready .enrichment-card.is-sequenced .enriched-contact-grid span:nth-child(3),
.mockup-motion-ready .nba-grid.is-sequenced .action-card:nth-child(3),
.mockup-motion-ready .outreach-email-card.is-sequenced .outreach-card-body section:nth-child(3),
.mockup-motion-ready .mode-card-grid.is-sequenced .timeline-step:nth-child(3) {
  animation-delay: 360ms;
}

.mockup-motion-ready .enrichment-card.is-sequenced .enriched-contact-grid span:nth-child(4) {
  animation-delay: 360ms;
}

.mockup-motion-ready .nba-grid.is-sequenced .action-card-footer button:first-child,
.mockup-motion-ready .outreach-email-card.is-sequenced .outreach-card-footer button:first-child {
  animation: feature-soft-pulse 920ms ease-out 560ms both;
}

.mockup-motion-ready .lead-card-stack.is-sequenced::before {
  animation: feature-stack-before-in 820ms var(--leo-ease) both;
}

.mockup-motion-ready .lead-card-stack.is-sequenced::after {
  animation: feature-stack-after-in 900ms var(--leo-ease) 120ms both;
}

.mockup-motion-ready .lead-card-stack.is-sequenced .lead-stack-card-main {
  animation: feature-main-card-in 780ms var(--leo-ease) both;
}

.mockup-motion-ready .feature-dashboard .dashboard-pipeline div::after {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 980ms var(--leo-ease);
}

.mockup-motion-ready .feature-dashboard.is-sequenced .dashboard-pipeline div::after {
  transform: scaleX(1);
}

.mockup-motion-ready .feature-dashboard.is-sequenced .dashboard-pipeline div:nth-child(2)::after {
  transition-delay: 160ms;
}

.mockup-motion-ready .feature-dashboard.is-sequenced .dashboard-pipeline div:nth-child(3)::after {
  transition-delay: 320ms;
}

@keyframes feature-item-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

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

@keyframes feature-main-card-in {
  from {
    opacity: 0;
    transform: translate(-50%, -47%) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes feature-stack-before-in {
  from {
    opacity: 0;
    transform: translate(-46%, -44%) rotate(1.8deg) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate(-46%, -47%) rotate(1.8deg) scale(1);
  }
}

@keyframes feature-stack-after-in {
  from {
    opacity: 0;
    transform: translate(-42%, -41%) rotate(3.2deg) scale(0.98);
  }

  to {
    opacity: 0.7;
    transform: translate(-42%, -44%) rotate(3.2deg) scale(1);
  }
}

@keyframes feature-soft-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 200, 94, 0.42);
    transform: translateY(0) scale(1);
  }

  48% {
    box-shadow: 0 0 0 10px rgba(253, 200, 94, 0.12);
    transform: translateY(-1px) scale(1.02);
  }

  100% {
    box-shadow: 0 0 0 14px rgba(253, 200, 94, 0);
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   11 Reveal and motion states
   ========================================================================== */

.has-reveal .section:not(.hero-section),
.has-reveal .feature-card,
.has-reveal .placeholder-card,
.has-reveal .pricing-card-ui,
.has-reveal .custom-solution-card,
.has-reveal .faq-accordion,
.has-reveal .home-mode-card,
.has-reveal .mode-loop-card,
.has-reveal .review-card,
.has-reveal .video-demo-placeholder,
.has-reveal .leo-message-cta,
.has-reveal .about-page .about-intro-grid,
.has-reveal .about-page .about-philosophy-grid,
.has-reveal .about-page .about-section-heading,
.has-reveal .about-page .blog-category-card {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--leo-motion-reveal) var(--leo-ease),
    transform var(--leo-motion-reveal) var(--leo-ease);
}

.has-reveal .section:not(.hero-section).is-visible,
.has-reveal .feature-card.is-visible,
.has-reveal .placeholder-card.is-visible,
.has-reveal .pricing-card-ui.is-visible,
.has-reveal .custom-solution-card.is-visible,
.has-reveal .faq-accordion.is-visible,
.has-reveal .home-mode-card.is-visible,
.has-reveal .mode-loop-card.is-visible,
.has-reveal .review-card.is-visible,
.has-reveal .video-demo-placeholder.is-visible,
.has-reveal .leo-message-cta.is-visible,
.has-reveal .about-page .about-intro-grid.is-visible,
.has-reveal .about-page .about-philosophy-grid.is-visible,
.has-reveal .about-page .about-section-heading.is-visible,
.has-reveal .about-page .blog-category-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-reveal .about-page .section:not(.hero-section) {
  opacity: 1;
  transform: none;
  transition: none;
}

.has-reveal .feature-grid .feature-card:nth-child(2),
.has-reveal .pricing-grid .pricing-card-ui:nth-child(2),
.has-reveal .custom-solution-grid .custom-solution-card:nth-child(2),
.has-reveal .home-mode-grid .home-mode-card:nth-child(2),
.has-reveal .testimonial-grid .review-card:nth-child(2),
.has-reveal .about-follow-grid .about-follow-card:nth-child(2),
.has-reveal .blog-category-grid .blog-category-card:nth-child(2) {
  transition-delay: 70ms;
}

.has-reveal .feature-grid .feature-card:nth-child(3),
.has-reveal .pricing-grid .pricing-card-ui:nth-child(3),
.has-reveal .testimonial-grid .review-card:nth-child(3),
.has-reveal .about-follow-grid .about-follow-card:nth-child(3),
.has-reveal .blog-category-grid .blog-category-card:nth-child(3) {
  transition-delay: 140ms;
}

.has-reveal .feature-grid .feature-card:nth-child(4),
.has-reveal .pricing-grid .pricing-card-ui:nth-child(4),
.has-reveal .testimonial-grid .review-card:nth-child(4),
.has-reveal .about-follow-grid .about-follow-card:nth-child(4) {
  transition-delay: 210ms;
}

.has-reveal .feature-grid .feature-card:nth-child(5),
.has-reveal .testimonial-grid .review-card:nth-child(5) {
  transition-delay: 280ms;
}

.has-reveal .feature-grid .feature-card:nth-child(6),
.has-reveal .testimonial-grid .review-card:nth-child(6) {
  transition-delay: 350ms;
}

.has-reveal .testimonial-grid .review-card:nth-child(7) {
  transition-delay: 420ms;
}

.has-reveal .testimonial-grid .review-card:nth-child(8) {
  transition-delay: 490ms;
}

.has-reveal .testimonial-grid .review-card:nth-child(9) {
  transition-delay: 440ms;
}

.has-reveal .placeholder-card.is-visible:hover,
.has-reveal .feature-card.is-visible:hover,
.has-reveal .home-mode-card.is-visible:hover,
.has-reveal .mode-loop-card.is-visible:hover,
.has-reveal .review-card.is-visible:hover,
.has-reveal .video-demo-placeholder.is-visible:hover,
.has-reveal .leo-message-cta.is-visible:hover {
  transform: translateY(-3px);
}

.has-reveal .about-page .blog-category-card.is-visible:hover {
  transform: translateY(-2px);
}

.has-reveal .pricing-page .pricing-card-ui-clean.is-visible:hover {
  transform: translateY(-3px);
}

/* ==========================================================================
   12 Reduced motion
   ========================================================================== */

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

  .has-reveal .section:not(.hero-section),
  .has-reveal .feature-card,
  .has-reveal .placeholder-card,
  .has-reveal .pricing-card-ui,
  .has-reveal .custom-solution-card,
  .has-reveal .faq-accordion,
  .has-reveal .home-mode-card,
  .has-reveal .mode-loop-card,
  .has-reveal .review-card,
  .has-reveal .video-demo-placeholder,
  .has-reveal .leo-message-cta,
  .has-reveal .about-page .about-intro-grid,
  .has-reveal .about-page .about-philosophy-grid,
  .has-reveal .about-page .about-section-heading,
  .has-reveal .about-page .blog-category-card {
    opacity: 1;
    transform: none;
  }

  .mockup-motion-ready .strategy-card-grid .strategy-brief-card,
  .mockup-motion-ready .lead-card-stack::before,
  .mockup-motion-ready .lead-card-stack::after,
  .mockup-motion-ready .lead-card-stack .lead-stack-card-main,
  .mockup-motion-ready .enrichment-card .enriched-profile,
  .mockup-motion-ready .enrichment-card .enriched-contact-grid span,
  .mockup-motion-ready .enrichment-card .enrichment-insight-grid section,
  .mockup-motion-ready .nba-grid .action-card,
  .mockup-motion-ready .outreach-email-card .outreach-card-body section,
  .mockup-motion-ready .mode-card-grid .timeline-step,
  .mockup-motion-ready .feature-dashboard .dashboard-pipeline div::after {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   13 Responsive rules
   ========================================================================== */

@media (max-width: 1020px) {
  .site-header {
    gap: 18px;
    padding-right: clamp(16px, 2.2vw, 28px);
    padding-left: clamp(16px, 2.2vw, 28px);
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    gap: 6px;
  }

  .header-actions {
    gap: 10px;
  }

  .nav-cta {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 1180px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  :root {
    --section-y: 60px;
  }

  .site-header {
    gap: 16px;
  }

  h1,
  h2 {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero-section .eyebrow {
    display: flex;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-section .lead {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero-section .cta-row {
    justify-content: center;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-column {
    flex-wrap: wrap;
  }

  .two-column,
  .home-mode-grid,
  .feature-step-grid,
  .feature-step-grid-reverse,
  .use-case-grid,
  .use-case-grid-reverse,
  .steps {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    display: grid;
    gap: 22px;
  }

  .pricing-toolbar {
    display: grid;
    gap: 22px;
    text-align: center;
  }

  .section-heading-row h2,
  .section-heading-row p,
  .pricing-toolbar h1,
  .pricing-toolbar p {
    text-align: center;
  }

  .billing-toggle {
    justify-self: center;
  }

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

  .custom-solution-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .feature-grid,
  .testimonial-grid,
  .nba-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .skills-page .section-split {
    text-align: center;
  }

  .skills-page .section-split .lead {
    margin-right: auto;
    margin-left: auto;
  }

  .skills-page .cta-row {
    justify-content: center;
  }

  .feature-step-grid,
  .feature-step-grid-reverse {
    text-align: center;
  }

  .use-case-grid,
  .use-case-grid-reverse {
    text-align: center;
  }

  .use-case-detail-overview-grid,
  .use-case-detail-step-grid,
  .use-case-detail-step-grid-reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .use-case-detail-step-grid .use-case-detail-step-copy {
    order: 1;
  }

  .use-case-detail-step-grid .placeholder-card {
    order: 2;
  }

  .use-case-detail-step-grid .strategy-card-grid {
    order: 2;
  }

  .use-case-detail-step-grid .lead-card-stack {
    order: 2;
  }

  .use-case-detail-step-grid .enrichment-card {
    order: 2;
  }

  .use-case-detail-step-grid .nba-grid {
    order: 2;
  }

  .use-case-detail-step-grid .outreach-preview-grid {
    order: 2;
  }

  .use-case-detail-step-grid .feature-dashboard {
    order: 2;
  }

  .use-case-detail-overview-copy p,
  .use-case-detail-step-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .use-case-grid-reverse .use-case-copy {
    order: 2;
  }

  .use-case-grid-reverse .use-case-visual-card {
    order: 1;
  }

  .use-case-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .lead-card-stack,
  .enrichment-card,
  .outreach-preview-grid,
  .feature-dashboard,
  .use-case-visual-card,
  .use-case-detail-step-grid .strategy-card-grid,
  .use-case-detail-step-grid .nba-grid,
  .use-case-system-card,
  .business-context-card {
    width: 100%;
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .use-case-detail-step-label {
    margin-right: auto;
    margin-left: auto;
  }

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

  .mode-loop-card {
    width: 100%;
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

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

  .hero-chat-mockup {
    max-width: none;
  }

  .has-reveal .feature-grid .feature-card,
  .has-reveal .testimonial-grid .review-card {
    transition-delay: 0ms;
  }

  .design-comparison-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    width: 210px;
    background: var(--leo-navy);
    box-shadow: 10px 0 18px rgba(5, 10, 30, 0.18);
  }

  .design-comparison-table .comparison-group-row td:first-child {
    z-index: 3;
    background: #252740;
  }

}

@media (max-width: 560px) {
  :root {
    --section-y: 52px;
  }

  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-section {
    padding-top: 46px;
    padding-bottom: 64px;
  }

  .final-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  h2 {
    font-size: 34px;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .testimonial-grid,
  .strategy-card-grid,
  .nba-grid,
  .dashboard-metrics,
  .pricing-grid,
  .pricing-card-variant-grid {
    grid-template-columns: 1fr;
  }

  .skills-page .site-header + main {
    background: var(--leo-white);
  }

  .skills-hero-section {
    padding-top: 34px;
    padding-bottom: 48px;
  }

  .feature-mini-card,
  .enrichment-card,
  .action-card,
  .feature-dashboard {
    padding: 20px;
  }

  .enrichment-card,
  .action-card {
    padding: 0;
  }

  .feature-dashboard {
    padding: 0;
  }

  .strategy-brief-card {
    padding: 0;
  }

  .enrichment-card-header {
    padding: 12px 14px;
  }

  .enrichment-card-body {
    padding: 12px 14px 14px;
  }

  .enriched-contact-grid,
  .enrichment-insight-grid {
    grid-template-columns: 1fr;
  }

  .lead-card-stack {
    --lead-card-visible-width: 380px;
    --lead-card-visible-height: 455px;
    min-height: 455px;
  }

  .persona-use-case-page .lead-card-stack {
    --lead-card-visible-width: min(336px, calc(100vw - 80px));
    width: min(336px, calc(100vw - 80px));
    transform: none;
  }

  .lead-stack-card-main {
    width: var(--lead-card-visible-width);
    height: var(--lead-card-visible-height);
    max-width: 100%;
  }

  .lead-stack-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .lead-stack-title strong {
    font-size: 18px;
  }

  .lead-stack-stars {
    display: block;
    margin-top: 6px;
    margin-left: 0;
  }

  .lead-stack-body {
    gap: 12px;
    padding: 14px 16px;
  }

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

  .lead-stack-actions {
    padding: 16px 18px 18px;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button,
  .billing-toggle span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .billing-toggle {
    flex-wrap: wrap;
  }

  .pricing-page .pricing-card-ui-navy {
    transform: none;
  }

  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-logo {
    width: 104px;
  }

  .header-actions {
    gap: 8px;
  }

  .login-link {
    width: 24px;
    overflow: hidden;
    font-size: 14px;
    white-space: nowrap;
  }

  .login-link svg {
    flex: 0 0 16px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .placeholder-card,
  .review-card {
    padding: 24px;
  }

  .placeholder-card.strategy-brief-card {
    padding: 0;
  }

  .business-context-field-list > .business-context-linkedin-row {
    grid-template-columns: 1fr;
  }

  .home-modes-heading {
    margin-bottom: 26px;
  }

  .home-mode-card h3 {
    font-size: 24px;
  }

  .feature-grid .home-feature-link-card {
    height: auto;
    min-height: 156px;
  }

  .mode-card-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 24px;
  }

  .mode-loop-card > p,
  .mode-loop-card .mode-timeline,
  .mode-loop-card .mode-best-fit,
  .mode-loop-card > a {
    margin-right: 24px;
    margin-left: 24px;
  }

  .timeline-step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 11px;
    padding: 12px;
  }

  .timeline-step-icon {
    width: 34px;
    height: 34px;
  }

  .timeline-step + .timeline-step::before {
    left: 32px;
  }

  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer {
    gap: 30px;
    padding: 46px 20px 26px;
  }

  .cta-supporting-text {
    max-width: none;
  }

  .chat-window-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .chat-message {
    max-width: 100%;
  }

  .hero-chat-mockup-home {
    width: 100%;
    height: 430px;
    transform: none;
  }

  .hero-chat-mockup-home:hover {
    transform: translateY(-2px);
  }

  .lead-preview-top {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 10px;
  }

  .brand-logo {
    width: 96px;
  }

  .login-link {
    display: none;
  }

  .nav-cta {
    min-width: 58px;
    width: 58px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    white-space: nowrap;
  }

  .nav-cta::before {
    content: "Start";
    color: var(--leo-navy);
    font-size: 13px;
  }

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

  .footer-column {
    gap: 8px;
  }

  .footer-bottom {
    gap: 10px;
  }

  .footer-bottom span {
    line-height: 1.4;
  }

  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }
}

/* ==========================================================================
   Editorial policy page
   ========================================================================== */

.editorial-policy-hero-section {
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(56px, 6vw, 84px);
  background: var(--leo-navy-gradient-top);
}

.editorial-policy-hero-content p {
  color: rgba(255, 255, 255, 0.78);
}

.editorial-policy-content-section {
  background: var(--leo-ivory);
}

.editorial-policy-content {
  max-width: 800px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--leo-card-line);
  border-radius: var(--radius-sm);
  background: var(--leo-white);
  box-shadow: var(--leo-shadow);
}

.editorial-policy-body {
  display: grid;
  gap: clamp(32px, 4vw, 44px);
  color: var(--leo-ink);
}

.editorial-policy-body section {
  display: grid;
  gap: 12px;
}

.editorial-policy-body h2 {
  margin: 0;
  color: var(--leo-navy);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
  text-align: left;
}

.editorial-policy-body h3 {
  margin: 8px 0 0;
  color: var(--leo-navy);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
  text-align: left;
}

.editorial-policy-body p {
  max-width: 760px;
  margin: 0;
  color: var(--leo-ivory-muted);
  font-size: var(--text-md);
  line-height: var(--line-height-body);
}

.editorial-policy-body ul {
  max-width: 760px;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--leo-ivory-muted);
  font-size: var(--text-md);
  line-height: var(--line-height-body);
}

.editorial-policy-body li {
  color: inherit;
}

.editorial-policy-body li + li {
  margin-top: 6px;
}

.editorial-policy-body li::marker {
  color: var(--leo-ivory-muted);
}

.editorial-policy-body table {
  width: 100%;
  max-width: 760px;
  border-collapse: collapse;
  color: var(--leo-ivory-muted);
  font-size: var(--text-sm);
  line-height: var(--line-height-body);
}

.editorial-policy-body th,
.editorial-policy-body td {
  padding: 12px 14px;
  border: 1px solid var(--leo-card-line);
  text-align: left;
  vertical-align: top;
}

.editorial-policy-body th {
  color: var(--leo-navy);
  font-weight: 700;
  background: rgba(253, 200, 94, 0.16);
}

.editorial-policy-body td:first-child {
  color: var(--leo-ink);
  font-weight: 700;
}

.editorial-policy-body a {
  color: var(--leo-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(253, 200, 94, 0.8);
  text-underline-offset: 3px;
}

.editorial-policy-body a:hover {
  opacity: 0.75;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-hero-section {
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(56px, 6vw, 84px);
  background: var(--leo-navy-gradient-top);
}

.contact-hero-content {
  max-width: 1120px;
}

.contact-hero-content > p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 14px;
}

.contact-option-card {
  min-height: 250px;
  text-align: left;
}

.contact-option-card .feature-style-heading {
  align-items: center;
}

.contact-option-card .section-inline-cta {
  max-width: 100%;
  box-shadow: none;
  white-space: normal;
  text-align: center;
  text-decoration: none;
}

.contact-option-card .section-inline-cta:hover {
  box-shadow: none;
}

#contact-meeting {
  --follow-icon-bg: rgba(253, 200, 94, 0.2);
  --follow-icon-color: #d69500;
}

#contact-linkedin {
  --follow-icon-bg: rgba(10, 102, 194, 0.1);
  --follow-icon-color: #0a66c2;
  --follow-cta-bg: #0a66c2;
  --follow-cta-color: var(--leo-white);
}

#contact-email {
  --follow-icon-bg: rgba(47, 54, 87, 0.1);
  --follow-icon-color: var(--leo-blue);
  --follow-cta-bg: var(--leo-blue);
  --follow-cta-color: var(--leo-white);
}

.contact-faq-section {
  background: var(--leo-ivory);
}

.contact-faq-section .section-content {
  max-width: 1040px;
}

.contact-section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.contact-section-heading h2 {
  color: var(--leo-navy);
}

.contact-page .contact-faq-section .faq-accordion {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin-top: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-page .contact-faq-section .faq-accordion-item {
  overflow: hidden;
  border: 1px solid rgba(19, 25, 51, 0.1);
  border-radius: 8px;
  background: var(--leo-white);
  box-shadow: 0 14px 34px rgba(19, 25, 51, 0.08);
}

.contact-page .contact-faq-section .faq-accordion-item[open] {
  border-color: rgba(253, 200, 94, 0.48);
}

.contact-page .contact-faq-section .faq-accordion-item summary {
  padding: 14px 18px;
}

.contact-page .contact-faq-section .faq-accordion-item summary:hover,
.contact-page .contact-faq-section .faq-accordion-item summary:focus-visible,
.contact-page .contact-faq-section .faq-accordion-item[open] summary {
  background: var(--leo-white);
}

.contact-page .contact-faq-section .faq-accordion-icon {
  width: 28px;
  height: 28px;
  border-color: rgba(19, 25, 51, 0.12);
  background: var(--leo-ivory);
}

.contact-page .contact-faq-section .faq-accordion-item[open] .faq-accordion-icon {
  border-color: rgba(253, 200, 94, 0.64);
  background: var(--leo-yellow);
}

.contact-page .contact-faq-section .faq-accordion-answer {
  padding: 0 18px 16px;
}

.contact-page .contact-faq-section .faq-accordion-answer p {
  color: var(--leo-ivory-muted);
}

/* ==========================================================================
   About LEO page
   ========================================================================== */

.about-hero-section {
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(56px, 6vw, 84px);
  background: var(--leo-navy-gradient-top);
}

.about-hero-content p {
  color: rgba(255, 255, 255, 0.78);
}

.about-intro-section,
.about-philosophy-section,
.about-stats-section {
  background: var(--leo-white);
}

.about-intro-grid,
.about-philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.about-philosophy-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 0.88fr);
}

.about-intro-copy h2,
.about-philosophy-copy h2,
.about-section-heading h2 {
  color: var(--leo-navy);
}

.about-intro-copy p,
.about-philosophy-copy p {
  max-width: 660px;
  color: var(--leo-ivory-muted);
}

.about-portrait-card,
.about-philosophy-media {
  overflow: hidden;
  border: 1px solid var(--leo-card-line);
  border-radius: var(--radius-sm);
  background: var(--leo-ivory);
  box-shadow: var(--leo-shadow);
}

.about-portrait-card picture,
.about-philosophy-media picture,
.blog-category-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-portrait-card img,
.about-philosophy-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-portrait-card img {
  aspect-ratio: 4 / 5;
}

.about-philosophy-media img {
  aspect-ratio: 4 / 5;
}

.about-follow-section,
.about-topics-section,
.about-testimonials-section {
  background: var(--leo-ivory);
}

.about-section-heading {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.about-section-heading p {
  max-width: 680px;
  color: var(--leo-ivory-muted);
}

.about-follow-heading {
  margin-bottom: 28px;
}

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

.about-follow-card,
.about-stat-card {
  min-height: 220px;
  border: 1px solid var(--leo-card-line);
  background: var(--leo-white);
  color: var(--leo-navy);
  text-decoration: none;
  box-shadow: var(--leo-shadow);
}

.about-follow-card {
  --follow-icon-bg: rgba(253, 200, 94, 0.18);
  --follow-icon-color: var(--leo-yellow);
  --follow-cta-bg: var(--leo-yellow);
  --follow-cta-color: var(--leo-navy);
  --follow-hover-border: var(--follow-cta-bg);
}

.about-stat-card:hover {
  border-color: rgba(253, 200, 94, 0.58);
}

.about-stat-card .feature-icon {
  background: rgba(253, 200, 94, 0.18);
  color: var(--leo-yellow);
}

.about-follow-card:hover {
  border-color: var(--follow-hover-border);
}

.about-follow-card .feature-icon {
  background: var(--follow-icon-bg);
  color: var(--follow-icon-color);
}

#follow-blog {
  --follow-icon-bg: rgba(47, 54, 87, 0.1);
  --follow-icon-color: var(--leo-blue);
  --follow-cta-bg: var(--leo-blue);
  --follow-cta-color: var(--leo-white);
}

#follow-newsletter {
  --follow-icon-bg: rgba(253, 200, 94, 0.2);
  --follow-icon-color: #d69500;
}

#follow-linkedin {
  --follow-icon-bg: rgba(10, 102, 194, 0.1);
  --follow-icon-color: #0a66c2;
  --follow-cta-bg: #0a66c2;
  --follow-cta-color: var(--leo-white);
}

#follow-youtube {
  --follow-icon-bg: rgba(255, 0, 0, 0.08);
  --follow-icon-color: #ff0000;
  --follow-cta-bg: #ff0000;
  --follow-cta-color: var(--leo-white);
}

.about-follow-card h3 {
  margin: 0;
  color: var(--leo-navy);
  font-size: 22px;
  line-height: 1.15;
}

.about-follow-card p,
.about-stat-card p {
  color: var(--leo-ivory-muted);
  font-size: var(--text-md);
  line-height: 1.55;
}

.about-follow-card .section-inline-cta {
  align-self: flex-start;
  margin-top: auto;
  background: var(--follow-cta-bg);
  color: var(--follow-cta-color);
}

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

.about-stat-grid .about-stat-card {
  min-height: 0;
  padding: 24px;
}

.about-stat-card .feature-style-heading {
  margin-bottom: 14px;
}

.about-stat-grid .about-stat-card h3 {
  margin: 0;
  color: var(--leo-navy);
  font-size: clamp(24px, 2vw, 28px);
  line-height: 1;
  white-space: nowrap;
}

.about-stat-card p {
  margin-top: 0;
}

.about-final-cta {
  background: var(--leo-navy-gradient-top);
}

.about-final-cta .leo-message-cta {
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-final-cta .leo-message-cta:hover,
.has-reveal .about-final-cta .leo-message-cta.is-visible:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.about-final-cta .leo-message-cta h2 {
  margin-bottom: 26px;
}

.blog-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.blog-category-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(251, 247, 237, 0.12);
  border-radius: 8px;
  background: var(--leo-navy);
  color: var(--leo-white);
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
  transition:
    transform var(--leo-motion-micro) var(--leo-ease-snap),
    border-color var(--leo-motion-micro) ease,
    background var(--leo-motion-micro) ease;
}

.blog-category-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: -8px -8px 22px;
  border: 1px solid rgba(251, 247, 237, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(253, 200, 94, 0.18), transparent 58%),
    rgba(19, 25, 51, 0.5);
}

.blog-category-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 320ms var(--leo-ease-snap), opacity 320ms ease;
}

.blog-category-card:hover .blog-category-media img {
  opacity: 1;
  transform: scale(1.025);
}

.blog-category-card:hover {
  border-color: rgba(253, 200, 94, 0.5);
  background: #171e3d;
  transform: translateY(-2px);
}

.blog-category-card h3 {
  margin-bottom: 12px;
  color: var(--leo-white);
  font-size: 24px;
}

.blog-category-card p {
  max-width: none;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.blog-category-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: fit-content;
  min-height: var(--button-height);
  margin-top: auto;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--leo-yellow);
  color: var(--leo-navy);
  box-shadow: var(--leo-shadow-cta);
  font-size: var(--text-md);
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1100px) {
  .about-follow-grid,
  .about-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .contact-options-grid {
    grid-template-columns: 1fr;
  }

  .blog-category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .about-intro-grid,
  .about-philosophy-grid,
  .about-follow-grid,
  .about-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-hero-section {
    padding-top: 46px;
    padding-bottom: 64px;
  }

  .about-hero-section {
    padding-top: 46px;
    padding-bottom: 64px;
  }
}
