/* SeedTS Blueprint LP — local recreation */

:root {
  /* Surfaces (single dark family) */
  --bg-deep: #0a0e14;
  --bg-elevated: #111820;
  --bg-card: #151d28;
  --bg-section: #050a10;
  --bg-section-dim: #050608;
  --bg-footer: #070a0f;
  --bg-navy-tile: #0d141d;
  --bg-shade: #080c10;
  --bg-shade-alt: #070f18;

  /* Text */
  --text: #e8edf4;
  --text-muted: #94a3b8;
  --text-soft: #64748b;
  --text-heading: #f8fafc;
  --text-body: #cbd5e1;
  --text-on-accent: #041016;

  /* Brand — cyan-teal (única família de destaque) */
  --accent: #3dd6c7;
  --accent-strong: #2bb8aa;
  --accent-soft: #6ee7d8;
  --accent-dim: rgba(61, 214, 199, 0.15);
  --accent-border: rgba(61, 214, 199, 0.35);
  --accent-glow: rgba(61, 214, 199, 0.12);
  --accent-glow-mid: rgba(61, 214, 199, 0.25);
  --accent-surface: rgba(61, 214, 199, 0.08);
  --accent-surface-hover: rgba(61, 214, 199, 0.12);
  --accent-fill: rgba(61, 214, 199, 0.18);
  --accent-outline: rgba(61, 214, 199, 0.45);

  /* Glass & lines */
  --surface-glass: rgba(15, 23, 42, 0.52);
  --surface-glass-hover: rgba(15, 23, 42, 0.68);
  --surface-badge: rgba(30, 41, 59, 0.75);
  --surface-tag: rgba(61, 214, 199, 0.14);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-slate: rgba(148, 163, 184, 0.22);

  /* Estados (feedback, harmônicos com o teal) */
  --state-risk: #f0a050;
  --state-mid: #fbbf24;
  --state-ok: #5eead4;
  --accent-warm: #e8943a;
  --accent-warm-glow: rgba(232, 148, 58, 0.22);

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

body.lead-modal-open {
  overflow: hidden;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--text-on-accent);
  font-weight: 600;
  border-radius: 6px;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  outline: 2px solid var(--text-heading);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(191px, 55vw);
}

.primary-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a:not(.btn) {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
}

.primary-nav a:not(.btn):hover {
  color: var(--text);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: var(--bg-elevated);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--text-on-accent);
  box-shadow: 0 8px 24px var(--accent-glow-mid);
}

.btn--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-subtle);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent-outline);
}

.btn--outline:hover {
  background: var(--accent-dim);
}

.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

/* Hero */

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 10, 0.82) 0%,
      rgba(5, 7, 10, 0.55) 40%,
      rgba(5, 7, 10, 0.9) 100%
    ),
    radial-gradient(
      ellipse 90% 70% at 50% 35%,
      var(--accent-surface),
      transparent 55%
    ),
    url("assets/images/hero-banner.png") center / cover no-repeat;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 820px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 36rem;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Sections */

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-title {
  margin: 0 0 2.5rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
  line-height: 1.35;
}

/* Framework hero: isometric background + glass boxes */

.section--features {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--bg-section);
}

.features-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 10, 16, 0.82) 0%,
      rgba(5, 10, 16, 0.35) 42%,
      rgba(5, 10, 16, 0.88) 100%
    ),
    url("assets/images/framework-isometric-bg.png") center 42% / cover no-repeat;
  transform: scale(1.02);
  pointer-events: none;
}

.features-hero {
  position: relative;
  z-index: 1;
}

.features-hero-header {
  text-align: center;
  margin-bottom: 2rem;
}

.features-hero-title {
  margin: 0 auto 1.25rem;
  max-width: 48rem;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-heading);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.features-hero-lead {
  margin: 0 auto;
  max-width: 52rem;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text-body);
}

.features-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(72px, 1.1fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem 1rem;
  align-items: stretch;
  min-height: min(50vh, 520px);
  max-width: 1080px;
  margin: 0 auto;
}

.feature-glass {
  padding: 1.2rem 1.35rem;
  border-radius: 14px;
  background: var(--surface-glass);
  border: 1px solid var(--border-slate);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.feature-glass:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--accent-border);
  background: var(--surface-glass-hover);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px var(--accent-glow),
    0 0 28px var(--accent-glow-strong);
}

.feature-glass--tl {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.feature-glass--tr {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
}

.feature-glass--bl {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
}

.feature-glass--br {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
}

.feature-glass-title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-heading);
}

.feature-glass-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-body);
}

@media (max-width: 820px) {
  .features-hero-bg {
    background-position: center 35%;
  }

  .features-hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    gap: 1rem;
  }

  .feature-glass--tl,
  .feature-glass--tr,
  .feature-glass--bl,
  .feature-glass--br {
    grid-column: 1;
    grid-row: auto;
    align-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-glass {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .feature-glass:hover {
    transform: none;
  }
}

/* Dev vs Prod consistency (six cards, hub art as section background) */

.section--consistency {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-section-dim);
  padding: clamp(3rem, 8vw, 5rem) 0;
  min-height: min(88vh, 920px);
}

.consistency-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 10, 14, 0.5) 38%,
      rgba(0, 0, 0, 0.82) 100%
    ),
    radial-gradient(
      ellipse 70% 55% at 50% 48%,
      var(--accent-warm-glow),
      transparent 70%
    ),
    radial-gradient(
      ellipse 90% 60% at 50% 42%,
      var(--accent-surface),
      transparent 60%
    ),
    url("assets/images/consistency-hub-bg.png") center 52% / cover no-repeat;
}

.consistency-inner {
  position: relative;
  z-index: 1;
}

.consistency-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.5rem;
}

.consistency-title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-heading);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.consistency-intro {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-body);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.consistency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-areas:
    "a b c"
    "d e f";
}

.consistency-card:nth-child(1) {
  grid-area: a;
}

.consistency-card:nth-child(2) {
  grid-area: b;
}

.consistency-card:nth-child(3) {
  grid-area: c;
}

.consistency-card:nth-child(4) {
  grid-area: d;
}

.consistency-card:nth-child(5) {
  grid-area: e;
}

.consistency-card:nth-child(6) {
  grid-area: f;
}

.consistency-card {
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  background: rgba(8, 12, 18, 0.82);
  border: 1px solid var(--border-slate);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.consistency-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-border);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.5),
    0 0 28px var(--accent-warm-glow);
}

.consistency-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.65rem;
  border-radius: 10px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow-mid);
}

.consistency-card-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-heading);
}

.consistency-card-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-body);
}

@media (max-width: 900px) {
  .section--consistency {
    min-height: 0;
  }

  .consistency-bg {
    background-position: center 40%;
  }

  .consistency-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e"
      "f";
    gap: 1rem;
  }

  .consistency-card:nth-child(1),
  .consistency-card:nth-child(2),
  .consistency-card:nth-child(3),
  .consistency-card:nth-child(4),
  .consistency-card:nth-child(5),
  .consistency-card:nth-child(6) {
    grid-area: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consistency-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .consistency-card:hover {
    transform: none;
  }
}

/* Corporate agentic architecture (blueprint & discovery) */

.section--corp-arch {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  background: var(--bg-section);
}

.corp-arch-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 10, 16, 0.92) 0%,
      rgba(5, 10, 16, 0.88) 45%,
      rgba(5, 10, 16, 0.95) 100%
    ),
    url("assets/images/corp-architecture-bg.png") center / cover no-repeat;
  pointer-events: none;
}

.corp-arch-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.corp-arch-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.corp-arch-copy {
  max-width: 36rem;
}

.corp-arch-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-heading);
  background: var(--surface-badge);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
}

.corp-arch-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-heading);
}

.corp-arch-lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-body);
}

.corp-arch-diagram-wrap {
  display: flex;
  justify-content: center;
}

.corp-arch-diagram {
  width: 100%;
  max-width: 320px;
  padding: 1.35rem 1.25rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(
    165deg,
    rgba(17, 24, 32, 0.95),
    rgba(10, 14, 20, 0.98)
  );
  box-shadow: var(--shadow);
}

.corp-arch-flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.corp-arch-node {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: rgba(8, 12, 18, 0.65);
  color: var(--text);
}

.corp-arch-node-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  background: rgba(61, 214, 199, 0.08);
  color: var(--accent);
}

.corp-arch-node-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.corp-arch-node-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
}

.corp-arch-node-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
}

.corp-arch-node--agent {
  border-color: var(--accent-border);
  background: var(--accent-surface);
  box-shadow:
    0 0 0 1px var(--accent-outline),
    0 0 28px var(--accent-glow-mid),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.corp-arch-node--agent .corp-arch-node-icon {
  background: var(--accent-dim);
  color: var(--accent-soft);
}

.corp-arch-connector {
  display: block;
  width: 2px;
  height: 12px;
  margin: 0 auto;
  border-radius: 1px;
  background: linear-gradient(
    180deg,
    var(--border-slate),
    rgba(61, 214, 199, 0.35)
  );
  opacity: 0.85;
}

.corp-arch-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.corp-arch-metric {
  margin: 0;
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 34, 0.55);
  backdrop-filter: blur(8px);
}

.corp-arch-metric-value {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent);
}

.corp-arch-metric-label {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-body);
}

@media (max-width: 960px) {
  .corp-arch-top {
    grid-template-columns: 1fr;
  }

  .corp-arch-diagram-wrap {
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .corp-arch-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .corp-arch-metrics {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

/* Blueprint CTA (final conversion block) */

.section--blueprint {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-base);
}

.blueprint-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 90% 55% at 50% 0%,
      color-mix(in srgb, var(--accent) 14%, transparent),
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 40% at 50% 100%,
      var(--accent-surface),
      transparent 60%
    );
}

.blueprint-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black, transparent);
}

.blueprint-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

.blueprint-cta-badge {
  margin: 0 0 0.85rem;
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

.blueprint-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.blueprint-text {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 38rem;
}

.blueprint-pillars {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.25rem;
  text-align: left;
}

.blueprint-pillar {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--bg-elevated) 92%, var(--accent) 8%),
    var(--bg-navy-tile)
  );
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.blueprint-pillar-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid var(--accent-border);
}

.blueprint-pillar-text {
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text);
}

.blueprint-cta-btn {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent),
    0 12px 36px color-mix(in srgb, var(--accent) 28%, transparent);
}

.blueprint-cta-btn:hover {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent) 50%, transparent),
    0 16px 44px color-mix(in srgb, var(--accent) 35%, transparent);
}

.bp-node {
  position: absolute;
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  color: var(--text);
}

.bp-node--a {
  top: 12%;
  left: 10%;
}

.bp-node--b {
  top: 18%;
  right: 8%;
}

.bp-node--c {
  bottom: 38%;
  left: 12%;
}

.bp-node--d {
  bottom: 12%;
  right: 14%;
}

/* Footer */

/* ── Site Footer ─────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-footer);
  padding: 3rem 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1.1fr 1fr 1.1fr;
  gap: 2rem 3rem;
  padding-bottom: 2.5rem;
}

/* Column headings */
.footer-col-title {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

/* Nav link lists */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* Contact column */
.footer-contact-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}

.footer-contact-email:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-social-label {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Social icons grid */
.footer-social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social-icon:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.1rem 0 1.4rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-bottom-inner p {
  margin: 0;
}

.footer-logo-white {
  display: block;
  height: auto;
  max-height: 44px;
  width: auto;
  opacity: 0.9;
}

/* Blueprint deliverables (Discovery & architecture timeline) */

.section--blueprint-offer {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-section-dim);
}

.blueprint-offer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 100% 80% at 50% 0%,
      var(--accent-surface),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      var(--bg-section-dim) 0%,
      var(--bg-shade) 50%,
      var(--bg-section-dim) 100%
    );
  pointer-events: none;
}

.blueprint-offer-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23334155' stroke-width='0.5'%3E%3Ccircle cx='40' cy='40' r='1.2' fill='%232a3444'/%3E%3Cpath d='M0 40h80M40 0v80M20 20l40 40M60 20L20 60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.blueprint-offer-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.blueprint-offer-badge {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.4rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  background: var(--accent-surface);
}

.blueprint-offer-title {
  margin: 0 auto 1rem;
  max-width: 38rem;
  font-size: clamp(1.5rem, 3.2vw, 2.125rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.blueprint-offer-lead {
  margin: 0 auto 3rem;
  max-width: 46rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.blueprint-steps-wrap {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 0.5rem;
}

.blueprint-steps-line {
  display: none;
}

@media (min-width: 900px) {
  .blueprint-steps-line {
    display: block;
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--accent-glow-mid) 8%,
      var(--accent-border) 50%,
      var(--accent-glow-mid) 92%,
      transparent
    );
    pointer-events: none;
    z-index: 0;
  }
}

.blueprint-steps {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: left;
}

@media (min-width: 900px) {
  .blueprint-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    text-align: center;
  }
}

.blueprint-step {
  position: relative;
  padding: 0;
}

.blueprint-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  color: var(--accent-soft);
  background: radial-gradient(
    circle at 30% 30%,
    var(--accent-dim),
    rgba(15, 23, 42, 0.9)
  );
  border: 1px solid var(--accent-glow-mid);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
}

@media (min-width: 900px) {
  .blueprint-step-icon {
    margin-bottom: 1.25rem;
  }
}

.blueprint-step-num {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
}

.blueprint-step-title {
  margin: 0 0 0.65rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.blueprint-step-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 899px) {
  .blueprint-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 1rem;
    row-gap: 0.35rem;
    align-items: start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .blueprint-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .blueprint-step-icon {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: start;
    margin: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }

  .blueprint-step-num {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0.25rem;
    min-width: 0;
  }

  .blueprint-step-title {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
  }

  .blueprint-step-text {
    grid-column: 2;
    grid-row: 3;
    min-width: 0;
  }

  .blueprint-step-title,
  .blueprint-step-text {
    text-align: left;
  }
}

/* Arsenal de artefatos (engineering output grid) */

.section--arsenal {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-section);
}

.arsenal-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, var(--accent-surface), transparent 50%),
    linear-gradient(
      180deg,
      var(--bg-section) 0%,
      var(--bg-shade-alt) 50%,
      var(--bg-section) 100%
    );
  pointer-events: none;
}

.arsenal-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%23334155' stroke-width='0.4'%3E%3Cpath d='M0 48h96M48 0v96M24 24l48 48M72 24L24 72'/%3E%3Ccircle cx='48' cy='48' r='1' fill='%233dd6c7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 96px 96px;
}

.arsenal-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.arsenal-badge {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.45rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  background: var(--accent-surface);
}

.arsenal-title {
  margin: 0 auto 1rem;
  max-width: 36rem;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
}

.arsenal-lead {
  margin: 0 auto 2.75rem;
  max-width: 44rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-body);
}

.arsenal-lead strong {
  color: var(--text-heading);
  font-weight: 600;
}

.arsenal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .arsenal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .arsenal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.arsenal-card {
  position: relative;
  padding: 1.35rem 1.35rem 1.15rem;
  background: var(--surface-glass);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.arsenal-card::before,
.arsenal-card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.85;
}

.arsenal-card::before {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}

.arsenal-card::after {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
}

.arsenal-card:hover {
  border-color: var(--accent-glow-mid);
  box-shadow: 0 0 24px var(--accent-glow-strong);
}

.arsenal-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.arsenal-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow-mid);
}

.arsenal-card-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-heading);
}

.arsenal-card-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.arsenal-card-list li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.1rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--text-body);
}

.arsenal-card-list li:last-child {
  margin-bottom: 0;
}

.arsenal-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 7px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.arsenal-card-tag {
  display: inline-block;
  margin: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-soft);
  background: var(--surface-tag);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
}

/* Maturity diagnosis (wizard + radar) */

.section--maturity {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: linear-gradient(180deg, var(--bg-footer) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border-subtle);
}

.maturity-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.maturity-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-heading);
  background: var(--surface-badge);
  border: 1px solid var(--border-slate);
  border-radius: 999px;
}

.maturity-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.maturity-subtitle {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}

.maturity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.maturity-quiz-card,
.maturity-chart-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: var(--shadow);
}

.maturity-chart-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.maturity-module-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.maturity-module-icon {
  display: flex;
  color: var(--accent);
}

.maturity-module-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.maturity-question {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.maturity-options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.maturity-option {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-slate);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.maturity-option:hover {
  border-color: var(--accent-border);
  background: var(--accent-surface);
  color: var(--text);
}

.maturity-option:has(input:checked) {
  border-color: var(--accent-glow-mid);
  background: var(--accent-surface-hover);
  color: var(--text);
}

.maturity-option input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.maturity-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.maturity-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.maturity-progress-track {
  flex: 1;
  height: 6px;
  background: rgba(148, 163, 184, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.maturity-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  border-radius: 999px;
  transition: width 0.35s ease;
}

.maturity-progress-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 2.25rem;
  text-align: right;
}

.maturity-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.maturity-nav .maturity-btn-next {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  padding-block: 0.65rem;
  padding-inline: 0.85rem;
}

.maturity-btn-next:disabled,
.maturity-btn-back:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.maturity-chart-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-align: center;
}

.maturity-chart-wrap {
  position: relative;
  flex: 1;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maturity-chart-wrap canvas {
  max-width: 100%;
  height: auto !important;
}

.maturity-chart-hint {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-soft);
  text-align: center;
}

.maturity-diagnostic-result {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  text-align: left;
}

.maturity-diagnostic-result p {
  margin: 0 0 0.5rem;
}

.maturity-diagnostic-result p:last-child {
  margin-bottom: 0;
}

.maturity-result-score {
  font-weight: 700;
  font-size: 1rem !important;
  margin-bottom: 0.5rem !important;
}

.maturity-result-score--risk {
  color: var(--state-risk);
}

.maturity-result-score--mid {
  color: var(--state-mid);
}

.maturity-result-score--ok {
  color: var(--state-ok);
}

@supports not selector(:has(*)) {
  .maturity-option input:checked + .maturity-option-text {
    color: var(--text);
  }
}

/* Mobile */

@media (max-width: 900px) {
  .blueprint-pillars {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .maturity-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem;
    display: none;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
  }

  .nav-list .btn {
    width: 100%;
    justify-content: center;
  }

  .site-header {
    position: relative;
  }
}

/* ── Blueprint lead modal (pós-diagnóstico) ───────────────── */

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(1rem, 4vh, 2.5rem) 1rem 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.lead-modal[hidden] {
  display: none !important;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(2, 10, 18, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  z-index: 0;
}

.lead-modal-dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(100%, 880px);
  max-width: 100%;
  min-width: 0;
  /* Mobile: scroll interno. Desktop: altura natural — uma única rolagem no .lead-modal (evita barra “fantasma”). */
  max-height: min(92vh, 920px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1.75rem 1.75rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--accent-border);
  background: linear-gradient(
    165deg,
    var(--bg-elevated) 0%,
    var(--bg-navy-tile) 100%
  );
  box-shadow:
    0 0 0 1px rgba(61, 214, 199, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.45);
}

@media (min-width: 900px) {
  .lead-modal-dialog {
    max-height: none;
    overflow-y: visible;
  }
}

.lead-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: color-mix(in srgb, var(--bg-base) 80%, transparent);
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.lead-modal-close:hover {
  color: var(--text);
  border-color: var(--accent-border);
  background: var(--accent-surface);
}

.lead-modal-title {
  margin: 0 2.25rem 1.25rem 0;
  font-size: clamp(1.15rem, 2.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.lead-modal-title--success {
  margin-right: 0;
  margin-bottom: 1rem;
  text-align: center;
}

.lead-fieldset {
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
  min-width: 0;
}

.lead-legend {
  display: block;
  width: 100%;
  margin: 0 0 0.85rem;
  padding-bottom: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
}

.lead-field-hint {
  margin: 0 0 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.lead-field-hint--spaced {
  margin-top: 1.15rem;
}

.lead-optional {
  font-weight: 500;
  color: var(--text-muted);
}

.lead-grid {
  display: grid;
  gap: 0.85rem 1rem;
}

.lead-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.lead-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.lead-label--block {
  width: 100%;
}

.lead-input,
.lead-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg-base);
  border: 1px solid var(--border-slate);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lead-input::placeholder,
.lead-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.75;
}

.lead-input:hover,
.lead-textarea:hover {
  border-color: var(--accent-border);
}

.lead-input:focus,
.lead-textarea:focus {
  outline: none;
  border-color: var(--accent-glow-mid);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.lead-textarea {
  resize: vertical;
  min-height: 5.5rem;
  line-height: 1.5;
}

.lead-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.lead-options--radio {
  gap: 0.4rem;
}

.lead-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.lead-chip input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0.001;
  cursor: pointer;
  z-index: 2;
}

.lead-chip span {
  position: relative;
  z-index: 0;
  display: block;
  padding: 0.45rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: var(--text-muted);
  border: 1px solid var(--border-slate);
  border-radius: 999px;
  background: var(--bg-base);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.lead-chip:hover span {
  border-color: var(--accent-border);
  color: var(--text);
}

.lead-chip input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lead-chip input:checked + span {
  border-color: var(--accent-glow-mid);
  background: var(--accent-surface-hover);
  color: var(--text);
}

.lead-chip--radio input:checked + span {
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent);
}

.lead-form-error {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.875rem;
  color: var(--state-risk, #f87171);
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: 10px;
}

.lead-form-actions {
  margin-top: 0.25rem;
  padding-top: 0.5rem;
}

.lead-submit-btn {
  width: 100%;
  justify-content: center;
}

.lead-submit-btn:disabled,
.lead-submit-btn[aria-busy="true"] {
  opacity: 0.75;
  cursor: wait;
}

.lead-modal-step {
  outline: none;
}

.lead-success-icon {
  display: flex;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.lead-success-body {
  margin: 0 0 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  text-align: center;
  color: var(--text-muted);
}

.lead-success-bullets {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0.65rem 1.75rem;
  text-align: center;
}

.lead-success-bullets li {
  margin: 0;
  flex: 0 1 auto;
}

.lead-success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}

.lead-success-actions .btn {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

@media (max-width: 520px) {
  .lead-grid--2 {
    grid-template-columns: 1fr;
  }

  .lead-modal-dialog {
    padding: 1.35rem 1.15rem 1.25rem;
  }

  .lead-success-bullets {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.45rem;
    text-align: left;
  }
}
