/* ========================
   RESET & BASE
======================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0d0b14;
  color: #e2d9f3;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========================
   TYPOGRAPHY
======================== */
h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #f3eeff;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #f3eeff;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f3eeff;
  margin-bottom: 0.5rem;
}

p {
  color: #8b7aaa;
  font-size: 1rem;
  line-height: 1.7;
}

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

/* ========================
   LAYOUT
======================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.divider {
  height: 1px;
  background: #1e1630;
}

/* ========================
   NAVIGATION
======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid #1e1630;
  background: rgba(13, 11, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  color: #7a6898;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #e2d9f3;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e2d9f3;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6D28D9 0%, #7C3AED 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(124, 58, 237, 0.5);
}

.btn-ghost {
  background: transparent;
  color: #8b7aaa;
  border: 1px solid #2d2045;
}

.btn-ghost:hover {
  border-color: #5b3fa0;
  color: #e2d9f3;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  padding: 14px;
}

/* ========================
   EYEBROW / LABELS
======================== */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9333EA;
  margin-bottom: 20px;
  border: 1px solid #3b2070;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(124, 58, 237, 0.08);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5b3fa0;
  margin-bottom: 24px;
}

.section-title {
  margin-bottom: 60px;
}

/* ========================
   HERO
======================== */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 30%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: #7a6898;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.78rem;
  color: #5b3fa0;
  border: 1px solid #2d2045;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  background: rgba(45, 32, 69, 0.4);
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #1e1630;
}

/* ========================
   TWO COLUMN LAYOUT
======================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.two-col-text h2 {
  margin-bottom: 24px;
}

.two-col-text p {
  margin-bottom: 16px;
}

.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: #120f1e;
  border: 1px solid #1e1630;
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s, background 0.2s;
}

.feature-card:hover {
  border-color: #3b2070;
  background: #160e2a;
}

.feature-icon {
  font-size: 1.1rem;
  color: #7C3AED;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: #6b5889;
  line-height: 1.6;
}

/* ========================
   MENTAL HEALTH SECTION
======================== */
.section-mh {
  background: #0f0c1a;
}

.mh-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.mh-text h2 {
  margin-bottom: 24px;
}

.mh-text p {
  margin-bottom: 16px;
  max-width: 520px;
}

.mh-emphasis {
  color: #c4b5fd !important;
  font-weight: 500;
  border-left: 2px solid #5b3fa0;
  padding-left: 16px;
  margin: 24px 0 !important;
}

.mh-stat-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 200px;
}

.mh-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #4d3870;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========================
   STEPS
======================== */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step {
  padding: 0 16px;
}

.step:first-child {
  padding-left: 0;
}

.step:last-child {
  padding-right: 0;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: #7C3AED;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  font-size: 0.9rem;
  color: #6b5889;
}

.step-line {
  width: 1px;
  height: 100px;
  background: #2d2045;
  margin-top: 8px;
  align-self: start;
}

/* ========================
   CTA SECTION
======================== */
.section-cta {
  background: #0f0c1a;
  border-top: 1px solid #1e1630;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  margin-bottom: 16px;
}

.cta-inner p {
  margin-bottom: 36px;
  font-size: 1rem;
}

/* ========================
   FOOTER
======================== */
.footer {
  border-top: 1px solid #1e1630;
  padding: 32px 0;
  background: #0d0b14;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: #3d2d5c;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 0.8rem;
  color: #4d3870;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #e2d9f3;
}

.footer-charity-link {
  color: #7C3AED;
  transition: color 0.2s;
}

.footer-charity-link:hover {
  color: #c084fc;
}

/* ========================
   SIGN UP PAGE
======================== */
.signup-section {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.signup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.signup-left {
  position: sticky;
  top: 100px;
}

.signup-left .eyebrow {
  margin-bottom: 20px;
}

.signup-left h1 {
  margin-bottom: 20px;
}

.signup-left > p {
  color: #7a6898;
  margin-bottom: 40px;
  max-width: 400px;
}

.signup-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: #6b5889;
}

.trust-icon {
  color: #7C3AED;
  font-size: 0.9rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ========================
   FORM
======================== */
.signup-form {
  background: #120f1e;
  border: 1px solid #1e1630;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #c4b5fd;
}

.required {
  color: #4d3870;
}

.optional {
  color: #4d3870;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #0d0b14;
  border: 1px solid #2d2045;
  border-radius: 8px;
  padding: 12px 14px;
  color: #e2d9f3;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #3b2070;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235b3fa0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: #1a1330;
  color: #e2d9f3;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.field-error {
  font-size: 0.78rem;
  color: #f87171;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #f87171;
}

.form-group.has-error .field-error {
  display: block;
}

.form-privacy {
  font-size: 0.78rem;
  color: #3d2d5c;
  text-align: center;
  margin-top: -8px;
}

/* ========================
   FORM CONFIRMATION
======================== */
.form-confirmation {
  background: #120f1e;
  border: 1px solid #1e1630;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
}

.confirm-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #7C3AED, #9333EA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.2rem;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.form-confirmation h2 {
  margin-bottom: 16px;
}

.form-confirmation p {
  max-width: 360px;
  margin: 0 auto 12px;
}

.confirm-sub {
  font-size: 0.85rem !important;
  color: #4d3870 !important;
  margin-bottom: 32px !important;
}

/* ========================
   HERO MISSION BLOCK
======================== */
.hero-mission-block {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 48px;
  margin-bottom: 24px;
  background: #120f1e;
  border: 1px solid #2d2045;
  border-radius: 12px;
  overflow: hidden;
  max-width: 560px;
}

.mission-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
}

.mission-num {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
}

.mission-label {
  font-size: 0.72rem;
  color: #4d3870;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mission-divider {
  width: 1px;
  background: #2d2045;
  flex-shrink: 0;
}

/* ========================
   MENTAL HEALTH LEAD SECTION
======================== */
.section-mh-lead {
  background: #0f0c1a;
  padding: 100px 0;
}

.mh-lead-header {
  max-width: 780px;
  margin-bottom: 56px;
}

.mh-lead-header h2 {
  margin-bottom: 20px;
}

.mh-lead-sub {
  font-size: 1.05rem;
  color: #7a6898;
  line-height: 1.75;
}

.mh-lead-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.mh-lead-card {
  background: #120f1e;
  border: 1px solid #1e1630;
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.2s;
}

.mh-lead-card:hover {
  border-color: #3b2070;
}

.mh-card-primary {
  background: linear-gradient(145deg, #1a0f33, #160e2a);
  border-color: #3b2070;
}

.mh-card-icon {
  font-size: 1.3rem;
  color: #7C3AED;
  margin-bottom: 16px;
  line-height: 1;
}

.mh-lead-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.mh-lead-card p {
  font-size: 0.875rem;
  color: #6b5889;
  line-height: 1.65;
}

.mh-emphasis-bar {
  border-left: 3px solid #7C3AED;
  padding: 20px 32px;
  margin-bottom: 56px;
  background: rgba(124, 58, 237, 0.05);
  border-radius: 0 8px 8px 0;
}

.mh-emphasis-text {
  font-size: 1.1rem;
  color: #c4b5fd;
  font-weight: 400;
  line-height: 1.6;
  font-style: italic;
}

.mh-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1e1630;
  border: 1px solid #1e1630;
  border-radius: 12px;
  overflow: hidden;
}

.mh-stat-block {
  background: #0f0c1a;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num-lg {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label-lg {
  font-size: 0.8rem;
  color: #c4b5fd;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.85rem;
  color: #5b3fa0;
  line-height: 1.6;
}

/* ========================
   PARTNER BLOCK
======================== */
.partner-block {
  margin-bottom: 56px;
}

.partner-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5b3fa0;
  margin-bottom: 16px;
}

.partner-inner {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(145deg, #1a0f33, #160e2a);
  border: 1px solid #3b2070;
  border-radius: 16px;
  padding: 36px 40px;
}

.partner-name-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}

.partner-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f3eeff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.partner-reg {
  font-size: 0.72rem;
  color: #4d3870;
  letter-spacing: 0.02em;
}

.partner-divider {
  width: 1px;
  height: 64px;
  background: #3b2070;
  flex-shrink: 0;
}

.partner-mission p {
  font-size: 0.95rem;
  color: #c4b5fd;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
}

.partner-link {
  font-size: 0.8rem;
  color: #9333EA;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.partner-link:hover {
  color: #c084fc;
}

/* ========================
   CRISIS STATS
======================== */
.crisis-section {
  margin-bottom: 56px;
}

.crisis-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5b3fa0;
  margin-bottom: 20px;
}

.crisis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1e1630;
  border: 1px solid #1e1630;
  border-radius: 12px;
  overflow: hidden;
}

.crisis-stat {
  background: #0f0c1a;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crisis-num {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
}

.crisis-desc {
  font-size: 0.82rem;
  color: #6b5889;
  line-height: 1.6;
}

/* ========================
   CTA EYEBROW
======================== */
.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9333EA;
  margin-bottom: 16px;
}

/* ========================
   FCA BADGE
======================== */
.fca-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #5b3fa0;
  margin-top: 24px;
  letter-spacing: 0.02em;
}

.fca-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7C3AED;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(124, 58, 237, 0.6);
}

/* ========================
   PLATFORM SECTION
======================== */
.platform-header {
  max-width: 680px;
  margin-bottom: 56px;
}

.platform-header h2 {
  margin-bottom: 16px;
}

.platform-sub {
  font-size: 1rem;
  color: #7a6898;
  line-height: 1.7;
}

.platform-methods {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 64px;
}

.method-card {
  background: #120f1e;
  border: 1px solid #1e1630;
  border-radius: 12px;
  padding: 24px 20px;
  transition: border-color 0.2s, background 0.2s;
}

.method-card:hover {
  border-color: #3b2070;
  background: #160e2a;
}

.method-icon {
  width: 40px;
  height: 40px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9333EA;
  margin-bottom: 16px;
}

.method-card h3 {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.method-card p {
  font-size: 0.8rem;
  color: #6b5889;
  line-height: 1.55;
}

/* ========================
   DASHBOARD PREVIEW
======================== */
.platform-dash {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: #120f1e;
  border: 1px solid #1e1630;
  border-radius: 16px;
  padding: 48px;
}

.dash-text h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.dash-text p {
  margin-bottom: 24px;
}

.dash-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-list li {
  font-size: 0.875rem;
  color: #7a6898;
  padding-left: 20px;
  position: relative;
}

.dash-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7C3AED;
}

.dash-preview {
  position: relative;
}

.dash-card {
  background: #0d0b14;
  border: 1px solid #2d2045;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-label {
  font-size: 0.78rem;
  color: #4d3870;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dash-val {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f3eeff;
  letter-spacing: -0.02em;
}

.dash-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #4d3870;
}

.dash-bar-pct {
  color: #9333EA;
  font-weight: 500;
}

.dash-bar-track {
  height: 4px;
  background: #1e1630;
  border-radius: 4px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #7C3AED, #A855F7);
  border-radius: 4px;
}

.dash-badge {
  position: absolute;
  bottom: -14px;
  right: 16px;
  background: #120f1e;
  border: 1px solid #2d2045;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: #7C3AED;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7C3AED;
  box-shadow: 0 0 6px rgba(124, 58, 237, 0.8);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ========================
   CTA FCA NOTE
======================== */
.cta-fca {
  margin-top: 20px;
  font-size: 0.75rem;
  color: #3d2d5c;
  letter-spacing: 0.02em;
}

/* ========================
   MOBILE NAV MENU
======================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #0d0b14;
  border-bottom: 1px solid #1e1630;
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1rem;
  color: #7a6898;
  padding: 4px 0;
}

.mobile-menu a:hover {
  color: #e2d9f3;
}

/* ========================
   TERMINAL SECTION
======================== */
.section-terminal {
  background: linear-gradient(180deg, rgba(124,58,237,0.04) 0%, transparent 100%);
}

.terminal-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}

.terminal-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
}

.terminal-sub {
  color: #b8a9d4;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.terminal-uses {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.terminal-use-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.use-icon {
  width: 36px;
  height: 36px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #a78bfa;
}

.terminal-use-item strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: #f3eeff;
}

.terminal-use-item span {
  font-size: 0.875rem;
  color: #8b7aa8;
  line-height: 1.5;
}

.terminal-cta {
  display: inline-flex;
}

.terminal-image-wrap {
  position: relative;
}

.terminal-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.2);
}

.terminal-caption {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,11,20,0.95);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 0.78rem;
  color: #8b7aa8;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}

/* Use-case cards */
.terminal-use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.use-case-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s, background 0.2s;
}

.use-case-card:hover {
  border-color: rgba(124,58,237,0.35);
  background: rgba(124,58,237,0.06);
}

.use-case-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.use-case-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.use-case-card p {
  color: #8b7aa8;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.use-case-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.use-case-list li {
  font-size: 0.85rem;
  color: #b8a9d4;
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.use-case-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7C3AED;
  font-weight: 700;
}

/* Terminal sign-up CTA block */
.terminal-signup-cta {
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(124,58,237,0.05) 100%);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 20px;
  padding: 48px;
  margin-top: 0;
}

.tsignup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.tsignup-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.tsignup-text p {
  color: #8b7aa8;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 520px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ========================
   GOOD NEWS SECTION
======================== */
.section-goodnews {
  position: relative;
}

.goodnews-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.goodnews-eyebrow {
  margin-bottom: 20px;
}

.goodnews-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(52,211,153,0.15), rgba(52,211,153,0.08));
  border: 1px solid rgba(52,211,153,0.35);
  color: #34d399;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}

.goodnews-tag::before {
  content: '✦';
  font-size: 0.7rem;
}

.goodnews-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
}

.goodnews-intro {
  color: #b8a9d4;
  font-size: 1.05rem;
  line-height: 1.7;
}

.goodnews-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.goodnews-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s, background 0.25s;
}

.goodnews-card:hover {
  border-color: rgba(52,211,153,0.25);
  background: rgba(52,211,153,0.03);
}

.goodnews-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.goodnews-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(52,211,153,0.15), rgba(52,211,153,0.05));
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  flex-shrink: 0;
}

.goodnews-tag-inline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #34d399;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.25);
  padding: 4px 12px;
  border-radius: 12px;
}

.goodnews-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

.goodnews-card p {
  color: #8b7aa8;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.goodnews-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.goodnews-list li {
  font-size: 0.875rem;
  color: #b8a9d4;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.goodnews-list li:last-child {
  border-bottom: none;
}

.goodnews-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: 700;
}

.goodnews-impact {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(52,211,153,0.07);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: auto;
}

.impact-label {
  font-size: 0.8rem;
  color: #6b5e82;
  font-weight: 500;
  white-space: nowrap;
}

.impact-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #34d399;
}

/* Big picture footer block */
.goodnews-footer-block {
  background: linear-gradient(135deg, rgba(52,211,153,0.08) 0%, rgba(124,58,237,0.08) 100%);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 20px;
  padding: 48px;
}

.goodnews-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.goodnews-ribbon {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #34d399;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.goodnews-footer-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  max-width: 520px;
  line-height: 1.2;
}

.goodnews-footer-text p {
  color: #8b7aa8;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 560px;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1100px) {
  .platform-methods {
    grid-template-columns: repeat(3, 1fr);
  }

  .mh-lead-grid {
    grid-template-columns: 1fr 1fr;
  }

  .crisis-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .terminal-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .terminal-use-cases {
    grid-template-columns: 1fr 1fr;
  }

  .goodnews-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .two-col-cards {
    grid-template-columns: 1fr 1fr;
  }

  .mh-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mh-stat-col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-line {
    display: none;
  }

  .step {
    padding: 0;
  }

  .signup-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .signup-left {
    position: static;
  }

  .platform-dash {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px;
  }

  .mh-lead-grid {
    grid-template-columns: 1fr;
  }

  .crisis-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .partner-divider {
    width: 100%;
    height: 1px;
  }

  .mh-stat-row {
    grid-template-columns: 1fr;
  }

  .hero-mission-block {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 120px 0 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .two-col-cards {
    grid-template-columns: 1fr;
  }

  .platform-methods {
    grid-template-columns: 1fr;
  }

  .method-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .method-icon {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .method-card h3 {
    margin-bottom: 4px;
  }

  .hero-mission-block {
    flex-direction: column;
  }

  .mission-divider {
    width: 100%;
    height: 1px;
  }

  .mh-stat-block {
    padding: 28px 20px;
  }

  .signup-form {
    padding: 28px 20px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .terminal-use-cases {
    grid-template-columns: 1fr;
  }

  .tsignup-inner {
    flex-direction: column;
    text-align: center;
  }

  .tsignup-text p {
    max-width: 100%;
  }

  .terminal-signup-cta {
    padding: 32px 24px;
  }

  .terminal-caption {
    display: none;
  }

  .goodnews-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .goodnews-footer-text h3,
  .goodnews-footer-text p {
    max-width: 100%;
  }

  .goodnews-footer-block {
    padding: 32px 24px;
  }

  .use-case-card {
    padding: 24px 20px;
  }

  .goodnews-card {
    padding: 24px 20px;
  }

  .terminal-signup-cta,
  .goodnews-footer-block {
    padding: 28px 20px;
  }

  .crisis-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-block {
    padding: 28px 20px;
  }

  .platform-dash {
    padding: 24px 20px;
  }
}
