/* ═══════════════════════════════════════════════
   organisations.css  —  Volnteer Organisation Page
   ═══════════════════════════════════════════════ */

/* ── Variables: match base theme (primary #6b21a8, secondary #be185d) ── */
:root {
  --primary:    #6b21a8;
  --secondary:  #be185d;
  --deep:       #6b21a8;
  --deeper:     #4c1d95;
  --accent:     #ec4899;
  --bg:         #ffffff;
  --bg-soft:    #faf7ff;
  --text:       #1e1b4b;
  --text-muted: #6b7280;
  --border:     rgba(107, 33, 168, 0.12);
  --shadow:     rgba(107, 33, 168, 0.1);
  --grad:       linear-gradient(135deg, var(--deep), var(--secondary));
  --grad-wide:  linear-gradient(135deg, var(--deeper) 0%, var(--primary) 45%, var(--secondary) 100%);
  --grad-dark:  linear-gradient(160deg, var(--deeper) 0%, var(--primary) 50%, var(--secondary) 100%);
  --grad-btn:   linear-gradient(135deg, var(--primary), var(--secondary));
  --org-section-padding: clamp(3rem, 8vw, 5rem);
}

/* Skip link — visually hidden, visible on focus for keyboard users */
.skip-link {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 12px 24px;
  background: var(--text);
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Scroll reveal — used by JS for section animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Theme font: Reddit Sans from base */
.org-landing {
  --org-font: var(--font-family, "Reddit Sans", -apple-system, BlinkMacSystemFont, sans-serif);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
.org-landing,
.org-landing * {
  font-family: var(--org-font);
}

/* Headings use same font with weight for emphasis */
.hero-title, .section-title, .reg-title,
.story-card h3, .feature-card h3, .step-card h4,
.testimonial-card blockquote, .impact-number, .impact-title,
.cta-band-text h2 {
  font-family: var(--org-font);
  font-weight: 800;
}

/* Reset heading colours so section styles control them */
.org-landing .hero-section h1, .org-landing .hero-section h2, .org-landing .hero-section h3,
.org-landing .trust-strip h1, .org-landing .trust-strip h2, .org-landing .trust-strip h3,
.org-landing .story-section h2, .org-landing .story-section h3,
.org-landing .features-section h2, .org-landing .features-section h3,
.org-landing .steps-section h2, .org-landing .steps-section h3, .org-landing .steps-section h4,
.org-landing .testimonial-section h2, .org-landing .impact-section h2,
.org-landing .cta-band h2, .org-landing .register-section h2, .org-landing .register-section h3 {
  color: inherit;
}


/* ═══════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  background: var(--grad-wide);
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Large watermark year at top left — GSAP scroll-driven (shifts down on scroll) */
.hero-year {
  position: absolute;
  left: 0px;
  top: 10rem;
  transform: none;
  font-family: var(--org-font);
  font-size: clamp(180px, 26vw, 340px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  letter-spacing: -16px;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(236,72,153,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 20% 30%, rgba(109,40,217,0.2) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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.04'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.35;
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: clamp(80px, 15vw, 140px) clamp(16px, 4vw, 24px) clamp(60px, 10vw, 100px);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 5, 30, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out both;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a8ff78;
  box-shadow: 0 0 8px #a8ff78;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-family: var(--org-font);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #fff !important;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.8s 0.1s ease-out both;
}

.hero-title em {
  font-style: italic;
  color: #fff !important;
  display: inline-block;
  margin-top: 0.15em;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 22px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.65;
  animation: fadeInUp 0.8s 0.2s ease-out both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  animation: fadeInUp 0.8s 0.3s ease-out both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary) !important;   /* override base.css a { color: --primary-color } */
  font-weight: 700;
  font-size: 16px;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.3);
  color: var(--deeper);
}

.btn-hero-primary i { transition: transform 0.3s ease; }
.btn-hero-primary:hover i { transform: translateX(4px); }
.btn-hero-primary:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85) !important;  /* override base.css a colour */
  font-weight: 600;
  font-size: 16px;
  padding: 18px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none !important;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
}
.btn-hero-ghost:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

/* Hero Stats */
.hero-stats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: fadeInUp 0.8s 0.4s ease-out both;
  background: rgba(10, 3, 25, 0.35);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 28px 48px;
  margin: 0 auto;
}

.hero-stat {
  text-align: center;
  padding: 0 36px;
}

.stat-num {
  font-family: var(--org-font);
  font-size: 42px;
  color: white;
  line-height: 1;
}

.stat-suffix {
  font-size: 28px;
  color: #fda4cf;
  font-family: var(--org-font);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.hero-stats--goals {
  flex-wrap: wrap;
  max-width: 960px;
  gap: 8px 0;
}

.hero-stat--goal {
  padding: 0 28px;
  max-width: 260px;
}

.stat-line {
  display: block;
  font-family: var(--org-font);
  font-size: clamp(0.95rem, 1.6vw, 1.125rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.hero-stat--goal .stat-label {
  line-height: 1.45;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInUp 1s 0.8s ease-out both;
}

.scroll-arrow {
  width: 20px;
  height: 30px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 5px; opacity: 1; }
  50% { top: 12px; opacity: 0.3; }
}


/* ═══════════════════════════════════════════════
   TRUST STRIP — distinct section
════════════════════════════════════════════════ */
.trust-strip {
  background: linear-gradient(135deg, var(--deeper) 0%, var(--primary) 45%, var(--secondary) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: clamp(24px, 4vw, 36px) 0;
  margin-top: 2rem;
}

.trust-strip .container {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Compound selector so align-items wins over .trust-strip .container (was baseline). */
.trust-strip .container.trust-strip__layout {
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 20px;
}

.trust-strip__intro {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  width: 100%;
}

.trust-microcopy {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.trust-label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.trust-strip__intro .trust-label {
  white-space: normal;
  line-height: 1.35;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logo-item {
  font-family: var(--org-font);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.trust-logo-item:hover { color: #fff; }

.trust-logo-item--featured {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}


/* ═══════════════════════════════════════════════
   SHARED SECTION STYLES
════════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: rgba(190, 24, 93, 0.08);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--org-font);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 60px;
}

.section-title em {
  font-style: italic;
  color: var(--primary);
}


/* ═══════════════════════════════════════════════
   STORY SECTION
════════════════════════════════════════════════ */
.story-section {
  padding: var(--org-section-padding, 4rem) 0;
  background: #fff;
  text-align: center;
  position: relative;
}
.story-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  opacity: 0.6;
}

.story-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.story-card {
  flex: 1;
  background: var(--bg-soft);
  border-radius: 24px;
  padding: 44px 40px;
  text-align: left;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.story-card--solution {
  border-color: var(--border);
  background: var(--bg-soft);
}

.story-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.story-icon-wrap--red { background: rgba(76,29,149,0.14); color: var(--deeper); }
.story-icon-wrap--purple { background: rgba(190,24,93,0.12); color: var(--secondary); }

.story-card h3 {
  font-family: var(--org-font);
  font-size: 24px;
  color: var(--text);
  margin-bottom: 20px;
}

.story-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
}

.story-list .bi-x-lg { color: var(--deeper); opacity: 0.85; }
.story-list .bi-check-lg { color: var(--secondary); }

.story-divider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 28px;
  color: var(--primary);
  flex-shrink: 0;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}


/* ═══════════════════════════════════════════════
   FEATURES SECTION
════════════════════════════════════════════════ */
.features-section {
  padding: var(--org-section-padding, 4rem) 0;
  background: linear-gradient(135deg, var(--deeper) 0%, var(--primary) 45%, var(--secondary) 100%);
  text-align: center;
  position: relative;
}
.features-section .section-label,
.org-landing .features-section .section-label {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.features-section .section-title,
.org-landing .features-section .section-title,
.org-landing .features-section h2.section-title {
  color: #fff;
}
.features-section .section-title em,
.org-landing .features-section .section-title em {
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
}
.features-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  opacity: 0.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  max-width: 960px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: left;
  min-width: 0;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(107, 33, 168, 0.12);
}

.feature-card--accent {
  grid-column: 1 / -1;
}

.feature-card--large {
  grid-column: auto;
  grid-row: auto;
}

.feature-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(190,24,93,0.05) 0%, transparent 70%);
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-card-bg {
  opacity: 1;
}

.feature-card-content {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 2vw, 28px);
}

.feature-card:not(.feature-card--accent) .feature-card-content {
  padding: clamp(18px, 1.8vw, 24px);
}

.feature-icon-ring {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(107,33,168,0.12), rgba(190,24,93,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-ring { transform: rotate(6deg) scale(1.06); }

.feature-card h3 {
  font-family: var(--org-font);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-card:not(.feature-card--accent) h3 {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

.feature-card p {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.feature-card:not(.feature-card--accent) p {
  font-size: clamp(0.78rem, 0.95vw, 0.85rem);
  margin-bottom: 12px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-card:not(.feature-card--accent) .feature-tags { gap: 5px; }

/* .org-tag — namespaced to avoid conflict with base.css global .tag pill */
.org-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(107,33,168,0.08);
  color: var(--primary);
  border: 1px solid rgba(107,33,168,0.12);
}

.feature-card:not(.feature-card--accent) .org-tag {
  font-size: 0.65rem;
  padding: 3px 8px;
}

/* Accent card (CSR) */
.feature-card--accent {
  background: white;
  border-color: var(--border);
}

.feature-card--accent .feature-card-bg {
  background: radial-gradient(circle at top right, rgba(107,33,168,0.05) 0%, transparent 70%);
}

.feature-card--accent h3,
.feature-card--accent p { color: var(--text); }

.feature-card--accent p { color: var(--text-muted); }

.feature-icon-ring--light {
  background: linear-gradient(135deg, rgba(107,33,168,0.12), rgba(190,24,93,0.08));
  color: var(--primary);
}

.org-tag--light {
  background: rgba(107,33,168,0.08);
  color: var(--primary);
  border-color: rgba(107,33,168,0.12);
}


/* ═══════════════════════════════════════════════
   STEPS SECTION
════════════════════════════════════════════════ */
.steps-section {
  padding: var(--org-section-padding, 4rem) 0;
  background: #fff;
  text-align: center;
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  position: relative;
  margin-top: 20px;
  align-items: stretch;
}

.steps-line {
  position: absolute;
  top: 28px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 0;
  opacity: 0.25;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  font-family: var(--org-font);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(190,24,93,0.3);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.step-item:hover .step-number { transform: scale(1.1); }

.step-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(24px, 2.5vw, 32px) clamp(20px, 2vw, 28px);
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

a.step-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  box-sizing: border-box;
}

a.step-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.step-item:hover .step-card,
.step-card:hover {
  border-color: rgba(190,24,93,0.25);
  box-shadow: 0 12px 40px rgba(190,24,93,0.08);
  transform: translateY(-4px);
}

.step-card-icon {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.step-card h4 {
  font-family: var(--org-font);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════
   TESTIMONIAL
════════════════════════════════════════════════ */
.testimonial-section {
  padding: var(--org-section-padding, 4rem) 0;
  background: linear-gradient(135deg, var(--deeper) 0%, var(--primary) 45%, var(--secondary) 100%);
  position: relative;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  opacity: 0.8;
}

.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 60px;
  background: white;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 64px rgba(0,0,0,0.06);
  position: relative;
}

.testimonial-card--pilot {
  text-align: left;
}

.pilot-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--org-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.pilot-body {
  font-family: var(--org-font);
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

.pilot-body strong {
  font-weight: 700;
}

.quote-mark {
  font-family: var(--org-font);
  font-size: 120px;
  line-height: 1;
  color: rgba(190,24,93,0.1);
  position: absolute;
  top: -10px;
  left: 36px;
  user-select: none;
}

blockquote {
  font-family: var(--org-font);
  font-size: clamp(20px, 3vw, 26px);
  color: var(--text);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.author-name {
  font-weight: 700;
  color: var(--text);
  font-size: 16px;
}

.author-role {
  font-size: 13px;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════
   IMPACT NUMBERS
════════════════════════════════════════════════ */
.impact-section {
  padding: var(--org-section-padding, 4rem) 0;
  background: #fff;
  text-align: center;
}

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

.impact-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 36px;
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(190,24,93,0.1);
  border-color: rgba(190,24,93,0.2);
}

.impact-card--highlight {
  position: relative;
  background: var(--grad-dark);
  border-color: transparent;
  overflow: hidden;
}

.impact-card--highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.2) 0%,
    transparent 40%,
    transparent 60%,
    rgba(236,72,153,0.3) 100%);
  animation: impact-strobe 2.5s ease-in-out infinite;
  pointer-events: none;
}

.impact-card--highlight .impact-icon,
.impact-card--highlight .impact-number,
.impact-card--highlight .impact-title,
.impact-card--highlight .impact-suffix,
.impact-card--highlight .impact-label {
  position: relative;
  z-index: 1;
}

@keyframes impact-strobe {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

.impact-icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 20px;
}

.impact-card--highlight .impact-icon { color: #fda4cf; }

.impact-number {
  font-family: var(--org-font);
  font-size: 64px;
  color: var(--text);
  line-height: 1;
}

.impact-title {
  font-family: var(--org-font);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}

.impact-card--highlight .impact-number { color: white; }

.impact-card--highlight .impact-title { color: white; }

.impact-suffix {
  font-family: var(--org-font);
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
}

.impact-card--highlight .impact-suffix { color: #fda4cf; }

.impact-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.impact-card--highlight .impact-label { color: rgba(255,255,255,0.6); }


/* ═══════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background: var(--grad);
}

.cta-band-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left center, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  font-family: var(--org-font);
  font-size: clamp(28px, 4vw, 44px);
  color: white;
  margin-bottom: 10px;
}

.cta-band-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
}

.btn-cta-band {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--primary) !important;   /* override base.css a colour */
  font-weight: 800;
  font-size: 17px;
  padding: 20px 44px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-cta-band:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  color: var(--deeper);
}

.btn-cta-band i { transition: transform 0.3s ease; }
.btn-cta-band:hover i { transform: translateX(4px); }
.btn-cta-band:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}


/* ═══════════════════════════════════════════════
   REGISTRATION SECTION / FORM
════════════════════════════════════════════════ */
.register-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 0 2.5rem;
  overflow: hidden;
}

#constellation-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.registration-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  width: 100%;
}

.reg-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  max-width: 1320px;
  width: 100%;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  animation: cardEntrance 1s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

#register.reg-card {
  scroll-margin-top: 1.5rem;
}

/* Prevent layout shift: registration page card starts in “from” state before GSAP runs */
.register-section:has(#company-form) .reg-card {
  opacity: 0;
  transform: translateY(24px);
}

@keyframes cardEntrance {
  from { opacity: 0; transform: translateY(60px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.reg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

.reg-header {
  padding: 52px 40px 32px;
  text-align: center;
  background: linear-gradient(180deg, rgba(190, 24, 93, 0.03) 0%, transparent 100%);
}

.reg-logo {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: var(--grad);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(190, 24, 93, 0.3);
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.reg-logo i { font-size: 36px; color: white; }

.reg-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: rgba(190, 24, 93, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.reg-title {
  font-family: var(--org-font);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text);
}

.reg-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 32px;
}

.features-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(190, 24, 93, 0.07), rgba(155, 29, 138, 0.07));
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid rgba(190, 24, 93, 0.12);
  transition: all 0.3s ease;
  cursor: default;
}

.feature-badge:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(190, 24, 93, 0.15);
}

.feature-badge i { color: var(--primary); }

.reg-content { padding: 80px 40px 40px 40px; }

/* Progress */
.form-progress {
  background: var(--bg-soft);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.progress-bar {
  height: 6px;
  background: rgba(190, 24, 93, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--grad);
  width: 0%;
  transition: width 0.4s ease;
  border-radius: 3px;
}

.info-banner {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(190, 24, 93, 0.06), rgba(155, 29, 138, 0.06));
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.info-banner i { margin-right: 8px; color: var(--primary); }

/* Form elements */
.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.form-label .required { color: #ef4444; margin-left: 4px; }

input.form-input,
textarea.form-textarea,
select.form-select {
  width: 100% !important;
  padding: 16px 20px !important;
  font-size: 15px !important;
  font-family: var(--org-font) !important;
  color: var(--text) !important;
  background: white !important;
  border: 2px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  outline: none !important;
  display: block !important;
  line-height: 1.5 !important;
}

input.form-input:hover, textarea.form-textarea:hover {
  border-color: rgba(190, 24, 93, 0.3) !important;
}

input.form-input:focus, textarea.form-textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(190, 24, 93, 0.1) !important;
}

input.form-input.invalid,
textarea.form-textarea.invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15) !important;
}

input.form-input:focus-visible,
textarea.form-textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

textarea.form-textarea { min-height: 130px !important; resize: vertical !important; }

.input-wrapper { position: relative; width: 100%; }

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  z-index: 2;
  transition: color 0.3s ease;
}

.input-wrapper:focus-within .input-icon { color: var(--primary); }
.input-wrapper input.form-input { padding-left: 48px !important; }

/* Password field with show/hide toggle */
.input-wrapper--password { position: relative; }
.input-wrapper--password input.form-input { padding-right: 48px !important; }
.password-toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease;
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.password-toggle { color: var(--primary) !important; }
.password-toggle:hover,
.password-toggle:focus,
.password-toggle:active { color: var(--primary) !important; background: rgba(190, 24, 93, 0.08); }
.password-toggle .pwd-icon { color: inherit !important; }
.password-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.form-help {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 7px;
}

.form-char-counter {
  text-align: right;
  margin-top: 6px;
}
.form-char-counter--warn { color: #ef4444; }

.error-banner {
  padding: 20px 24px;
  background: rgba(239, 68, 68, 0.07);
  border-left: 4px solid #ef4444;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text);
}

.error-banner i { margin-right: 8px; color: #ef4444; }
.error-banner ul { margin: 0; padding-left: 20px; }

.error-message {
  color: #ef4444;
  font-size: 13px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-section {
  background: linear-gradient(135deg, rgba(190, 24, 93, 0.025), rgba(155, 29, 138, 0.025));
  padding: 36px;
  border-radius: 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(190, 24, 93, 0.08);
  transition: box-shadow 0.3s ease;
}

.form-section:hover { box-shadow: 0 8px 32px rgba(190, 24, 93, 0.07); }

.section-heading {
  font-family: var(--org-font);
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit-section {
  margin-top: 12px;
  padding-top: 24px;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.btn-submit {
  width: 100%;
  padding: 20px;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--org-font);
  color: white;
  background: var(--grad);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(190, 24, 93, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.btn-submit:hover::before { left: 100%; }
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(190, 24, 93, 0.4); }

.btn-content { display: flex; align-items: center; justify-content: center; gap: 12px; }
.btn-content i { transition: transform 0.3s ease; }
.btn-submit:hover .btn-content i { transform: translateX(5px); }

.btn-submit.loading { pointer-events: none; opacity: 0.7; }
.btn-submit.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.btn-submit:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

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

.login-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Return to top — below form card, tight around button */
.register-section-footer {
  width: 100%;
  max-width: 1320px;
  text-align: center;
  padding: 1rem 1rem 0;
  margin-top: 0.5rem;
}

.btn-return-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--org-font);
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-return-top:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  transform: translateY(-2px);
}

.btn-return-top:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s ease-out forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .feature-card--large,
  .feature-card--accent { grid-column: 1; grid-row: auto; }

  .steps-track {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-line { display: none; }

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

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

  .story-grid {
    flex-direction: column;
  }

  .story-divider-arrow {
    transform: rotate(90deg);
    padding: 12px 0;
  }
}

/* Mobile hero — same dimensions as home cinematic hero (140px 20px 60px) */
@media (max-width: 768px) {
  .hero-section { min-height: 100svh; padding: 0 0 2rem; }
  .hero-pill { display: none; }
  .hero-year {
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-inner { padding: 140px 20px 60px; }
  .hero-title { font-size: 2.8rem; margin-bottom: 1rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; padding: 0 0.5rem; }
  .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 2rem; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; padding: 14px; }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
  }

  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-scroll-hint { bottom: 25px; }
}

/* Hero only (390×844): scaled from home hero dimensions */
@media (max-width: 429px) {
  .hero-section { padding: 0 0 1.5rem; }
  .hero-inner { padding: 120px 20px 50px; }
  .hero-title { font-size: 2.35rem; margin-bottom: 0.75rem; }
  .hero-sub { font-size: 0.9375rem; margin-bottom: 1.25rem; padding: 0 0.25rem; }
  .hero-actions { gap: 10px; margin-bottom: 1.5rem; }
  .btn-hero-primary, .btn-hero-ghost { padding: 14px; font-size: 0.9375rem; }
  .hero-stats { gap: 12px; padding: 16px 20px; }
  .stat-num { font-size: 2rem; }
  .stat-suffix { font-size: 1.25rem; }
  .stat-label { font-size: 0.75rem; margin-top: 4px; }
  .hero-stat-divider { width: 48px; }
  .hero-scroll-hint { font-size: 0.65rem; bottom: 25px; }
}

/* Hero only (375×667 iPhone SE): scaled from home hero dimensions */
@media (max-width: 389px) {
  .hero-section { padding: 0 0 1.25rem; }
  .hero-inner { padding: 100px 16px 45px; }
  .hero-title { font-size: 2rem; margin-bottom: 0.5rem; }
  .hero-sub { font-size: 0.875rem; margin-bottom: 1rem; padding: 0 0.15rem; }
  .hero-actions { gap: 8px; margin-bottom: 1.25rem; }
  .btn-hero-primary, .btn-hero-ghost { padding: 14px; font-size: 0.875rem; }
  .hero-stats { gap: 10px; padding: 14px 18px; }
  .stat-num { font-size: 1.75rem; }
  .stat-suffix { font-size: 1.1rem; }
  .stat-label { font-size: 0.6875rem; margin-top: 3px; }
  .hero-stat-divider { width: 40px; }
  .hero-scroll-hint { font-size: 0.6rem; bottom: 25px; }
}

@media (max-width: 768px) {
  .section-title { font-size: clamp(1.75rem, 5vw, 2.25rem); margin-bottom: 2rem; }
  .story-section .story-grid { gap: 1rem; }
  .story-card { padding: 1.5rem 1.25rem; }
  .features-grid { gap: 1rem; }
  .feature-card-content { padding: 1.5rem 1.25rem; }
  .step-card { padding: 1.5rem 1rem; }
  .impact-card { padding: 1.5rem 1.25rem; }
  .impact-number { font-size: 2.5rem; }
  .cta-band { padding: 2.5rem 1rem; }
  .cta-band-text h2 { font-size: 1.5rem; }

  .reg-header { padding: 2rem 1.25rem 1.5rem; }
  .reg-content { padding: 2rem 1.25rem 1.25rem 1.25rem; }
  .form-section { padding: 1.25rem; }
  .reg-title { font-size: 1.5rem; }
  .features-strip { flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
  .feature-badge { font-size: 0.8rem; padding: 0.4rem 0.75rem; }

  .testimonial-card { padding: 2rem 1.25rem; }
  .quote-mark { font-size: 4rem; left: 1rem; }
  blockquote { font-size: 1.1rem; }

  .trust-strip .container { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-ghost { justify-content: center; width: 100%; }
  .reg-card { border-radius: 16px; margin: 0 0.75rem; }
  .registration-container { padding: 1rem 0; }
  .row { margin-left: -0.5rem; margin-right: -0.5rem; }
  .col-sm-6 { padding-left: 0.5rem; padding-right: 0.5rem; }
  .section-label { font-size: 0.7rem; padding: 0.35rem 0.75rem; }
}

/* Respect user motion preferences — disable or simplify animations */
/* Reg card: login-style text and box styling (layout unchanged) */
.reg-card .form-label,
.reg-card .form-group label {
  display: block;
  margin-bottom: clamp(6px, 1.5vw, 10px);
  color: #212121;
  font-weight: 600;
  font-size: clamp(11px, 1.8vw + 0.25rem, 13px);
  text-transform: uppercase;
  letter-spacing: clamp(0.3px, 0.1vw, 0.8px);
  transition: color 0.3s ease;
  line-height: 1.4;
}
.reg-card .form-label .required,
.reg-card .required { color: #be185d; }
.reg-card .input-wrapper { position: relative; }
.reg-card .input-wrapper input.form-input,
.reg-card .input-wrapper textarea,
.reg-card .input-wrapper select {
  width: 100% !important;
  padding: clamp(12px, 1.5vw + 0.5rem, 16px) clamp(12px, 2vw, 16px) !important;
  border: none !important;
  border-bottom: 2px solid rgba(107, 33, 168, 0.33) !important;
  border-radius: 0 !important;
  font-size: clamp(16px, 2vw + 0.25rem, 16px) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  background: transparent !important;
  color: #212121 !important;
  font-family: inherit !important;
  min-height: 44px !important;
  line-height: 1.5 !important;
  outline: none !important;
  box-shadow: none !important;
}
.reg-card .input-wrapper input.form-input { padding-left: 48px !important; }
.reg-card .input-wrapper input.form-input:hover,
.reg-card .input-wrapper textarea:hover { border-bottom-color: rgba(190, 24, 93, 0.36) !important; }
.reg-card .input-wrapper input.form-input:focus,
.reg-card .input-wrapper textarea:focus {
  border-bottom-color: #6b21a8 !important;
  border-bottom-width: 2px !important;
}
.reg-card .input-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6b21a8, #be185d);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.reg-card .input-wrapper:has(input:focus)::after,
.reg-card .input-wrapper:has(textarea:focus)::after { width: 100%; }
.reg-card .form-group:has(input:focus) .form-label,
.reg-card .form-group:has(input:focus) label,
.reg-card .form-group:has(textarea:focus) .form-label,
.reg-card .form-group:has(textarea:focus) label { color: #6b21a8; }
.reg-card .input-wrapper:focus-within .input-icon { color: #6b21a8; }
.reg-card textarea.form-textarea {
  width: 100% !important;
  padding: clamp(12px, 1.5vw + 0.5rem, 16px) clamp(12px, 2vw, 16px) !important;
  border: none !important;
  border-bottom: 2px solid rgba(107, 33, 168, 0.33) !important;
  border-radius: 0 !important;
  font-size: clamp(16px, 2vw + 0.25rem, 16px) !important;
  background: transparent !important;
  color: #212121 !important;
  min-height: 100px !important;
  resize: vertical !important;
  transition: all 0.3s ease !important;
  outline: none !important;
  box-shadow: none !important;
}
.reg-card textarea.form-textarea:focus { border-bottom-color: #6b21a8 !important; }
.reg-card .error-message {
  color: #be185d;
  font-size: clamp(11px, 1.5vw + 0.1rem, 12px);
  margin-top: clamp(4px, 1vw, 6px);
  display: block;
  line-height: 1.4;
}
.reg-card .submit-section .btn-submit {
  width: 100%;
  padding: clamp(14px, 2.5vw + 0.5rem, 18px);
  background: linear-gradient(135deg, #6b21a8 0%, #be185d 100%);
  color: #fff;
  border: none;
  border-radius: clamp(8px, 1.5vw, 12px);
  font-size: clamp(14px, 2vw + 0.25rem, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: clamp(0.5px, 0.15vw, 1.2px);
  margin-top: clamp(8px, 1.5vw, 10px);
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.reg-card .submit-section .btn-submit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(107, 33, 168, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.reg-card .submit-section .btn-submit:hover::before {
  width: clamp(200px, 40vw, 300px);
  height: clamp(200px, 40vw, 300px);
}
.reg-card .submit-section .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 clamp(8px, 1.5vw, 12px) clamp(20px, 4vw, 30px) rgba(107, 33, 168, 0.33);
}
.reg-card .submit-section .btn-submit .btn-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1vw, 8px);
}
.reg-card .login-link {
  text-align: center;
  margin-top: clamp(20px, 3vw, 25px);
  font-size: clamp(12px, 2vw + 0.1rem, 14px);
  color: #212121;
  opacity: 0.75;
  line-height: 1.5;
}
.reg-card .login-link a {
  color: #6b21a8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.reg-card .login-link a:hover { color: #be185d; text-decoration: underline; }
.reg-card .section-heading {
  font-size: clamp(18px, 2.5vw + 0.5rem, 20px);
  font-weight: 600;
  color: #212121;
  margin-bottom: clamp(16px, 2.5vw, 24px);
  letter-spacing: clamp(0.3px, 0.1vw, 0.8px);
}
.reg-card .section-heading i { color: #6b21a8; }
.reg-card .form-help {
  font-size: clamp(11px, 1.5vw + 0.1rem, 13px);
  color: #212121;
  opacity: 0.7;
  margin-top: 6px;
}
.reg-card .info-banner {
  font-size: clamp(12px, 1.8vw + 0.1rem, 14px);
  color: #212121;
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .org-landing *,
  .org-landing *::before,
  .org-landing *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .pill-dot { animation: none; }
  .scroll-arrow::after { animation: none; }
  .story-divider-arrow { animation: none; }
  .reg-card::before { animation: none; }
  .reg-logo { animation: none; }
  .btn-submit.loading::after { animation: none; opacity: 0.5; }
}