@font-face { font-family: "Montserrat"; src: url("/assets/Montserrat-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("/assets/Montserrat-SemiBold.ttf") format("truetype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("/assets/Montserrat-Bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/assets/Manrope-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/assets/Manrope-Medium.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/assets/Manrope-SemiBold.ttf") format("truetype"); font-weight: 600; font-display: swap; }

:root {
  --ink: #100b1d;
  --midnight: #0b0714;
  --plum: #211131;
  --violet: #7b3cff;
  --pink: #ef4fa8;
  --coral: #ff795e;
  --orange: #ffae54;
  --paper: #fbf9fd;
  --paper-muted: #ebe6ef;
  --text-on-dark: #fffafd;
  --text-muted: #d9d0df;
  --text-on-light: #251d2c;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(38, 23, 48, 0.14);
  --content: 1160px;
  --reading: 760px;
  --radius: 8px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--midnight);
  color: var(--text-on-dark);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 200; top: 10px; left: 10px; transform: translateY(-160%); padding: 10px 14px; background: white; color: black; border-radius: 4px; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(to bottom, rgba(8, 5, 15, 0.78), rgba(8, 5, 15, 0.08));
}
.site-header--solid { position: relative; background: #120b1f; }
.nav-shell { max-width: var(--content); min-height: 76px; margin: auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 112px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 0.92rem; font-weight: 600; }
.site-nav a { text-decoration: none; color: rgba(255, 255, 255, 0.88); }
.site-nav a:hover { color: white; }
.status-label { border: 1px solid rgba(255, 174, 84, 0.55); color: #ffd2a1; padding: 6px 10px; border-radius: 999px; font-size: 0.75rem; text-transform: uppercase; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: white; font-size: 1.6rem; cursor: pointer; }

.hero {
  min-height: clamp(800px, 100svh, 1080px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #24142d;
}
.hero__image { position: absolute; z-index: -3; top: 0; right: 0; width: 78%; height: 100%; object-fit: cover; object-position: 50% 56%; }
.hero::before { content: ""; position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, #0b0714 0%, rgba(11, 7, 20, 0.96) 22%, rgba(11, 7, 20, 0.62) 49%, rgba(11, 7, 20, 0.08) 78%), linear-gradient(0deg, rgba(8, 4, 14, 0.86) 0%, transparent 44%); }
.hero__inner { width: min(var(--content), calc(100% - 48px)); margin: 0 auto; padding: 150px 0 64px; }
.hero__copy { max-width: 650px; }
.hero__mark { width: 86px; height: 86px; object-fit: contain; margin-bottom: 26px; filter: drop-shadow(0 0 24px rgba(210, 70, 255, 0.38)); }
.eyebrow { margin: 0 0 14px; font-size: 0.77rem; font-weight: 600; color: #ffd4a7; text-transform: uppercase; letter-spacing: 0.12em; }
h1, h2, h3 { font-family: "Montserrat", system-ui, sans-serif; letter-spacing: 0; line-height: 1.12; }
h1 { margin: 0; font-size: clamp(3.3rem, 8vw, 7.5rem); font-weight: 600; }
.hero__tagline { margin: 10px 0 20px; font-family: "Montserrat", system-ui, sans-serif; font-size: clamp(1.5rem, 3vw, 2.55rem); line-height: 1.2; }
.hero__summary { max-width: 590px; margin: 0; font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255, 255, 255, 0.9); }
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px; font-weight: 600; text-decoration: none; }
.button--primary { background: linear-gradient(115deg, var(--violet), var(--pink), var(--orange)); color: white; box-shadow: 0 12px 36px rgba(160, 46, 191, 0.32); }
.button--secondary { border-color: rgba(255, 255, 255, 0.38); background: rgba(9, 6, 15, 0.32); backdrop-filter: blur(14px); }

.band { padding: 94px 24px; }
.band__inner { max-width: var(--content); margin: auto; }
.band--light { color: var(--text-on-light); background: var(--paper); }
.band--ink { background: #110a1d; }
.band--violet { background: linear-gradient(140deg, #29113b, #171028 54%, #28121d); }
.section-heading { max-width: 720px; margin-bottom: 50px; }
.section-heading h2 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3.5rem); }
.section-heading p { margin: 0; font-size: 1.08rem; color: inherit; opacity: 0.76; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-light); }
.step { padding: 34px 34px 12px 0; border-right: 1px solid var(--line-light); }
.step + .step { padding-left: 34px; }
.step:last-child { border-right: 0; }
.step__number { display: block; margin-bottom: 26px; color: #9847d9; font-family: "Montserrat"; font-size: 0.85rem; font-weight: 700; }
.step h3 { margin: 0 0 12px; font-size: 1.25rem; }
.step p { margin: 0; color: #62586b; }

.statement { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: 80px; }
.statement h2 { margin: 0; max-width: 760px; font-size: clamp(2.2rem, 5vw, 4.8rem); }
.statement__points { display: grid; gap: 20px; }
.statement__point { padding-top: 16px; border-top: 1px solid var(--line-dark); }
.statement__point strong { display: block; font-family: "Montserrat"; }
.statement__point span { color: var(--text-muted); font-size: 0.94rem; }

.stake-story { overflow: hidden; background: linear-gradient(145deg, #120b1d 0%, #27112d 52%, #35180f 100%); }
.stake-story__intro { display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: end; gap: 80px; }
.stake-story__intro h2 { max-width: 680px; margin: 0; font-size: clamp(2.4rem, 5.2vw, 4.9rem); }
.stake-story__lead { max-width: 540px; }
.stake-story__lead p { margin: 0; color: rgba(255, 255, 255, 0.86); font-size: 1.05rem; }
.stake-story__lead p + p { margin-top: 16px; color: #e8dce9; }
.stake-path { margin: 72px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--line-dark); }
.stake-path li { min-height: 124px; padding: 24px 24px 20px 0; border-right: 1px solid var(--line-dark); }
.stake-path li + li { padding-left: 24px; }
.stake-path li:last-child { border-right: 0; }
.stake-path span { display: block; margin-bottom: 14px; color: #ffac70; font-family: "Montserrat"; font-size: 0.78rem; font-weight: 700; }
.stake-path strong { display: block; max-width: 190px; font-family: "Montserrat"; font-size: 1rem; line-height: 1.35; }
.stake-definitions { margin: 28px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.stake-definitions div { margin: 0; padding: 4px 0 4px 18px; border-left: 2px solid rgba(255, 174, 84, 0.7); }
.stake-definitions dt { font-family: "Montserrat"; font-weight: 600; }
.stake-definitions dd { margin: 3px 0 0; color: var(--text-muted); }
.stake-outcomes { margin-top: 54px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stake-outcome { min-height: 250px; padding: 34px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(8, 5, 14, 0.26); backdrop-filter: blur(12px); }
.stake-outcome--kept { border-top-color: rgba(255, 174, 84, 0.86); }
.stake-outcome--broken { border-top-color: rgba(239, 79, 168, 0.86); }
.stake-outcome h3 { margin: 0 0 14px; font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
.stake-outcome > p:last-child { margin: 0; max-width: 510px; color: var(--text-muted); }
.charitable-intent { margin-top: 24px; padding: 42px 0 8px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; border-top: 1px solid var(--line-dark); }
.charitable-intent h3 { max-width: 520px; margin: 0; font-size: clamp(1.7rem, 3vw, 2.7rem); }
.charitable-intent > div:last-child > p { margin: 0; color: rgba(255, 255, 255, 0.88); }
.charitable-intent .charitable-intent__status { margin-top: 14px; color: #ffd0b0; font-size: 0.92rem; }

.photo-band { min-height: clamp(960px, 90vw, 1600px); position: relative; display: grid; align-items: start; overflow: hidden; isolation: isolate; background: #0b0714; }
.photo-band img { position: absolute; z-index: -2; top: 0; right: 0; width: 72%; height: 100%; object-fit: cover; object-position: 50% 82%; }
.photo-band::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, #0b0714 0%, rgba(11, 7, 20, 0.96) 24%, rgba(11, 7, 20, 0.52) 50%, rgba(11, 7, 20, 0.04) 78%), linear-gradient(180deg, rgba(8, 5, 14, 0.48), transparent 48%, rgba(8, 5, 14, 0.24)); }
.photo-band__copy { width: min(var(--content), calc(100% - 48px)); max-width: var(--content); margin: 0 auto; padding-top: clamp(84px, 8vw, 132px); padding-bottom: 72px; }
.photo-band__copy h2 { max-width: 680px; margin: 0 0 14px; font-size: clamp(2.2rem, 5vw, 4.4rem); }
.photo-band__copy p { max-width: 600px; margin: 0; font-size: 1.1rem; color: rgba(255, 255, 255, 0.88); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split h2 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3.5rem); }
.split p { color: var(--text-muted); }
.feature-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 16px; }
.feature-list li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line-dark); }
.feature-list .icon { color: #ff9d70; font-weight: 700; }

.status-band { background: #faedf6; color: #2b1b2d; }
.status-layout { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.status-layout h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.4rem); }
.status-layout p { margin: 0; max-width: 680px; color: #6a5068; }
.status-mark { flex: 0 0 auto; width: 104px; height: 104px; object-fit: contain; }

.legal-hero { background: linear-gradient(135deg, #261335, #100a1b 58%, #28141d); padding: 90px 24px 70px; }
.legal-hero__inner { max-width: var(--reading); margin: auto; }
.legal-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
.legal-hero p { max-width: 650px; margin: 16px 0 0; color: var(--text-muted); font-size: 1.08rem; }
.legal-content { background: var(--paper); color: var(--text-on-light); padding: 76px 24px 110px; }
.legal-content article { max-width: var(--reading); margin: auto; }
.legal-content h2 { margin: 48px 0 14px; font-size: 1.55rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 28px 0 8px; font-size: 1.08rem; }
.legal-content p, .legal-content li { color: #514858; }
.legal-content a { color: #6d2ea2; }
.legal-content .updated { color: #776d7d; font-size: 0.9rem; }
.legal-content .notice { margin: 28px 0; padding: 18px 20px; border-left: 3px solid #b9479e; background: #f3eaf4; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 32px; }
.contact-item { padding: 22px 0; border-top: 1px solid var(--line-light); }
.contact-item h2 { margin: 0 0 8px; font-size: 1.15rem; }
.contact-item p { margin: 0; }

.join-shell { min-height: calc(100svh - 76px); display: grid; align-items: center; position: relative; overflow: hidden; isolation: isolate; padding: 80px 24px; }
.join-shell::before { content: ""; position: absolute; z-index: -2; inset: 0; background: url("/assets/vowr-together.jpg") center 44% / cover no-repeat; }
.join-shell::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(10, 6, 16, 0.9), rgba(10, 6, 16, 0.48)); }
.join-content { width: min(620px, 100%); margin-left: max(0px, calc((100vw - var(--content)) / 2)); }
.join-content img { width: 74px; height: 74px; object-fit: contain; margin-bottom: 26px; }
.join-content h1 { font-size: clamp(2.5rem, 6vw, 5.2rem); }
.join-content p { font-size: 1.08rem; color: rgba(255, 255, 255, 0.9); }

.site-footer { border-top: 1px solid var(--line-dark); background: #09060f; padding: 54px 24px 34px; }
.footer-grid { max-width: var(--content); margin: auto; display: grid; grid-template-columns: 1fr auto; gap: 44px; }
.footer-brand img { width: 118px; margin-bottom: 16px; }
.footer-brand p { margin: 4px 0; color: #bfb6c6; font-size: 0.9rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(110px, 1fr)); gap: 10px 30px; align-content: start; }
.footer-links a { color: #ddd4e3; text-decoration: none; font-size: 0.9rem; }
.footer-bottom { max-width: var(--content); margin: 42px auto 0; padding-top: 22px; border-top: 1px solid var(--line-dark); color: #8f8598; font-size: 0.8rem; }

@media (max-width: 800px) {
  .nav-shell { min-height: 68px; padding: 0 18px; }
  .brand img { width: 98px; }
  .menu-button { display: inline-grid; place-items: center; }
  .site-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; padding: 18px 24px 24px; background: rgba(14, 8, 23, 0.98); border-bottom: 1px solid var(--line-dark); }
  .site-nav[data-open="true"] { display: grid; gap: 18px; }
  .status-label { width: max-content; }
  .hero { min-height: max(800px, 100svh); }
  .hero__image { left: 0; width: 100%; object-position: 50% 51%; }
  .hero::before { background: linear-gradient(0deg, rgba(8, 4, 14, 0.94) 0%, rgba(8, 4, 14, 0.24) 62%, rgba(8, 4, 14, 0.18) 82%, rgba(8, 4, 14, 0.34)); }
  .hero__inner { width: calc(100% - 36px); padding: 112px 0 48px; }
  .hero__copy { max-width: 540px; }
  .hero__mark { width: 66px; height: 66px; margin-bottom: 18px; }
  h1 { font-size: clamp(3rem, 16vw, 5.3rem); }
  .band { padding: 70px 20px; }
  .steps, .statement, .split, .stake-story__intro, .charitable-intent { grid-template-columns: 1fr; gap: 36px; }
  .step { border-right: 0; padding: 26px 0; border-bottom: 1px solid var(--line-light); }
  .step + .step { padding-left: 0; }
  .statement { gap: 44px; }
  .stake-path { margin-top: 52px; grid-template-columns: repeat(2, 1fr); }
  .stake-path li { min-height: 110px; border-bottom: 1px solid var(--line-dark); }
  .stake-path li:nth-child(2) { border-right: 0; }
  .stake-path li:nth-child(3), .stake-path li:nth-child(4) { border-bottom: 0; }
  .stake-path li:nth-child(odd) { padding-left: 0; }
  .stake-definitions, .stake-outcomes { grid-template-columns: 1fr; }
  .stake-outcome { min-height: 0; padding: 28px 24px; }
  .charitable-intent { gap: 24px; padding-top: 34px; }
  .photo-band { min-height: max(880px, 110svh); }
  .photo-band img { left: 0; width: 100%; object-position: 50% 72%; }
  .photo-band::after { background: linear-gradient(180deg, rgba(8, 5, 14, 0.78) 0%, rgba(8, 5, 14, 0.34) 34%, transparent 62%, rgba(8, 5, 14, 0.2)); }
  .photo-band__copy { width: calc(100% - 40px); padding-top: 68px; padding-bottom: 48px; }
  .status-layout { align-items: flex-start; flex-direction: column-reverse; }
  .status-mark { width: 78px; height: 78px; }
  .contact-grid { grid-template-columns: 1fr; }
  .join-content { margin: 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (min-width: 801px) and (max-width: 1100px) {
  .hero__image { width: 82%; object-position: 50% 52%; }
  .photo-band img { width: 78%; object-position: 50% 84%; }
}

@media (min-width: 1440px) {
  .hero__image { width: 74%; object-position: 50% 55%; }
  .photo-band img { width: 70%; object-position: 50% 82%; }
}

@media (max-width: 430px) {
  .hero__image { object-position: 50% 50%; }
  .photo-band img { object-position: 50% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
