/* ===== GWCTW — Girls Who Change the World ===== */
/* Brand Colors */
:root {
  --midnight: #0D1B2A;
  --stellar: #FF6B35;
  --aurora: #7B2FBE;
  --signal: #00D4AA;
  --verdant: #2D8F5E;
  --pearl: #F7F3EF;
  --stellar-hover: #e85a28;
  --midnight-light: #1B2D44;
  --text-on-dark: #F7F3EF;
  --text-on-light: #0D1B2A;
  --text-muted: #6B7280;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--midnight);
  color: var(--text-on-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { max-width: 680px; }

.mono {
  font-family: 'JetBrains Mono', monospace;
}

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

.section {
  padding: 100px 0;
}

.section--pearl {
  background-color: var(--pearl);
  color: var(--text-on-light);
}

.section--midnight {
  background-color: var(--midnight);
  color: var(--text-on-dark);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(247, 243, 239, 0.06);
  transition: background 0.3s ease;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pearl);
  white-space: nowrap;
}

.nav__logo span {
  color: var(--stellar);
}

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

.nav__links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(247, 243, 239, 0.7);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--pearl);
}

.nav__cta {
  background: var(--stellar) !important;
  color: var(--pearl) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav__cta:hover {
  background: var(--stellar-hover) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pearl);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 860px) {
  .nav__hamburger { display: flex; }

  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 48px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__links a {
    font-size: 1.2rem;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn--stellar {
  background: var(--stellar);
  color: var(--pearl);
}

.btn--stellar:hover {
  background: var(--stellar-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--pearl);
  border: 2px solid rgba(247, 243, 239, 0.3);
}

.btn--outline:hover {
  border-color: var(--pearl);
  transform: translateY(-2px);
}

.btn--stellar-outline {
  background: transparent;
  color: var(--stellar);
  border: 2px solid var(--stellar);
}

.btn--stellar-outline:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.18);
}

.btn--outline-dark {
  background: transparent;
  color: var(--midnight);
  border: 2px solid rgba(13, 27, 42, 0.2);
}

.btn--outline-dark:hover {
  border-color: var(--midnight);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__orbit {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1.5px solid rgba(255, 107, 53, 0.22);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-rotate 60s linear infinite;
}

.hero__orbit::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--stellar);
  border-radius: 50%;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
  animation: star-pulse 3s ease-in-out infinite;
}

.hero__orbit--2 {
  width: 800px;
  height: 800px;
  border-color: rgba(255, 107, 53, 0.13);
  animation-duration: 90s;
  animation-direction: reverse;
}

.hero__orbit--2::after {
  width: 6px;
  height: 6px;
  top: -3px;
  background: rgba(255, 107, 53, 0.4);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.3);
}

@keyframes orbit-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes star-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.4); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(247, 243, 239, 0.75);
  margin: 0 auto 20px;
  max-width: 600px;
  line-height: 1.8;
}

.hero__tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--stellar);
  margin-bottom: 40px;
}

/* ===== SEASON CARDS ===== */
.seasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.season-card {
  background: rgba(247, 243, 239, 0.03);
  border: 1px solid rgba(247, 243, 239, 0.06);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.season-card:hover {
  transform: translateY(-4px);
}

.season-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.season-card--aurora::before { background: var(--aurora); }
.season-card--signal::before { background: var(--signal); }
.season-card--stellar::before { background: var(--stellar); }
.season-card--verdant::before { background: var(--verdant); }

.season-card--aurora:hover { border-color: rgba(123, 47, 190, 0.3); }
.season-card--signal:hover { border-color: rgba(0, 212, 170, 0.3); }
.season-card--stellar:hover { border-color: rgba(255, 107, 53, 0.3); }
.season-card--verdant:hover { border-color: rgba(45, 143, 94, 0.3); }

.season-card__number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.season-card--aurora .season-card__number { color: var(--aurora); }
.season-card--signal .season-card__number { color: var(--signal); }
.season-card--stellar .season-card__number { color: var(--stellar); }
.season-card--verdant .season-card__number { color: var(--verdant); }

.season-card__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.season-card__desc {
  font-size: 0.9rem;
  color: rgba(247, 243, 239, 0.6);
  line-height: 1.6;
}

/* Key facts */
.key-facts {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}

.key-fact {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(247, 243, 239, 0.8);
  position: relative;
  padding-left: 20px;
}

.key-fact::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stellar);
}

/* ===== PROGRESSION TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 640px;
  margin: 48px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--stellar),
    var(--aurora),
    var(--signal),
    var(--verdant),
    var(--stellar)
  );
  opacity: 0.4;
}

.timeline__item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 48px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--midnight);
  border: 2px solid var(--stellar);
}

.timeline__item:last-child .timeline__dot {
  background: var(--stellar);
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.4);
}

.timeline__level {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.timeline__ages {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--stellar);
  margin-bottom: 6px;
}

.timeline__desc {
  font-size: 0.9rem;
  color: rgba(247, 243, 239, 0.6);
  max-width: 480px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--midnight-light) 0%, var(--midnight) 100%);
  border-top: 1px solid rgba(247, 243, 239, 0.06);
  border-bottom: 1px solid rgba(247, 243, 239, 0.06);
}

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

.cta-section p {
  margin: 0 auto 32px;
  color: rgba(247, 243, 239, 0.7);
  max-width: 560px;
}

/* ===== FOUNDER ===== */
.founder {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.founder__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(247, 243, 239, 0.06);
  border: 3px solid var(--stellar);
  box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.15), 0 8px 32px rgba(255, 107, 53, 0.18);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(247, 243, 239, 0.4);
  text-align: center;
}

.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contact page photo — rounded rectangle */
.contact-photo {
  margin-top: 40px;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 107, 53, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder__info h3 {
  color: var(--stellar);
  margin-bottom: 4px;
}

.founder__info h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: rgba(247, 243, 239, 0.6);
  margin-bottom: 16px;
}

.founder__info p {
  color: rgba(247, 243, 239, 0.7);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .founder {
    flex-direction: column;
    text-align: center;
  }
  .founder__info p { margin: 0 auto; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--midnight);
  border-top: 1px solid rgba(247, 243, 239, 0.06);
  padding: 60px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer__brand p {
  color: rgba(247, 243, 239, 0.5);
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer__tagline {
  font-family: 'Syne', sans-serif;
  font-style: italic;
  color: var(--stellar);
  margin-top: 16px;
  font-size: 0.95rem;
}

.footer__heading {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 239, 0.4);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(247, 243, 239, 0.6);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--pearl);
}

.footer__bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(247, 243, 239, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(247, 243, 239, 0.35);
}

.footer__social a {
  color: rgba(247, 243, 239, 0.4);
  transition: color 0.2s ease;
  font-size: 1.1rem;
}

.footer__social a:hover {
  color: var(--pearl);
}

@media (max-width: 700px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: 140px 0 60px;
  background: var(--midnight);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  margin: 0 auto;
  color: rgba(247, 243, 239, 0.6);
  font-size: 1.1rem;
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
  max-width: 760px;
  margin: 0 auto;
}

.content-block h2 {
  margin-bottom: 20px;
}

.content-block h3 {
  margin-top: 40px;
  margin-bottom: 12px;
}

.content-block p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.highlight-text {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--stellar);
  border-left: 3px solid var(--stellar);
  padding-left: 24px;
  margin: 40px 0;
  max-width: 600px;
}

.section--pearl .highlight-text {
  color: var(--midnight);
  border-color: var(--stellar);
}

/* ===== PROGRAM DETAILS ===== */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.program-card {
  background: rgba(247, 243, 239, 0.03);
  border: 1px solid rgba(247, 243, 239, 0.08);
  border-radius: 12px;
  padding: 32px;
}

.program-card h4 {
  font-family: 'Syne', sans-serif;
  margin-bottom: 12px;
}

.program-card p,
.program-card li {
  font-size: 0.9rem;
  color: rgba(247, 243, 239, 0.65);
  line-height: 1.7;
}

.program-card ul {
  padding-left: 0;
}

.program-card li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.program-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stellar);
}

/* Member ID display */
.member-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  color: var(--stellar);
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.15);
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

/* ===== FORMS ===== */
.form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--pearl);
}

.form-group .label-hint {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(247, 243, 239, 0.45);
  margin-top: 4px;
}

.section--pearl .form-group label {
  color: var(--midnight);
}

.section--pearl .form-group .label-hint {
  color: rgba(13, 27, 42, 0.5);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: 8px;
  border: 2px solid rgba(247, 243, 239, 0.1);
  background: rgba(247, 243, 239, 0.04);
  color: var(--pearl);
  transition: border-color 0.2s ease;
  outline: none;
}

.section--pearl .form-group input,
.section--pearl .form-group textarea,
.section--pearl .form-group select {
  border-color: rgba(13, 27, 42, 0.15);
  background: rgba(13, 27, 42, 0.03);
  color: var(--midnight);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--stellar);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(247, 243, 239, 0.25);
}

.section--pearl .form-group input::placeholder,
.section--pearl .form-group textarea::placeholder {
  color: rgba(13, 27, 42, 0.3);
}

.form__success {
  text-align: center;
  padding: 48px 24px;
  display: none;
}

.form__success.visible {
  display: block;
}

.form__success h3 {
  color: var(--stellar);
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.form__success p {
  margin: 0 auto;
  color: rgba(247, 243, 239, 0.6);
}

.section--pearl .form__success p {
  color: rgba(13, 27, 42, 0.6);
}

/* ===== LICENSE / PARTNER DETAILS ===== */
.license-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.license-card {
  background: rgba(247, 243, 239, 0.04);
  border: 1px solid rgba(247, 243, 239, 0.08);
  border-radius: 12px;
  padding: 32px;
}

.license-card h4 {
  font-family: 'Syne', sans-serif;
  margin-bottom: 16px;
  color: var(--stellar);
}

.license-card li {
  font-size: 0.9rem;
  color: rgba(247, 243, 239, 0.65);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.license-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--stellar);
}

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  background: rgba(247, 243, 239, 0.04);
  border: 1px dashed rgba(247, 243, 239, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(247, 243, 239, 0.3);
  font-size: 0.85rem;
  padding: 24px;
  min-height: 200px;
}

.section--pearl .img-placeholder {
  background: rgba(13, 27, 42, 0.03);
  border-color: rgba(13, 27, 42, 0.1);
  color: rgba(13, 27, 42, 0.3);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== VISION STATS ===== */
.vision-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  margin: 48px 0;
  text-align: center;
}

.vision-stat__number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--stellar);
}

.vision-stat__label {
  font-size: 0.9rem;
  color: rgba(13, 27, 42, 0.6);
  margin-top: 4px;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  margin-top: 40px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: rgba(247, 243, 239, 0.7);
}

.contact-info__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--stellar);
}

/* ===== ABOUT QUOTE ===== */
.brand-promise {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 0;
  color: var(--pearl);
}

/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

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

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Section divider */
.section-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stellar);
  margin-bottom: 20px;
}

.section--pearl .section-label {
  color: var(--stellar);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .page-header { padding: 120px 0 40px; }

  .key-facts {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero__orbit {
    width: 350px;
    height: 350px;
  }

  .hero__orbit--2 {
    width: 480px;
    height: 480px;
  }
}

/* ===== HERO DUAL CTA (home page) ===== */
.hero__ctas {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__cta-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 239, 0.55);
  margin: 0;
}

.hero__cta-note {
  margin-top: 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(247, 243, 239, 0.45);
}

@media (max-width: 600px) {
  .hero__ctas {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
  }
  .hero__cta-group { width: 100%; max-width: 320px; }
  .hero__cta-group .btn { width: 100%; }
}

/* ===== FOUNDER QUOTE (about page) ===== */
.founder-quote {
  margin: 40px 0 28px;
  padding: 28px 32px;
  border-left: 4px solid var(--stellar);
  background: rgba(255, 107, 53, 0.04);
  border-radius: 4px;
  max-width: 640px;
}

.founder-quote__label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stellar);
  margin-bottom: 14px;
}

.founder-quote__text {
  font-family: 'Syne', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: var(--midnight);
  margin: 0;
}

.founder-footnote {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(13, 27, 42, 0.5);
  font-style: italic;
  margin-top: 20px;
  max-width: 640px;
}

/* ===== VISION SUBHEAD ===== */
.vision-subhead {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  color: rgba(13, 27, 42, 0.55);
  margin-top: 12px;
  font-size: 1rem;
}

/* ===== CONSENT CHECKBOX (apply page) ===== */
.form-group--consent {
  margin-top: 8px;
  margin-bottom: 32px;
  padding: 20px 22px;
  background: rgba(247, 243, 239, 0.04);
  border: 1px solid rgba(247, 243, 239, 0.08);
  border-radius: 10px;
}

.consent-label {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400 !important;
  font-size: 0.92rem !important;
  line-height: 1.6;
  color: rgba(247, 243, 239, 0.85) !important;
  margin-bottom: 0 !important;
}

.consent-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.consent-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid rgba(247, 243, 239, 0.25);
  border-radius: 4px;
  background: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
}

.consent-label input[type="checkbox"]:checked + .consent-checkbox {
  background: var(--stellar);
  border-color: var(--stellar);
}

.consent-label input[type="checkbox"]:checked + .consent-checkbox::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid var(--pearl);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent-label input[type="checkbox"]:focus-visible + .consent-checkbox {
  outline: 2px solid var(--stellar);
  outline-offset: 2px;
}

.consent-label:hover .consent-checkbox {
  border-color: rgba(247, 243, 239, 0.5);
}

.consent-text {
  flex: 1;
}

.consent-note {
  margin-top: 14px;
  padding-left: 34px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(247, 243, 239, 0.45);
}

.consent-link {
  color: var(--stellar);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-link:hover {
  color: var(--stellar-hover);
}

/* ===== EXCHANGE GRID (Partners — Receive / Commit) ===== */
.exchange-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.exchange-card {
  background: rgba(247, 243, 239, 0.04);
  border: 1px solid rgba(247, 243, 239, 0.1);
  border-radius: 14px;
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.exchange-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-3px);
}

.exchange-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--stellar);
  border-radius: 14px 14px 0 0;
}

.exchange-card__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stellar);
  margin-bottom: 16px;
}

.exchange-card__heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  color: var(--pearl);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.exchange-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.exchange-card__list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(247, 243, 239, 0.78);
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid rgba(247, 243, 239, 0.06);
  position: relative;
}

.exchange-card__list li:last-child {
  border-bottom: none;
}

.exchange-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stellar);
  opacity: 0.7;
}

@media (max-width: 760px) {
  .exchange-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .exchange-card { padding: 32px 28px; }
}

/* ===== PILOT URGENCY (Partners) ===== */
.pilot-urgency {
  margin-top: 16px !important;
  padding: 14px 20px;
  display: inline-block;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 8px;
  color: var(--midnight) !important;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.pilot-urgency strong {
  color: var(--stellar);
  font-weight: 700;
}

/* ===== AUDIENCE CARDS (Contact) ===== */
.audiences-section {
  padding: 80px 0 40px;
}

.audiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: rgba(13, 27, 42, 0.04);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.audience-card:hover {
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-3px);
}

.audience-card__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--midnight);
  margin-bottom: 10px;
}

.audience-card__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(13, 27, 42, 0.65);
  margin: 0;
}

@media (max-width: 800px) {
  .audiences-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .audiences-section { padding: 64px 0 32px; }
}

/* ===== SELECT DROPDOWN (matches input styling) ===== */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  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='%23FF6B35' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
  padding-right: 44px;
  cursor: pointer;
}

.form-group select option {
  background: var(--midnight);
  color: var(--pearl);
}

/* ===== FOUNDER BELIEF (home — visually distinct closing line) ===== */
.founder-belief {
  font-family: 'Syne', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--stellar) !important;
  border-left: 3px solid var(--stellar);
  padding-left: 18px;
  margin-top: 16px;
}

.founder__info p + p {
  margin-top: 14px;
}

/* ===== HERO CTA HIERARCHY (primary vs secondary) ===== */
.btn--lg {
  font-size: 1.05rem;
  padding: 18px 40px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero__cta-group--primary .hero__cta-label {
  color: var(--stellar);
  opacity: 0.9;
}

.hero__cta-group--secondary .hero__cta-label {
  color: rgba(247, 243, 239, 0.4);
}

.hero__cta-group--secondary .btn {
  font-size: 0.95rem;
  padding: 12px 28px;
}

@media (max-width: 600px) {
  .btn--lg { font-size: 1rem; padding: 16px 32px; }
}

/* ===== CONTACT FORM INTRO ===== */
.form-intro {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(247, 243, 239, 0.55);
  margin-bottom: 28px;
  padding-left: 14px;
  border-left: 2px solid rgba(255, 107, 53, 0.35);
}

/* ===== FOUNDER (home) — Learn more link & inline belief ===== */
.founder-link {
  display: inline-block;
  margin-top: 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--stellar);
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease, letter-spacing 0.2s ease;
}

.founder-link:hover {
  color: var(--stellar-hover);
  letter-spacing: 0.03em;
}

.founder-belief-inline {
  font-style: italic;
  color: var(--stellar);
  font-weight: 500;
}

/* ===== ROADMAP (10-Year Vision — 3 stages) ===== */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

/* connecting line on desktop */
.roadmap::before {
  content: '';
  position: absolute;
  top: 96px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right,
    rgba(255,107,53,0.15),
    rgba(255,107,53,0.45),
    rgba(255,107,53,0.85)
  );
  z-index: 0;
}

.roadmap-stage {
  position: relative;
  z-index: 1;
  padding: 36px 28px;
  background: var(--pearl);
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: 14px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-stage:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,53,0.35);
  box-shadow: 0 16px 40px rgba(13,27,42,0.08);
}

.roadmap-stage::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--stellar);
  box-shadow: 0 0 0 4px var(--pearl), 0 0 0 5px rgba(255,107,53,0.25);
}

.roadmap-stage__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13,27,42,0.45);
  margin-bottom: 16px;
  margin-top: 12px;
}

.roadmap-stage__year {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--stellar);
  line-height: 1.1;
  margin-bottom: 14px;
}

.roadmap-stage__detail {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(13,27,42,0.7);
  margin: 0 auto;
  max-width: 280px;
}

@media (max-width: 800px) {
  .roadmap {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .roadmap::before { display: none; }
}

.vision-subhead {
  text-align: center;
}

/* ===== FOUNDING BANNER (about page bottom strip) ===== */
.founding-banner {
  background: linear-gradient(135deg, rgba(255,107,53,0.06), rgba(255,107,53,0.02));
  padding: 48px 0;
  border-top: 1px solid rgba(255,107,53,0.15);
  border-bottom: 1px solid rgba(255,107,53,0.15);
}

.founding-banner__text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: var(--stellar);
  letter-spacing: 0.01em;
  margin: 0 auto;
}

/* ===== PARTNERS PRICING NOTE ===== */
.pricing-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem !important;
  font-style: italic;
  color: rgba(13,27,42,0.45) !important;
  margin-top: 12px !important;
}

/* ===== FOOTER LINKEDIN ICON ===== */
.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: rgba(247,243,239,0.4);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.footer__social a:hover {
  color: var(--stellar);
  background: rgba(255,107,53,0.08);
  transform: translateY(-1px);
}

.footer__social svg {
  display: block;
}

/* Demo page footer LinkedIn variant */
.demo-footer__social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.demo-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: rgba(247,243,239,0.35);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.demo-footer__social a:hover {
  color: var(--stellar);
  background: rgba(255,107,53,0.08);
  transform: translateY(-1px);
}

/* ===== DEMO BRIDGE (home — invitation to demo page) ===== */
.demo-bridge {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--midnight) 0%, #0A1622 100%);
  position: relative;
}

.demo-bridge .container {
  max-width: 720px;
}

.demo-bridge__label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stellar);
  margin-bottom: 28px;
}

.demo-bridge__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--pearl);
  margin: 0 auto 24px;
  max-width: 600px;
}

.demo-bridge__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(247,243,239,0.6);
  margin: 0 auto 40px;
  max-width: 580px;
}

.demo-bridge__link {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--stellar);
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease, letter-spacing 0.25s ease;
}

.demo-bridge__link:hover {
  color: var(--stellar-hover);
  border-bottom-color: var(--stellar);
  letter-spacing: 0.03em;
}

@media (max-width: 600px) {
  .demo-bridge { padding: 80px 0; }
}

/* ===== RITUAL NOTE (apply page — before consent) ===== */
.ritual-note {
  margin: 8px 0 32px;
  padding: 20px 24px;
  border-left: 3px solid var(--stellar);
  background: rgba(255,107,53,0.04);
  border-radius: 0 6px 6px 0;
}

.ritual-note p {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(247,243,239,0.7);
  margin: 0;
  max-width: none;
}

/* ===== PROGRAMME FORMAT BOX (program page — practical info for partners) ===== */
.format-section {
  padding: 60px 0;
}

.format-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--midnight);
  border-radius: 14px;
  padding: 36px 40px;
  position: relative;
  border: 1px solid rgba(247,243,239,0.08);
  box-shadow: 0 16px 40px rgba(13,27,42,0.08);
}

.format-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--stellar);
  border-radius: 14px 14px 0 0;
}

.format-box__label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stellar);
  margin-bottom: 24px;
  padding-top: 6px;
}

.format-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.format-box__list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(247,243,239,0.08);
}

.format-box__list li:last-child {
  border-bottom: none;
}

.format-box__key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,243,239,0.5);
}

.format-box__val {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--pearl);
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .format-box { padding: 28px 24px; }
  .format-box__list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .format-box__val { font-size: 0.95rem; }
}

/* ===== FOUNDER ROLES LABEL (home page — replaces section-label) ===== */
.founder-roles {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 36px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.founder-roles__primary {
  color: var(--stellar);
}

.founder-roles__sep {
  color: rgba(247, 243, 239, 0.3);
}

.founder-roles__alt {
  color: rgba(247, 243, 239, 0.55);
}

@media (max-width: 600px) {
  .founder-roles {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }
}

/* ===== PRIVACY NOTICE MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.open {
  display: flex;
  animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  background: var(--pearl);
  color: var(--midnight);
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalSlideUp 0.3s ease;
}

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

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: rgba(13, 27, 42, 0.5);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal__close:hover {
  background: rgba(13, 27, 42, 0.06);
  color: var(--stellar);
}

.modal__body {
  padding: 48px 48px 40px;
  overflow-y: auto;
}

.modal__label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stellar);
  margin-bottom: 14px;
}

.modal__title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--midnight);
  margin-bottom: 24px;
}

.modal__intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(13, 27, 42, 0.78);
  margin-bottom: 24px;
}

.modal__h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--stellar);
  margin-top: 22px;
  margin-bottom: 8px;
}

.modal__body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(13, 27, 42, 0.75);
  margin: 0 0 8px;
}

.modal__email {
  color: var(--stellar);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.modal__email:hover {
  color: var(--stellar-hover);
}

.modal__updated {
  margin-top: 32px !important;
  padding-top: 16px;
  border-top: 1px solid rgba(13, 27, 42, 0.1);
  font-style: italic;
  font-size: 0.82rem !important;
  color: rgba(13, 27, 42, 0.45) !important;
}

@media (max-width: 600px) {
  .modal { padding: 16px; }
  .modal__body { padding: 36px 28px 28px; }
}

/* Ensure the consent privacy link is clearly underlined Stellar */
.consent-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* ===== APPLICATION SUCCESS SIGNATURE LINE ===== */
.success-signature {
  font-family: 'Syne', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--stellar);
  margin: 8px auto 24px;
  letter-spacing: 0.01em;
}
