/* ============================================================
   NINJA CONCEPTS — RESELLER PORTAL
   Shared stylesheet for all pages
   ============================================================ */

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

/* Design Tokens */
:root {
  --bg: #050712;
  --teal: #0FF2B2;
  --teal-gradient: linear-gradient(-80.29deg, #0FF2B2 0%, #098C67 100%);
  --teal-dim: rgba(15,242,178,0.12);
  --teal-border: rgba(15,242,178,0.35);
  --white: #F2F2F2;
  --white-60: rgba(242,242,242,0.6);
  --white-55: rgba(242,242,242,0.55);
  --white-45: rgba(242,242,242,0.45);
  --white-40: rgba(242,242,242,0.40);
  --white-30: rgba(242,242,242,0.3);
  --white-15: rgba(242,242,242,0.15);
  --white-08: rgba(242,242,242,0.08);
  --card: #0A0F26;
  --card-dark: #0A0F26;
  --card-gradient: linear-gradient(-47.89deg, rgba(5,7,18,0.45) 0%, rgba(5,7,18,0.90) 100%);
  --input-bg: #0F1228;
  --amber: #FFBA08;
  --red: #FF5050;
  --purple: #6C2EF2;
  --purple-dark: #3E1B8C;
  --purple-gradient: linear-gradient(135deg, #6C2EF2 0%, #3E1B8C 100%);
  --purple-dim: rgba(108,46,242,0.12);
  --purple-border: rgba(108,46,242,0.35);
}

/* Base */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,7,18,0.96);
  border-bottom: 1px solid var(--white-08);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 72px; flex-shrink: 0;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px; letter-spacing: -0.2px; color: var(--white-60); text-decoration: none; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #0D1230;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 8px 8px;
  min-width: 160px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; flex-direction: column; }
.nav-dropdown-menu a {
  padding: 10px 16px;
  border-radius: 7px;
  color: var(--white-60) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.07); color: var(--white) !important; }

.btn-nav { background: var(--teal); color: #0A0F26; font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: 15px; padding: 10px 22px; border-radius: 8px; border: none; cursor: pointer; transition: opacity .2s; text-decoration: none; display: inline-flex; align-items: center; }
.btn-nav:hover { opacity: .85; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary { background: var(--teal); color: #0A0F26; font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: 20px; letter-spacing: -0.2px; padding: 12px 28px; border-radius: 10px; border: none; cursor: pointer; transition: opacity .2s; display: inline-block; text-decoration: none; }
.btn-primary:hover { opacity: .88; }
.btn-secondary { background: rgba(242,242,242,0.06); color: var(--white); font-family: 'Montserrat',sans-serif; font-weight: 500; font-size: 18px; letter-spacing: -0.2px; padding: 14px 32px; border-radius: 10px; border: 1px solid var(--white-40); cursor: pointer; transition: all .2s; display: inline-block; text-decoration: none; }
.btn-secondary:hover { background: rgba(242,242,242,0.1); }
.btn-ghost { background: transparent; color: var(--white-45); font-family: 'Montserrat',sans-serif; font-weight: 500; font-size: 16px; letter-spacing: -0.2px; padding: 14px 28px; border-radius: 10px; border: 1px solid var(--white-15); cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; }
.btn-ghost:hover { border-color: var(--white-30); color: var(--white-60); }
.btn-purple { background: var(--purple-gradient); color: var(--white); font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: 18px; letter-spacing: -0.2px; padding: 16px 36px; border-radius: 10px; border: none; cursor: pointer; transition: opacity .2s; display: inline-block; text-decoration: none; }
.btn-purple:hover { opacity: .88; }
.btn-amber { background: rgba(255,186,8,0.12); border: 1px solid rgba(255,186,8,0.4); color: var(--amber); font-family: 'Montserrat',sans-serif; font-weight: 500; font-size: 15px; padding: 14px 28px; border-radius: 10px; cursor: pointer; transition: all .2s; display: inline-block; text-decoration: none; }
.btn-amber:hover { background: rgba(255,186,8,0.18); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.content-center { text-align: center; }
.flex-1 { flex: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(125deg, rgba(108,46,242,0.1) 0%, transparent 45%, rgba(15,242,178,0.04) 100%);
}
.hero::before {
  content: ''; position: absolute; top: -60px; left: 35%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,242,178,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: -40px; right: 5%;
  width: 580px; height: 580px; border-radius: 50%;
  background: radial-gradient(circle, rgba(108,46,242,0.11) 0%, transparent 70%);
  pointer-events: none;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-dim); border: 1px solid var(--teal-border);
  color: var(--teal); font-size: 13px; font-weight: 500;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
}
h1 { font-family: 'Montserrat',sans-serif; font-weight: 800; font-size: 80px; line-height: 1.06; letter-spacing: -1px; color: var(--white); margin-bottom: 24px; }
h1 em { font-style: normal; color: var(--teal); }
.hero-sub { font-size: 22px; color: var(--white-60); line-height: 1.65; max-width: 680px; margin: 0 auto 40px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Large ExtraBold hero eyebrow */
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: block;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
  background: rgba(255,255,255,0.02);
  padding: 22px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 8px 20px; border-right: 1px solid var(--white-15); }
.stat-item:last-child { border-right: none; }
.stat-val { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 36px; color: var(--teal); display: block; }
.stat-label { font-size: 13px; color: var(--white-45); margin-top: 4px; display: block; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 70px 0; }
.section-eyebrow { font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 14px; color: var(--teal); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }
h2 { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 52px; line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--white-55); line-height: 1.6; }

/* "Why We're Different" 3-col numbered section */
.why-diff-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--white-08);
}
.diff-col {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--white-08);
}
.diff-col:last-child { border-right: none; padding-right: 0; }
.diff-col:not(:first-child) { padding-left: 40px; }
.diff-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 100px;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 20px;
  display: block;
  letter-spacing: -2px;
}
.diff-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.diff-desc {
  font-size: 16px;
  color: var(--white-55);
  line-height: 1.65;
}

/* Problem section */
.problem-section { padding: 80px 0; }
.problem-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 52px;
  margin-bottom: 28px;
  line-height: 1.15;
}
.problem-body {
  font-size: 22px;
  color: var(--white-55);
  line-height: 1.65;
  max-width: 860px;
}

/* Purple hero panel accent (left gradient wash) */
.hero-panel-accent {
  position: absolute;
  top: 0; left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108,46,242,0.22) 0%, transparent 70%);
  pointer-events: none;
}

/* Teal inline link */
.teal-link { color: var(--teal); text-decoration: underline; cursor: pointer; background: none; border: none; font-family: 'Inter',sans-serif; }
.teal-link:hover { opacity: .8; }

/* ============================================================
   TIER CARDS
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.tier-card {
  background: var(--card-gradient); border: 1px solid var(--white-40);
  border-radius: 10px; padding: 28px; position: relative; overflow: hidden;
  transition: transform .2s;
}
.tier-card:hover { transform: translateY(-3px); }
.tier-card.featured { border-color: var(--teal); }
.tier-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(15,242,178,0.3));
}
.tier-badge {
  display: inline-flex; align-items: center;
  background: rgba(242,242,242,0.07); border: 1px solid var(--white-30);
  color: var(--white); font-size: 13px; font-weight: 600; font-family: 'Montserrat',sans-serif;
  padding: 5px 16px; border-radius: 100px; margin-bottom: 14px;
}
.tier-card.featured .tier-badge { background: var(--teal-gradient); border-color: transparent; color: var(--card-dark); }
.most-popular { font-size: 10px; font-weight: 500; color: var(--teal); letter-spacing: 1px; text-transform: uppercase; float: right; margin-top: 8px; }
.tier-seats { font-size: 14px; color: var(--white-45); margin-bottom: 10px; }
.tier-pct { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 64px; line-height: 1; color: var(--white); margin-bottom: 20px; }
.tier-card.featured .tier-pct { color: var(--teal); }
.tier-divider { border: none; border-top: 1px solid var(--white-08); margin: 18px 0; }
.tier-note { font-size: 14px; color: var(--white-55); line-height: 1.5; }
.tier-footer { font-size: 12px; color: rgba(242,242,242,0.28); margin-top: 10px; }
.tier-locked { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 0; gap: 8px; }
.lock-icon { font-size: 28px; color: var(--white-30); }
.lock-label { font-size: 14px; color: var(--white-30); }
.lock-cta { font-size: 13px; color: var(--teal); text-decoration: underline; cursor: pointer; background: none; border: none; font-family: 'Inter',sans-serif; }
.lock-cta:hover { opacity: .8; }

/* ============================================================
   BENEFIT CARDS
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px; }
.benefit-card {
  background: rgba(10,15,38,0.7); border: 1px solid var(--white-08);
  border-left: 3px solid var(--teal); border-radius: 10px; padding: 22px 24px;
  transition: border-color .2s;
}
.benefit-card.alt { border-left-color: var(--purple); }
.benefit-card:hover { border-color: rgba(15,242,178,0.4); }
.benefit-card.alt:hover { border-color: rgba(108,46,242,0.5); }
.benefit-num { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 28px; line-height: 1; color: var(--teal); margin-bottom: 10px; opacity: 0.75; }
.benefit-card.alt .benefit-num { color: var(--purple); }
.benefit-title { font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 8px; }
.benefit-desc { font-size: 15px; color: var(--white-55); line-height: 1.55; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, rgba(62,27,140,0.55) 0%, rgba(108,46,242,0.4) 100%);
  border-top: 1px solid var(--purple-border);
  padding: 72px 0; margin-top: auto;
}
.cta-strip--link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: filter .2s;
}
.cta-strip--link:hover { filter: brightness(1.12); }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; }
.cta-strip h3 { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 32px; color: #fff; }
.cta-strip p { font-size: 16px; color: rgba(242,242,242,0.75); margin-top: 8px; }

/* ============================================================
   PROGRESS BAR (application steps)
   ============================================================ */
.progress-bar {
  background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--white-08);
  padding: 20px 0 18px;
}
.steps { display: flex; align-items: center; justify-content: center; gap: 0; }
.step { display: flex; flex-direction: column; align-items: center; position: relative; }
.step-connector { width: 120px; height: 2px; background: var(--white-15); margin-bottom: 24px; transition: background .3s; }
.step-connector.done { background: var(--teal); }
.step-circle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white-08); border: 1px solid var(--white-15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 13px;
  color: var(--white-45); transition: all .3s;
}
.step-circle.active { background: var(--teal); border-color: var(--teal); color: var(--bg); }
.step-circle.done { background: var(--teal); border-color: var(--teal); color: var(--bg); }
.step-label { font-size: 12px; font-weight: 500; color: var(--white-30); margin-top: 8px; white-space: nowrap; transition: color .3s; }
.step-label.active { color: var(--white); }
.step-label.done { color: rgba(15,242,178,0.7); }

/* ============================================================
   FORMS
   ============================================================ */
.form-page { padding: 40px 0 60px; flex: 1; }
.form-header { text-align: center; margin-bottom: 40px; }
.form-header h2 { font-size: 38px; margin-bottom: 10px; }
.form-header p { font-size: 16px; color: var(--white-45); }
.form-section { margin-bottom: 36px; }
.form-section-title {
  font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: 14px;
  color: var(--teal); letter-spacing: 0.5px;
  border-top: 1px solid var(--white-08); padding-top: 24px; margin-bottom: 24px;
}
.form-row { display: grid; gap: 20px; margin-bottom: 20px; }
.form-row.two-col { grid-template-columns: 1fr 1fr; }
.form-row.one-col { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
label { font-size: 13px; font-weight: 500; color: rgba(242,242,242,0.65); }
input, textarea, select {
  background: var(--input-bg); border: 1px solid var(--white-15);
  color: var(--white); font-family: 'Inter',sans-serif; font-size: 15px;
  padding: 14px 16px; border-radius: 8px; outline: none; width: 100%;
  transition: border-color .2s;
}
input::placeholder, textarea::placeholder { color: rgba(242,242,242,0.25); }
input:focus, textarea:focus, select:focus { border-color: rgba(15,242,178,0.5); }
textarea { resize: vertical; min-height: 112px; }
select { appearance: none; cursor: pointer; }
.form-nav { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--white-08); }
.form-nav-note { font-size: 13px; color: var(--white-30); }
.submit-row { display: flex; align-items: center; gap: 32px; }
.submit-note { font-size: 13px; color: var(--white-30); }

/* ============================================================
   TERMS & NDA BOXES
   ============================================================ */
.terms-box {
  background: var(--card); border: 1px solid var(--white-08);
  border-radius: 10px; padding: 24px; margin-bottom: 24px;
}
.terms-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.terms-box li { font-size: 14px; color: rgba(242,242,242,0.7); line-height: 1.55; padding-left: 20px; position: relative; }
.terms-box li::before { content: '•'; color: var(--teal); position: absolute; left: 0; }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline { position: relative; }
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
}
/* Left connector: from left edge of step to left edge of node (hidden on first) */
.tl-step::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 0;
  width: calc(50% - 28px);
  height: 2px;
  background: linear-gradient(90deg, rgba(15,242,178,0.15), rgba(15,242,178,0.3));
}
/* Right connector: from right edge of node to right edge of step (hidden on last) */
.tl-step::after {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(50% + 28px);
  width: calc(50% - 28px);
  height: 2px;
  background: linear-gradient(90deg, rgba(15,242,178,0.3), rgba(108,46,242,0.3));
}
.tl-step:first-child::before { display: none; }
.tl-step:last-child::after  { display: none; }
.tl-node {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--white-15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.tl-node--teal {
  border-color: var(--teal-border);
  background: rgba(15,242,178,0.08);
}
.tl-node--purple {
  border-color: var(--purple-border);
  background: rgba(108,46,242,0.1);
}
.tl-node--glow {
  box-shadow: 0 0 24px rgba(15,242,178,0.3);
}
.tl-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--white-60);
}
.tl-node--teal .tl-num { color: var(--teal); }
.tl-node--purple .tl-num { color: var(--purple); }
.tl-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.tl-step:nth-child(6) .tl-label { color: rgba(108,46,242,0.9); }
.tl-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.tl-desc {
  font-size: 12px;
  color: var(--white-40);
  line-height: 1.55;
}
.nda-box {
  background: rgba(15,242,178,0.05); border: 1px solid rgba(15,242,178,0.2);
  border-radius: 10px; padding: 20px 24px; margin-bottom: 28px;
}
.nda-tag { font-size: 11px; font-weight: 500; color: var(--teal); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.nda-text { font-size: 14px; color: var(--white-60); line-height: 1.6; }

/* ============================================================
   RESULT / STATUS SCREENS
   ============================================================ */
.result-screen { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 40px; text-align: center; position: relative; overflow: hidden; }
.result-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-60%);
  pointer-events: none;
}
.result-glow.teal { background: radial-gradient(circle, rgba(15,242,178,0.08) 0%, transparent 70%); }
.result-glow.amber { background: radial-gradient(circle, rgba(255,186,8,0.08) 0%, transparent 70%); }
.result-glow.red { background: radial-gradient(circle, rgba(255,80,80,0.07) 0%, transparent 70%); }
.result-icon {
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; margin-bottom: 28px; position: relative; z-index: 1;
}
.result-icon.teal { background: rgba(15,242,178,0.15); border: 1px solid rgba(15,242,178,0.4); }
.result-icon.amber { background: rgba(255,186,8,0.12); border: 1px solid rgba(255,186,8,0.4); }
.result-icon.red { background: rgba(255,80,80,0.1); border: 1px solid rgba(255,80,80,0.35); }
.result-screen h2 { font-size: 48px; margin-bottom: 18px; position: relative; z-index: 1; }
.result-screen p { font-size: 18px; color: var(--white-55); line-height: 1.65; max-width: 640px; margin-bottom: 40px; position: relative; z-index: 1; }

/* ============================================================
   NEXT STEPS (submitted page)
   ============================================================ */
.next-steps { margin-bottom: 40px; position: relative; z-index: 1; width: 100%; max-width: 900px; }
.next-steps-title { font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: 17px; color: var(--white); margin-bottom: 20px; }
.next-steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.next-step-card {
  background: rgba(10,15,38,0.8); border: 1px solid var(--white-08);
  border-top: 3px solid var(--teal); border-radius: 10px; padding: 22px 20px; text-align: left;
}
.next-step-num { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 22px; color: var(--teal); margin-bottom: 10px; }
.next-step-text { font-size: 14px; color: var(--white-60); line-height: 1.55; }

/* ============================================================
   APPROVED STEPS
   ============================================================ */
.approved-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 900px; width: 100%; margin-bottom: 36px; position: relative; z-index: 1; }
.approved-card {
  background: rgba(10,15,38,0.8); border: 1px solid rgba(15,242,178,0.18);
  border-left: 3px solid var(--teal); border-radius: 10px; padding: 20px 24px; text-align: left;
}
.approved-card-title { font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 8px; }
.approved-card-desc { font-size: 14px; color: var(--white-55); line-height: 1.5; }

/* ============================================================
   REVIEW / REJECT BOXES
   ============================================================ */
.review-box {
  background: rgba(10,15,38,0.8); border: 1px solid rgba(255,186,8,0.2);
  border-left: 3px solid var(--amber); border-radius: 12px; padding: 24px 28px;
  max-width: 680px; width: 100%; text-align: left; margin-bottom: 28px; position: relative; z-index: 1;
}
.review-box-title { font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 10px; }
.review-box-text { font-size: 15px; color: var(--white-60); line-height: 1.6; }

.reject-box {
  background: rgba(10,15,38,0.8); border: 1px solid rgba(255,80,80,0.2);
  border-left: 3px solid var(--red); border-radius: 12px; padding: 24px 28px;
  max-width: 680px; width: 100%; text-align: left; margin-bottom: 28px; position: relative; z-index: 1;
}
.reject-box-title { font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 10px; }
.reject-reasons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.reject-tag {
  background: rgba(255,80,80,0.1); border: 1px solid rgba(255,80,80,0.25);
  color: rgba(255,80,80,0.85); font-size: 13px; padding: 5px 14px; border-radius: 100px;
}
.reapply-note { font-size: 14px; color: var(--white-30); margin-top: 14px; }

/* ============================================================
   NDA GATE PAGE
   ============================================================ */
.nda-gate { flex: 1; display: flex; align-items: center; justify-content: center; padding: 60px 40px; }
.nda-gate-card {
  background: var(--card); border: 1px solid var(--white-15);
  border-radius: 16px; padding: 52px 56px; max-width: 720px; width: 100%;
  text-align: center;
}
.nda-lock-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal-dim); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 24px;
}
.nda-gate-card h2 { font-size: 28px; margin-bottom: 12px; }
.nda-gate-card > p { font-size: 15px; color: var(--white-55); line-height: 1.6; margin-bottom: 28px; }
.nda-text-box {
  background: rgba(255,255,255,0.03); border: 1px solid var(--white-08);
  border-radius: 10px; padding: 24px 28px; max-height: 280px; overflow-y: auto;
  text-align: left; margin-bottom: 28px; font-size: 13px; line-height: 1.7;
  color: var(--white-55);
  scrollbar-width: thin; scrollbar-color: var(--teal-border) transparent;
}
.nda-text-box::-webkit-scrollbar { width: 5px; }
.nda-text-box::-webkit-scrollbar-track { background: transparent; }
.nda-text-box::-webkit-scrollbar-thumb { background: var(--teal-border); border-radius: 3px; }
.nda-text-box h4 { font-family: 'Montserrat',sans-serif; font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.05em; margin: 20px 0 8px; }
.nda-text-box h4:first-child { margin-top: 0; }
.nda-text-box p { margin: 0 0 10px; }
.nda-text-box ol { padding-left: 20px; margin: 0 0 10px; }
.nda-text-box ol li { margin-bottom: 6px; }
.nda-text-box .nda-parties { background: rgba(15,242,178,0.05); border: 1px solid var(--teal-border); border-radius: 6px; padding: 14px 16px; margin-bottom: 16px; font-size: 12.5px; }
.nda-text-box .nda-parties strong { color: var(--teal); }
.nda-scroll-hint { font-size: 12px; color: var(--white-30); margin-bottom: 24px; }
.nda-fields { display: flex; flex-direction: column; gap: 16px; text-align: left; margin-bottom: 24px; }
.nda-check { display: flex; align-items: flex-start; gap: 12px; text-align: left; margin-bottom: 24px; }
.nda-check input[type=checkbox] { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--teal); cursor: pointer; }
.nda-check label { font-size: 14px; color: var(--white-60); line-height: 1.5; cursor: pointer; }
.nda-gate-card .btn-primary { width: 100%; text-align: center; font-size: 16px; }

/* ============================================================
   PROGRAM DETAILS PAGE (post-NDA)
   ============================================================ */
.program-details { padding: 48px 0 64px; flex: 1; }
.pd-header { text-align: center; margin-bottom: 48px; }
.pd-header .badge-approved { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-dim); border: 1px solid var(--teal-border); color: var(--teal); font-size: 13px; font-weight: 500; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.pd-section { margin-bottom: 44px; }
.pd-section-title { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--white-08); }
.pd-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 16px; }
.pd-tier { background: var(--input-bg); border: 1px solid var(--white-15); border-radius: 10px; padding: 24px 20px; }
.pd-tier.featured { border-color: var(--teal); }
.pd-tier-name { font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: 14px; color: var(--white-60); margin-bottom: 6px; }
.pd-tier-seats { font-size: 13px; color: var(--white-30); margin-bottom: 12px; }
.pd-tier-pct { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 52px; line-height: 1; }
.pd-tier.featured .pd-tier-pct { color: var(--teal); }
.pd-tier-note { font-size: 13px; color: var(--white-45); margin-top: 12px; }
.pd-rules { display: flex; flex-direction: column; gap: 12px; }
.pd-rule { background: var(--input-bg); border: 1px solid var(--white-08); border-left: 3px solid var(--teal); border-radius: 8px; padding: 14px 18px; font-size: 14px; color: var(--white-60); line-height: 1.55; }
.pd-rule strong { color: var(--white); font-weight: 500; }
.pd-example { background: rgba(15,242,178,0.04); border: 1px solid rgba(15,242,178,0.15); border-radius: 8px; padding: 16px 20px; margin-top: 16px; font-size: 14px; color: var(--white-55); line-height: 1.6; }
.pd-example strong { color: var(--teal); font-weight: 600; }

/* ============================================================
   PAGE GRADIENT (apply + result pages — both sides)
   ============================================================ */
body.page-gradient {
  background:
    radial-gradient(ellipse 70% 35% at -5% 25%, rgba(108, 46, 242, 0.16) 0%, rgba(59, 31, 140, 0.07) 40%, transparent 65%),
    radial-gradient(ellipse 70% 35% at 105% 65%, rgba(108, 46, 242, 0.16) 0%, rgba(59, 31, 140, 0.07) 40%, transparent 65%),
    #050712;
}

/* ============================================================
   BODY GRADIENT (Problem section → end of page)
   ============================================================ */
.body-gradient {
  position: relative;
  background:
    radial-gradient(ellipse 140% 55% at 105% 12%, rgba(108, 46, 242, 0.18) 0%, rgba(59, 31, 140, 0.08) 35%, transparent 62%),
    radial-gradient(ellipse 90% 35% at -5% 32%, rgba(108, 46, 242, 0.16) 0%, rgba(59, 31, 140, 0.07) 40%, transparent 65%),
    radial-gradient(ellipse 90% 35% at 105% 58%, rgba(108, 46, 242, 0.16) 0%, rgba(59, 31, 140, 0.07) 40%, transparent 65%),
    #050712;
}

/* ============================================================
   PRODUCT CARDS (Solution Overview)
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
}
.product-card:hover { border-color: var(--teal-border); }
.product-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  object-position: left;
  display: block;
}
.product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.product-desc {
  font-size: 15px;
  color: var(--white-55);
  line-height: 1.65;
  flex: 1;
}

/* ============================================================
   UTILITY
   ============================================================ */
.white-55 { color: rgba(242,242,242,0.55); }
.mb-0 { margin-bottom: 0; }

