.file-card {
  width: 140px;
  height: 160px;

  border: 2px solid #3b6d95;
  border-radius: 12px;

  padding: 12px;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 8px;
}

.remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;

  width: 28px;
  height: 28px;

  border-radius: 50%;
  border: 1px solid var(--border);

  background: var(--surface2);
  color: var(--text);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: var(--transition);

  font-size: 14px;
  font-weight: 600;
}

.remove-btn:hover {
  background: var(--green-dim);
  border-color: var(--green);
  color: var(--green);

  transform: rotate(90deg);
}

.pdf-icon {
  font-size: 40px;
}

.file-size {
  margin-top: 10px;
  padding: 6px;
  border: 2px solid #3b6d95;
  display: inline-block;
}
.file-name {
  font-size: 12px;
  text-align: center;

  overflow: hidden;
  text-overflow: ellipsis;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  max-width: 110px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  text-align: center;
  margin-bottom: 10px;
}

.form-success p {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  appearance: none;
  -webkit-appearance: none;
}
.btn-hover:hover {
  box-shadow: 0 8px 28px rgba(29, 184, 106, 0.4) !important;
  transform: translateY(-2px);
}
.hero-title {
  font-family: "NeueMachina-Regular.woff2";
  line-height: 1.1;
  letter-spacing: 0.3px;
}
.btn.advisor {
  border: 1.5px solid var(--green) !important;
}
[data-theme="dark"] .btn.advisor {
  background: white !important;
  color: #060e1a !important;
  border: 1.5px solid var(--green) !important;
}
[data-theme="light"] .btn.advisor {
  background: #060e1a !important;
  color: white !important;
  border: 1.5px solid var(--green) !important;
}
.startup-modal-simple {
  max-width: 750px !important;
  padding: 48px !important;
  max-height: 90vh;
  overflow-y: auto;
}
.startup-form-simple {
  display: block;
}
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.pill-option {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  user-select: none;
}
.pill-option:hover {
  border-color: var(--green);
  color: var(--text);
}
.pill-option input:checked + span,
.pill-option:has(input:checked) {
  border-color: var(--green);
  background: var(--green);
  color: white;
}
.startup-modal {
  max-width: 1000px !important;
  padding: 0 !important;
  display: flex;
  overflow: hidden !important;
}
.startup-form-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  width: 100%;
  max-height: 90vh;
}
.startup-sidebar {
  background: var(--surface2);
  padding: 40px 24px;
  border-right: 1px solid var(--border);
  overflow-y: auto;
}
.startup-form-content {
  padding: 48px 40px;
  overflow-y: auto;
  max-height: calc(90vh - 60px);
}
.steps-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  cursor: pointer;
  opacity: 0.6;
  transition: all var(--transition);
  position: relative;
}
.step-item.active {
  opacity: 1;
}
.step-item .step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--muted);
  font-size: 14px;
  flex-shrink: 0;
  transition: all var(--transition);
}
.step-item.active .step-circle {
  background: var(--green);
  color: white;
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(29, 184, 106, 0.25);
}
.step-item .step-content {
  flex: 1;
}
.step-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.step-item p {
  font-size: 11px;
  color: var(--muted);
}
.step-connector {
  width: 2px;
  height: 16px;
  background: var(--border);
  margin-left: 19px;
  transition: all var(--transition);
}
.step-item.active ~ .step-connector {
  background: var(--green);
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.file-upload {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.file-upload:hover {
  border-color: var(--green);
  background: var(--green-dim2);
}
@media (max-width: 960px) {
  .startup-form-container {
    grid-template-columns: 1fr;
  }
  .startup-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* ═══════════════════════════════════════════
   THEME TOKENS
═══════════════════════════════════════════ */
:root {
  --green: #1db86a;
  --green-bright: #39d98a;
  --green-dim: rgba(29, 184, 106, 0.14);
  --green-dim2: rgba(29, 184, 106, 0.07);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg: #060e1a;
  --bg2: #08121f;
  --surface: #0d1e30;
  --surface2: #112338;
  --surface3: #162c44;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(29, 184, 106, 0.45);
  --text: #eef2f6;
  --text2: #b4c2d0;
  --muted: #7a8fa0;
  --heading-color: #f0f5fa;
  --nav-bg: rgba(6, 14, 26, 0.92);
  --card-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
  --modal-bg: linear-gradient(165deg, #112338, #08121f);
  --input-bg: rgba(255, 255, 255, 0.05);
  --input-border: rgba(255, 255, 255, 0.1);
  --badge-mode-bg: rgba(255, 255, 255, 0.08);
  --badge-mode-icon: "☀";
  --logo-tagline: rgba(255, 255, 255, 0.35);
}

[data-theme="light"] {
  --bg: #f5f8fc;
  --bg2: #eef3f9;
  --surface: #ffffff;
  --surface2: #f0f5fb;
  --surface3: #e8f0f8;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(29, 184, 106, 0.5);
  --text: #0d1a27;
  --text2: #2f4558;
  --muted: #5b738a;
  --heading-color: #091524;
  --nav-bg: rgba(245, 248, 252, 0.94);
  --card-shadow: 0 4px 24px rgba(0, 40, 80, 0.08);
  --modal-bg: linear-gradient(165deg, #ffffff, #f0f5fb);
  --input-bg: rgba(0, 0, 0, 0.03);
  --input-border: rgba(0, 0, 0, 0.12);
  --badge-mode-bg: rgba(0, 0, 0, 0.06);
  --logo-tagline: rgba(0, 0, 0, 0.35);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition:
    background var(--transition),
    color var(--transition);
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1260px;
  margin: auto;
  padding: 0 28px;
}

/* ═══════════════════════════════════════════
   THEME TOGGLE
═══════════════════════════════════════════ */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--badge-mode-bg);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--green);
  background: var(--green-dim);
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.logo {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  cursor: pointer;
  color: var(--heading-color);
  flex-shrink: 0;
}
.logo span {
  color: var(--green);
}
.logo-tag {
  font-size: 9px;
  font-weight: 600;
  color: var(--logo-tagline);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: -3px;
  font-family: "DM Sans", sans-serif;
}

nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}
nav ul li a {
  color: var(--text2);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
  padding: 8px 10px;
  border-radius: 8px;
}
nav ul li a:hover {
  color: var(--green);
  background: var(--green-dim2);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 16px rgba(29, 184, 106, 0.3);
}
.nav-cta:hover {
  background: #17a05b !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 184, 106, 0.4) !important;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.01em;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(29, 184, 106, 0.3);
}
.btn-primary:hover {
  background: #17a05b;
  box-shadow: 0 8px 28px rgba(29, 184, 106, 0.4);
}
.btn-dark {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-dark:hover {
  border-color: var(--green);
  background: var(--surface3);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 9px;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  padding: 152px 0 120px;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .hero {
  background:
    radial-gradient(
      ellipse 60% 60% at 80% 5%,
      rgba(29, 184, 106, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 50% at 10% 90%,
      rgba(29, 80, 184, 0.12) 0%,
      transparent 55%
    );
}
[data-theme="light"] .hero {
  background:
    radial-gradient(
      ellipse 60% 60% at 80% 5%,
      rgba(29, 184, 106, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 50% at 10% 90%,
      rgba(29, 80, 184, 0.06) 0%,
      transparent 55%
    );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--green-dim);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(29, 184, 106, 0.2);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 66px;
  line-height: 1;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
  color: var(--heading-color);
  font-weight: 800;
}
.hero-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 580px;
  margin-bottom: 38px;
  line-height: 1.75;
}
.cta-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* KPI STRIP */
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}
.kpi-item {
  padding: 22px 20px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.kpi-item:last-child {
  border-right: none;
}
.kpi-item:hover {
  background: var(--surface2);
}
.kpi-item h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 32px;
  color: var(--green);
  font-weight: 800;
  line-height: 1;
}
.kpi-item p {
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 4px;
  font-weight: 500;
}

/* HERO CARD */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 28px;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(29, 184, 106, 0.05),
    transparent 60%
  );
  pointer-events: none;
}
.hero-card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}
.hero-card ul {
  list-style: none;
}
.hero-card li {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
  font-size: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.hero-card li:last-child {
  border-bottom: none;
}
.hero-card li .li-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
section {
  padding: 100px 0;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 6px;
  background: var(--green-dim);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}
.section-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 46px;
  margin-bottom: 16px;
  letter-spacing: -1.8px;
  line-height: 1.08;
  color: var(--heading-color);
  font-weight: 800;
}
.section-sub {
  max-width: 680px;
  color: var(--muted);
  margin-bottom: 54px;
  font-size: 16px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   GRIDS & CARDS
═══════════════════════════════════════════ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 22px;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 48px rgba(29, 184, 106, 0.1);
}
.card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-weight: 700;
}
.card p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.65;
}

/* .icon-badge {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: var(--green-dim);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 18px;
        border: 1px solid rgba(29, 184, 106, 0.15);
      } */
.icon-badge {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 24px;
}

/* PRODUCT CARDS */
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 24px;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}
.product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
}
.product-card:hover::after {
  opacity: 1;
}
.product-card .product-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.product-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--heading-color);
}
.product-card .product-tagline {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.product-card p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.65;
}

/* flywheel visual */
.flywheel-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fw-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(2, 195, 154, 0.25);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.fw-center {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #02c39a, #028090);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: spin-slow 20s linear infinite reverse;
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.fw-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #02c39a;
  border-radius: 50%;
  box-shadow: 0 0 12px #02c39a;
}

.fw-dot:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fw-dot:nth-child(2) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.fw-dot:nth-child(3) {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.fw-dot:nth-child(4) {
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}

/* STAKEHOLDER LIST */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stakeholder-item {
  background: var(--surface);
  padding: 22px 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.stakeholder-item:hover {
  border-color: var(--border-hover);
  background: var(--surface2);
}
.stakeholder-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.stakeholder-item strong {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}
.stakeholder-item span {
  color: var(--text2);
  font-size: 13.5px;
  line-height: 1.55;
}

/* MOAT CALLOUT */
.moat-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 48px;
  margin-top: 60px;
  display: flex;
  gap: 48px;
  align-items: center;
  box-shadow: var(--card-shadow);
}
[data-theme="dark"] .moat-callout {
  background: linear-gradient(135deg, var(--surface2), var(--surface));
}
.moat-callout h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.moat-callout p {
  color: var(--text2);
  font-size: 14.5px;
  line-height: 1.7;
}
.moat-pillars {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.moat-pill {
  padding: 7px 14px;
  border-radius: 8px;
  background: var(--green-dim);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(29, 184, 106, 0.2);
}

/* ═══════════════════════════════════════════
   PARTNER TRACKS
═══════════════════════════════════════════ */
.partner-track {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 34px;
  border-radius: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.partner-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(29, 184, 106, 0.3));
}
.partner-track:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
}
.track-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--green-dim);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.partner-track h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--heading-color);
  font-weight: 700;
}
.partner-track .audience {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
  font-style: italic;
}
.partner-track .hook {
  color: var(--text);
  font-size: 14.5px;
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.55;
}
.partner-track .perks {
  list-style: none;
  margin-bottom: 24px;
}
.partner-track .perks li {
  color: var(--text2);
  font-size: 13.5px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: center;
}
.partner-track .perks li:last-child {
  border-bottom: none;
}
.partner-track .perks li::before {
  content: "→";
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   ONBOARDING STEPS
═══════════════════════════════════════════ */
.steps-row {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 52px;
}
.steps-row::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), rgba(29, 184, 106, 0.25));
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--green);
  margin: 0 auto 18px;
  box-shadow: 0 0 0 6px var(--green-dim2);
}
.step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--heading-color);
}
.step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   PARTNER CTA BANNER
═══════════════════════════════════════════ */
.partner-cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 72px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 68px;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .partner-cta-banner {
  background: linear-gradient(
    135deg,
    rgba(29, 184, 106, 0.07) 0%,
    var(--surface) 60%
  );
}
[data-theme="light"] .partner-cta-banner {
  background: linear-gradient(
    135deg,
    rgba(29, 184, 106, 0.05) 0%,
    var(--surface) 60%
  );
}
.partner-cta-banner h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 36px;
  letter-spacing: -1px;
  max-width: 480px;
  color: var(--heading-color);
  font-weight: 800;
}
.partner-cta-banner p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 10px;
  max-width: 440px;
  line-height: 1.65;
}
.banner-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   APPLY CARDS
═══════════════════════════════════════════ */
.apply-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.apply-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
}
.apply-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.apply-card .ac-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.apply-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--heading-color);
  font-weight: 700;
}
.apply-card p {
  color: var(--text2);
  font-size: 14px;
  margin-bottom: 26px;
  line-height: 1.65;
}
.apply-card .btn {
  align-self: flex-start;
}

.partner-inline {
  margin-top: 24px;
  text-align: center;
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
}
.partner-inline p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

/* ═══════════════════════════════════════════
   MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 9, 16, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active {
  display: flex;
}
.modal {
  background: var(--modal-bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover {
  background: var(--surface3);
  border-color: var(--green);
}
.modal h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  margin-bottom: 6px;
  letter-spacing: -0.8px;
  color: var(--heading-color);
  font-weight: 800;
}
.modal .modal-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   FORMS
═══════════════════════════════════════════ */
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 12px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  background: var(--green-dim2);
  box-shadow: 0 0 0 3px rgba(29, 184, 106, 0.12);
}
input::placeholder,
textarea::placeholder {
  color: var(--muted);
}
select option {
  background: var(--surface);
  color: var(--text);
}
textarea {
  resize: vertical;
  min-height: 130px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  font-size: 15px;
  padding: 15px;
}
.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-top: 14px;
}
.radio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.radio-pill input {
  display: none;
}
.radio-pill label {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--input-border);
  font-size: 13px;
  color: var(--text2);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.radio-pill input:checked + label {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
}
.radio-pill label:hover {
  border-color: rgba(29, 184, 106, 0.4);
  color: var(--text);
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}
.form-success .success-icon {
  font-size: 56px;
  margin-bottom: 18px;
}
.form-success h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--heading-color);
}
.form-success p {
  color: var(--muted);
  font-size: 14px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  padding: 52px 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.footer strong {
  color: var(--green);
}

/* ═══════════════════════════════════════════
   SECTION BACKGROUNDS
═══════════════════════════════════════════ */
#agents {
  background: var(--bg2);
}
#events {
  background: var(--bg2);
}
[data-theme="dark"] #partners {
  background: linear-gradient(
    180deg,
    rgba(29, 184, 106, 0.04) 0%,
    transparent 100%
  );
}
[data-theme="light"] #partners {
  background: linear-gradient(
    180deg,
    rgba(29, 184, 106, 0.03) 0%,
    transparent 100%
  );
}

.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
         PRICING SECTION — EXACT FROM REFERENCE.HTML
         CSS variables remapped to index.html theme tokens:
         --bg0/bg1/bg2 → --bg/--bg2/--surface
         --card/card2  → --surface/--surface2
         --teal/teal2/teal3 → --green / darken variants
         --txt/txt2/txt3 → --text/--text2/--muted
         --bord/bord2  → --border/--border-hover
         --purp/gold/blue/green/red kept as-is
      ═══════════════════════════════════════════════════════════ */

/* accent colors used in pricing badges (same as reference) */
:root {
  --p-gold: #f59e0b;
  --p-blue: #3b82f6;
  --p-purp: #8b5cf6;
  --p-red: #ef4444;
  --p-grn: #10b981;
  --p-r: 14px;
  --p-r2: 10px;
}

#pricing {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#pricing::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(29, 184, 106, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* pricing tabs */
.pricing-tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.35rem;
  margin-bottom: 3rem;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.pricing-tabs::-webkit-scrollbar {
  display: none;
}
.ptab {
  background: none;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
}
.ptab:hover {
  color: var(--text);
}
.ptab.active {
  background: var(--green);
  color: #000;
}

.pricing-panel {
  display: none;
}
.pricing-panel.active {
  display: block;
}

/* pricing hero text */
.pricing-hero {
  text-align: center;
  margin-bottom: 2rem;
}
.pricing-hero h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 0.4rem;
}
.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-top: 0.75rem;
}

/* pricing card grids */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.pricing-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

/* pricing card */
.pc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--p-r);
  padding: 1.75rem;
  transition: all 0.28s;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
}
.pc:hover {
  border-color: rgba(29, 184, 106, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(29, 184, 106, 0.08);
}
.pc.featured {
  border: 1.5px solid var(--green);
  background: linear-gradient(160deg, rgba(29, 184, 106, 0.07), var(--surface));
}
.pc.featured::after {
  content: "Most popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* badges */
.pc-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}
.badge-teal {
  background: rgba(29, 184, 106, 0.12);
  color: var(--green);
  border: 1px solid rgba(29, 184, 106, 0.2);
}
.badge-blue {
  background: rgba(59, 130, 246, 0.12);
  color: var(--p-blue);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.badge-gold {
  background: rgba(245, 158, 11, 0.12);
  color: var(--p-gold);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.badge-purp {
  background: rgba(139, 92, 246, 0.12);
  color: var(--p-purp);
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.badge-green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--p-grn);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

[data-theme="light"] .badge-teal {
  background: rgba(29, 184, 106, 0.1);
}
[data-theme="light"] .badge-blue {
  background: rgba(59, 130, 246, 0.1);
}
[data-theme="light"] .badge-gold {
  background: rgba(245, 158, 11, 0.1);
}
[data-theme="light"] .badge-purp {
  background: rgba(139, 92, 246, 0.1);
}
[data-theme="light"] .badge-green {
  background: rgba(16, 185, 129, 0.1);
}

.pc-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text2);
  margin-bottom: 0.35rem;
}
.pc-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.pc-price sup {
  font-size: 1.1rem;
  vertical-align: super;
  font-weight: 600;
}
.pc-period {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  min-height: 1.1rem;
}
.pc-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.25rem;
}
.pc-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.pc-feats li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.45;
}
.check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(29, 184, 106, 0.15);
  border: 1px solid rgba(29, 184, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.check::after {
  content: "✓";
  font-size: 0.6rem;
  color: var(--green);
  font-weight: 700;
}

.pc-cta {
  margin-top: 1.5rem;
  display: block;
  text-align: center;
  padding: 0.65rem;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
  font-family: "DM Sans", sans-serif;
  width: 100%;
}
.cta-fill {
  background: var(--green);
  color: #000;
}
.cta-fill:hover {
  background: #17a05b;
}
.cta-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid rgba(29, 184, 106, 0.35) !important;
}
.cta-outline:hover {
  background: rgba(29, 184, 106, 0.08);
  border-color: var(--green) !important;
}

/* compliance one-time card */
.pc-onetime {
  border-color: rgba(16, 185, 129, 0.3);
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.06), var(--surface));
}

/* revenue strip */
.rev-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.rev-item {
  text-align: center;
}
.rev-item-val {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--green);
}
.rev-item-lbl {
  font-size: 0.8rem;
  color: var(--text2);
  margin-top: 0.2rem;
}
.rev-item-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* success fee note */
.success-note {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text2);
}
.success-note strong {
  color: var(--p-gold);
}

[data-theme="light"] .success-note {
  background: rgba(245, 158, 11, 0.04);
}
[data-theme="light"] #pricing::before {
  background: radial-gradient(
    circle,
    rgba(29, 184, 106, 0.04) 0%,
    transparent 70%
  );
}
.grad {
  background: linear-gradient(135deg, #02c39a 0%, #4ade80 50%, #3b82f6 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .grid-4,
  .grid-3,
  .grid-2,
  .kpi-strip,
  .apply-cards,
  .moat-callout {
    grid-template-columns: 1fr;
  }
  .kpi-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .kpi-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  h1 {
    font-size: 44px;
    letter-spacing: -1.5px;
  }
  .section-title {
    font-size: 36px;
  }
  nav ul {
    display: none;
  }
  .steps-row {
    flex-direction: column;
    gap: 28px;
  }
  .steps-row::before {
    display: none;
  }
  .partner-cta-banner {
    flex-direction: column;
    padding: 40px 28px;
  }
  .partner-cta-banner h2 {
    font-size: 28px;
  }
  .modal {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .moat-callout {
    flex-direction: column;
    padding: 32px;
  }
}
@media (max-width: 700px) {
  .rev-strip {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .pricing-grid,
  .pricing-grid-3,
  .pricing-grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .kpi-strip {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 38px;
  }
  .hero {
    padding: 120px 0 80px;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
}

nav ul li a {
  transition: all 0.2s ease;
}

nav ul li a.active {
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(29, 184, 106, 0.2);
}
