@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,800;1,400;1,600&display=swap');

:root {
  --ink: #17151a;
  --ink-soft: #2a272d;
  --paper: #f4f0e8;
  --paper-bright: #fbfaf6;
  --purple: #6d3d91;
  --purple-bright: #9860bd;
  --line: rgba(23, 21, 26, .17);
  --sans: "Open Sans", Arial, sans-serif;
  --serif: "Open Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #b88ddd; outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  padding: .75rem 1rem;
  background: white;
  color: black;
  border-radius: 99px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: white;
}
.nav-shell {
  width: min(1440px, calc(100% - 64px));
  height: 96px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.wordmark { display: inline-flex; align-items: center; gap: .8rem; font-weight: 600; letter-spacing: -.02em; }
.wordmark img { width: 48px; height: 48px; }
.wordmark strong { font-weight: 800; }
.desktop-nav { display: flex; align-items: center; gap: 2.1rem; font-size: .84rem; }
.desktop-nav a, .site-footer a { transition: opacity .2s ease; }
.desktop-nav a:hover, .site-footer a:hover { opacity: .62; }
.nav-cta { justify-self: end; font-size: .82rem; font-weight: 600; padding: .72rem 1rem; border: 1px solid rgba(255,255,255,.5); border-radius: 99px; }
.nav-cta span { margin-left: .65rem; }

.hero {
  min-height: max(760px, 100svh);
  position: relative;
  overflow: hidden;
  padding: 175px max(32px, calc((100vw - 1440px) / 2)) 88px;
  background:
    radial-gradient(circle at 69% 53%, rgba(118,66,154,.32), transparent 30%),
    linear-gradient(115deg, #17151a 0%, #201b25 54%, #17151a 100%);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}
.hero-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; background: #714394; filter: blur(150px); opacity: .18; right: 11%; top: 23%; }
.hero-copy { position: relative; z-index: 2; max-width: 810px; padding-right: 2rem; }
.eyebrow { margin: 0 0 1.8rem; font-size: .72rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(4.4rem, 7.2vw, 8.7rem);
  line-height: .84;
  letter-spacing: -.065em;
  font-weight: 600;
}
.hero h1 em { font-family: inherit; font-style: italic; font-weight: inherit; color: #c7a5dd; letter-spacing: inherit; }
.hero-lede { max-width: 650px; margin: 2.2rem 0 0; color: rgba(255,255,255,.7); font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.55; }
.hero-actions { margin-top: 2.4rem; display: flex; align-items: center; gap: 1.7rem; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 1.4rem; border-radius: 99px; padding: .9rem 1.25rem; font-weight: 600; font-size: .86rem; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--paper-bright); color: var(--ink); }
.text-link { font-size: .86rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: .16rem; }
.text-link span { margin-left: .5rem; }

.hero-mark { position: relative; z-index: 1; width: min(42vw, 620px); aspect-ratio: 1; justify-self: end; display: grid; place-items: center; }
.mark-disc { width: 72%; height: 72%; border-radius: 50%; position: relative; z-index: 2; box-shadow: 0 32px 100px rgba(0,0,0,.5); animation: float 7s ease-in-out infinite; }
.mark-disc img { width: 100%; height: 100%; object-fit: contain; filter: saturate(.78) contrast(1.04); }
.orbit { position: absolute; inset: 7%; border: 1px solid rgba(199,165,221,.36); border-radius: 50%; }
.orbit::before { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #c7a5dd; top: 15%; left: 15%; box-shadow: 0 0 24px #c7a5dd; }
.orbit-two { inset: 0; opacity: .42; transform: rotate(74deg); }
.signal { position: absolute; z-index: 3; height: 2px; background: linear-gradient(90deg, transparent, #b986db, transparent); transform-origin: right center; right: 84%; }
.signal-one { width: 110px; top: 38%; transform: rotate(8deg); }
.signal-two { width: 160px; top: 50%; transform: rotate(-2deg); }
.signal-three { width: 95px; top: 63%; transform: rotate(-12deg); }
.hero-footer { position: absolute; z-index: 3; bottom: 2rem; left: max(32px, calc((100vw - 1440px) / 2)); display: flex; gap: 1.5rem; color: rgba(255,255,255,.5); font-size: .72rem; text-transform: uppercase; letter-spacing: .11em; }
.hero-footer span + span::before { content: "·"; margin-right: 1.5rem; }

.section-pad { padding: 8rem max(32px, calc((100vw - 1320px) / 2)); }
.section-label { display: flex; gap: .8rem; align-items: center; color: #655f68; font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-label span { color: var(--purple); }
.manifesto { display: grid; grid-template-columns: minmax(170px, .8fr) minmax(0, 3.2fr); align-items: start; gap: 4rem; padding-top: 5.5rem; padding-bottom: 5.5rem; border-bottom: 1px solid var(--line); }
.manifesto > .section-label { align-self: start; padding-top: .55rem; }
.manifesto-copy { max-width: 900px; }
.display-copy { margin: 0; font-size: clamp(2.5rem, 3.45vw, 3.9rem); line-height: 1.03; letter-spacing: -.042em; }
.display-copy em { font-family: inherit; color: var(--purple); font-style: italic; font-weight: inherit; }
.body-copy { max-width: 590px; margin: 2rem 0 0 min(18%, 160px); color: #5e5861; font-size: clamp(.98rem, 1.1vw, 1.08rem); }

.communities { background: var(--paper-bright); }
.section-heading { display: grid; grid-template-columns: 1fr 3fr; gap: 4rem; margin-bottom: 4.2rem; }
.section-heading h2, .partners h2 { margin: 0; font-size: clamp(3rem, 5.7vw, 6.6rem); line-height: .9; letter-spacing: -.055em; font-weight: 600; }
.section-heading p { max-width: 560px; color: #655f68; font-size: 1.05rem; }
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.community-card { min-height: 610px; padding: 1.5rem; display: flex; flex-direction: column; overflow: hidden; position: relative; border-right: 1px solid var(--line); }
.community-card:last-child { border-right: 0; }
.card-topline { position: relative; z-index: 2; display: flex; justify-content: space-between; font-size: .69rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card-logo-wrap { flex: 1; min-height: 290px; display: grid; place-items: center; padding: 1.6rem 0; }
.card-logo-wrap img { width: min(72%, 300px); height: auto; filter: drop-shadow(0 22px 34px rgba(0,0,0,.28)); transition: transform .35s ease, filter .35s ease; }
.community-card:hover .card-logo-wrap img { transform: translateY(-5px) scale(1.025); filter: drop-shadow(0 28px 42px rgba(0,0,0,.36)); }
.card-copy { position: relative; z-index: 2; margin-top: auto; }
.card-copy h3 { margin: 0 0 .6rem; font-size: 1.65rem; letter-spacing: -.035em; }
.card-copy p { max-width: 360px; margin: 0 0 1.5rem; color: rgba(255,255,255,.62); font-size: .92rem; }
.card-link { font-size: .78rem; font-weight: 800; display: inline-flex; gap: .5rem; border-bottom: 1px solid currentColor; padding-bottom: .15rem; }
.card-ciso {
  background:
    radial-gradient(circle at 50% 31%, #bf5700 0%, #823b00 36%, #391a00 70%, #200f00 100%);
  color: white;
}
.card-caio {
  background:
    radial-gradient(circle at 50% 31%, #df0053 0%, #820030 38%, #390015 72%, #20000c 100%);
  color: white;
}
.card-ciso .card-topline, .card-caio .card-topline { text-shadow: 0 1px 12px rgba(0,0,0,.38); }
.card-next { background: #e9e3d9; }
.card-next .card-copy p { color: #686167; }
.next-list { display: flex; flex-wrap: wrap; gap: .55rem; margin: auto 0; }
.next-list span { padding: .55rem .8rem; border: 1px solid rgba(23,21,26,.24); border-radius: 99px; font-family: inherit; font-style: normal; font-size: 1rem; }

.format { background: var(--ink); color: white; display: grid; grid-template-columns: .95fr 1.05fr; gap: 8rem; }
.section-label-light { color: rgba(255,255,255,.46); }
.section-label-light span { color: #c7a5dd; }
.format h2 { margin: 2.4rem 0 0; font-size: clamp(3.8rem, 6.7vw, 7.7rem); line-height: .88; letter-spacing: -.055em; font-weight: 600; }
.format h2 em { font-family: inherit; color: #c7a5dd; font-style: italic; font-weight: inherit; }
.principle-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.18); }
.principle-list li { display: grid; grid-template-columns: 96px 1fr; gap: 1rem; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.principle-number { color: #c7a5dd; font-size: clamp(2.2rem, 3vw, 2.8rem); font-weight: 600; line-height: .9; letter-spacing: -.06em; }
.principle-list h3 { margin: -.25rem 0 .5rem; font-size: 1.55rem; letter-spacing: -.025em; }
.principle-list p { margin: 0; color: rgba(255,255,255,.55); max-width: 470px; }

.partners { background: var(--paper); }
.partners-card { min-height: 440px; padding: 3.75rem; display: grid; grid-template-columns: .72fr 1.28fr; gap: 4.5rem; background: var(--purple); color: white; }
.partner-intro { display: flex; flex-direction: column; justify-content: space-between; }
.partner-intro .section-label { color: rgba(255,255,255,.62); }
.partner-intro .section-label span { color: white; }
.partner-intro > p { max-width: 330px; margin: 5rem 0 0; color: rgba(255,255,255,.78); font-size: 1.2rem; line-height: 1.5; }
.partners-copy { padding-left: 4.5rem; border-left: 1px solid rgba(255,255,255,.25); }
.partners .partners-copy h2 { max-width: 760px; font-size: clamp(3rem, 4.8vw, 5.4rem); line-height: .94; color: white; }
.partners-copy > p { max-width: 700px; margin: 1.5rem 0 0; color: rgba(255,255,255,.72); font-size: 1.02rem; }
.partner-principles { max-width: 700px; list-style: none; margin: 2rem 0 2.25rem; padding: 0; border-top: 1px solid rgba(255,255,255,.22); }
.partner-principles li { display: grid; grid-template-columns: 42px 1fr; gap: .8rem; padding: .72rem 0; border-bottom: 1px solid rgba(255,255,255,.22); font-size: .88rem; font-weight: 600; }
.partner-principles span { color: #dfc4ef; font-size: .72rem; font-weight: 800; letter-spacing: .05em; }
.partner-actions { display: flex; gap: 1.4rem; align-items: center; }
.button-partner { background: white; color: var(--purple); }
.button-partner:hover { background: var(--paper-bright); }

.site-footer { background: #111014; color: white; padding: 5.5rem max(32px, calc((100vw - 1320px) / 2)) 2rem; }
.footer-main { min-height: 265px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4rem; }
.wordmark-footer { align-self: start; }
.footer-main > p { margin: 0; font-family: inherit; color: rgba(255,255,255,.68); font-size: clamp(1.35rem, 2vw, 1.8rem); font-weight: 600; line-height: 1.2; }
.footer-main nav { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; gap: .7rem; font-size: .85rem; }
.footer-legal { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; color: rgba(255,255,255,.4); font-size: .7rem; }
.footer-legal div { display: flex; gap: 1.3rem; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(2deg); } }

@media (max-width: 1000px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 165px; }
  .hero-copy { padding-right: 0; }
  .hero h1 { max-width: 820px; }
  .hero-mark { position: absolute; width: 440px; right: -145px; bottom: 55px; opacity: .5; }
  .hero-footer { display: none; }
  .manifesto, .section-heading { grid-template-columns: 1fr; gap: 2rem; }
  .community-grid { grid-template-columns: 1fr 1fr; }
  .community-card { min-height: 530px; }
  .community-card:nth-child(2) { border-right: 0; }
  .community-card:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); min-height: 430px; }
  .format { grid-template-columns: 1fr; gap: 4rem; }
  .partners-card { grid-template-columns: 1fr; gap: 3rem; }
  .partner-intro > p { margin-top: 3rem; }
  .partners-copy { padding: 3rem 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
}

@media (max-width: 680px) {
  .nav-shell { width: calc(100% - 32px); height: 78px; }
  .wordmark { font-size: .9rem; }
  .wordmark img { width: 40px; height: 40px; }
  .nav-cta { font-size: .72rem; padding: .62rem .82rem; }
  .nav-cta span { display: none; }
  .hero { min-height: 720px; padding: 135px 20px 70px; }
  .hero h1 { font-size: clamp(4rem, 20vw, 6.4rem); }
  .hero-lede { max-width: 92%; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .hero-mark { width: 360px; right: -175px; bottom: 45px; }
  .section-pad { padding: 5.5rem 20px; }
  .manifesto { gap: 2rem; padding-top: 4.25rem; padding-bottom: 4.25rem; }
  .manifesto > .section-label { padding-top: 0; }
  .display-copy { font-size: clamp(2.2rem, 9.4vw, 3rem); }
  .body-copy { margin: 1.65rem 0 0; }
  .section-heading { margin-bottom: 2.8rem; }
  .section-heading h2, .partners h2 { font-size: clamp(3.1rem, 16vw, 4.7rem); }
  .community-grid { grid-template-columns: 1fr; }
  .community-card, .community-card:nth-child(2) { min-height: 500px; border-right: 0; border-bottom: 1px solid var(--line); }
  .community-card:last-child { grid-column: auto; border-top: 0; border-bottom: 0; min-height: 420px; }
  .format h2 { font-size: clamp(3.7rem, 18vw, 5.5rem); }
  .principle-list li { grid-template-columns: 70px 1fr; }
  .principle-number { font-size: 2rem; }
  .partners-card { min-height: 0; padding: 2rem 1.25rem 2.25rem; }
  .partners .partners-copy h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .site-footer { padding: 4rem 20px 1.5rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3.5rem; }
  .footer-main nav { justify-self: start; align-items: flex-start; }
  .footer-legal { flex-direction: column; gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
