/* ==========================================================================
   BizLink B2B Marketplace - Executive Design System & High-Converting Styles
   Inspired by BizScout Editorial & Modern High-End B2B SaaS
   ========================================================================== */

:root {
  /* Core Colors */
  --color-cream: #faf7f2;
  --color-cream-soft: #f4efea;
  --color-cream-deep: #ede4d8;
  --color-white: #ffffff;
  
  --color-navy: #14171c;
  --color-navy-light: #1e222a;
  --color-navy-muted: #2d323e;
  --color-slate-muted: #5a6474;
  --color-border-subtle: rgba(20, 23, 28, 0.08);
  --color-border-medium: rgba(20, 23, 28, 0.15);

  /* Gold & Accents */
  --color-gold: #ffd08b;
  --color-gold-hover: #f7c272;
  --color-gold-soft: #dca44e;
  --color-gold-dark: #b88636;
  --color-gold-bg: rgba(255, 208, 139, 0.16);

  /* Status Colors */
  --color-success: #059669;
  --color-success-bg: #ecfdf5;
  --color-success-border: #a7f3d0;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Elevation */
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 20px -2px rgba(20, 23, 28, 0.06);
  --shadow-hover: 0 14px 34px -4px rgba(20, 23, 28, 0.12);
  --shadow-modal: 0 24px 50px -12px rgba(20, 23, 28, 0.25);
}

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

html {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Typography Utilities */
.font-serif { font-family: var(--font-serif); }
.font-mono { font-family: var(--font-mono); }
.italic { font-style: italic; }
.font-bold { font-weight: 700; }
.text-gold { color: var(--color-gold-dark); }
.text-success { color: var(--color-success); }
.text-muted { color: var(--color-slate-muted); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.45rem;
  border-radius: 9999px; /* Pill style */
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-navy);
  box-shadow: 0 2px 10px rgba(255, 208, 139, 0.45);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 208, 139, 0.55);
}

.btn-dark {
  background-color: var(--color-navy);
  color: #ffffff;
}

.btn-dark:hover {
  background-color: var(--color-navy-light);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-border-medium);
  color: var(--color-navy);
}

.btn-outline:hover {
  background-color: var(--color-cream-soft);
  border-color: var(--color-navy);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.845rem;
}

.btn-lg {
  padding: 0.95rem 2.15rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.arrow-icon {
  font-size: 1.1rem;
  transition: transform 0.15s ease;
}

.btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* ==================== NAVBAR ==================== */
.biz-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  height: 72px;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  height: 38px;
  width: auto;
}

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

.nav-item {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-navy-muted);
  transition: color 0.15s ease;
}

.nav-item:hover {
  color: var(--color-gold-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* ==================== HERO SECTION ==================== */
.biz-hero {
  padding: 5.5rem 1.5rem 5rem;
  border-bottom: 1px solid var(--color-border-subtle);
  background: radial-gradient(circle at 50% -15%, rgba(255, 208, 139, 0.35) 0%, transparent 65%);
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 2rem;
  background-color: var(--color-cream-soft);
  padding: 0.4rem 1.15rem;
  border-radius: 9999px;
  border: 1px solid rgba(184, 134, 54, 0.25);
  box-shadow: var(--shadow-subtle);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-success);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(5, 150, 105, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--color-navy);
  margin-bottom: 2rem;
}

.hero-subgrid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-lead {
  font-size: 1.22rem;
  color: var(--color-slate-muted);
  line-height: 1.65;
  font-weight: 400;
}

.hero-cta-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-proof-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.proof-pill {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-navy-muted);
}

/* ==================== TICKER ==================== */
.ticker-section {
  padding: 1.5rem;
  background-color: var(--color-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-label {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.ticker-items {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.ticker-pill {
  font-size: 0.845rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.06);
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 6.5rem 1.5rem;
}

.bg-white { background-color: #ffffff; }
.bg-cream { background-color: var(--color-cream); }
.bg-dark { background-color: var(--color-navy); }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.kicker {
  display: inline-block;
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold-dark);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--color-slate-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ==================== EDITORIAL 3-COLUMNS (BROKEN SYSTEM) ==================== */
.editorial-header {
  max-width: 850px;
  margin-bottom: 4rem;
}

.editorial-title {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 500;
  line-height: 1.2;
}

.editorial-title-muted {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(20, 23, 28, 0.55);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.25rem;
  margin-bottom: 4rem;
}

.editorial-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 18px;
  padding: 2.75rem 2.25rem;
  transition: all 0.25s ease;
}

.editorial-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.card-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(20, 23, 28, 0.18);
  margin-bottom: 1.25rem;
}

.card-heading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-body {
  font-size: 0.9375rem;
  color: var(--color-slate-muted);
  line-height: 1.65;
}

.editorial-bottom-quote {
  border-top: 1px solid var(--color-border-medium);
  padding-top: 2.75rem;
  max-width: 850px;
}

.quote-txt {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-navy);
  line-height: 1.35;
}

.quote-sub {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-top: 0.5rem;
}

/* ==================== STEPS (01, 02, 03) ==================== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.big-step-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 20px;
  padding: 3.25rem 2.25rem;
  position: relative;
  transition: all 0.25s ease;
}

.big-step-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.step-giant-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(20, 23, 28, 0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.big-step-card:hover .step-giant-num {
  color: var(--color-gold-dark);
}

.step-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.badge-free { background-color: var(--color-success-bg); color: var(--color-success); }
.badge-credit { background-color: var(--color-gold-bg); color: var(--color-gold-dark); }
.badge-success { background-color: var(--color-success-bg); color: var(--color-success); }

.step-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--color-slate-muted);
  line-height: 1.65;
}

.mechanics-panel {
  background-color: #ffffff;
  border: 1px solid var(--color-border-medium);
  border-radius: 18px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  box-shadow: var(--shadow-subtle);
}

.mech-col {
  flex: 1;
}

.mech-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  display: block;
  margin-bottom: 0.4rem;
}

.mech-col h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mech-col p {
  font-size: 0.925rem;
  color: var(--color-slate-muted);
  line-height: 1.6;
}

.mech-divider {
  width: 1px;
  height: 90px;
  background-color: var(--color-border-subtle);
}

/* ==================== ROLE SWITCHER ==================== */
.role-tab-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.role-tab-bar {
  display: inline-flex;
  background-color: var(--color-cream-soft);
  padding: 0.35rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border-subtle);
}

.role-tab {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-slate-muted);
  transition: all 0.2s ease;
}

.role-tab.active {
  background-color: var(--color-navy);
  color: #ffffff;
  box-shadow: var(--shadow-subtle);
}

.role-view-content {
  display: none;
}

.role-view-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.role-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.role-view-heading {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.role-view-lead {
  font-size: 1.075rem;
  color: var(--color-slate-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.role-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.role-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-navy-muted);
}

.c-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold-dark);
}

.role-preview-card {
  background-color: var(--color-cream);
  border: 1px solid var(--color-border-medium);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.p-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background-color: var(--color-gold-bg);
  color: var(--color-gold-dark);
}

.p-date {
  font-size: 0.8125rem;
  color: var(--color-slate-muted);
}

.p-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.p-company {
  font-size: 0.9rem;
  color: var(--color-slate-muted);
  margin-bottom: 1.5rem;
}

.p-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.p-stat-box {
  background-color: #ffffff;
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--color-border-subtle);
  text-align: center;
}

.ps-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-slate-muted);
  margin-bottom: 0.25rem;
}

.ps-val {
  font-size: 1.05rem;
  font-weight: 700;
}

.p-tag-strip {
  display: flex;
  gap: 0.5rem;
}

.p-tag-strip span {
  font-size: 0.75rem;
  background-color: #ffffff;
  border: 1px solid var(--color-border-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.p-footer-note {
  font-size: 0.8125rem;
  color: var(--color-slate-muted);
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 0.75rem;
}

.unlocked-details-box {
  background: #ffffff;
  border: 1px solid var(--color-success-border);
  padding: 1.15rem;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ==================== CATEGORIES SHOWCASE GRID ==================== */
.categories-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.cat-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 18px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.cat-card:hover {
  border-color: rgba(184, 134, 54, 0.4);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.cat-icon-badge {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.cat-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.cat-desc {
  font-size: 0.925rem;
  color: var(--color-slate-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.cat-meta-strip {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.cat-tag {
  font-size: 0.75rem;
  background-color: var(--color-cream);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  color: var(--color-navy-muted);
  font-weight: 500;
}

.cat-footer-lock {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gold-dark);
}

.ecosystem-callout {
  background-color: #ffffff;
  border: 1px solid var(--color-border-medium);
  border-radius: 18px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-card);
}

.callout-txt h4 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.callout-txt p {
  font-size: 0.9375rem;
  color: var(--color-slate-muted);
}

/* ==================== FAQ ACCORDION ==================== */
.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-cream);
  border: 1px solid var(--color-border-subtle);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--color-border-medium);
}

.faq-item.active {
  background-color: #ffffff;
  border-color: rgba(184, 134, 54, 0.4);
  box-shadow: var(--shadow-subtle);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-header h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-chevron {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-gold-dark);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
}

.faq-item.active .faq-body {
  max-height: 250px;
  padding-top: 1rem;
}

.faq-body p {
  font-size: 0.9375rem;
  color: var(--color-slate-muted);
  line-height: 1.65;
}

/* ==================== EARLY ACCESS / FORM ==================== */
.early-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.early-spot-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gold);
  background-color: rgba(255, 208, 139, 0.12);
  padding: 0.4rem 1.15rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 208, 139, 0.3);
  margin-bottom: 1.5rem;
}

.spot-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-gold);
}

.early-headline {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.early-subhead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.perks-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.92);
}

.perk-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.p-check {
  color: var(--color-gold);
  font-weight: 700;
}

.formbricks-embed-wrapper {
  position: relative;
  height: 75dvh;
  min-height: 580px;
  max-height: 720px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-modal);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.formbricks-frame {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .formbricks-embed-wrapper {
    height: 80dvh;
    min-height: 540px;
    border-radius: 16px;
  }
}

.lead-capture-form {
  background-color: #ffffff;
  padding: 3.25rem 2.75rem;
  border-radius: 22px;
  color: var(--color-navy);
  box-shadow: var(--shadow-modal);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.field-wrap {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.field-wrap label {
  font-size: 0.845rem;
  font-weight: 600;
  color: var(--color-navy);
}

.field-wrap input, .field-wrap select, .field-wrap textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--color-border-medium);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field-wrap input:focus, .field-wrap select:focus, .field-wrap textarea:focus {
  border-color: var(--color-gold-dark);
  box-shadow: 0 0 0 3px rgba(255, 208, 139, 0.25);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-fineprint {
  font-size: 0.775rem;
  color: var(--color-slate-muted);
  text-align: center;
  margin-top: 1.15rem;
}

/* ==================== MODALS ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(20, 23, 28, 0.72);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-window {
  background-color: #ffffff;
  border-radius: 22px;
  width: 100%;
  max-width: 580px;
  padding: 2.75rem 2.25rem;
  position: relative;
  box-shadow: var(--shadow-modal);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalScaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleIn {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--color-slate-muted);
  cursor: pointer;
  transition: color 0.15s ease;
}

.modal-close:hover {
  color: var(--color-navy);
}

.modal-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  display: block;
  margin-bottom: 0.4rem;
}

.modal-heading {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.modal-meta {
  font-size: 0.875rem;
  color: var(--color-slate-muted);
  margin-bottom: 1.75rem;
}

.modal-actions-bar {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.75rem;
}

.pill-selector {
  display: flex;
  gap: 0.75rem;
}

.pill-option {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--color-border-medium);
  border-radius: 9999px;
  text-align: center;
  font-size: 0.845rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.pill-option.active {
  background-color: var(--color-navy);
  color: #ffffff;
  border-color: var(--color-navy);
}

/* Toast */
.toast-stack {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background-color: var(--color-navy);
  color: #ffffff;
  padding: 1rem 1.6rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-modal);
  border-left: 4px solid var(--color-gold);
  animation: toastPop 0.25s ease-out;
}

@keyframes toastPop {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== FOOTER ==================== */
.biz-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--color-border-subtle);
  padding: 5rem 1.5rem 2.5rem;
}

.footer-upper {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.footer-about {
  max-width: 360px;
}

.footer-bio {
  font-size: 0.875rem;
  color: var(--color-slate-muted);
  line-height: 1.6;
}

.footer-nav-cols {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.f-col h5 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--color-navy);
}

.f-col a, .f-col p {
  display: block;
  font-size: 0.875rem;
  color: var(--color-slate-muted);
  margin-bottom: 0.75rem;
  transition: color 0.15s ease;
}

.f-col a:hover {
  color: var(--color-gold-dark);
}

.footer-bottom {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-slate-muted);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .hero-main-title { font-size: 2.75rem; }
  .editorial-title, .editorial-title-muted { font-size: 2rem; }
  .section-heading { font-size: 2.25rem; }
  .nav-links { display: none; }
  .nav-post-btn { display: none; }
  .role-split-grid, .early-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .field-row { grid-template-columns: 1fr; }
  .mechanics-panel { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .mech-divider { display: none; }
  .ecosystem-callout { flex-direction: column; align-items: flex-start; }
}
