/* ============================================================
   Global IR Group — Marketing Website
   Brand: Navy #0f2340  Gold #b8962e  Fonts: Playfair + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --navy:        #0f2340;
  --navy-mid:    #1a3658;
  --navy-light:  #1f4e79;
  --gold:        #b8962e;
  --gold-light:  #d4b44a;
  --gold-pale:   #f5ecd0;
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --text-dark:   #0f2340;
  --text-mid:    #3a5068;
  --text-light:  #7a93aa;
  --border:      #d6e0ea;
  --shadow-sm:   0 1px 4px rgba(15,35,64,0.08);
  --shadow-md:   0 4px 16px rgba(15,35,64,0.12);
  --shadow-lg:   0 12px 40px rgba(15,35,64,0.18);
  --radius:      4px;
  --max-width:   1180px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-mid); max-width: 68ch; }
.lead { font-size: 1.15rem; color: var(--text-mid); line-height: 1.75; }
.mono { font-family: 'DM Mono', monospace; }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.flush { padding: 0; }

/* ── Nav ─────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a.active { border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  gap: 1rem;
}
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ── Section Labels ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0 1.75rem;
}
.section-divider.center { margin: 1rem auto 1.75rem; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(184,150,46,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 20%, rgba(31,78,121,0.5) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(184,150,46,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { color: var(--white); max-width: 14ch; margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero .lead { color: rgba(255,255,255,0.75); max-width: 54ch; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── Page Hero (sub-pages) ───────────────────────────────── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 50%, rgba(184,150,46,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.72); max-width: 60ch; }
.page-hero .section-label { color: var(--gold); }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--border);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; }

/* ── Grid ────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding: 80px 0 72px; }
  .page-hero { padding: 60px 0 52px; }
}

/* ── Stat Blocks ─────────────────────────────────────────── */
.stat-block { text-align: center; padding: 1.5rem 1rem; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.9rem; color: var(--text-mid); font-weight: 500; }

/* ── Two-column Feature Split ────────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) {
  .feature-split { grid-template-columns: 1fr; gap: 2.5rem; }
}
.feature-split .feature-col { }
.feature-col .section-label { display: block; margin-bottom: 0.5rem; }

/* ── Check List ──────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ── Dark Section ────────────────────────────────────────── */
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark .section-label { color: var(--gold); }
.section-dark .card {
  background: var(--navy-mid);
  border-color: rgba(184,150,46,0.25);
}
.section-dark .card:hover { border-color: var(--gold); }
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: rgba(255,255,255,0.65); }
.section-dark .card-icon { background: rgba(184,150,46,0.15); }

/* ── Pricing Table ───────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; } }

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.pricing-card h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.pricing-sub { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.pricing-amount { margin-bottom: 1.5rem; }
.pricing-amount .price {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.pricing-amount .period { font-size: 0.9rem; color: var(--text-light); }
.pricing-amount .annual { font-size: 0.82rem; color: var(--text-light); margin-top: 0.25rem; }
.pricing-features { border-top: 1px solid var(--border); padding-top: 1.5rem; margin-bottom: 1.75rem; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(214,224,234,0.5);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .feat-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

/* ── Team Cards ──────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-photo {
  width: 100%;
  height: 300px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.team-photo-placeholder {
  width: 80px;
  height: 80px;
  background: rgba(184,150,46,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}
.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.team-title { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.85rem; }
.team-bio { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ── Quote / Testimonial ─────────────────────────────────── */
.pullquote {
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.75rem;
  margin: 2.5rem 0;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pullquote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  max-width: none;
  margin-bottom: 0.5rem;
}
.pullquote cite { font-size: 0.85rem; color: var(--text-light); font-style: normal; font-weight: 600; }

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184,150,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.7); margin: 0 auto 2rem; }
.cta-band .btn-primary { font-size: 1rem; padding: 0.95rem 2.25rem; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #080f1a;
  color: rgba(255,255,255,0.55);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo img { height: 52px; margin-bottom: 1rem; filter: brightness(1.1); }
.footer-tagline { font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col address { font-style: normal; font-size: 0.85rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom span { font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── White Paper Formatting ──────────────────────────────── */
.wp-body { max-width: 780px; margin: 0 auto; }
.wp-body h2 { font-size: 1.6rem; margin-top: 3rem; margin-bottom: 0.75rem; }
.wp-body h3 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: 0.5rem; color: var(--gold); }
.wp-body p { color: var(--text-mid); margin-bottom: 1.25rem; max-width: none; }
.wp-body ul { margin: 1rem 0 1.5rem 1.5rem; list-style: disc; }
.wp-body ul li { color: var(--text-mid); margin-bottom: 0.4rem; font-size: 0.95rem; }
.wp-body .wp-highlight {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.wp-body .wp-highlight p { color: var(--navy); font-weight: 500; margin: 0; }

/* ── Problem / Challenge Boxes ───────────────────────────── */
.challenge-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.challenge-box h4 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--navy); }
.challenge-box ul { display: flex; flex-direction: column; gap: 0.5rem; }
.challenge-box ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
}
.challenge-box ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Comparison Table ────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th {
  background: var(--navy);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.compare-table th:first-child { border-radius: var(--radius) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.compare-table th.col-highlight { background: var(--gold); color: var(--navy); }
.compare-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(248,247,244,0.5); }
.compare-table td.col-highlight { background: rgba(184,150,46,0.06); font-weight: 500; }
.compare-table .check { color: var(--gold); font-weight: 700; }
.compare-table .cross { color: var(--text-light); }

/* ── Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.gold-text { color: var(--gold); }
.navy-text { color: var(--navy); }

/* ── Contact Form ────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── Module Icons (SVG inline) ───────────────────────────── */
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .module-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .module-grid { grid-template-columns: 1fr; } }

.module-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: box-shadow 0.2s, transform 0.2s;
}
.module-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.module-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.module-card p { font-size: 0.88rem; }

/* ── Prompt List ─────────────────────────────────────────── */
.prompt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 640px) { .prompt-grid { grid-template-columns: 1fr; } }
.prompt-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 500;
}
.prompt-item .prompt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.prompt-item.enterprise { border-color: var(--gold); background: var(--gold-pale); color: var(--navy); }
