:root {
  --midnight: #07131d;
  --midnight-soft: #0c1b27;
  --ink: #17202a;
  --ivory: #f6f3ee;
  --ivory-deep: #eee8df;
  --gold: #c5a46d;
  --gold-light: #d7bd91;
  --muted-dark: #5d6265;
  --muted-light: rgba(246, 243, 238, .76);
  --line-dark: rgba(7, 19, 29, .14);
  --line-light: rgba(197, 164, 109, .28);
  --max-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--midnight); }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  padding: 10px 16px;
  background: var(--gold);
  color: var(--midnight);
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 35fr) minmax(0, 65fr);
  min-height: 620px;
  background: var(--midnight);
  color: var(--ivory);
  overflow: hidden;
}

.hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(46px, 5vw, 78px) clamp(32px, 4.25vw, 68px);
  background:
    radial-gradient(circle at 18% 16%, rgba(197,164,109,.09), transparent 34%),
    var(--midnight);
}


.hero__logo {
  width: min(250px, 68%);
  height: auto;
  margin: 0 0 clamp(20px, 2.5vh, 30px);
  filter: drop-shadow(0 18px 42px rgba(0,0,0,.2));
}

.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.story h2,
.founding h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -.025em;
}


.hero__intro {
  max-width: 500px;
  margin: 0;
  color: var(--muted-light);
  font-size: clamp(.94rem, 1vw, 1.05rem);
  line-height: 1.75;
}

.hero__location {
  margin: 24px 0 26px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050b10;
  overflow: hidden;
  isolation: isolate;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7,19,29,.22) 0%, rgba(7,19,29,.05) 10%, transparent 22%);
  pointer-events: none;
}

.hero__visual img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 32px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--midnight);
  text-decoration: none;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); background: var(--gold-light); }
.button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(246,243,238,.42);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scroll 1.8s ease-in-out infinite;
}
@keyframes scroll {
  0%, 100% { opacity: .3; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 12px); }
}

.story {
  padding: clamp(88px, 11vw, 164px) 28px;
  background: var(--ivory);
}
.story__inner,
.pillars__inner,
.founding__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}
.story__grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}
.story h2 {
  max-width: 760px;
  color: var(--midnight);
  font-size: clamp(3.2rem, 6vw, 6.25rem);
  line-height: .96;
}
.story__copy {
  padding-top: 12px;
  color: var(--muted-dark);
  font-size: 1rem;
}
.story__copy p { margin: 0 0 24px; }
.story__copy .lead {
  color: var(--midnight);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  line-height: 1.2;
}


.founding {
  padding: clamp(90px, 11vw, 160px) 28px;
  background: var(--midnight);
  color: var(--ivory);
}
.founding__inner {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}
.section-label--light { color: var(--gold-light); }
.founding h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: .96;
}
.founding__copy > p:not(.section-label) {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--muted-light);
}

.signup {
  padding: clamp(28px, 4.2vw, 54px);
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.025);
}
.signup label { display: block; margin-bottom: 24px; }
.signup label span {
  display: block;
  margin-bottom: 9px;
  color: rgba(246,243,238,.68);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.signup input {
  width: 100%;
  height: 54px;
  border: 0;
  border-bottom: 1px solid rgba(246,243,238,.35);
  border-radius: 0;
  background: transparent;
  color: var(--ivory);
  padding: 0 4px;
}
.signup input:focus { border-bottom-color: var(--gold); outline: 0; }
.button--full { width: 100%; border: 0; }
.form-note {
  margin: 16px 0 0;
  color: rgba(246,243,238,.55);
  font-size: .76rem;
  text-align: center;
}
.form-note.error { color: #efb8b8; }
.form-note.success { color: var(--gold-light); }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 34px clamp(28px, 5vw, 76px);
  background: #040c12;
  color: rgba(246,243,238,.58);
  font-size: .74rem;
  letter-spacing: .04em;
}
footer p { margin: 0; }
.footer__tagline { color: rgba(246,243,238,.74); }
.footer__links { display: flex; gap: 28px; }
.footer__links a { text-decoration: none; }
.footer__links a:hover { color: var(--gold); }
.footer__copyright { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
    min-height: 590px;
  }
  .hero__copy { padding-left: 36px; padding-right: 34px; }
  .hero__logo { width: min(225px, 66%); }
  .hero h1 { font-size: clamp(2.8rem, 4.8vw, 4.1rem); }
  .story__grid { gap: 60px; }
}

@media (max-width: 850px) {
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .hero__visual {
    order: 1;
    height: auto;
    min-height: 0;
  }
  .hero__visual::before {
    background: linear-gradient(180deg, transparent 62%, var(--midnight) 100%);
  }
  .hero__visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }
  .hero__copy {
    order: 2;
    align-items: center;
    padding: 42px 24px 82px;
    text-align: center;
  }
  .hero__logo { width: min(245px, 68vw); margin-bottom: 28px; }
  .hero h1 { font-size: clamp(3rem, 10vw, 4.5rem); }
  .hero__intro { max-width: 620px; }
  .scroll-cue { display: none; }

  .story__grid,
  .founding__inner { grid-template-columns: 1fr; }
  .story__grid { gap: 38px; }
  .story h2 { max-width: 760px; }
  .pillars__heading { display: block; }
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar {
    min-height: 0;
    padding: 34px 0 40px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .pillar:last-child { border-bottom: 0; }
  .pillar h3 { margin-top: 30px; }
  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer__copyright { text-align: center; }
}

@media (max-width: 560px) {
  .hero__visual { height: auto; min-height: 0; }
  .hero__visual img { width: 100%; height: auto; object-position: center center; }
  .hero__copy { padding-top: 34px; }
  .hero__logo { width: min(285px, 76vw); }
    .hero__intro { font-size: .94rem; }

  .hero__location {
    margin: 20px 0 22px;
    font-size: .67rem;
    letter-spacing: .15em;
  }
  .button { width: 100%; padding-left: 18px; padding-right: 18px; }
  .story, .pillars, .founding { padding-left: 20px; padding-right: 20px; }
  .story h2 { font-size: clamp(2.9rem, 14vw, 4rem); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .signup { padding: 28px 22px; }
}

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


.story__inner{text-align:center;}
.story h2{margin:0 auto;max-width:850px;}
.founding-benefits{
color:rgba(246,243,238,.76);
margin:24px 0 28px 1.2rem;
padding:0;
}
.founding-benefits li{margin-bottom:10px;}


/* Add this block to the end of your existing styles-v41.css */

/* Founding member preference questions */
.checkbox-group {
  min-width: 0;
  margin: 4px 0 30px;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 12px;
}

.checkbox-group legend {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
  color: rgba(246, 243, 238, .78);
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.checkbox-group label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  margin: 0;
  padding: 11px 13px;
  border: 1px solid rgba(197, 164, 109, .23);
  background: rgba(255, 255, 255, .018);
  color: rgba(246, 243, 238, .8);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.checkbox-group label:hover {
  border-color: rgba(197, 164, 109, .58);
  background: rgba(197, 164, 109, .055);
  transform: translateY(-1px);
}

.checkbox-group label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(197, 164, 109, .12);
}

.checkbox-group input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.checkbox-group label span {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  color: inherit;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .01em;
  text-transform: none;
}

.checkbox-group label span::before {
  content: "";
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-right: 10px;
  border: 1px solid rgba(246, 243, 238, .42);
  background: transparent;
  box-shadow: inset 0 0 0 3px transparent;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.checkbox-group input[type="checkbox"]:checked + span::before {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--midnight);
}

.checkbox-group input[type="checkbox"]:focus-visible + span {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}

.button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.form-note {
  min-height: 1.3em;
}

@media (max-width: 560px) {
  .checkbox-group {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .checkbox-group label {
    min-height: 46px;
    padding: 10px 12px;
  }
}
