:root {
  --charcoal-900: #050607;
  --charcoal-800: #0b0d10;
  --charcoal-700: #11141a;
  --charcoal-600: #1b1f27;
  --charcoal-500: #2a2f3a;
  --muted: #9aa3b5;
  --white: #f5f7fb;
  --white-soft: #e4e8f0;
  --cyan: #5de0e6;
  --cyan-soft: rgba(93, 224, 230, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.35);
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--charcoal-900);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 2rem);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 6, 7, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1.5rem;
}

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

.logo img {
  height: 180px;
  width: auto;
  display: block;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.btn {
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.accent {
  border-color: var(--cyan);
  color: var(--charcoal-900);
  background: var(--cyan);
  box-shadow: 0 10px 25px rgba(93, 224, 230, 0.3);
}

.btn.solid {
  background: var(--white);
  color: var(--charcoal-900);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.btn.text {
  padding: 0;
  border: none;
  color: var(--cyan);
}

.hero {
  padding: 6rem 0 4rem;
  background: radial-gradient(
      circle at top,
      rgba(93, 224, 230, 0.15),
      transparent 45%
    ),
    linear-gradient(135deg, var(--charcoal-800), var(--charcoal-900));
}

.hero-alt {
  background: linear-gradient(120deg, var(--charcoal-800), var(--charcoal-900));
}

.hero-home {
  background: radial-gradient(circle at 20% 20%, rgba(93, 224, 230, 0.2), transparent 55%),
    linear-gradient(135deg, #06080c, #0e1117 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

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

.hero-media--tall {
  min-height: 420px;
}

.media-accent {
  position: absolute;
  inset: auto 1.5rem 1.5rem auto;
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 30%, var(--cyan), transparent);
  opacity: 0.7;
  filter: blur(0.5px);
}

.hero-copy h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.1;
  margin: 0.4rem 0 1.5rem;
}

.lead {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 640px;
}

.hero-panel {
  background: var(--charcoal-700);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-panel__title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-panel ul {
  padding-left: 1.25rem;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--cyan);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-contrast {
  background: var(--charcoal-800);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.support {
  color: var(--muted);
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--cyan);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.cards.three-up {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--charcoal-700);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

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

.card ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.stat-number {
  font-family: "Sora", sans-serif;
  font-size: 2.5rem;
  display: block;
}

.stat-label {
  color: var(--muted);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.quotes article {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--charcoal-700);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.quotes span {
  color: var(--muted);
  font-size: 0.9rem;
}

.callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--charcoal-700);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.story-card,
.mission-block,
.placeholder-panel {
  background: var(--charcoal-700);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-block p {
  font-size: 1.1rem;
  color: var(--muted);
}

.story-card ul,
.checklist {
  padding-left: 1.2rem;
  color: var(--muted);
}

.form-grid {
  align-items: start;
}

.intake-form {
  background: var(--charcoal-700);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.intake-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

.intake-form textarea {
  resize: vertical;
}

.btn.full {
  width: 100%;
}

.form-status {
  font-size: 0.95rem;
  color: var(--muted);
  min-height: 1.4rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.steps article {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--charcoal-700);
  position: relative;
}

.steps span {
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.faq-list article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.faq-list article:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.placeholder-panel a {
  color: var(--cyan);
}

.site-footer {
  padding: 3rem 0;
  background: var(--charcoal-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footnote {
  color: var(--muted);
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .nav {
    padding: 0.75rem 0;
  }

  .logo img {
    height: 35px;
  }

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(280px, 80vw);
    background: var(--charcoal-800);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 99;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-menu .btn.accent {
    margin-top: 1.5rem;
    width: 100%;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1.2;
    margin: 0.5rem 0 1rem;
  }

  .lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  .hero-media,
  .hero-media--tall {
    min-height: 240px;
    max-height: 300px;
  }

  .hero-panel {
    padding: 1.5rem;
  }

  .hero-panel__title {
    font-size: 1rem;
  }

  .hero-panel ul {
    font-size: 0.9rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.3;
  }

  .support {
    font-size: 0.95rem;
  }

  .callout {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }

  .callout h2 {
    font-size: 1.5rem;
  }

  .grid-two,
  .split,
  .cards,
  .cards.three-up,
  .quotes,
  .steps,
  .stats,
  .faq {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card,
  .story-card,
  .mission-block {
    padding: 1.5rem;
  }

  .card h3,
  .story-card h3 {
    font-size: 1.2rem;
    margin-top: 0;
  }

  .card p,
  .story-card p {
    font-size: 0.95rem;
  }

  .intake-form {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 1.5rem);
  }

  .nav {
    padding: 0.5rem 0;
  }

  .logo img {
    height: 28px;
  }

  .btn,
  .btn.full {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }

  .cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.6rem, 8vw, 2rem);
    line-height: 1.25;
  }

  .lead {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .eyebrow {
    font-size: 0.65rem;
  }

  .hero-panel,
  .card,
  .story-card,
  .mission-block,
  .placeholder-panel,
  .quotes article,
  .callout {
    padding: 1.25rem;
    border-radius: var(--radius-md);
  }

  .hero-panel ul,
  .card ul {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .hero-media,
  .hero-media--tall {
    min-height: 200px;
    max-height: 250px;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .support,
  .card p,
  .story-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .callout h2 {
    font-size: 1.3rem;
  }

  .tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }

  .intake-form {
    padding: 1.25rem;
  }

  .intake-form input,
  .intake-form select,
  .intake-form textarea {
    font-size: 0.9rem;
    padding: 0.75rem 0.85rem;
  }

  .intake-form label {
    font-size: 0.9rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .quotes span {
    font-size: 0.85rem;
  }

  .site-footer {
    padding: 2rem 0;
  }

  .footnote {
    font-size: 0.85rem;
  }
}

