@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
}

:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #121826;
  
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-tertiary: #718096;
  
  --accent-primary: #00df77;
  --accent-gradient: linear-gradient(135deg, #00df77 0%, #00b963 100%);
  --accent-gradient-hover: linear-gradient(135deg, #00b963 0%, #009950 100%);
  
  --border-color: rgba(255, 255, 255, 0.1);
  --error-color: #ef4444;
  --success-color: #10b981;

  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  
  --container-max: 1200px;
  --spacing-xxl: 8rem;
  
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --shadow-subtle: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: color 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease,
    opacity 0.2s ease;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: 6.5rem;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--spacing-xxl) 0;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span:first-of-type {
  color: var(--accent-primary);
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

@media (min-width: 981px) {
  .nav-links {
    gap: 1.35rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #0a0e17;
  box-shadow: 0 8px 24px -6px rgba(0, 223, 119, 0.4);
}

.btn-primary:hover {
  background: var(--accent-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(0, 223, 119, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-secondary);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  padding-top: 12rem;
  padding-bottom: 8rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, rgba(0, 223, 119, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(0, 223, 119, 0.05);
  color: var(--accent-primary);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 223, 119, 0.2);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.hero-desc {
  font-size: 1.25rem;
  max-width: 650px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 600px;
}

.section-badge {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Feature cards */
.card {
  background: rgba(18, 24, 38, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 223, 119, 0.3);
  box-shadow: 0 12px 40px -10px rgba(0, 223, 119, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding: 4rem 0 2rem;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 223, 119, 0.3), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1rem;
}

.footer-contact a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--accent-primary);
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

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

/* CTA Section */
.cta-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  display: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links .btn {
    width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/* Page layouts and conversion sections */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent-primary);
  color: var(--bg-primary);
  padding: 0.75rem 1rem;
  border-radius: 0 0 var(--radius-md) 0;
  z-index: 2000;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

.section-dark {
  background: rgba(18, 24, 38, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.narrow { max-width: 880px; }
.wide { max-width: 840px; }
.centered { margin-left: auto; margin-right: auto; }
.centered-actions { justify-content: center; }
.page-hero {
  padding-top: 10rem;
  padding-bottom: 5.5rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.page-hero::before,
.schedule-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 223, 119, 0.08), transparent 55%);
  pointer-events: none;
}
.page-hero > .container,
.schedule-section > .container { position: relative; z-index: 1; }

.hero-landing { min-height: auto; padding-top: 10rem; padding-bottom: 7rem; }
.hero-grid { align-items: center; gap: 4rem; }
.hero-visual,
.audit-dashboard {
  background: linear-gradient(180deg, rgba(18, 24, 38, 0.98), rgba(10, 14, 23, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35), 0 0 60px rgba(0, 223, 119, 0.06);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.audit-dashboard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 223, 119, 0.09), transparent 45%);
  pointer-events: none;
}
.audit-dashboard > * { position: relative; z-index: 1; }
.dashboard-header,
.dashboard-score-row,
.workflow-head,
.workflow-footer,
.micro-cta-band,
.button-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dashboard-header { justify-content: space-between; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border-color); margin-bottom: 1.5rem; }
.dashboard-header h2 { font-size: 1.2rem; margin: 0; }
.eyebrow {
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.status-pill,
.path-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.status-pill { color: var(--accent-primary); background: rgba(0,223,119,0.08); border: 1px solid rgba(0,223,119,0.2); }
.dashboard-score-row { align-items: center; margin-bottom: 1.5rem; }
.dashboard-score-row h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.dashboard-score-row p { font-size: 0.92rem; margin: 0; }
.score-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  background: radial-gradient(circle, var(--bg-secondary) 55%, transparent 57%), conic-gradient(var(--accent-primary) 0 78%, rgba(255,255,255,0.12) 78% 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.score-ring span { font-size: 1.9rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.score-ring small { color: var(--text-tertiary); font-weight: 700; }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.metric-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.9rem;
}
.metric-card span { display: block; color: var(--text-tertiary); font-size: 0.78rem; margin-bottom: 0.25rem; }
.metric-card strong { font-size: 0.98rem; }
.risk-good { color: var(--success-color); }
.risk-med { color: #fbbf24; }
.risk-high { color: var(--error-color); }
.recommendation-card,
.premium-rec {
  background: rgba(0, 223, 119, 0.06);
  border: 1px solid rgba(0, 223, 119, 0.16);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.recommendation-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.recommendation-card p { margin-bottom: 0; font-size: 0.94rem; }
.hero-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0.75rem;
}
.hero-proof-line span,
.tag-grid span {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-secondary);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 600;
}
.hero-microcopy { font-size: 0.95rem; margin: 1rem 0 0; color: var(--text-tertiary); }

.proof-strip {
  padding: 1.5rem 0;
  background: rgba(18,24,38,0.9);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.proof-grid > div {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.proof-grid strong { display: block; font-size: 0.98rem; margin-bottom: 0.25rem; }
.proof-grid span { color: var(--text-tertiary); font-size: 0.86rem; }

.cards-tight { gap: 1.25rem; }
.compact-card { padding: 1.35rem; }
.compact-card h3 { font-size: 1.15rem; margin-bottom: 0.55rem; }
.compact-card p { font-size: 0.96rem; margin-bottom: 0; }
.icon-card .icon-chip { margin-bottom: 1rem; }
.icon-chip,
.workflow-icon,
.alt-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  background: rgba(0, 223, 119, 0.09);
  border: 1px solid rgba(0, 223, 119, 0.17);
  flex: 0 0 auto;
}
.icon-chip svg,
.workflow-icon svg,
.alt-card-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-chip.danger,
.workflow-icon.danger { color: var(--error-color); background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.2); }
.workflow-icon.success { color: var(--success-color); background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.22); }
.workflow-icon.info { color: #38bdf8; background: rgba(56,189,248,0.08); border-color: rgba(56,189,248,0.22); }
.workflow-icon.warn { color: #fbbf24; background: rgba(251,191,36,0.08); border-color: rgba(251,191,36,0.22); }
.icon-chip.amber,
.alt-card-icon.amber { color: #fbbf24; background: rgba(251,191,36,0.09); border-color: rgba(251,191,36,0.24); }
.icon-chip.blue,
.alt-card-icon.blue { color: #38bdf8; background: rgba(56,189,248,0.09); border-color: rgba(56,189,248,0.24); }

.split-feature { align-items: stretch; }
.split-feature > div,
.deliverable-panel,
.fit-card,
.consider-card,
.credentials-panel,
.legal-content,
.calendly-wrapper {
  background: rgba(18,24,38,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
}
.split-feature > div:first-child { background: transparent; border: 0; box-shadow: none; padding: 0; }
.button-row { flex-wrap: wrap; margin-top: 1.5rem; }
.check-list { display: flex; flex-direction: column; gap: 0.85rem; }
.check-list li { position: relative; padding-left: 1.8rem; color: var(--text-secondary); }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-primary);
  font-weight: 800;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.revenue-review-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.revenue-review-grid .deliverable-card {
  min-height: 100%;
}
.deliverable-card,
.service-card,
.workflow-card,
.mini-card,
.faq-item,
.process-grid article {
  background: rgba(18,24,38,0.68);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-subtle);
}
.deliverable-card h3,
.service-card h3,
.workflow-card h3,
.mini-card h3 { font-size: 1.08rem; margin-bottom: 0.55rem; }
.deliverable-card p,
.service-card p,
.workflow-card p,
.mini-card p { font-size: 0.95rem; margin-bottom: 0; }

.scorecard-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.workflow-card { overflow: hidden; position: relative; }
.workflow-card.featured-workflow { border-color: rgba(0, 223, 119, 0.22); }
.workflow-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
}
.path-pilot::before { background: var(--accent-gradient); }
.path-configure::before { background: linear-gradient(90deg, #38bdf8, #0ea5e9); }
.path-blueprint::before { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.path-defer::before { background: linear-gradient(90deg, #ef4444, #b91c1c); }
.workflow-head { align-items: flex-start; margin-bottom: 1rem; }
.workflow-card-top { display: flex; flex-direction: column; gap: 0.2rem; }
.workflow-card-top strong { font-size: 1.05rem; color: var(--text-primary); line-height: 1.25; }
.workflow-label,
.note-label {
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  font-weight: 800;
}
.workflow-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0;
}
.workflow-metrics span {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 0.65rem;
  color: var(--text-tertiary);
  font-size: 0.77rem;
}
.workflow-metrics b { display: block; margin-top: 0.15rem; font-size: 0.88rem; }
.workflow-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.workflow-note-grid p { font-size: 0.88rem; margin: 0.2rem 0 0; }
.workflow-footer { justify-content: space-between; align-items: flex-start; gap: 0.9rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 0.9rem; }
.workflow-action { font-size: 0.88rem; margin: 0; text-align: right; }
.path-pilot-badge { color: var(--success-color); background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); }
.path-configure-badge { color: #38bdf8; background: rgba(56,189,248,0.08); border: 1px solid rgba(56,189,248,0.2); }
.path-blueprint-badge { color: #fbbf24; background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.2); }
.path-defer-badge { color: var(--error-color); background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); }
.micro-cta-band {
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(0,223,119,0.05);
  border: 1px solid rgba(0,223,119,0.14);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-top: 2rem;
}
.micro-cta-band p { margin: 0; color: var(--text-primary); font-weight: 700; }

.process-grid,
.credential-grid,
.faq-list,
.tag-grid,
.stacked-cards {
  display: grid;
  gap: 1.25rem;
}
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-grid article span,
.service-stage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--bg-primary);
  background: var(--accent-gradient);
  font-weight: 800;
  margin-bottom: 1rem;
}
.process-grid article h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-grid article p { font-size: 0.95rem; margin: 0; }
.stacked-cards { grid-template-columns: 1fr; }
.tag-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tag-grid span { border-radius: var(--radius-md); text-align: center; }

.featured-service { border-color: rgba(0,223,119,0.2); }
.text-link { color: var(--accent-primary); font-weight: 700; font-size: 0.95rem; }
.good-fit { border-color: rgba(0,223,119,0.14); }
.alt-entry-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1rem; }
.alt-entry-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  overflow: hidden;
}
.alt-entry-row h3 { font-size: 0.98rem; margin-bottom: 0.25rem; }
.alt-entry-row p { font-size: 0.88rem; margin: 0; }
.credential-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.credential-grid span {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  text-align: center;
  font-weight: 700;
}
.credibility-note { margin-top: 1rem; background: rgba(255,255,255,0.035); border-radius: var(--radius-md); padding: 1rem; }
.credibility-note p { font-size: 0.96rem; margin: 0; }
.faq-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 0.55rem; }
.faq-item p { font-size: 0.95rem; margin: 0; }

.schedule-section { min-height: 100vh; padding-top: 10rem; position: relative; overflow: hidden; }
.calendly-card-polished { position: sticky; top: 6rem; padding: 1.25rem; overflow: hidden; }
.booking-reassurance { margin-bottom: 1rem; }
.booking-reassurance h2 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.booking-reassurance p { font-size: 0.96rem; margin-bottom: 0.75rem; }
.calendly-inline-widget { width: 100%; min-width: 0; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-primary); max-width: 100%; }
.calendly-fallback { font-size: 0.9rem; margin: 1rem 0 0; }
.calendly-fallback a { color: var(--accent-primary); font-weight: 700; }

.legal-page section { padding-top: 10rem; }
.legal-content { max-width: 860px; }
.legal-content h1 { font-size: 3rem; margin-bottom: 1rem; }
.legal-content h2 { margin: 2rem 0 0.75rem; font-size: 1.35rem; }
.legal-content ul { list-style: disc; padding-left: 1.25rem; color: var(--text-secondary); }
.legal-content li + li { margin-top: 0.4rem; }

.route-card-grid {
  align-items: stretch;
}

.route-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.route-card h2,
.route-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.route-card p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.route-card .btn,
.route-card .text-link {
  margin-top: auto;
}

.path-card {
  position: relative;
  overflow: hidden;
}

.path-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0,223,119,0.88), rgba(56,189,248,0.48));
  opacity: 0.75;
}

.path-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent-primary);
  background: rgba(0, 223, 119, 0.09);
  border: 1px solid rgba(0, 223, 119, 0.2);
  box-shadow: 0 12px 34px rgba(0, 223, 119, 0.08);
}

.path-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-revenue .path-icon {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.09);
  border-color: rgba(56, 189, 248, 0.22);
  box-shadow: 0 12px 34px rgba(56, 189, 248, 0.08);
}

.path-revenue::before {
  background: linear-gradient(90deg, rgba(56,189,248,0.88), rgba(0,223,119,0.4));
}

.path-ai .path-icon {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.09);
  border-color: rgba(251, 191, 36, 0.22);
  box-shadow: 0 12px 34px rgba(251, 191, 36, 0.08);
}

.path-ai::before {
  background: linear-gradient(90deg, rgba(251,191,36,0.85), rgba(0,223,119,0.4));
}

.path-card .btn {
  white-space: normal;
}

.boundary-note,
.section-footnote {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.boundary-note {
  color: var(--text-primary);
  font-weight: 600;
}

.qualification-list {
  color: var(--text-secondary);
  padding-left: 1.25rem;
}

.qualification-list li + li {
  margin-top: 0.65rem;
}

.sequence-strip {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 223, 119, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(0, 223, 119, 0.045);
}

.sequence-strip p {
  margin-bottom: 0;
  font-size: 1rem;
}

.sequence-strip strong {
  color: var(--text-primary);
  font-size: 1.05rem;
}

@media (max-width: 980px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links .btn {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .proof-grid,
  .process-grid,
  .tag-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deliverables-grid { grid-template-columns: 1fr; }
  .revenue-review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 992px) {
  .hero-grid,
  .split-feature,
  .scorecard-dashboard-grid,
  .faq-list { grid-template-columns: 1fr; }
  .calendly-card-polished { position: static; }
  .hero-visual { max-width: 680px; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .page-hero, .schedule-section, .hero-landing { padding-top: 8rem; padding-bottom: 4rem; }
  .proof-grid,
  .process-grid,
  .tag-grid,
  .metric-grid,
  .workflow-metrics,
  .workflow-note-grid,
  .credential-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.35rem; }
  .dashboard-header,
  .dashboard-score-row,
  .workflow-footer { flex-direction: column; align-items: flex-start; }
  .workflow-action { text-align: left; }
  .hero-proof-line span { flex: 1 1 calc(50% - 0.5rem); text-align: center; }
  .split-feature > div,
  .deliverable-panel,
  .fit-card,
  .consider-card,
  .credentials-panel,
  .legal-content,
  .calendly-wrapper { padding: 1.25rem; }
  .alt-entry-row { align-items: flex-start; }
  .calendly-inline-widget { height: 720px !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-title { font-size: 2.05rem; }
  .section-title { font-size: 1.85rem; }
  .btn { width: 100%; padding-left: 1rem; padding-right: 1rem; }
  .button-row, .hero-actions, .centered-actions { width: 100%; }
  .hero-proof-line span { flex: 1 1 100%; }
  .audit-dashboard { padding: 1.1rem; }
  .score-ring { width: 82px; height: 82px; }
  .score-ring span { font-size: 1.6rem; }
}
/* Spacing and responsive polish */
section { padding: 6rem 0; }
.section-header { margin-bottom: 3rem; }
.section-header.text-center { margin-left: auto; margin-right: auto; }
.page-hero { padding-top: 9rem; padding-bottom: 4.75rem; }
.hero-landing { padding-top: 9rem; padding-bottom: 5.75rem; }
.cta-section { padding: 5rem 0; }
.footer { padding-top: 4.5rem; }

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

.tag-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  align-items: stretch;
  gap: 0.85rem;
}
.tag-grid span {
  min-width: 0;
  max-width: none;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.faq-item {
  flex: 1 1 340px;
  max-width: 520px;
}

.schedule-section {
  min-height: auto;
  padding-top: 9rem;
  padding-bottom: 4.5rem;
  overflow: visible;
}
.calendly-card-polished { top: 5.5rem; }

.calendly-inline-widget {
  min-height: 680px;
}

@media (max-width: 768px) {
  section { padding: 4.5rem 0; }
  .page-hero, .schedule-section, .hero-landing { padding-top: 7.5rem; padding-bottom: 4rem; }
  .section-header { margin-bottom: 2.25rem; }
  .footer { padding-top: 3.5rem; }
  .tag-grid span { max-width: none; flex-basis: 100%; }
  .faq-item { max-width: none; flex-basis: 100%; }
  .calendly-inline-widget { min-height: 680px; height: 700px !important; }
}

:root {
  --section-tight: 4.75rem;
}
section { padding: var(--section-tight) 0; }
.page-hero { padding-top: 8.35rem; padding-bottom: 3.85rem; }
.hero-landing { padding-top: 8.5rem; padding-bottom: 4.85rem; }
.section-dark { padding-top: var(--section-tight); padding-bottom: var(--section-tight); }
.cta-section { padding: 4rem 0; }
.footer { padding-top: 3.75rem; padding-bottom: 2rem; }
.footer-top { align-items: start; }
.footer-bottom { padding-top: 2rem; margin-top: 2rem; }

/* Center section intros and prevent awkward one-sided cards. */
.section-header.text-center,
.page-hero .narrow,
.cta-content { text-align: center; }
.centered-actions,
.hero-actions.centered-actions { justify-content: center; }
.deliverables-grid,
.scorecard-dashboard-grid,
.process-grid,
.proof-grid { align-items: stretch; }

/* Make long CTA copy wrap cleanly without stretching rows. */
.hero-actions,
.button-row,
.centered-actions { flex-wrap: wrap; }
.hero-actions .btn,
.button-row .btn,
.centered-actions .btn { min-width: 210px; }
.nav-links .btn { white-space: nowrap; }

/* Balanced page hero copy for longer problem-led positioning. */
.hero-desc.centered,
.page-hero .hero-desc { max-width: 760px; }
.hero-content .hero-desc { max-width: 720px; }
.hero-title { text-wrap: balance; }
.section-title { text-wrap: balance; }

/* Schedule page: reduce leftover blank space and balance columns. */
.schedule-section { padding-top: 8.35rem; padding-bottom: 3.75rem; min-height: auto; }
.calendly-card-polished { top: 5rem; }
.calendly-inline-widget { min-height: 625px; height: 680px !important; }

/* Avoid large vertical gaps around mid-page split features. */
.split-feature { gap: 2.5rem; }
.split-feature > div:first-child { align-self: center; }
.deliverable-card p,
.faq-item p,
.service-card p,
.workflow-card p,
.alt-entry-row p { line-height: 1.5; }
.deliverable-card,
.faq-item { min-height: 0; }
.faq-list { align-items: stretch; }
.faq-item { display: flex; flex-direction: column; }

.tag-grid span { min-height: 42px; }
.micro-cta-band { margin-top: 1.5rem; }

@media (max-width: 1100px) {
  .calendly-card-polished { position: static; }
}
@media (max-width: 768px) {
  section { padding: 3.75rem 0; }
  .page-hero, .schedule-section, .hero-landing { padding-top: 7.25rem; padding-bottom: 3.5rem; }
  .hero-actions .btn,
  .button-row .btn,
  .centered-actions .btn { min-width: 0; width: 100%; }
  .calendly-inline-widget { min-height: 620px; height: 660px !important; }
  .footer { padding-top: 3rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.98rem; }
  .section-title { font-size: 1.72rem; }
  .calendly-inline-widget { min-height: 590px; height: 620px !important; }
}

/* Conversion polish */
.btn-primary {
  box-shadow: 0 14px 34px rgba(0, 223, 119, 0.22);
}
.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(0, 223, 119, 0.28);
}
.hero-proof-line span,
.offer-proof-grid div {
  border-color: rgba(0, 223, 119, 0.16);
}
.hero-proof-line span {
  background: rgba(0, 223, 119, 0.065);
  color: var(--text-primary);
}
.micro-cta-band {
  border-color: rgba(0, 223, 119, 0.18);
  background: linear-gradient(135deg, rgba(0, 223, 119, 0.10), rgba(255, 255, 255, 0.035));
}
.featured-service,
.featured-workflow {
  box-shadow: 0 22px 70px rgba(0, 223, 119, 0.08);
}
.cta-content {
  max-width: 820px;
}
.cta-content h2 {
  text-wrap: balance;
}

.hero-proof-line span,
.path-badge {
  letter-spacing: 0;
}

/* Code-rendered dashboards and decision graphics */
.audit-dashboard,
.workflow-card {
  border-color: rgba(0, 223, 119, 0.18);
}
.score-ring {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 0 28px rgba(0, 223, 119, 0.16);
}
.status-pill,
.path-badge {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
.workflow-label {
  color: var(--accent-primary);
}
.metric-card {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}

/* Campaign page and service decision ladder */
.campaign-hero .hero-title {
  max-width: 760px;
}
.score-dimension-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.score-dimension-grid .metric-card {
  min-height: 112px;
}
.score-dimension-grid .metric-card strong {
  display: block;
  line-height: 1.3;
}
.compact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.service-ladder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.25rem;
  align-items: start;
}
.service-ladder-group {
  display: grid;
  gap: 1rem;
}
.service-ladder .service-card {
  position: relative;
  padding-left: 4.8rem;
}
.service-ladder .service-stage {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
}

@media (max-width: 1080px) {
  .score-dimension-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-ladder {
    grid-template-columns: 1fr;
  }
}

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

  .score-dimension-grid {
    grid-template-columns: 1fr;
  }
  .service-ladder .service-card {
    padding-left: 1.25rem;
    padding-top: 4.5rem;
  }
}

@media (max-width: 768px) {
  .navbar .nav-links.active {
    transform: translateY(0) !important;
  }
}

/* Project portfolio page */
.portfolio-note {
  max-width: 760px;
  margin-top: 1.35rem;
  font-size: 0.95rem;
  color: var(--text-tertiary);
}

.portfolio-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-proof-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.5rem auto 0;
  max-width: 820px;
}

.portfolio-proof-visual div,
.proof-anchor {
  position: relative;
  overflow: hidden;
}

.portfolio-proof-visual div {
  background: rgba(18,24,38,0.74);
  border: 1px solid rgba(0,223,119,0.16);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: left;
  box-shadow: var(--shadow-subtle);
}

.portfolio-proof-visual div::before,
.proof-anchor::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0,223,119,0.9), rgba(56,189,248,0.45), rgba(251,191,36,0.45));
}

.portfolio-proof-visual strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.portfolio-proof-visual span {
  color: var(--text-tertiary);
  font-size: 0.84rem;
  line-height: 1.45;
}

.proof-anchor {
  min-height: 118px;
}

.proof-number {
  display: block;
  color: var(--accent-primary) !important;
  font-size: clamp(1.7rem, 3vw, 2.35rem) !important;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.45rem !important;
}

.industry-map,
.portfolio-card-grid,
.deliverable-library {
  display: grid;
  gap: 1.25rem;
}

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

.industry-card,
.portfolio-card {
  background: rgba(18,24,38,0.68);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-subtle);
}

.industry-card h3,
.portfolio-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.75rem;
}

.industry-card p,
.portfolio-card p {
  font-size: 0.94rem;
  margin-bottom: 0.7rem;
}

.portfolio-card p:nth-of-type(2) {
  display: none;
}

.portfolio-card p strong {
  color: var(--text-primary);
}

.industry-card p:last-child,
.portfolio-card p:last-child {
  margin-bottom: 0;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: -1rem auto 2rem;
}

.filter-btn {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.6rem 0.9rem;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(0,223,119,0.09);
  border-color: rgba(0,223,119,0.28);
  color: var(--text-primary);
}

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

.portfolio-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0.65;
}

.portfolio-card-grid:not(.is-ready) .portfolio-card:nth-child(n+9),
.portfolio-card.is-hidden {
  display: none;
}

.portfolio-kicker {
  color: var(--accent-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.portfolio-meta {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.portfolio-meta span {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  color: var(--text-tertiary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.55rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.45rem;
}

.portfolio-tags span {
  background: rgba(0,223,119,0.06);
  border: 1px solid rgba(0,223,119,0.16);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
}


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

@media (max-width: 1100px) {
  .portfolio-proof-grid,
  .industry-map,
  .portfolio-card-grid,
  .deliverable-library {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .portfolio-filters {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
  }

  .portfolio-proof-visual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .tag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* Conversion-light booking flow */
.schedule-first-screen {
  min-height: auto;
  padding-top: 7.5rem;
  padding-bottom: 4rem;
}

.schedule-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.schedule-intro > p {
  max-width: 620px;
}

.schedule-path-list {
  display: grid;
  gap: .75rem;
  margin-top: 1.5rem;
}

.schedule-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  background: rgba(18,24,38,.72);
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.schedule-path:hover {
  border-color: rgba(0,223,119,.34);
  background: rgba(0,223,119,.06);
  transform: translateY(-1px);
}

.schedule-path h2 {
  margin: .3rem 0 .2rem;
  font-size: 1.08rem;
}

.schedule-path p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.4;
}

.path-action {
  color: var(--accent-primary);
  font-size: .9rem;
  font-weight: 800;
  white-space: nowrap;
}

.schedule-calendar {
  position: static;
  top: auto;
}

.schedule-calendar .calendly-inline-widget {
  min-height: 560px;
  height: 590px !important;
}

.btn {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .schedule-lead-grid {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .schedule-first-screen {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }

  .schedule-path {
    padding: .8rem;
  }

  .schedule-path p {
    display: none;
  }

  .schedule-calendar .calendly-inline-widget {
    min-height: 570px;
    height: 600px !important;
  }
}

@media (max-width: 420px) {
  .schedule-path {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .btn {
    font-size: .9rem;
    padding-inline: .85rem;
  }
}
