/* YardQuoter Marketing — Shared Styles */
@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@400,500,600,700,800&f[]=satoshi@400,500,700&display=swap');

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

:root {
  --emerald: #10B981;
  --emerald-dark: #059669;
  --emerald-light: #D1FAE5;
  --emerald-glow: rgba(16,185,129,0.15);
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94A3B8;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #FFFFFF;
  --indigo: #6366F1;
  --font-display: 'Cabinet Grotesk', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow 0.2s;
}
.nav--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: inherit;
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--slate-900); background: var(--slate-100); }

/* Industries dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s, background 0.15s;
  font-family: var(--font-body);
}
.nav-dropdown-trigger:hover { color: var(--slate-900); background: var(--slate-100); }
.nav-dropdown-trigger svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  pointer-events: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-700);
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown-menu a:hover { background: var(--slate-50); color: var(--slate-900); }
.nav-dropdown-menu a .ind-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-ghost {
  color: var(--slate-700);
  background: transparent;
}
.btn-ghost:hover { background: var(--slate-100); color: var(--slate-900); }
.btn-primary {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(16,185,129,0.4);
}
.btn-lg {
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 12px;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--slate-200);
  color: var(--slate-700);
}
.btn-outline:hover { border-color: var(--slate-400); background: var(--slate-50); }

/* Mobile nav toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-mobile-toggle:hover { background: rgba(0,0,0,0.05); }
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111827;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu {
  background: white;
  border-top: 1px solid #F3F4F6;
  padding: 0.5rem 0 1rem;
}
.nav-mobile-menu .dropdown-item {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.93rem;
  color: #374151;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.12s;
}
.nav-mobile-menu .dropdown-item:hover { background: #F9FAFB; color: #10B981; }
.nav-mobile-menu .dropdown-divider {
  height: 1px;
  background: #F3F4F6;
  margin: 0.4rem 0;
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* ── Sections ─────────────────────────────────── */
.section { padding: 100px 24px; }
.section-sm { padding: 60px 24px; }
.container { max-width: 1160px; margin: 0 auto; }
.container-sm { max-width: 780px; margin: 0 auto; }

/* ── Typography ───────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-dark);
  background: var(--emerald-light);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.15; }
.headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.headline-md {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.headline-sm {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.subhead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--slate-600);
  line-height: 1.6;
  max-width: 600px;
}
.text-emerald { color: var(--emerald-dark); }
.text-center { text-align: center; }
.text-center .subhead { margin: 0 auto; }

/* ── Cards ────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ── Feature grid ─────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--emerald-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ── Screenshot showcase ──────────────────────── */
.screenshot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
  background: var(--slate-900);
}
.screenshot-frame img, .screenshot-frame canvas {
  width: 100%;
  display: block;
}
.screenshot-bar {
  background: var(--slate-800);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.screenshot-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.screenshot-bar span:nth-child(1) { background: #FF5F57; }
.screenshot-bar span:nth-child(2) { background: #FFBD2E; }
.screenshot-bar span:nth-child(3) { background: #28C840; }
.screenshot-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
  margin-left: 8px;
}

/* ── Bento grid ───────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.bento-wide { grid-column: span 8; }
.bento-narrow { grid-column: span 4; }
.bento-half { grid-column: span 6; }
.bento-third { grid-column: span 4; }
.bento-full { grid-column: span 12; }
@media (max-width: 960px) {
  .bento-wide, .bento-narrow, .bento-half, .bento-third { grid-column: span 12; }
}

/* ── Stats bar ────────────────────────────────── */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-value span { color: var(--emerald); }
.stat-label { font-size: 14px; color: var(--slate-500); margin-top: 6px; }

/* ── Testimonials ─────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-stars { color: #F59E0B; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote { font-size: 15px; color: var(--slate-700); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 13px;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--slate-900); }
.testimonial-role { font-size: 12px; color: var(--slate-500); }

/* ── CTA section ──────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--slate-900) 0%, #0D2B1F 50%, #064E3B 100%);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: white; }
.cta-section p { color: rgba(255,255,255,0.7); margin: 16px auto 36px; }
.btn-white {
  background: white;
  color: var(--slate-900);
  font-weight: 700;
}
.btn-white:hover { background: var(--slate-100); }
.btn-ghost-white {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.18); }

/* ── Footer ───────────────────────────────────── */
footer {
  background: var(--slate-900);
  color: rgba(255,255,255,0.6);
  padding: 60px 24px 32px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-top: 12px; max-width: 240px; }
.footer-col h4 { font-family: var(--font-display); color: white; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ── GIF animation containers ─────────────────── */
.gif-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
  position: relative;
  background: #0F172A;
}
.gif-frame img {
  width: 100%;
  display: block;
}

/* ── Animated demo ────────────────────────────── */
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}
@keyframes typing {
  0%, 100% { width: 0; }
  40%, 60% { width: 100%; }
}
@keyframes scanLine {
  0% { top: 0; }
  100% { top: 100%; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmerSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}
@keyframes bounce-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.animate-in { animation: slideInUp 0.5s ease both; }

/* ── Industry page specific ───────────────────── */
.ind-hero {
  background: linear-gradient(135deg, var(--slate-900) 0%, #0D2B1F 60%, #064E3B 100%);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ind-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.ind-hero h1 { color: white; }
.ind-hero .subhead { color: rgba(255,255,255,0.75); }
.ind-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ── Value prop rows ──────────────────────────── */
.value-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.value-row.reverse { direction: rtl; }
.value-row.reverse > * { direction: ltr; }
@media (max-width: 820px) {
  .value-row, .value-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
}
.value-content { }
.value-content .eyebrow { margin-bottom: 12px; }
.value-content h2 { margin-bottom: 16px; }
.value-content p { color: var(--slate-600); margin-bottom: 24px; }
.value-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.value-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--slate-700);
}
.value-checklist li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  background: var(--emerald-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23059669' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Pricing ──────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 820px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--white);
}
.pricing-card.featured {
  border-color: var(--emerald);
  box-shadow: 0 0 0 1px var(--emerald), var(--shadow-lg);
  background: linear-gradient(180deg, #F0FDF9 0%, white 60%);
  transform: translateY(-8px);
}
.pricing-badge {
  display: inline-block;
  background: var(--emerald);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pricing-name { font-size: 20px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.pricing-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 12px 0;
}
.pricing-price span { font-size: 18px; font-weight: 500; color: var(--slate-500); vertical-align: middle; }
.pricing-desc { font-size: 14px; color: var(--slate-500); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--slate-700);
}
.pricing-features li::before {
  content: '✓';
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--emerald-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--emerald-dark); font-weight: 700;
  line-height: 18px; text-align: center;
}

/* ── Hero demo mockup ─────────────────────────── */
.hero-mockup {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25), 0 8px 30px rgba(0,0,0,0.15);
}
.hero-mockup img { width: 100%; display: block; }
.floating-badge {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideInUp 0.6s ease both;
}
.floating-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

/* ── Social proof logos ───────────────────────── */
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.45;
  filter: grayscale(1);
}
.logo-bar span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--slate-700);
  letter-spacing: -0.5px;
}

/* ── CSS animated demo panels ─────────────────── */
.demo-panel {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.demo-panel-header {
  background: var(--slate-900);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.demo-dot { width: 9px; height: 9px; border-radius: 50%; }
.demo-dot-red { background: #FF5F57; }
.demo-dot-yellow { background: #FFBD2E; }
.demo-dot-green { background: #28C840; }
.demo-panel-url {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-family: monospace;
  margin-left: 6px;
}

/* ── Highlight band ───────────────────────────── */
.band {
  background: linear-gradient(135deg, #F0FDF9 0%, #E8FBF3 100%);
  border-top: 1px solid #BBF7D0;
  border-bottom: 1px solid #BBF7D0;
}

/* ── Role cards ───────────────────────────────── */
.role-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .role-cards { grid-template-columns: 1fr; } }
.role-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.role-card-icon { font-size: 36px; margin-bottom: 16px; }
.role-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.role-card p { font-size: 14px; line-height: 1.65; }
.role-card ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.role-card ul li { font-size: 14px; display: flex; align-items: flex-start; gap: 8px; }
.role-card ul li::before { content: '→'; color: inherit; font-weight: 700; flex-shrink: 0; }
.role-sales { background: linear-gradient(135deg, #F0FDF9 0%, #DCFCE7 100%); border: 1px solid #BBF7D0; color: var(--slate-800); }
.role-ops { background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%); border: 1px solid #C7D2FE; color: var(--slate-800); }
.role-field { background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%); border: 1px solid #FED7AA; color: var(--slate-800); }
