:root {
  --bg: #f8f8fa;
  --surface: #f8f8fa;
  --surface-low: #f1f1f4;
  --surface-lowest: #ffffff;
  --surface-high: #ebebf0;
  --ink: #1b1b1d;
  --muted: #62656d;
  --brand: #4c3cf0;
  --brand-2: #6556ff;
  --brand-soft: rgba(76, 60, 240, 0.10);
  --dark: #0e1018;
  --dark-2: #141824;
  --shadow: 0 28px 60px rgba(19, 20, 26, 0.08);
  --shadow-soft: 0 14px 34px rgba(19, 20, 26, 0.05);
  --radius-lg: 18px;
  --radius-md: 14px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
}

body.theme-dark {
  background: #f3f3f6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(circle at 15% 8%, rgba(76, 60, 240, 0.10), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(76, 60, 240, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
}

body::after {
  opacity: 0.32;
  background-image:
    repeating-linear-gradient(135deg, rgba(27, 27, 29, 0.028) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(45deg, rgba(27, 27, 29, 0.016) 0 1px, transparent 1px 42px);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 248, 250, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(19, 20, 26, 0.05);
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: min(180px, 40vw);
  height: auto;
  display: block;
  flex-shrink: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a,
.chip-link,
.ghost-link {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 6px 9px;
  border-radius: 999px;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.nav a {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  border: none;
}

.nav a.active {
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 24px rgba(19, 20, 26, 0.16);
}

.page-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 18px 60px;
}

.hero-home,
.hero-landing,
.content-block,
.home-grid,
.footer-card {
  animation: rise-in 400ms ease both;
}

.hero-home {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 18%, rgba(101, 86, 255, 0.22), transparent 26%),
    linear-gradient(135deg, #0d1017 0%, #111827 62%, #171c2c 100%);
  color: white;
  box-shadow: var(--shadow);
  padding: 24px;
}

.hero-home::before,
.hero-landing::before {
  content: "";
  position: absolute;
  inset: auto -8% 12% auto;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 68%);
  transform: rotate(-18deg);
  pointer-events: none;
}

.hero-home::after,
.hero-landing::after {
  content: "";
  position: absolute;
  inset: 12% auto auto 58%;
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, rgba(101, 86, 255, 0.22), rgba(101, 86, 255, 0));
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  opacity: 0.75;
  pointer-events: none;
}

.hero-home-grid,
.hero-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(332px, 0.78fr);
  gap: 24px;
  align-items: stretch;
}

.copy {
  padding-right: clamp(0px, 2vw, 28px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 14px;
}

.eyebrow.light {
  color: var(--brand);
  background: rgba(76, 60, 240, 0.10);
}

.eyebrow.dark {
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.10);
}

.hero-home h1,
.hero-landing h1 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.98;
  font-size: clamp(36px, 5vw, 64px);
}

.hero-home h1 .accent,
.hero-landing h1 .accent {
  color: #acb0ff;
}

.hero-home p,
.hero-landing p,
.copy p,
.card p,
.step p,
.footer-card p,
.page-header p {
  line-height: 1.72;
  font-size: 15px;
}

.hero-home p,
.hero-landing p {
  max-width: 620px;
  margin: 10px 0 0;
}

.lead-muted { color: rgba(255,255,255,0.76); }
.lead-light { color: var(--muted); }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-tags span,
.pill,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-tags span {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.86);
}

.hero-tags.light span {
  background: rgba(76, 60, 240, 0.10);
  color: var(--brand);
}

.panel,
.card,
.page-card,
.step,
.footer-card,
.empty-state {
  background: var(--surface-lowest);
  border: none;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.panel {
  padding: 18px;
}

.panel.dark {
  background: linear-gradient(180deg, #111521 0%, #0d1018 100%);
  color: white;
  box-shadow: 0 24px 50px rgba(10, 12, 18, 0.22);
}

.panel h3,
.card h3,
.closing h3,
.footer-card h3,
.page-card h3 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.panel h3 { font-size: 22px; }

.panel p {
  color: var(--muted);
  margin: 10px 0 0;
}

.panel.dark p {
  color: rgba(255,255,255,0.72);
}

.fake-form {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.lead-form {
  align-content: start;
}

.selected-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  padding: 12px 13px;
  background: rgba(76, 60, 240, 0.1);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.consent-row {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 2px;
}

.consent-row input {
  margin: 2px 0 0;
}

.form-status {
  min-height: 20px;
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.form-status[data-state="pending"] {
  color: var(--muted);
}

.form-status[data-state="success"] {
  color: #18794e;
}

.form-status[data-state="error"] {
  color: #b42318;
}

.textarea-field {
  min-height: 110px;
  resize: vertical;
}

.admin-auth-shell {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 180px);
}

.admin-auth-card,
.admin-dashboard-shell,
.lead-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,250,0.94));
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.admin-auth-card {
  width: min(100%, 520px);
  padding: 24px;
}

.admin-auth-card h2 {
  margin: 0 0 8px;
  letter-spacing: -0.05em;
}

.admin-auth-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.admin-dashboard-shell {
  padding: 18px;
}

.dashboard-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-filters {
  display: grid;
  gap: 14px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-form-grid label,
.lead-edit-form label {
  display: grid;
  gap: 6px;
}

.admin-form-grid span,
.lead-edit-form span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.leads-grid {
  display: grid;
  gap: 14px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.capture-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.summary-card {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,250,0.94));
  box-shadow: var(--shadow-soft);
}

.summary-card small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.summary-card strong {
  display: block;
  margin-top: 10px;
  font-size: 32px;
  letter-spacing: -0.05em;
}

.summary-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.capture-summary-card {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,250,0.94));
  box-shadow: var(--shadow-soft);
}

.capture-summary-card small,
.lead-section-head span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.capture-summary-card strong,
.lead-section-head strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.capture-summary-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.capture-summary-card span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.lead-card {
  padding: 18px;
}

.lead-capture-history {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(76, 60, 240, 0.05);
}

.lead-section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  flex-wrap: wrap;
}

.capture-timeline {
  display: grid;
  gap: 8px;
}

.capture-timeline-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(76, 60, 240, 0.10);
}

.capture-timeline-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.45;
}

.capture-timeline-item p,
.capture-timeline-item span {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.lead-playbook-note {
  margin-top: 14px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(76, 60, 240, 0.08);
}

.lead-playbook-note strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.lead-playbook-note span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
}

.lead-card-head,
.lead-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.lead-card-head h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.lead-card-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.lead-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(76, 60, 240, 0.1);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead-meta-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lead-meta-grid div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 12px;
  background: var(--surface-low);
}

.lead-meta-grid strong {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead-meta-grid span {
  font-size: 13px;
  line-height: 1.45;
}

.lead-edit-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.inline-note {
  font-size: 12px;
  color: var(--muted);
}

.admin-empty-state h3 {
  margin: 0 0 8px;
}

.field,
.select {
  width: 100%;
  border: none;
  background: var(--surface-high);
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  outline: none;
}

.field::placeholder { color: #7a808c; }

.panel.dark .field,
.panel.dark .select {
  background: #f7f7fb;
}

.panel.dark .selected-service {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.panel.dark .consent-row,
.hero-note .form-status[data-state="pending"] {
  color: rgba(255, 255, 255, 0.7);
}

.panel.dark .form-status[data-state="success"] {
  color: #86efac;
}

.panel.dark .form-status[data-state="error"] {
  color: #fca5a5;
}

.field:focus,
.select:focus {
  background: white;
  box-shadow: 0 0 0 3px rgba(76, 60, 240, 0.12);
}

.cta,
.cta-inline,
.chip-link.primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white;
  border: none;
  box-shadow: 0 16px 30px rgba(76, 60, 240, 0.20);
}

.cta {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 13px 15px;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.support {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.panel.dark .support {
  color: rgba(255,255,255,0.64);
}

.home-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  grid-auto-flow: dense;
}

.home-grid .page-card:first-child {
  grid-column: span 2;
}

.home-grid .page-card:nth-child(4) {
  grid-column: span 2;
}

.page-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,250,0.96));
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.page-card:hover,
.page-card:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(19, 20, 26, 0.10);
}

.page-card small {
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.page-card h3 { font-size: 19px; }

.page-card p {
  margin: 0;
  color: var(--muted);
}

.page-card .go {
  margin-top: auto;
  align-self: flex-start;
  background: var(--surface-low);
  color: var(--ink);
  border: none;
}

.page-header {
  margin-top: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.page-header h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: -0.05em;
}

.page-header p {
  margin: 6px 0 0;
  color: var(--muted);
  max-width: 760px;
}

.content-block {
  margin-top: 18px;
}

.hero-landing {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-landing.light {
  background:
    radial-gradient(circle at 18% 14%, rgba(76, 60, 240, 0.09), transparent 24%),
    linear-gradient(180deg, #fbfbfd 0%, #f2f3f7 100%);
}

.hero-landing.dark {
  background:
    radial-gradient(circle at 84% 12%, rgba(76, 60, 240, 0.18), transparent 20%),
    linear-gradient(135deg, #0e1118 0%, #131829 100%);
  color: white;
}

.hero-landing .panel { min-height: 100%; }

.copy .hero-tags { margin-top: 16px; }

.content-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
  margin-top: 14px;
}

.page-header.compact {
  margin-top: 0;
}

.trust-section {
  margin-top: 14px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.trust-card {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,250,0.94));
  box-shadow: 0 10px 24px rgba(19, 20, 26, 0.05);
}

.trust-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.trust-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.card {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,250,0.94));
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.options {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 12px;
  padding: 14px 14px;
  background: var(--surface-low);
  border: none;
}

.option strong {
  font-size: 13px;
  line-height: 1.45;
}

.tag {
  flex-shrink: 0;
  color: var(--brand);
  background: rgba(76, 60, 240, 0.10);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, rgba(76, 60, 240, 0.34), rgba(76, 60, 240, 0.06));
}

.step {
  padding: 18px 18px 18px 42px;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,250,0.94));
}

.step::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 0 0 5px rgba(76, 60, 240, 0.08);
}

.step small {
  display: inline-block;
  color: var(--brand);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step strong {
  display: block;
  font-size: 15px;
  line-height: 1.18;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.step p { margin: 0; color: var(--muted); }

.closing {
  margin-top: 12px;
  border-radius: 24px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  background: linear-gradient(135deg, #111521 0%, #151b2a 100%);
  color: white;
  box-shadow: var(--shadow);
}

.closing h3 {
  font-size: clamp(22px, 2.8vw, 28px);
}

.closing p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.72);
}

.cta-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 15px;
  font-weight: 600;
  white-space: nowrap;
}

.footer-card {
  margin-top: 12px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,250,0.94));
}

.footer-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.empty-state {
  margin-top: 18px;
  padding: 22px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,250,0.94));
}

.subnav {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.subnav .ghost-link {
  background: rgba(255,255,255,0.86);
  color: var(--ink);
  border: none;
}

.home-cta-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-link {
  background: rgba(255,255,255,0.88);
  color: var(--ink);
  border: none;
}

.muted-note {
  margin-top: 10px;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.55;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .hero-home-grid,
  .hero-landing-grid,
  .content-grid,
  .trust-grid,
  .closing {
    grid-template-columns: 1fr;
  }

  .home-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps::before {
    left: 14px;
  }

  .step {
    padding-left: 40px;
  }

  .admin-form-grid,
  .lead-meta-grid,
  .summary-grid,
  .capture-summary-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .page-shell,
  .hero-home,
  .hero-landing {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar-inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero-home,
  .hero-landing {
    padding-top: 22px;
    padding-bottom: 22px;
    border-radius: 20px;
  }

  .home-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .home-grid .page-card:first-child,
  .home-grid .page-card:nth-child(4) {
    grid-column: auto;
  }

  .steps::before {
    left: 13px;
  }

  .nav {
    justify-content: flex-start;
  }

  .page-card,
  .panel,
  .card,
  .step,
  .footer-card,
  .empty-state {
    border-radius: 16px;
  }

  .closing {
    padding: 18px;
    border-radius: 0;
  }

  .admin-form-grid,
  .lead-meta-grid,
  .summary-grid,
  .capture-summary-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-actions-row {
    width: 100%;
  }

  .capture-timeline-item {
    flex-direction: column;
  }
}

.hero-home,
.hero-landing {
  border-radius: 0;
  box-shadow: none;
}

.hero-home {
  background:
    linear-gradient(135deg, #0e1018 0%, #111827 68%, #171c2c 100%);
}

.hero-landing.light {
  background: linear-gradient(180deg, #fbfbfd 0%, #f2f3f7 100%);
}

.hero-landing.dark {
  background: linear-gradient(135deg, #0e1118 0%, #131829 100%);
}

.hero-note,
.section-flat,
.page-footer-flat,
.page-link,
.route-list > div,
.home-cta-row .ghost-link,
.home-cta-row .cta-inline,
.nav a,
.field,
.select,
.cta,
.step,
.option,
.closing {
  border-radius: 0 !important;
}

.hero-note,
.section-flat,
.page-footer-flat {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hero-note {
  padding-top: 8px;
}

.page-list {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid rgba(19, 20, 26, 0.10);
}

.page-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(19, 20, 26, 0.10);
  background: transparent;
  box-shadow: none;
}

.page-link-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.page-link-copy {
  display: grid;
  gap: 4px;
}

.page-link-copy strong {
  font-size: 18px;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.page-link-copy span {
  color: var(--muted);
  line-height: 1.55;
}

.page-link-action {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.page-link:hover,
.page-link:focus-visible {
  background: rgba(19, 20, 26, 0.02);
}

.content-stack {
  display: grid;
  gap: 18px;
}

.section-flat {
  border-top: 1px solid rgba(19, 20, 26, 0.10);
  padding-top: 18px;
}

.section-flat h3,
.page-footer-flat h3,
.hero-note h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.section-flat p,
.page-footer-flat p,
.hero-note p {
  margin: 0 0 10px;
}

.route-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.route-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(19, 20, 26, 0.10);
}

.route-list > div strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.route-list > div span {
  font-size: 12px;
  color: var(--muted);
}

.home-cta-row .ghost-link,
.home-cta-row .cta-inline {
  border-radius: 0 !important;
}

.cta-inline,
.ghost-link,
.nav a,
.field,
.select,
.cta {
  border-radius: 0 !important;
}

.hero-tags,
.eyebrow,
.page-card,
.page-card small,
.page-card h3,
.page-card p,
.page-card .go,
.footer-card,
.subnav,
.chip-link,
.panel,
.card,
.empty-state {
  display: none !important;
}

.admin-auth-card,
.admin-dashboard-shell,
.lead-card,
.admin-empty-state {
  display: block !important;
}

.leads-grid,
.admin-form-grid,
.lead-meta-grid {
  display: grid !important;
}

.home-grid {
  display: none;
}

.page-shell {
  padding-top: 0;
}

.muted-note {
  color: var(--muted);
}

/* Final visual balance pass */
.hero-home-grid,
.hero-landing-grid {
  align-items: start;
  gap: 28px;
}

.copy {
  padding-right: 0;
}

.hero-home p,
.hero-landing p {
  max-width: 680px;
  margin-top: 18px;
}

.home-cta-row {
  margin-top: 24px;
  gap: 12px;
}

.hero-note {
  margin-top: 4px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(10, 12, 18, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-note h3 {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.12;
}

.hero-note p {
  max-width: 92%;
  margin-bottom: 0;
  font-size: 13px;
}

.hero-home::before,
.hero-landing::before {
  width: min(30vw, 340px);
  opacity: 0.42;
}

.hero-home::after,
.hero-landing::after {
  inset: 10% auto auto 60%;
  width: 232px;
  height: 232px;
  opacity: 0.38;
}

.page-list {
  margin-top: 16px;
}

.page-link {
  padding: 18px 0;
  gap: 18px;
}

.page-link-index {
  width: 34px;
  flex: 0 0 34px;
}

.page-link-copy {
  gap: 6px;
}

.page-link-copy strong {
  font-size: 18px;
}

.page-link-copy span {
  max-width: 760px;
  font-size: 14px;
}

.page-link-action {
  color: var(--brand);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.content-stack {
  gap: 20px;
}

.section-flat,
.page-footer-flat {
  padding-top: 16px;
}

.section-flat h3,
.page-footer-flat h3,
.hero-note h3,
.page-header h2 {
  letter-spacing: -0.05em;
}

.section-flat p,
.page-footer-flat p,
.hero-note p {
  line-height: 1.76;
  margin-bottom: 12px;
}

.route-list > div {
  padding: 15px 0;
}

.option {
  padding: 15px 0;
  gap: 18px;
}

.option strong {
  font-size: 14px;
}

.step {
  padding: 22px 22px 22px 46px;
  border: 1px solid rgba(19, 20, 26, 0.06);
  box-shadow: 0 10px 24px rgba(19, 20, 26, 0.05);
}

.step::before {
  top: 24px;
}

.closing {
  margin-top: 22px;
  padding: 26px;
  align-items: center;
  border: 1px solid rgba(19, 20, 26, 0.06);
  box-shadow: 0 18px 40px rgba(10, 12, 18, 0.10);
}

.closing h3 {
  margin-bottom: 8px;
}

.closing p {
  line-height: 1.7;
  max-width: 720px;
}

.footer-card,
.page-footer-flat {
  margin-top: 22px;
}

.page-shell {
  padding-top: 24px;
}

@media (max-width: 1024px) {
  .hero-home-grid,
  .hero-landing-grid {
    gap: 22px;
  }

  .hero-note {
    padding: 22px 24px;
  }

  .page-link {
    grid-template-columns: auto 1fr;
    row-gap: 10px;
  }

  .page-link-action {
    grid-column: 2;
  }

  .step,
  .closing {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 720px) {
  .hero-home,
  .hero-landing {
    padding: 24px;
  }

  .hero-home-grid,
  .hero-landing-grid {
    gap: 18px;
  }

  .hero-note {
    padding: 20px 18px;
  }

  .page-link {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .page-link-action {
    grid-column: auto;
  }

  .route-list > div {
    flex-direction: column;
    align-items: flex-start;
  }

  .step,
  .closing {
    padding: 20px;
  }
}

/* Second-pass balance overrides */
.topbar-inner {
  padding: 7px 16px;
  gap: 14px;
}

.brand-logo {
  width: min(150px, 34vw);
}

.nav {
  gap: 6px;
}

.nav a,
.chip-link,
.ghost-link {
  font-size: 10px;
  padding: 6px 8px;
}

.page-shell {
  padding: 16px 16px 56px;
}

.hero-home {
  padding: 22px;
}

.hero-home-grid,
.hero-landing-grid {
  gap: 22px;
  align-items: start;
}

.copy {
  padding-right: 0;
}

.hero-home h3,
.hero-landing h1 {
  font-size: clamp(28px, 3.6vw, 44px);
}

.hero-home p,
.hero-landing p,
.copy p,
.card p,
.step p,
.footer-card p,
.page-header p {
  font-size: 14px;
  line-height: 1.68;
}

.panel,
.card,
.page-card,
.step,
.footer-card,
.empty-state {
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(19, 20, 26, 0.05);
}

.panel {
  padding: 16px;
}

.panel h3 {
  font-size: 18px;
}

.hero-note h4,
.section-flat h4,
.page-footer-flat h4,
.page-header h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.hero-note {
  padding: 14px 16px;
}

.hero-note h4 {
  margin-bottom: 6px;
  line-height: 1.12;
}

.hero-note p {
  font-size: 13px;
  margin-bottom: 0;
}

.page-list {
  margin-top: 14px;
}

.page-link {
  padding: 16px 0;
  gap: 16px;
}

.page-link-copy strong {
  font-size: 17px;
}

.page-link-copy span {
  font-size: 14px;
}

.page-link-action {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.content-grid {
  gap: 14px;
  margin-top: 14px;
}

.card {
  padding: 16px;
}

.options {
  gap: 8px;
  margin-top: 8px;
}

.option {
  border-radius: 10px;
  padding: 12px 0;
}

.steps {
  margin-top: 12px;
}

.step {
  padding: 16px 16px 16px 40px;
  border: 1px solid rgba(19, 20, 26, 0.06);
  box-shadow: 0 10px 24px rgba(19, 20, 26, 0.05);
}

.step::before {
  top: 20px;
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 4px rgba(76, 60, 240, 0.08);
}

.closing {
  margin-top: 10px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(19, 20, 26, 0.06);
  box-shadow: 0 18px 40px rgba(10, 12, 18, 0.10);
}

.cta-inline {
  border-radius: 10px;
  padding: 10px 14px;
}

.footer-card {
  margin-top: 12px;
  padding: 16px;
}

@media (max-width: 1024px) {
  .hero-home-grid,
  .hero-landing-grid {
    gap: 20px;
  }

  .page-link {
    grid-template-columns: auto 1fr;
    row-gap: 8px;
  }

  .page-link-action {
    grid-column: 2;
  }

  .step,
  .closing {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    padding: 6px 12px;
    gap: 10px;
  }

  .brand-logo {
    width: min(132px, 42vw);
  }

  .nav {
    gap: 4px;
  }

  .nav a,
  .chip-link,
  .ghost-link {
    font-size: 9.5px;
    padding: 5px 7px;
  }

  .landing-general .brand-logo--btg {
    width: min(184px, 58vw);
  }

  .landing-refined .brand-logo--btg {
    width: min(184px, 58vw);
  }

  .page-shell {
    padding: 14px 12px 52px;
  }

  .hero-home,
  .hero-landing {
    padding: 18px;
  }

  .hero-home-grid,
  .hero-landing-grid {
    gap: 14px;
  }

  .hero-note {
    padding: 12px 14px;
  }

  .hero-home::before,
  .hero-landing::before {
    width: min(28vw, 180px);
    opacity: 0.24;
  }

  .hero-home::after,
  .hero-landing::after {
    width: 140px;
    height: 140px;
    opacity: 0.18;
    inset: 8% auto auto 66%;
  }

  .page-link {
    grid-template-columns: 1fr;
    padding: 14px 0;
    gap: 8px;
  }

  .page-link-index,
  .page-link-action {
    grid-column: auto;
  }

  .content-grid {
    gap: 12px;
  }

  .trust-grid {
    gap: 12px;
  }

  .card,
  .panel {
    padding: 14px;
  }

  .options,
  .steps {
    gap: 10px;
  }

  .option {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 12px 0;
  }

  .route-list > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .step,
  .closing {
    padding: 16px;
  }

  .closing {
    grid-template-columns: 1fr;
  }
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.page-link-copy small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  word-break: break-word;
}

.hero-proof-list {
  display: grid !important;
  gap: 8px;
  margin-top: 14px;
}

.hero-proof-item {
  padding: 10px 12px;
  background: rgba(76, 60, 240, 0.08);
  font-size: 12px;
  line-height: 1.5;
}

.panel.dark .hero-proof-item,
.hero-landing.dark .hero-proof-item {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255,255,255,0.84);
}

.readiness-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

/* Public experience refresh */
.page-shell-home {
  gap: 20px;
}

.hero-home-commercial,
.hero-landing {
  padding: clamp(28px, 4vw, 44px) !important;
}

.hero-home-commercial .copy h1,
.hero-landing .copy h1 {
  max-width: 12ch;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.94;
}

.hero-home-commercial .lead-muted,
.hero-landing .lead-muted,
.hero-landing .lead-light {
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.7;
}

.hero-home-commercial .hero-home-grid,
.hero-landing-grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: 34px;
}

.hero-note-commercial,
.hero-landing .hero-note {
  padding: 22px 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow: none !important;
}

.hero-landing.light .hero-note {
  border-color: rgba(19, 20, 26, 0.08);
  background: rgba(19, 20, 26, 0.03) !important;
}

.hero-note-commercial h4,
.hero-landing .hero-note h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.hero-note-commercial p,
.hero-note-list p,
.hero-landing .hero-note p {
  margin: 0;
  max-width: none;
  font-size: 14px;
  line-height: 1.65;
}

.hero-note-list {
  display: grid;
  gap: 10px;
}

.hero-note-list p {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-home-commercial .ghost-link,
.hero-home-commercial .cta-inline,
.closing-editorial .cta-inline {
  min-height: 46px;
  padding: 0 18px;
}

.content-block-home-list {
  padding-top: 6px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.74);
}

.page-header h3,
.narrative-intro h3,
.flow-section h3 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.page-header p,
.narrative-intro p,
.narrative-header p {
  max-width: 64ch;
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.74;
  color: var(--muted);
}

.page-list {
  margin-top: 18px;
}

.page-link {
  padding: 22px 0;
  gap: 20px;
}

.page-link-copy strong {
  font-size: 24px;
  line-height: 1.02;
}

.page-link-copy span {
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.68;
}

.page-link-action {
  font-size: 11px;
  letter-spacing: 0.11em;
}

.narrative-intro-block,
.decision-section,
.steps-editorial,
.flow-section {
  margin-top: 18px;
  padding: 26px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,248,250,0.92));
  border: 1px solid rgba(19, 20, 26, 0.08);
  box-shadow: 0 18px 42px rgba(19, 20, 26, 0.05);
}

.narrative-intro {
  max-width: 72ch;
}

.decision-list,
.steps-editorial-list,
.flow-list {
  margin-top: 18px;
  border-top: 1px solid rgba(19, 20, 26, 0.10);
}

.decision-item,
.step-editorial,
.flow-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(19, 20, 26, 0.10);
}

.decision-index,
.step-editorial-index,
.flow-index {
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.decision-item p,
.step-editorial p,
.flow-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.step-editorial {
  align-items: start;
}

.decision-item,
.step-editorial,
.flow-item {
  background: rgba(255, 255, 255, 0.52);
}

.step-editorial-copy strong {
  display: block;
  margin: 0 0 6px;
  font-size: 19px;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.flow-item strong {
  display: block;
  margin: 0 0 6px;
  font-size: 19px;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.closing-editorial {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) auto;
  align-items: center;
  gap: 18px;
  padding: 24px 28px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #111521 0%, #151b2a 100%) !important;
  border: none !important;
  box-shadow: 0 22px 54px rgba(12, 14, 22, 0.18) !important;
}

.closing-editorial-copy {
  max-width: 72ch;
}

.closing-editorial-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.closing-editorial h3 {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.closing-editorial p {
  max-width: 62ch;
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.68;
}

body.landing-general {
  background: #f3f4f8;
}

body.landing-refined {
  background: #f3f4f8;
}

body.landing-refined::before {
  background:
    radial-gradient(circle at 14% 8%, rgba(91, 79, 255, 0.10), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(91, 79, 255, 0.07), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

body.landing-general::before {
  background:
    radial-gradient(circle at 14% 8%, rgba(91, 79, 255, 0.10), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(91, 79, 255, 0.07), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.landing-general .topbar {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.06);
}

.landing-refined .topbar {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.06);
}

.landing-general .brand-logo--btg {
  width: min(214px, 46vw);
}

.landing-refined .brand-logo--btg {
  width: min(214px, 46vw);
}

.landing-general .page-shell {
  padding-top: 22px;
  padding-bottom: 72px;
}

.landing-refined .page-shell {
  padding-top: 22px;
  padding-bottom: 72px;
}

.landing-general .page-actions .ghost-link {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: #1f2937;
}

.landing-refined .page-actions .ghost-link {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: #1f2937;
}

.landing-refined .hero-landing {
  overflow: hidden;
  border-radius: 28px;
  padding: 0 !important;
  box-shadow: 0 20px 60px rgba(7, 10, 24, 0.14) !important;
}

.landing-refined .hero-landing.light {
  background:
    radial-gradient(circle at top left, rgba(91, 79, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #fbfbfd 0%, #eef1f8 100%) !important;
}

.landing-refined .hero-landing.dark {
  background:
    radial-gradient(circle at top left, rgba(91, 79, 255, 0.22), transparent 38%),
    radial-gradient(circle at bottom left, rgba(22, 97, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #060816 0%, #0c1020 58%, #11172a 100%) !important;
}

.landing-refined .hero-landing::before {
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  background: none;
}

.landing-refined .hero-landing::after {
  inset: auto auto -18% 56%;
  width: min(32vw, 360px);
  height: min(32vw, 360px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  clip-path: none;
}

.landing-refined .hero-landing-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 0;
}

.landing-refined .hero-landing .copy {
  position: relative;
  padding: 42px 44px 46px;
}

.landing-refined .hero-landing .eyebrow.dark,
.landing-refined .hero-landing .eyebrow.light {
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  letter-spacing: 0.24em;
}

.landing-refined .hero-landing .eyebrow.dark {
  color: #8f97b5;
}

.landing-refined .hero-landing .eyebrow.light {
  color: #5f6786;
}

.landing-refined .hero-landing h1 {
  max-width: 11ch;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.landing-refined .hero-landing p.lead-muted,
.landing-refined .hero-landing p.lead-light {
  max-width: 34rem;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.72;
}

.landing-refined .hero-landing p.lead-muted {
  color: #c7cce1;
}

.landing-refined .hero-landing p.lead-light {
  color: #4b5563;
}

.landing-refined .hero-landing .hero-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 28px !important;
  border-radius: 0;
  box-shadow: none !important;
}

.landing-refined .hero-landing.dark .hero-note {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(19, 25, 55, 0.92), rgba(11, 14, 32, 0.96)) !important;
}

.landing-refined .hero-landing.light .hero-note {
  border: none;
  border-left: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 252, 0.98)) !important;
}

.landing-refined .hero-landing .hero-note h3 {
  font-size: 16px;
}

.landing-refined .hero-landing.dark .hero-note h3 {
  color: #ffffff;
}

.landing-refined .hero-landing.light .hero-note h3 {
  color: #111827;
}

.landing-refined .hero-landing .hero-note p {
  font-size: 13px;
  line-height: 1.65;
}

.landing-refined .hero-landing.dark .hero-note p,
.landing-refined .hero-landing.dark .consent-row {
  color: #c5c9dc;
}

.landing-refined .hero-landing.light .hero-note p,
.landing-refined .hero-landing.light .consent-row {
  color: #4b5563;
}

.landing-general .hero-landing.dark {
  overflow: hidden;
  border-radius: 28px;
  padding: 0 !important;
  background:
    radial-gradient(circle at top left, rgba(91, 79, 255, 0.22), transparent 38%),
    radial-gradient(circle at bottom left, rgba(22, 97, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #060816 0%, #0c1020 58%, #11172a 100%) !important;
  box-shadow: 0 20px 60px rgba(7, 10, 24, 0.18) !important;
}

.landing-general .hero-landing::before {
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  background: none;
}

.landing-general .hero-landing::after {
  inset: auto auto -18% 56%;
  width: min(32vw, 360px);
  height: min(32vw, 360px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  clip-path: none;
}

.landing-general .hero-landing-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 0;
}

.landing-general .hero-landing .copy {
  position: relative;
  padding: 42px 44px 46px;
}

.landing-general .hero-landing .eyebrow.dark {
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  color: #8f97b5;
  letter-spacing: 0.24em;
}

.landing-general .hero-landing h1 {
  max-width: 11ch;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.landing-general .hero-landing p.lead-muted {
  max-width: 34rem;
  margin-top: 22px;
  color: #c7cce1;
  font-size: 16px;
  line-height: 1.72;
}

.landing-general .hero-landing .hero-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 28px !important;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(19, 25, 55, 0.92), rgba(11, 14, 32, 0.96)) !important;
  box-shadow: none !important;
}

.landing-general .hero-landing .hero-note h3 {
  font-size: 16px;
  color: #ffffff;
}

.landing-general .hero-landing .hero-note p {
  color: #c5c9dc;
  font-size: 13px;
  line-height: 1.65;
}

.landing-general .lead-form {
  margin-top: 18px;
  gap: 10px;
}

.landing-general .field,
.landing-general .select,
.landing-general .selected-service,
.landing-general .cta {
  min-height: 46px;
  border-radius: 12px;
}

.landing-general .field,
.landing-general .select {
  background: #ffffff;
}

.landing-general .cta {
  margin-top: 2px;
}

.landing-general .consent-row {
  color: #c5c9dc;
}

.landing-refined .lead-form {
  margin-top: 18px;
  gap: 10px;
}

.landing-refined .field,
.landing-refined .select,
.landing-refined .selected-service,
.landing-refined .cta {
  min-height: 46px;
  border-radius: 12px;
}

.landing-refined .hero-landing .field,
.landing-refined .hero-landing .select {
  background: #ffffff;
}

.landing-refined .cta {
  margin-top: 2px;
}

.landing-refined .narrative-intro-block,
.landing-refined .decision-section,
.landing-refined .steps-editorial,
.landing-refined .flow-section,
.landing-refined .closing-editorial {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.landing-refined .narrative-intro-block,
.landing-refined .decision-section,
.landing-refined .steps-editorial,
.landing-refined .flow-section {
  padding: 28px 30px;
}

.landing-refined .decision-item,
.landing-refined .step-editorial,
.landing-refined .flow-item {
  background: transparent;
}

.landing-refined .decision-item p,
.landing-refined .step-editorial p,
.landing-refined .flow-item p,
.landing-refined .closing-editorial p {
  color: #4b5563;
}

.landing-refined .closing-editorial {
  grid-template-columns: minmax(0, 1.18fr) auto;
  align-items: center;
  gap: 22px;
  padding: 30px 32px !important;
  background:
    radial-gradient(circle at top left, rgba(112, 108, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #f7f9ff 0%, #eef3ff 58%, #e9efff 100%) !important;
  border: 1px solid rgba(99, 102, 241, 0.12) !important;
  box-shadow: 0 20px 44px rgba(79, 70, 229, 0.08) !important;
}

.landing-refined .closing-editorial h3 {
  max-width: 22ch;
  color: #111827;
}

.landing-refined .closing-editorial p {
  max-width: 66ch;
  color: #4b5563;
}

.landing-refined .closing-editorial .section-kicker-light {
  margin-bottom: 12px;
  color: #6d5efc;
}

.landing-refined .closing-editorial .cta-inline {
  min-width: 220px;
}

.landing-refined .step-editorial-copy strong,
.landing-refined .flow-item strong {
  font-size: 21px;
  line-height: 1.18;
}

.landing-general .narrative-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.landing-general .narrative-intro-grid .narrative-intro {
  max-width: none;
  min-height: 100%;
  padding: 28px 30px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.landing-general .narrative-intro-grid .narrative-intro h3 {
  max-width: 18ch;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.landing-general .narrative-intro-grid .narrative-intro p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
}

.landing-general .decision-section-general,
.landing-general .steps-editorial-general {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: start;
  padding: 28px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.landing-general .decision-section-general .narrative-intro,
.landing-general .steps-editorial-general .narrative-intro,
.landing-general .flow-section-general .narrative-header {
  max-width: none;
}

.landing-general .decision-section-general .decision-list,
.landing-general .steps-editorial-general .steps-editorial-list,
.landing-general .flow-section-general .flow-list {
  margin-top: 0;
  border-top: none;
}

.landing-general .decision-section-general .decision-item {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  background: transparent;
}

.landing-general .decision-section-general .decision-item:first-child {
  padding-top: 0;
}

.landing-general .decision-section-general .decision-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.landing-general .decision-section-general .decision-item p {
  color: #374151;
}

.landing-general .steps-editorial-general .steps-editorial-list {
  display: grid;
  gap: 16px;
}

.landing-general .steps-editorial-general .step-editorial {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 20px;
  border: 1px solid #eceef4;
  border-radius: 18px;
  background: #fafbff;
}

.landing-general .steps-editorial-general .step-editorial:last-child {
  border-bottom: 1px solid #eceef4;
}

.landing-general .steps-editorial-general .step-editorial-index,
.landing-general .flow-section-general .flow-index {
  font-size: 12px;
  letter-spacing: 0.18em;
}

.landing-general .steps-editorial-general .step-editorial-copy strong,
.landing-general .flow-section-general .flow-item strong {
  font-size: 21px;
  line-height: 1.18;
}

.landing-general .steps-editorial-general .step-editorial p,
.landing-general .flow-section-general .flow-item p {
  color: #4b5563;
}

.landing-general .flow-section-general {
  padding: 28px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.landing-general .flow-section-general .narrative-header p {
  max-width: 70ch;
  color: #4b5563;
}

.landing-general .flow-section-general .flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.landing-general .flow-section-general .flow-item {
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 22px;
  border: 1px solid #eceef4;
  border-radius: 18px;
  background: #fbfbfe;
}

.landing-general .flow-section-general .flow-item:last-child {
  border-bottom: 1px solid #eceef4;
}

.landing-general .closing-editorial-general {
  margin-top: 24px;
  padding: 30px 32px !important;
  border-radius: 24px !important;
  grid-template-columns: minmax(0, 1.2fr) auto;
  background: linear-gradient(135deg, #08101f 0%, #10182b 100%) !important;
  box-shadow: 0 20px 50px rgba(6, 16, 31, 0.2) !important;
}

.landing-general .closing-editorial-general h3 {
  max-width: 24ch;
  color: #ffffff;
}

.landing-general .closing-editorial-general p {
  max-width: 68ch;
  color: #c7cce1;
}

.landing-general .closing-editorial-general .section-kicker-light {
  margin-bottom: 12px;
  color: #7c6cff;
}

@media (max-width: 1024px) {
  .hero-home-commercial .hero-home-grid,
  .hero-landing-grid,
  .closing-editorial {
    grid-template-columns: 1fr;
  }

  .landing-refined .hero-landing-grid {
    grid-template-columns: 1fr;
  }

  .landing-refined .hero-landing .hero-note {
    border-left: none !important;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
  }

  .landing-general .hero-landing .hero-note {
    border-left: none;
  }

  .landing-general .narrative-intro-grid,
  .landing-general .decision-section-general,
  .landing-general .steps-editorial-general {
    grid-template-columns: 1fr;
  }

  .landing-general .flow-section-general .flow-list {
    grid-template-columns: 1fr;
  }

  .page-link {
    grid-template-columns: 42px 1fr;
  }

  .page-link-action {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .hero-home-commercial .copy h1,
  .hero-landing .copy h1,
  .closing-editorial h3,
  .page-header h3,
  .narrative-intro h3,
  .flow-section h3 {
    max-width: none;
    font-size: clamp(34px, 10vw, 46px);
  }

  .page-link,
  .decision-item,
  .step-editorial,
  .flow-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-link-action,
  .decision-index,
  .step-editorial-index,
  .flow-index {
    grid-column: auto;
  }

  .hero-home-commercial,
  .hero-landing,
  .closing-editorial {
    padding: 22px 18px !important;
  }

  .landing-general .hero-landing.dark {
    padding: 0 !important;
  }

  .landing-refined .hero-landing.dark,
  .landing-refined .hero-landing.light {
    padding: 0 !important;
  }

  .landing-general .hero-landing .copy,
  .landing-general .hero-landing .hero-note,
  .landing-general .narrative-intro-grid .narrative-intro,
  .landing-general .decision-section-general,
  .landing-general .steps-editorial-general,
  .landing-general .flow-section-general,
  .landing-general .closing-editorial-general {
    padding: 22px 18px !important;
  }

  .narrative-intro-block,
  .decision-section,
  .steps-editorial,
  .flow-section {
    padding: 22px 18px;
  }

  .landing-refined .hero-landing .copy,
  .landing-refined .hero-landing .hero-note,
  .landing-refined .narrative-intro-block,
  .landing-refined .decision-section,
  .landing-refined .steps-editorial,
  .landing-refined .flow-section,
  .landing-refined .closing-editorial {
    padding: 22px 18px !important;
  }

  .landing-general .hero-landing h1,
  .landing-general .narrative-intro-grid .narrative-intro h3,
  .landing-general .closing-editorial-general h3 {
    max-width: none;
  }

  .closing-editorial-actions {
    justify-content: flex-start;
  }
}
  gap: 12px;
}

.readiness-card {
  display: block !important;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,250,0.94));
  box-shadow: 0 10px 24px rgba(19, 20, 26, 0.05);
}

.readiness-card small {
  display: block !important;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.readiness-card strong {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.03em;
}

.publication-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.publication-card {
  display: grid !important;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,250,0.94));
  box-shadow: 0 10px 24px rgba(19, 20, 26, 0.05);
}

.publication-card-head small {
  display: inline-flex !important;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.publication-card-head h4 {
  margin: 8px 0 0;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.publication-card-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.publication-url-stack {
  display: grid !important;
  gap: 10px;
}

.publication-url-stack div {
  display: grid !important;
  gap: 4px;
  padding: 12px;
  background: var(--surface-low);
}

.publication-url-stack strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.publication-url-stack span {
  font-size: 13px;
  line-height: 1.55;
  word-break: break-word;
}

.campaign-link-actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1024px) {
  .readiness-grid,
  .publication-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .page-actions,
  .campaign-link-actions {
    width: 100%;
  }

  .readiness-grid,
  .publication-grid {
    grid-template-columns: 1fr;
  }
}