/* ════════════════════════════════════════════════════════════════════
   /landing1 — Circle of Twins page (dark hero design)
   Page-specific CSS only. Tokens + nav CSS loaded globally via head.ejs.
════════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════════
   HERO — Video background with dark overlay
════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hero-bg);
  overflow: hidden;
  padding: 120px 40px 80px;
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,18,48,0.75);
  z-index: 1;
}

/* Orb canvas (fallback when no video) */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orb-float 12s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,77,158,0.6) 0%, rgba(74,48,112,0.2) 60%, transparent 100%);
  top: -15%; left: -10%;
  animation-delay: 0s;
  animation-duration: 14s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.3) 0%, rgba(201,169,110,0.1) 60%, transparent 100%);
  top: 20%; right: -8%;
  animation-delay: -4s;
  animation-duration: 16s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,111,192,0.45) 0%, rgba(74,48,112,0.15) 60%, transparent 100%);
  bottom: 5%; left: 30%;
  animation-delay: -8s;
  animation-duration: 18s;
}
.orb-4 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,0.2) 0%, transparent 70%);
  top: 55%; right: 20%;
  animation-delay: -2s;
  animation-duration: 13s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -25px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.97); }
}

/* Hero noise overlay for depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 1.08;
  color: var(--text-on-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  max-width: 700px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-on-dark-sub);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  padding: 0 36px;
  text-align: left;
  border-right: 1px solid rgba(245,242,237,0.1);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--text-on-dark);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════════════════════════════════
   MARQUEE BAR
════════════════════════════════════════════════════════════════════ */
.marquee-bar {
  background: var(--dark-section);
  border-top: 1px solid rgba(245,242,237,0.07);
  border-bottom: 1px solid rgba(245,242,237,0.07);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.marquee-bar:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-on-dark-muted);
}
.marquee-item::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════
   STATS BAR — 3 stat cards + dark purple banner
════════════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--bg);
  padding: 0;
}
.stats-bar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.stats-bar-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
}
.stats-bar-card:last-child { border-right: none; }
.stats-bar-num {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 56px;
  color: var(--purple-dark);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stats-bar-num sup {
  font-size: 32px;
  vertical-align: super;
  line-height: 0;
}
.stats-bar-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}
.stats-banner {
  background: var(--purple-dark);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.stats-banner-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(245,242,237,0.85);
  line-height: 1.7;
  max-width: 700px;
}
.stats-banner-text strong {
  color: var(--text-on-dark);
  font-weight: 700;
}
.stats-banner-meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(245,242,237,0.5);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════
   TESTIMONIALS — "What They Say"
════════════════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--bg-alt);
  padding: 80px 0;
}
.testimonials-header {
  margin-bottom: 48px;
}
.testimonials-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--text-primary);
  line-height: 1.2;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  box-shadow: 0 2px 12px rgba(74,48,112,0.06);
}
.testimonial-accent {
  width: 32px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 24px;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 24px;
}
.testimonial-author {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 2px;
}
.testimonial-role {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.testimonial-source {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-style: italic;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════════════
   THE INSTITUTION
════════════════════════════════════════════════════════════════════ */
.institution {
  background: var(--bg-alt);
  padding: 80px 0;
}
.institution-header {
  margin-bottom: 20px;
}
.institution-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--text-primary);
  line-height: 1.2;
}
.institution-header h2 em {
  font-style: italic;
  color: var(--purple);
}
.institution-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 40px;
}
.institution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.institution-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(74,48,112,0.06);
  border: 1px solid rgba(74,48,112,0.08);
}
.institution-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 20px;
}
.institution-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.institution-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.institution-card--builder {
  border-color: rgba(201,169,110,0.3);
}
.institution-card--builder .institution-card-dot {
  background: var(--purple);
}
.institution-card-full {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(74,48,112,0.06);
  border: 1px solid rgba(74,48,112,0.08);
  margin-bottom: 28px;
}
.institution-card-full .institution-card-dot { background: var(--gold); }
.institution-card-full h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.institution-card-full p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════════
   THE AUDIENCE — 2×2 + full-width
════════════════════════════════════════════════════════════════════ */
.audience {
  background: var(--bg-warm);
  padding: 80px 0;
}
.audience-header { margin-bottom: 16px; }
.audience-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--text-primary);
  line-height: 1.2;
}
.audience-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}
.audience-outer {
  border: 1px solid rgba(74,48,112,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.audience-cell {
  padding: 36px 32px;
  border-bottom: 1px solid rgba(74,48,112,0.08);
  border-right: 1px solid rgba(74,48,112,0.08);
}
.audience-cell:last-child { border-right: none; }
.audience-cell-accent {
  width: 32px;
  height: 3px;
  background: var(--purple);
  border-radius: 2px;
  margin-bottom: 16px;
}
.audience-cell-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
  display: block;
}
.audience-cell h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}
.audience-cell p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.audience-cell-full {
  padding: 36px 32px;
  border-right: none;
}
.audience-cell-full .audience-cell-accent { background: var(--purple); }
.audience-cta {
  text-align: left;
  margin-top: 36px;
}

/* ════════════════════════════════════════════════════════════════════
   THE TWIN — Capability List
════════════════════════════════════════════════════════════════════ */
.twin-section {
  background: var(--bg);
  padding: 80px 0;
}
.twin-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}
.twin-left h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 16px;
}
.twin-left h2 em {
  font-style: italic;
  color: var(--purple);
}
.twin-left p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}
.capability-list {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.cap-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
}
.cap-item:last-child { border-bottom: none; }
.cap-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 16px;
}
.cap-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cap-num {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
  width: 24px;
  flex-shrink: 0;
}
.cap-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--text-primary);
  transition: color var(--transition);
}
.cap-arrow {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.cap-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1), padding var(--transition);
  padding: 0 24px 0 62px;
}
.cap-body p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 20px;
}
.cap-item.on { background: var(--purple-faint); }
.cap-item.on .cap-title { color: var(--purple); }
.cap-item.on .cap-arrow { transform: rotate(45deg); color: var(--purple); }
.cap-item.on .cap-body { max-height: 200px; }

/* ════════════════════════════════════════════════════════════════════
   BRIDGE
════════════════════════════════════════════════════════════════════ */
.bridge {
  background: var(--purple-faint);
  border-top: 1px solid rgba(74,48,112,0.15);
  border-bottom: 1px solid rgba(74,48,112,0.15);
  padding: 48px 0;
}
.bridge-inner { text-align: center; }
.bridge-inner h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--purple);
  line-height: 1.2;
  margin-bottom: 14px;
}
.bridge-inner h2 em { font-style: italic; }
.bridge-inner p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════════════════ */
.how-section {
  background: var(--bg);
  padding: 80px 0;
}
.how-header { margin-bottom: 52px; }
.how-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--text-primary);
  line-height: 1.25;
}
.how-header h2 em {
  font-style: italic;
  color: var(--purple);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.how-step {
  background: var(--bg-card);
  padding: 36px 30px;
}
.how-step-num {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.how-step h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.how-step p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════════
   ABOUT / BIO
════════════════════════════════════════════════════════════════════ */
.about {
  background: var(--bg);
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: stretch;
}
.about-l {
  background: var(--bg-card);
  padding: 52px 48px;
}
.about-l h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.25;
}
.about-l h2 em {
  font-style: italic;
  color: var(--purple);
}
.about-l p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-l p:last-of-type { margin-bottom: 0; }
.about-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--purple);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.5;
}
.about-links {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-link {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  border: 1px solid rgba(74,48,112,0.2);
  border-radius: 100px;
  padding: 8px 16px;
  transition: all var(--transition);
}
.about-link:hover {
  background: var(--purple-faint);
  border-color: rgba(74,48,112,0.35);
}
.about-r {
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
  min-height: 420px;
}
.about-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* ════════════════════════════════════════════════════════════════════
   DEMO VIDEO
════════════════════════════════════════════════════════════════════ */
.demo-video-section {
  background: var(--bg);
  padding: 80px 0;
  display: none;
}
.demo-video-section.visible { display: block; }
.demo-video-header { margin-bottom: 40px; }
.demo-video-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 14px;
}
.demo-video-header h2 em {
  font-style: italic;
  color: var(--purple);
}
.demo-video-header p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}
.demo-video-frame {
  max-width: 800px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--purple-deep);
  aspect-ratio: 16 / 9;
  position: relative;
}
.demo-video-frame iframe,
.demo-video-frame video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: absolute;
  inset: 0;
}

/* ════════════════════════════════════════════════════════════════════
   DARK CTA
════════════════════════════════════════════════════════════════════ */
.dark-cta {
  background: var(--dark-section);
  padding: 80px 0;
  text-align: center;
}
.dark-cta h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--text-on-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.dark-cta h2 em {
  font-style: italic;
  color: var(--gold);
}
.dark-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-on-dark-sub);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════════
   APPLY FORM
════════════════════════════════════════════════════════════════════ */
.apply-section {
  background: var(--hero-bg);
  padding: 80px 0 20px;
}
.apply-inner {
  max-width: 680px;
  margin: 0 auto;
}
.apply-header {
  text-align: center;
  margin-bottom: 40px;
}
.apply-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-on-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.apply-header h2 em {
  font-style: italic;
  color: var(--gold);
}
.apply-header p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-on-dark-sub);
}
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,242,237,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-error {
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #FCA5A5;
  margin-bottom: 20px;
  display: none;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success-check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success-check svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}
.form-success p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-on-dark-sub);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(245,242,237,0.6);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,242,237,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-on-dark);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245,242,237,0.3);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(201,169,110,0.5);
  background: rgba(255,255,255,0.09);
}
.form-field select option {
  background: var(--dark-section);
  color: var(--text-on-dark);
}
.form-field textarea {
  resize: vertical;
  min-height: 90px;
}
.form-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(245,242,237,0.35);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}
.form-note a {
  color: rgba(245,242,237,0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-disclosure {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,242,237,0.07);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 20px;
}
.form-disclosure p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(245,242,237,0.4);
  line-height: 1.6;
}
.form-disclosure a {
  color: rgba(245,242,237,0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--purple);
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}
.form-submit-btn:hover {
  background: #EBE7DE;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark-section);
  border-top: 1px solid rgba(245,242,237,0.07);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: rgba(245,242,237,0.7);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(245,242,237,0.4);
  transition: color var(--transition);
}
.footer-link:hover { color: rgba(245,242,237,0.75); }
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(245,242,237,0.25);
}

/* ════════════════════════════════════════════════════════════════════
   LINKEDIN JOIN — Button + divider above email form
════════════════════════════════════════════════════════════════════ */
.linkedin-join-row {
  margin-bottom: 20px;
}
.btn-linkedin {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  background: #0077B5;
  color: #fff;
  border: 2px solid #0077B5;
  border-radius: var(--radius-md);
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-linkedin:hover {
  background: #006097;
  border-color: #006097;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,119,181,0.3);
}
.btn-linkedin svg {
  flex-shrink: 0;
}
.join-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.join-divider::before,
.join-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245,242,237,0.15);
}
.join-divider span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(245,242,237,0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — 900px
════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .container { padding: 0 24px; }

  .hero { padding: 100px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
  .hero-stat { border-right: none; padding: 0; }

  .stats-bar-cards { grid-template-columns: 1fr; }
  .stats-bar-card { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-bar-card:last-child { border-bottom: none; }
  .stats-banner { flex-direction: column; align-items: flex-start; gap: 16px; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .institution-grid { grid-template-columns: 1fr; }
  /* 768px breakpoint (below) handles mobile stacking for Three Questions */
  .twin-inner { grid-template-columns: 1fr; gap: 32px; }
  .how-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-r { min-height: 360px; }
  .about-r img { object-position: top center; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — 768px  (Three Questions mobile stacking)
════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .audience-grid { grid-template-columns: 1fr; }
  .audience-cell { border-right: none; }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — 700px
════════════════════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { width: 100%; max-width: 320px; }

  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }

  .bridge { padding: 32px 0; }

  .apply-section { padding: 60px 0; }
  .testimonials, .about, .how-section,
  .institution, .audience, .twin-section, .dark-cta { padding: 56px 0; }
}
