/* Landing-page styles for Constru Match. Extends colors_and_type.css */

* { box-sizing: border-box; }
body { margin: 0; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.ms {
  font-family: 'Material Symbols Rounded';
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  user-select: none;
}

/* ============ Layout helpers ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cm-brand);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--cm-brand);
  border-radius: 2px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  border-radius: var(--cm-radius-pill);
  padding: 14px 24px;
  font-size: 16px;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease, transform 0.05s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--cm-brand);
  color: #fff;
}
.btn-primary:hover { background: var(--cm-brand-hover); }
.btn-secondary {
  background: var(--cm-neutral-900);
  color: #fff;
}
.btn-secondary:hover { background: var(--cm-neutral-700); }
.btn-ghost {
  background: transparent;
  color: var(--cm-fg);
}
.btn-ghost:hover { background: var(--cm-neutral-100); }
.btn-outline {
  background: transparent;
  color: var(--cm-fg);
  box-shadow: inset 0 0 0 1.5px var(--cm-border-strong);
}
.btn-outline:hover { background: var(--cm-neutral-050); }
.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.scrolled { border-bottom-color: var(--cm-border); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.nav-logo img {
  width: 32px; height: 32px;
  object-fit: contain;
}
.nav-logo .match { color: var(--cm-brand); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--cm-fg);
}
.nav-links a:hover { background: var(--cm-neutral-100); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 880px) {
  .nav-links { display: none; }
}
@media (max-width: 520px) {
  .nav-cta .ghost-hide { display: none; }
}

/* ============ Sections ============ */
section { padding: 96px 0; }
@media (max-width: 640px) { section { padding: 64px 0; } }

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.section-head p {
  margin-top: 16px;
  color: var(--cm-fg-muted);
  font-size: 18px;
  line-height: 1.5;
  text-wrap: pretty;
}
.section-head.center {
  margin-left: auto; margin-right: auto; text-align: center;
}
.section-head.center .eyebrow { justify-content: center; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding-top: 56px;
  padding-bottom: 64px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
}
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-title {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--cm-fg);
  text-shadow: none;
  -webkit-text-fill-color: var(--cm-fg);
  background: none;
  filter: none;
  mix-blend-mode: normal;
  text-wrap: balance;
}
.hero-title .accent {
  color: var(--cm-brand);
  -webkit-text-fill-color: var(--cm-brand);
}
.hero-title .underline {
  position: relative;
  white-space: nowrap;
}
.hero-title .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 10px;
  background: var(--cm-peach-100);
  border-radius: 999px;
  z-index: -1;
}
.hero-sub {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--cm-fg-muted);
  max-width: 640px;
  text-wrap: pretty;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-proof {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.avatar-stack {
  display: flex;
}
.avatar-stack .av {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--cm-neutral-200);
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.avatar-stack .av:first-child { margin-left: 0; }
.hero-proof .stars {
  color: var(--cm-orange-400);
  display: inline-flex;
  gap: 1px;
}
.hero-proof .proof-text {
  font-size: 14px;
  color: var(--cm-fg-muted);
  line-height: 1.3;
}
.hero-proof .proof-text strong { color: var(--cm-fg); font-weight: 800; }

/* Hero phone mock */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}
.phone-mock {
  width: 320px;
  height: 640px;
  background: #fff;
  border-radius: 40px;
  box-shadow:
    0 40px 80px rgba(15,15,14,0.20),
    0 0 0 10px #111,
    0 0 0 11px #222;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #111;
  border-radius: 18px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}

/* floating category card decoration */
.hero-float {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15,15,14,0.15);
  background: #fff;
  z-index: 3;
}
.hero-float.card-a {
  width: 200px; height: 120px;
  left: -10px; bottom: 60px;
  background-image: url('assets/category/pintor.jpeg');
  background-size: cover;
  background-position: center;
}
.hero-float.card-a::after {
  content: 'Pintor • R$ 180/dia';
  position: absolute;
  left: 12px; bottom: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-float.card-b {
  width: 220px;
  right: -8px; top: 80px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
}
.hero-float.card-b .sparkle {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--cm-brand-soft);
  color: var(--cm-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-float.card-b .txt { font-size: 13px; line-height: 1.3; }
.hero-float.card-b .txt strong { display: block; font-weight: 800; font-size: 14px; }
.hero-float.card-b .txt span { color: var(--cm-fg-muted); }

.hero-bg-blob {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--cm-orange-50) 0%, transparent 70%);
  right: -10%;
  top: -10%;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 720px) {
  .hero-title {
    color: var(--cm-fg);
    text-shadow: none;
    -webkit-text-fill-color: var(--cm-fg);
    background: none;
    filter: none;
    mix-blend-mode: normal;
  }
  .hero-title .accent {
    color: var(--cm-brand);
    -webkit-text-fill-color: var(--cm-brand);
  }
  .phone-mock { width: 280px; height: 560px; }
  .hero-float.card-a { width: 160px; height: 96px; left: 0; bottom: 40px; }
  .hero-float.card-b { width: 180px; right: 0; top: 40px; }
}

/* ============ How it works ============ */
.steps-wrapper {
  position: relative;
  margin-top: 8px;
}
.steps-connecting-line {
  position: absolute;
  top: 48px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--cm-border);
  z-index: 1;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-visual {
  position: relative;
  margin-bottom: 28px;
}
.step-icon {
  width: 96px;
  height: 96px;
  background: #fff;
  border: 1px solid var(--cm-border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cm-fg);
  box-shadow: var(--cm-shadow-sm);
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.step-icon .ms { font-size: 36px; }
.step-card:hover .step-icon {
  border-color: var(--cm-brand);
  color: var(--cm-brand);
  box-shadow: 0 10px 25px color-mix(in oklab, var(--cm-brand) 18%, transparent);
  transform: translateY(-4px);
}
.step-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: var(--cm-brand);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 3px solid #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-content .highlight { color: var(--cm-brand); }
.step-content p {
  font-size: 15px;
  color: var(--cm-fg-muted);
  line-height: 1.55;
  max-width: 280px;
  margin: 0 auto;
}
.steps-footer {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.advantage-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cm-brand-soft);
  color: var(--cm-brand-hover);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--cm-orange-100);
}
.advantage-badge .ms { font-size: 18px; color: var(--cm-brand); }
@media (max-width: 1024px) {
  .steps-connecting-line { display: none; }
  .steps { gap: 24px; }
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .step-content p { max-width: 100%; }
}

/* ============ Categories ============ */
.cats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) { .cats { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .cats { grid-template-columns: repeat(3, 1fr); } }

.cat {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--cm-radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cat:hover { transform: translateY(-3px); box-shadow: var(--cm-shadow-md); }
.cat img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cat:hover img { transform: scale(1.06); }
.cat::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--cm-overlay-bottom);
  pointer-events: none;
}
.cat-label {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25;
  z-index: 2;
}
.cats-foot {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* ============ AI Search (clean light) ============ */
.ai {
  background: var(--cm-bg-subtle);
  color: var(--cm-fg);
  border: 1px solid var(--cm-border);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--cm-shadow-sm);
}
/* soft brand accent in top-left corner */
.ai::before {
  content: '';
  position: absolute;
  left: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, color-mix(in oklab, var(--cm-brand) 18%, transparent) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.ai-inner { position: relative; z-index: 1; }
.ai-wrap { padding: 0 24px; }
.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 56px;
}
@media (max-width: 880px) {
  .ai-inner { grid-template-columns: 1fr; padding: 48px 28px; gap: 40px; }
}
.ai h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}
.ai p {
  color: var(--cm-fg-muted);
  font-size: 17px;
  line-height: 1.5;
  text-wrap: pretty;
}

.ai-mock {
  background: #fff;
  border: 1px solid var(--cm-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--cm-shadow-md);
}
.ai-bar {
  background: var(--cm-bg-subtle);
  border: 1px solid var(--cm-border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cm-fg);
}
.ai-bar .ms {
  color: var(--cm-brand);
  font-size: 22px;
}
.ai-bar input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--cm-fg);
  outline: none;
}
.ai-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.ai-tag {
  background: #fff;
  border: 1px solid var(--cm-border);
  color: var(--cm-fg-muted);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ai-tag:hover { background: var(--cm-bg-subtle); color: var(--cm-fg); }
.ai-tag.active { background: var(--cm-brand); border-color: var(--cm-brand); color: #fff; }

.ai-results {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-result {
  background: var(--cm-bg-subtle);
  border: 1px solid var(--cm-border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ai-result .thumb {
  width: 44px; height: 44px;
  border-radius: 8px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.ai-result .meta { flex: 1; min-width: 0; }
.ai-result .nm { font-size: 14px; font-weight: 700; }
.ai-result .role { font-size: 12px; color: var(--cm-fg-muted); }
.ai-result .rate {
  font-size: 13px;
  color: var(--cm-brand);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.ai-result .rate .ms { font-size: 14px; }

/* Hero-embedded AI mock — slightly larger, with glow */
.hero-ai-mock {
  width: 100%;
  max-width: 520px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}
.hero-ai-mock .ai-bar { padding: 16px 18px; }
.hero-ai-mock .ai-bar input { font-size: 16px; }
.hero-ai-mock .ai-results { max-height: none; }

/* ============ Testimonials ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .testimonials { grid-template-columns: 1fr; } }
.t-card {
  background: #fff;
  border-radius: var(--cm-radius-md);
  padding: 28px;
  box-shadow: var(--cm-shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.t-card .stars { color: var(--cm-orange-400); display: inline-flex; gap: 1px; }
.t-card blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--cm-fg);
  font-weight: 500;
  text-wrap: pretty;
  flex: 1;
}
.t-card .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--cm-border);
}
.t-card .who .av {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--cm-neutral-200);
  background-size: cover; background-position: center;
}
.t-card .who .nm { font-weight: 700; font-size: 14px; }
.t-card .who .loc { font-size: 12px; color: var(--cm-fg-muted); }

/* ============ For Professionals ============ */
.pro {
  background: var(--cm-brand-soft);
  border: 1px solid var(--cm-orange-100);
  border-radius: 24px;
  overflow: hidden;
  color: var(--cm-fg);
  position: relative;
}
.pro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 56px;
}
@media (max-width: 880px) {
  .pro-inner { grid-template-columns: 1fr; padding: 48px 28px; }
}
.pro h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}
.pro p {
  color: var(--cm-fg-muted);
  font-size: 17px;
  line-height: 1.5;
}
.pro ul {
  list-style: none; padding: 0;
  margin: 24px 0 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.pro li {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px;
  color: var(--cm-fg);
}
.pro li .ms {
  color: var(--cm-brand);
  font-size: 22px;
}
.pro-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 420px;
}
.pro-stat {
  background: #fff;
  border: 1px solid var(--cm-border);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: var(--cm-shadow-sm);
}
.pro-stat .big {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cm-brand);
  line-height: 1;
  margin-bottom: 8px;
}
.pro-stat .lbl {
  font-size: 14px;
  color: var(--cm-fg-muted);
  line-height: 1.3;
}
.pro-stat.span-2 { grid-column: span 2; }

/* ============ FAQ ============ */
.faq {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--cm-border);
  border-radius: var(--cm-radius-md);
  padding: 0;
  transition: border-color 0.2s;
}
.faq details[open] { border-color: var(--cm-border-strong); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--cm-fg);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: 'add';
  font-family: 'Material Symbols Rounded';
  font-variation-settings: 'FILL' 1;
  font-size: 22px;
  color: var(--cm-fg-muted);
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  content: 'remove';
}
.faq .a {
  padding: 0 24px 20px;
  color: var(--cm-fg-muted);
  font-size: 16px;
  line-height: 1.55;
  text-wrap: pretty;
}

/* ============ Final CTA ============ */
.final-cta {
  background: var(--cm-brand);
  color: #fff;
  border-radius: 24px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.final-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
}
.final-cta .btn-primary {
  background: var(--cm-neutral-900);
}
.final-cta .btn-primary:hover { background: #000; }
.final-cta .btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.final-cta .btn-ghost:hover { background: rgba(255,255,255,0.25); }
.final-cta .actions {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* ============ Footer ============ */
.footer {
  background: var(--cm-neutral-050);
  border-top: 1px solid var(--cm-border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-brand p {
  color: var(--cm-fg-muted);
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cm-fg-subtle);
  margin-bottom: 16px;
  font-weight: 800;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col a {
  color: var(--cm-fg);
  font-size: 15px;
  font-weight: 500;
}
.footer-col a:hover { color: var(--cm-brand); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--cm-border);
  font-size: 13px;
  color: var(--cm-fg-subtle);
  flex-wrap: wrap;
}
.social {
  display: flex; gap: 8px;
}
.social a {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--cm-border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cm-fg);
  transition: background 0.15s, color 0.15s;
}
.social a:hover { background: var(--cm-brand); color: #fff; border-color: var(--cm-brand); }

/* ============ Tweaks panel ============ */
.tweaks-panel {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 280px;
  background: #fff;
  border: 1px solid var(--cm-border-strong);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  padding: 18px;
  z-index: 100;
  font-family: var(--cm-font-sans);
}
.tweaks-panel h4 {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.tweak-row { margin-bottom: 14px; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-row label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--cm-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.color-swatches { display: flex; gap: 6px; }
.swatch {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.1s;
}
.swatch:hover { transform: scale(1.1); }
.swatch.active { border-color: var(--cm-fg); }
.seg {
  display: flex;
  background: var(--cm-neutral-100);
  border-radius: 10px;
  padding: 3px;
}
.seg button {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cm-fg-muted);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}
.seg button.active {
  background: #fff;
  color: var(--cm-fg);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* density modifier */
body.density-compact section { padding: 64px 0; }
body.density-compact .section-head { margin-bottom: 32px; }
body.density-compact .hero { padding-top: 32px; padding-bottom: 32px; }

/* ============ Promo Banner ============ */
.promo-banner {
  background: linear-gradient(90deg, var(--cm-neutral-900), #1a1a18);
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 41;
}
.promo-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.promo-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--cm-brand);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--cm-brand) 25%, transparent);
  animation: promoPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes promoPulse {
  50% { box-shadow: 0 0 0 8px color-mix(in oklab, var(--cm-brand) 0%, transparent); }
}
.promo-inner strong { font-weight: 800; }
.promo-inner span { color: rgba(255,255,255,0.8); white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.promo-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--cm-brand);
  font-weight: 700;
  flex-shrink: 0;
}
.promo-close {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  flex-shrink: 0;
}
.promo-close:hover { color: #fff; }
@media (max-width: 640px) {
  .promo-inner span { display: none; }
}

/* ============ Press logos ============ */
.press {
  padding: 56px 0 !important;
  border-top: 1px solid var(--cm-border);
  border-bottom: 1px solid var(--cm-border);
  background: #fff;
}
.press-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cm-fg-subtle);
  text-align: center;
  margin-bottom: 24px;
}
.press-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  justify-content: center;
  align-items: center;
}
.press-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--cm-fg-muted);
  letter-spacing: -0.01em;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.press-logo:hover { opacity: 1; }

/* ============ Pricing ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.plan {
  background: #fff;
  border: 1px solid var(--cm-border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan.featured {
  border-color: var(--cm-brand);
  box-shadow: 0 20px 40px -20px color-mix(in oklab, var(--cm-brand) 45%, transparent);
  transform: translateY(-4px);
}
.plan-ribbon {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--cm-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.plan-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cm-fg-muted);
  margin-bottom: 16px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.plan-price .amount {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--cm-fg);
}
.plan-price .per { font-size: 16px; font-weight: 700; color: var(--cm-fg-muted); }
.plan-price .suffix { width: 100%; font-size: 13px; color: var(--cm-fg-subtle); font-weight: 500; }
.plan-lead {
  font-size: 15px;
  color: var(--cm-fg-muted);
  margin: 0 0 20px;
  line-height: 1.4;
  min-height: 42px;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plan ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.4;
}
.plan ul li .ms {
  color: var(--cm-brand);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--cm-fg-muted);
  text-align: center;
}

/* ============ Coverage ============ */
.coverage { background: var(--cm-neutral-050); }
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .coverage-inner { grid-template-columns: 1fr; gap: 40px; }
}
.coverage-stats {
  margin-top: 32px;
  display: flex;
  gap: 40px;
}
.coverage-stats .n {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cm-brand);
  line-height: 1;
}
.coverage-stats .l {
  margin-top: 6px;
  font-size: 13px;
  color: var(--cm-fg-muted);
  font-weight: 600;
}
.coverage-cities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.city.city-lg {
  padding: 20px 22px;
  border-radius: 16px;
  gap: 14px;
  align-items: center;
}
.city.city-lg .ms { font-size: 28px; }
.city.city-lg .nm { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.city.city-lg .rg { font-size: 14px; margin-top: 4px; }
.city {
  display: flex;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--cm-border);
  border-radius: 12px;
  padding: 12px 14px;
  align-items: flex-start;
  transition: border-color 0.15s, transform 0.15s;
}
.city:hover { border-color: var(--cm-brand); transform: translateY(-2px); }
.city .ms { color: var(--cm-brand); font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.city .nm { font-size: 14px; font-weight: 700; }
.city .rg { font-size: 12px; color: var(--cm-fg-muted); margin-top: 2px; }

/* ============ Trust ============ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  background: #fff;
  border: 1px solid var(--cm-border);
  border-radius: 16px;
  padding: 28px 24px;
}
.trust-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cm-brand-soft, color-mix(in oklab, var(--cm-brand) 10%, white));
  color: var(--cm-brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.trust-icon .ms { font-size: 26px; }
.trust-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.trust-card p {
  font-size: 14px;
  color: var(--cm-fg-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============ Final CTA split + LeadForm ============ */
.final-cta-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: stretch;
  background: var(--cm-bg-subtle);
  border: 1px solid var(--cm-border);
  border-radius: 28px;
  padding: 56px;
  color: var(--cm-fg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--cm-shadow-sm);
}
.final-cta-right-form {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 520px);
  align-items: start;
  gap: 36px;
  padding: 64px 44px 40px;
}
.final-cta-split::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, color-mix(in oklab, var(--cm-brand) 16%, transparent), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
@media (max-width: 960px) {
  .final-cta-split { grid-template-columns: 1fr; padding: 36px 28px; gap: 36px; }
  .final-cta-right-form { padding: 48px 22px 28px; gap: 22px; }
  .final-cta-right-form .lead-card {
    justify-self: stretch;
    max-width: 720px;
    margin: 0 auto;
  }
}
.final-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta-right-form .final-cta-copy {
  justify-self: stretch;
  align-self: start;
  max-width: 620px;
  padding-top: 6px;
  text-align: center;
}
.final-cta-copy h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--cm-fg);
  text-wrap: balance;
}
.final-cta-copy h2 .accent { color: var(--cm-brand); }
.final-cta-copy p {
  font-size: 17px;
  color: var(--cm-fg-muted);
  margin: 0 0 22px;
  line-height: 1.5;
}
.final-cta-right-form .final-cta-copy p {
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.store-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  min-height: 56px;
  background: #0F0F0E;
  color: #fff;
  border: 1px solid #0F0F0E;
  border-radius: 14px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.store-btn:hover {
  transform: translateY(-2px);
  background: #1f1f1d;
  box-shadow: 0 12px 24px -10px rgba(15,15,14,0.5);
}
.store-ico {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.store-top {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2px;
}
.store-bot {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.final-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--cm-fg-muted);
}
.final-proof .stars { color: var(--cm-orange-400); display: inline-flex; gap: 1px; }
.final-proof strong { color: var(--cm-fg); font-weight: 800; }

.final-cta-benefits {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--cm-fg);
  border: 1px solid var(--cm-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--cm-shadow-lg);
  display: flex;
  flex-direction: column;
}
.benefits-head {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--cm-border);
}
.benefits-tag {
  display: inline-block;
  background: var(--cm-brand-soft);
  color: var(--cm-brand-hover);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.benefits-tag .accent { color: var(--cm-brand); }
.benefits-head h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--cm-fg);
}
.benefits-head p {
  font-size: 14px;
  color: var(--cm-fg-muted);
  margin: 0;
  line-height: 1.45;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.benefits-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefits-ico {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cm-brand-soft);
  color: var(--cm-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.benefits-ico .ms { font-size: 20px; font-variation-settings: 'FILL' 1, 'wght' 700; }
.benefits-text { min-width: 0; }
.benefits-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--cm-fg);
  margin-bottom: 3px;
}
.benefits-text span {
  font-size: 13.5px;
  color: var(--cm-fg-muted);
  line-height: 1.5;
}

.prelaunch-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.prelaunch-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--cm-fg);
}
.prelaunch-list strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 3px;
}
.prelaunch-list span:not(.benefits-ico):not(.ms) {
  display: block;
  font-size: 14px;
  color: var(--cm-fg-muted);
  line-height: 1.5;
}

.lead-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  color: var(--cm-fg);
  border: 1px solid var(--cm-border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--cm-shadow-lg);
}
.final-cta-right-form .lead-card {
  justify-self: end;
  max-width: 520px;
  margin: 0;
}
.lead-card-head {
  margin-bottom: 16px;
}
.lead-card-head h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.lead-card-head p {
  margin: 0;
  color: var(--cm-fg-muted);
  font-size: 14px;
  line-height: 1.45;
}
.lead-form-body[hidden] {
  display: none;
}
.role-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.role-choice-card {
  cursor: pointer;
}
.role-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.role-choice-content {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid var(--cm-border);
  border-radius: 16px;
  background: var(--cm-bg-subtle);
  color: var(--cm-fg);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s, transform 0.15s;
}
.role-choice-content .ms {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  color: var(--cm-brand);
  box-shadow: var(--cm-shadow-sm);
  font-size: 21px;
}
.role-choice-content strong {
  font-size: 15px;
  font-weight: 900;
  color: var(--cm-fg);
}
.role-choice-content small {
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--cm-fg-muted);
}
.role-choice-card input:focus-visible + .role-choice-content,
.role-choice-card input:checked + .role-choice-content {
  border-color: var(--cm-brand);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--cm-brand) 14%, transparent), var(--cm-shadow-md);
}
.role-choice-card input:checked + .role-choice-content {
  transform: translateY(-1px);
}
.lead-role-note {
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--cm-brand-soft);
  border: 1px solid color-mix(in oklab, var(--cm-brand) 22%, transparent);
}
.lead-role-note h4 {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 900;
  color: var(--cm-fg);
}
.lead-role-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--cm-fg-muted);
}
.role-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--cm-neutral-100);
}
.role-toggle label {
  cursor: pointer;
}
.role-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.role-toggle span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 800;
  color: var(--cm-fg-muted);
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.role-toggle input:checked + span {
  background: #fff;
  color: var(--cm-brand);
  box-shadow: var(--cm-shadow-sm);
}
.lead-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lead-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.lead-field.span-2 {
  grid-column: span 2;
}
.lead-field span {
  font-size: 13px;
  font-weight: 800;
  color: var(--cm-fg);
}
.lead-field input,
.lead-field textarea {
  width: 100%;
  border: 1px solid var(--cm-border);
  border-radius: 12px;
  background: var(--cm-bg-subtle);
  color: var(--cm-fg);
  font: inherit;
  font-size: 15px;
  line-height: 1.3;
  padding: 11px 12px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.lead-field textarea {
  min-height: 92px;
  resize: vertical;
}
.lead-field input:focus,
.lead-field textarea:focus {
  border-color: var(--cm-brand);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--cm-brand) 14%, transparent);
}
.lead-categories {
  grid-column: span 2;
  padding: 0;
  margin: 2px 0 0;
  border: 0;
}
.lead-form-body[data-role="professional"] .lead-categories {
  display: none;
}
.lead-categories legend {
  padding: 0;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 900;
  color: var(--cm-fg);
}
.lead-categories p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--cm-fg-muted);
}
.category-groups {
  max-height: 240px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 2px 4px 2px 0;
}
.category-group-title {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 900;
  color: var(--cm-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.category-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.category-chip {
  cursor: pointer;
}
.category-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.category-chip span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid var(--cm-border);
  border-radius: 999px;
  background: var(--cm-bg-subtle);
  color: var(--cm-fg-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.category-chip input:focus-visible + span,
.category-chip input:checked + span {
  border-color: var(--cm-brand);
  background: var(--cm-brand-soft);
  color: var(--cm-brand);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--cm-brand) 12%, transparent);
}
.lead-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--cm-fg-muted);
}
.lead-consent input {
  margin-top: 2px;
  accent-color: var(--cm-brand);
  flex-shrink: 0;
}
.lead-consent a {
  color: var(--cm-brand);
  font-weight: 800;
}
.lead-submit {
  width: 100%;
}
.lead-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}
.lead-feedback {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--cm-fg-muted);
}
.lead-feedback[data-state="success"] {
  color: #0f7a3b;
}
.lead-feedback[data-state="error"] {
  color: #b42318;
}
.lead-feedback[data-state="loading"] {
  color: var(--cm-brand);
}
.lead-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  .lead-card { padding: 18px; }
  .lead-fields { grid-template-columns: 1fr; }
  .lead-field.span-2 { grid-column: span 1; }
  .role-choice,
  .role-toggle { grid-template-columns: 1fr; }
  .lead-categories { grid-column: span 1; }
  .category-groups { max-height: 440px; }
  .btn { white-space: normal; text-align: center; }
}
