:root {
  --ink: #101010;
  --ink-soft: #24211f;
  --paper: #f5f3ee;
  --paper-2: #ebe6dd;
  --muted: #6a645d;
  --line: rgba(16, 16, 16, 0.14);
  --line-dark: rgba(245, 243, 238, 0.16);
  --pink: #ffc0db;
  --pink-hot: #ff8ec2;
  --max: 1280px;
  --inner: 1120px;
  --text: 720px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Helvetica, Arial, sans-serif;
  line-height: 1.35;
  text-rendering: geometricPrecision;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0;
  color: var(--muted);
}
strong {
  color: var(--ink);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 238, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  letter-spacing: -0.055em;
  font-weight: 900;
}
.brand-word {
  font-size: 28px;
  line-height: 0.8;
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
}
.nav-links a {
  font-size: 13px;
  color: var(--muted);
  position: relative;
}
.nav-links a:after,
.venue-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active,
.venue-link:hover {
  color: var(--ink);
}
.nav-links a:hover:after,
.nav-links a.active:after,
.venue-link:hover:after {
  transform: scaleX(1);
}
.venue-link {
  font-size: 13px;
  font-weight: 800;
  position: relative;
}
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 9px 12px;
  font-weight: 800;
}
.section,
.hero,
.page-hero {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 120px 24px;
}
.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 56px;
}
.eyebrow {
  display: block;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.055em;
}
h1 {
  font-size: clamp(58px, 10vw, 144px);
  line-height: 0.82;
  max-width: 920px;
}
h2 {
  font-size: clamp(38px, 6vw, 84px);
  line-height: 0.88;
  max-width: 900px;
}
h3 {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.lead {
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.copy {
  max-width: var(--text);
}
.copy p {
  font-size: 18px;
  line-height: 1.48;
  margin-top: 18px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 13px 17px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.btn:hover {
  background: var(--pink);
  color: var(--ink);
  border-color: var(--pink);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.btn.ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.rule-top {
  border-top: 2px solid var(--pink);
}
.cred-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cred-inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.cred-inner span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: var(--muted);
}
.cred-inner span:first-child {
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: none;
  font-size: 15px;
}
.dark {
  background: var(--ink);
  color: var(--paper);
}
.dark h2,
.dark .lead,
.dark strong {
  color: var(--paper);
}
.dark p {
  color: #cbc5bd;
}
.dark .eyebrow {
  color: var(--pink);
}
.quote {
  font-size: clamp(42px, 7vw, 98px);
  line-height: 0.88;
  letter-spacing: -0.06em;
  font-weight: 900;
  color: var(--paper);
  max-width: 1100px;
}
.quote-mark {
  width: 76px;
  height: 4px;
  background: var(--pink);
  margin-bottom: 34px;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 74px;
  align-items: start;
}
.text-stack {
  max-width: var(--text);
}
.text-stack p {
  font-size: 19px;
  line-height: 1.48;
  margin-top: 20px;
}
.text-stack p:first-child {
  margin-top: 0;
}
.modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 44px;
}
.module {
  background: var(--paper);
  padding: 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.18s ease;
}
.module:hover {
  background: #fffaf6;
}
.module.highlight {
  background: var(--pink);
}
.module p {
  font-size: 16px;
  line-height: 1.45;
  margin-top: 14px;
}
.tag {
  display: inline-block;
  margin-top: 28px;
  border-top: 2px solid var(--pink);
  padding-top: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.highlight .tag {
  border-color: var(--ink);
  color: var(--ink);
}
.ecosystem {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 42px;
}
.eco-item {
  padding: 20px;
  border-right: 1px solid var(--line);
  min-height: 148px;
}
.eco-item:last-child {
  border-right: none;
}
.eco-item b {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.eco-item span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}
.routes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.route {
  border-top: 2px solid var(--pink);
  padding-top: 18px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.route p {
  margin-top: 14px;
  font-size: 15px;
}
.route a {
  font-weight: 900;
  font-size: 13px;
  margin-top: 24px;
}
.route a:hover {
  color: var(--pink-hot);
}
.page-hero {
  padding-top: 150px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(54px, 8vw, 118px);
  max-width: 1120px;
}
.page-hero .lead {
  max-width: 850px;
  margin-top: 28px;
}
.list-table {
  border-top: 1px solid var(--line);
  margin-top: 38px;
}
.list-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.list-row b {
  font-size: 26px;
  letter-spacing: -0.04em;
}
.list-row p {
  font-size: 21px;
}
.panel {
  background: var(--ink);
  color: var(--paper);
  padding: 56px;
}
.panel h2 {
  color: var(--paper);
}
.panel p {
  color: #d5cec5;
  max-width: 720px;
  font-size: 21px;
}
.panel .btn.ghost{
  background:transparent;
  border:1px solid #ffc0db;
  color:#ffc0db;
}

.panel .btn.ghost:hover{
  background:#ffc0db;
  color:#111111;
}

.panel .btn{
  background:#ffc0db;
  color:#111111;
  border:1px solid #ffc0db;
}

.panel .btn:hover{
  background:#111111;
  color:#ffc0db;
  border:1px solid #ffc0db;
}

.panel .btn.ghost{
  background:transparent;
  color:#ffc0db;
  border:1px solid #ffc0db;
}

.panel .btn.ghost:hover{
  background:#ffc0db;
  color:#111111;
}

.contact-card {
  border-top: 2px solid var(--pink);
  padding-top: 24px;
  max-width: 760px;
}
.contact-card a.email {
  font-size: clamp(34px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
}
.contact-card a.email:hover {
  color: var(--pink-hot);
}
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 24px 28px;
}
.footer-grid {
  max-width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer a {
  display: block;
  color: var(--paper);
  margin-top: 10px;
}
.footer p {
  color: #c8c1ba;
  line-height: 1.45;
}
.footer-brand {
  font-size: 34px !important;
  font-weight: 900;
  letter-spacing: -0.055em;
  margin-top: 0 !important;
}
.footer-label {
  display: block;
  color: var(--pink);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 14px;
}
.relationship {
  max-width: var(--inner);
  margin: 48px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: #c8c1ba;
  font-size: 13px;
}
@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .venue-link {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    grid-column: 1/-1;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
  }
  .nav-open .nav-links {
    display: flex;
  }
  .hero,
  .split {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 100px;
  }
  .modules,
  .routes,
  .ecosystem,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .eco-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .list-row {
    grid-template-columns: 1fr;
  }
  .section,
  .hero,
  .page-hero {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .quote {
    font-size: 44px;
  }
  .panel {
    padding: 34px 24px;
  }
}
.problem-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.problem-intro h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 900px;
}

.problem-intro h3 {
  margin-top: 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--accent);
  font-weight: 600;
}

.problem-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.mini-label {
  display: block;
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8d8d8d;
}

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

.problem-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.problem-list.alt li {
  color:#ffc0db;
}

.problem-outro {
  margin-top: 70px;
  max-width: 760px;
}

.problem-outro p {
  font-size: 2rem;
  color: #010101;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.ecosystem-map{
  margin-top:60px;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;

  background:var(--line);
}

.ecosystem-map{
  margin-top:60px;

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

.ecosystem-map div{
  padding:42px 32px;

  background:var(--paper);
  border:1px solid rgba(255,255,255,0.08);

  font-size:clamp(1.4rem,2vw,2rem);
  font-weight:700;

  letter-spacing:-0.03em;

  min-height:140px;

  display:flex;
  align-items:flex-end;

  transition:.3s ease;
}

.ecosystem-map div:hover{
  background:#ffc0db;
  color:#111111;
  border-color:#ffc0db;
}

.insight-section h2{
  max-width:1000px;
  font-size:clamp(3rem,6vw,5.8rem);
  line-height:.95;
  letter-spacing:-0.05em;
}

.insight-copy{
  margin-top:50px;
  max-width:820px;
  display:grid;
  gap:22px;
}

.insight-copy p{
  font-size:1.25rem;
  line-height:1.45;

}
.mission-section{
  padding-top:140px;
  padding-bottom:140px;
}

.mission-intro{
  max-width:760px;
  margin-bottom:70px;
}

.mission-intro h2{
  font-size:clamp(3rem,6vw,5.2rem);
  line-height:.95;
  letter-spacing:-0.05em;
}

.mission-intro h3{
  margin-top: 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--accent);
  font-weight: 600;
}

.mission-intro p{
  margin-top:26px;
  font-size:1.2rem;
  line-height:1.5;
  color:#010101;
}

.mission-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1px;

  background:var(--line);
}

.mission-card{
  background:var(--bg);

  border:1px solid rgba(255,255,255,0.08);

  padding:42px 38px;
  min-height:260px;

  transition:.3s ease;
}

.mission-card:hover{
  background:#ffc0db;
  color:#111111;
}

.mission-card:hover p,
.mission-card:hover .mission-label{
  color:#111111;
}

.mission-label{
  display:block;
  margin-bottom:18px;

  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;

  color:#8d8d8d;
}

.mission-card h3{
  font-size:1.8rem;
  line-height:1;
  letter-spacing:-0.03em;

  margin-bottom:20px;
}

.mission-card p{
  font-size:1.05rem;
  line-height:1.5;
  color:#010101;
}

@media(max-width:900px){

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

}

.page-hero,
.has-bg-mark {
  position: relative;
  overflow: hidden;
}

.page-hero > *,
.has-bg-mark > * {
  position: relative;
  z-index: 2;
}

.bg-mark {
  position: absolute;
  top: -80px;
  right: -140px;

  width: 520px;
  height: 520px;

  background: #ffc0db;
  opacity: .06;

  pointer-events: none;
  z-index: 1;

  mask: url("../../images/arc_logo.svg") center / contain no-repeat;
-webkit-mask: url("../../images/arc_logo.svg") center / contain no-repeat;
  animation: drift 18s ease-in-out infinite;
}

@keyframes drift {
  0%,100% {
    transform: translateY(0px) rotate(-4deg);
  }

  50% {
    transform: translateY(-22px) rotate(3deg);
  }
}
.focus-section .focus-grid span {
  font-size: 1.5rem !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
  color: #ffc0db;
}
.focus-section {
  padding: 3rem 0;
}

.focus-section .focus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.focus-section .focus-grid span {
  display: inline-flex;
  align-items: center;
  width: auto;
  font-size: 21px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.75rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}

/* ========================================
   INDEX PAGE STYLES — moved from index.html
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --bg:#111111;
  --panel:#181818;
  --text:#f5f3ee;
  --muted:#9a9a9a;
  --line:rgba(255,255,255,0.08);
  --accent:#ffc0db;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.4;
  -webkit-font-smoothing:antialiased;
}

.container{
  width:min(1180px,92%);
  margin:auto;
}

.narrow{
  max-width:760px;
}

section{
  padding:120px 0;
  border-bottom:1px solid var(--line);
}

.section-label{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:24px;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
}

.hero h1{
  font-size:clamp(4rem,9vw,8rem);
  line-height:.9;
  letter-spacing:-0.05em;
  font-weight:800;
  max-width:900px;
}

.hero-intro{
  margin-top:32px;
  max-width:700px;
  font-size:1.4rem;
  color:#d5d5d5;
}

.pathways-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1px;
  background:var(--line);
}

.pathway-card{
  background:var(--panel);
  color:var(--text);
  text-decoration:none;
  padding:42px 32px;
  transition:.3s ease;
}

.pathway-card:hover{
  background:#202020;
  color:var(--accent);
}

.pathway-card span{
  font-size:1.2rem;
  font-weight:600;
}

.hero-proof{
  margin-top:50px;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  color:var(--muted);
  font-size:.95rem;
}

.statement{
  font-size:clamp(2.4rem,5vw,4.5rem);
  line-height:1;
  letter-spacing:-0.04em;
  margin-bottom:30px;
}

.support-text{
  color:#c9c9c9;
  font-size:1.2rem;
}

.ecosystem-flow{
  margin-top:50px;
  display:flex;
  flex-direction:column;
  gap:18px;
  font-size:clamp(1.5rem,3vw,2.4rem);
  font-weight:700;
  letter-spacing:-0.03em;
}

.arrow{
  color:var(--accent);
}

.ecosystem-text{
  margin-top:40px;
  max-width:760px;
  color:#c9c9c9;
  font-size:1.1rem;
}

.services-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.service-item h3{
  margin-bottom:14px;
  font-size:21px;
}

.service-item p{
  color:#bdbdbd;
  font-size:21px;
}

.focus-grid{
  margin-top:40px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.focus-grid span{
  border:1px solid var(--line);
  padding:14px 18px;
  color:#d9d9d9;
}

.relationship-section p{
  font-size:1.2rem;
}

.muted{
  margin-top:14px;
  color:var(--muted);
}

.cta-section h2{
  font-size:clamp(2.4rem,5vw,4rem);
  line-height:1;
  letter-spacing:-0.04em;
  margin-bottom:24px;
}

.cta-section p{
  color:#cfcfcf;
  font-size:1.1rem;
}

.cta-buttons{
  display:flex;
  gap:16px;
  margin-top:40px;
  flex-wrap:wrap;
}

.button-primary,
.button-secondary{
  text-decoration:none;
  padding:18px 28px;
  border:1px solid var(--line);
  transition:.3s ease;
}

.button-primary{
  background:var(--accent);
  color:#111;
  font-weight:700;
}

.button-secondary{
  color:var(--text);
}

.button-primary:hover,
.button-secondary:hover{
  opacity:.85;
}

footer{
  padding:60px 0;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

.footer-title{
  font-size:1.1rem;
  margin-bottom:12px;
  font-weight:700;
}

.footer-copy{
  color:var(--muted);
  max-width:520px;
}

@media(max-width:768px){

  section{
    padding:90px 0;
  }

  .hero{
    min-height:auto;
    padding-top:120px;
  }

  .hero h1{
    font-size:4rem;
  }

  .hero-intro{
    font-size:1.1rem;
  }

  .statement,
  .cta-section h2{
    line-height:1.05;
  }

}
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:#111111;
  border-bottom:1px solid var(--line);
}

.nav{
  width:min(1180px,92%);
  margin:auto;
  height:76px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:baseline;
  gap:6px;

  text-decoration:none;
  color:var(--text);

  font-weight:800;
  letter-spacing:-0.03em;
}

.brand-sub{
  color:var(--accent);
}

.nav-links{
  display:flex;
  gap:28px;
}

.nav-links a,
.venue-link{
  text-decoration:none;
  color:#d0d0d0;
  font-size:.95rem;

  transition:.25s ease;
}

.nav-links a:hover,
.venue-link:hover{
  color:var(--accent);
}

.mobile-toggle{
  display:none;
}

.hero{
  padding-top:120px;
}

@media(max-width:900px){

  .nav-links,
  .venue-link{
    display:none;
  }

  .mobile-toggle{
    display:block;

    background:none;
    border:none;

    color:var(--text);
    font-size:1rem;
  }

}

html {
    scroll-behavior: smooth;
  }

  body {
    opacity: 0;
    animation: pageIn .45s ease forwards;
  }

  @keyframes pageIn {
    to { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .card,
  .pathway,
  .proof-card,
  .cta-box {
    transition:
      transform .25s ease,
      border-color .25s ease,
      background-color .25s ease,
      box-shadow .25s ease;
  }

  .card:hover,
  .pathway:hover,
  .proof-card:hover,
  .cta-box:hover {
    transform: translateY(-4px);
    border-color: #ffc0db;
    box-shadow: 0 14px 40px rgba(0,0,0,.08);
  }

  .button,
  .btn,
  a[class*="button"],
  a[class*="btn"] {
    transition:
      transform .2s ease,
      background-color .2s ease,
      color .2s ease,
      border-color .2s ease;
  }

  .button:hover,
  .btn:hover,
  a[class*="button"]:hover,
  a[class*="btn"]:hover {
    transform: translateY(-2px);
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: auto 5% 8% auto;
    width: 180px;
    height: 180px;
    background: #ffc0db;
    opacity: .16;
    border-radius: 999px;
    filter: blur(30px);
    animation: pulseGlow 7s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes pulseGlow {
    0%, 100% {
      transform: scale(1) translate(0,0);
      opacity: .12;
    }
    50% {
      transform: scale(1.15) translate(-12px, 8px);
      opacity: .2;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation: none !important;
      transition: none !important;
      scroll-behavior: auto !important;
    }

    body {
      opacity: 1;
    }

    .reveal {
      opacity: 1;
      transform: none;
    }
  }

/* Final index overrides */
.hero { position: relative; }
.focus-section .focus-grid span {
  font-size: 13px;
  line-height: 1;
  padding: 8px 12px;
}

/* =========================================
   FINAL DARK THEME TEXT FIXES
========================================= */

body,
section,
.hero,
.page-hero,
.panel,
footer {
  background: #111111;
  color: #f5f3ee;
}

h1,
h2,
h3,
strong,
.brand,
.brand-word,
.statement,
.quote,
.cta-section h2 {
  color: #f5f3ee !important;
}

p,
.support-text,
.hero-intro,
.ecosystem-text,
.service-item p,
.footer-copy,
.muted {
  color: #cfcfcf !important;
}

.nav-links a,
.venue-link {
  color: #d0d0d0 !important;
}

.nav-links a:hover,
.venue-link:hover {
  color: #ffc0db !important;
}

.pathway-card,
.mission-card,
.module,
.ecosystem-map div {
  background: #181818;
  color: #f5f3ee;
}

.focus-grid span {
  color: #ffc0db !important;
  border-color: rgba(255,255,255,0.12);
}

.site-header {
  background: rgba(17,17,17,0.92) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

footer {
  border-top: 1px solid rgba(255,255,255,0.08);
}


/* =========================================
   MOBILE-ONLY FIXES — desktop preserved
   ========================================= */

@media (max-width: 900px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .nav {
    position: relative;
  }

  .mobile-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    color: var(--text, #f5f3ee);
    border: 1px solid rgba(255,255,255,.16);
    background: transparent;
    cursor: pointer;
  }

  .nav-links,
  .venue-link {
    display: none !important;
  }

  body.nav-open .nav-links,
  .nav.nav-open .nav-links,
  .site-header.nav-open .nav-links {
    display: flex !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 0 20px;
    background: #111111;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  body.nav-open .nav-links a,
  .nav.nav-open .nav-links a,
  .site-header.nav-open .nav-links a {
    display: block;
    padding: 14px 4vw;
    font-size: 1.05rem;
    color: #f5f3ee !important;
  }

  body.nav-open .venue-link,
  .nav.nav-open .venue-link,
  .site-header.nav-open .venue-link {
    display: block !important;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(76px + 7 * 52px + 20px);
    padding: 16px 4vw 20px;
    background: #111111;
    color: #ffc0db !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .nav-links a::after,
  .venue-link::after {
    display: none;
  }

  .problem-grid,
  .mission-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  section,
  .section,
  .hero,
  .page-hero {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .hero {
    min-height: auto !important;
    padding-top: 118px !important;
    align-items: flex-start !important;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.15rem) !important;
    line-height: .92 !important;
    letter-spacing: -.055em;
  }

  h2,
  .problem-intro h2,
  .insight-section h2,
  .mission-intro h2,
  .statement {
    font-size: clamp(2.15rem, 10vw, 3.3rem) !important;
    line-height: .96 !important;
  }

  h3,
  .problem-intro h3,
  .mission-intro h3 {
    font-size: clamp(1.25rem, 6vw, 1.75rem) !important;
    line-height: 1.08 !important;
  }

  .hero-intro,
  .lead {
    font-size: 1.08rem !important;
    line-height: 1.38 !important;
    margin-top: 22px;
  }

  p,
  .text-stack p,
  .copy p,
  .list-row p,
  .service-item p,
  .insight-copy p,
  .panel p,
  .support-text,
  .ecosystem-text {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  .pathways-grid,
  .services-grid {
    grid-template-columns: 1fr !important;
    margin-top: 36px !important;
  }

  .pathway-card {
    padding: 24px 20px !important;
  }

  .hero-proof {
    margin-top: 34px !important;
    gap: 10px 14px !important;
    font-size: .86rem !important;
  }

  .ecosystem-map {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    background: transparent !important;
    margin-top: 34px !important;
  }

  .ecosystem-map div {
    min-height: auto !important;
    padding: 20px 18px !important;
    font-size: 1.08rem !important;
    line-height: 1.15 !important;
    align-items: flex-start !important;
  }

  .problem-grid {
    margin-top: 38px !important;
    gap: 34px !important;
  }

  .problem-list li {
    font-size: 1.05rem !important;
    padding: 12px 0 !important;
  }

  .list-table {
    margin-top: 28px !important;
  }

  .list-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 18px 0 !important;
  }

  .list-row b {
    font-size: 1.22rem !important;
  }

  .mission-card {
    min-height: auto !important;
    padding: 26px 22px !important;
  }

  .mission-card h3 {
    font-size: 1.35rem !important;
  }

  .panel {
    padding: 30px 22px !important;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-height: 44px;
  }

  .focus-grid,
  .focus-section .focus-grid {
    gap: 9px !important;
  }

  .focus-grid span,
  .focus-section .focus-grid span {
    font-size: .78rem !important;
    line-height: 1.1 !important;
    padding: 9px 11px !important;
    letter-spacing: .02em !important;
  }

  .footer {
    padding-top: 44px !important;
  }

  .footer-grid {
    gap: 28px !important;
  }
}
