:root {
  --ink: #101410;
  --muted: #5f675e;
  --paper: #fbfaf5;
  --porcelain: #f2efe5;
  --green: #1f3b29;
  --green-2: #0f2016;
  --gold: #c79a45;
  --gold-light: #f1cf7c;
  --black: #070907;
  --line: rgba(16, 20, 16, 0.14);
  --shadow: 0 26px 80px rgba(7, 9, 7, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 52px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 245, 0.96);
  box-shadow: 0 14px 34px rgba(7, 9, 7, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  min-width: 235px;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(199, 154, 69, 0.76);
  border-radius: 999px;
  color: var(--gold-light);
  font-weight: 900;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  color: var(--green);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.92rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.68rem;
  opacity: 0.72;
}

.nav {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.88;
}

.nav-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 69, 0.72);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--gold-light);
  background: rgba(199, 154, 69, 0.08);
  box-shadow: 0 10px 26px rgba(199, 154, 69, 0.12);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  color: var(--gold);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 66% 18%;
  filter: saturate(0.9) contrast(1.05);
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 9, 7, 0.96), rgba(7, 9, 7, 0.82) 42%, rgba(7, 9, 7, 0.36) 74%),
    linear-gradient(0deg, rgba(7, 9, 7, 0.72), rgba(7, 9, 7, 0.08) 54%);
}

.hero-layout,
.movement-band,
.roadmap-section,
.proof-video,
.events-section,
.resources-section,
.founder-section,
.final-cta,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  padding: 124px 0 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.who-section .eyebrow,
.roadmap-copy .eyebrow,
.events-copy .eyebrow,
.resources-copy .eyebrow,
.offers .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: clamp(0.84rem, 1vw, 1rem);
  letter-spacing: 0.08em;
  animation: label-rise 700ms ease both;
}

.who-section .eyebrow::before,
.roadmap-copy .eyebrow::before,
.events-copy .eyebrow::before,
.resources-copy .eyebrow::before,
.offers .eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 18px rgba(199, 154, 69, 0.24);
}

.who-section .section-heading h2,
.roadmap-copy h2,
.events-copy h2,
.resources-copy h2,
.offers .section-heading h2 {
  font-size: clamp(2.65rem, 5.2vw, 5.25rem);
}

.gold-shimmer-text {
  display: block;
  color: var(--gold);
  background: linear-gradient(100deg, #9e6f22 0%, #f1cf7c 22%, #fff2bd 42%, #c79a45 62%, #8d641d 100%);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(199, 154, 69, 0.26));
  animation: gold-title-shine 4.2s ease-in-out infinite;
  -webkit-text-fill-color: transparent;
}

@keyframes label-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gold-title-shine {
  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.hero .eyebrow {
  color: var(--gold-light);
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 6.3vw, 6.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.22;
}

.hero-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary,
.button-gold {
  color: var(--black);
  border-color: rgba(255, 241, 189, 0.72);
  background: linear-gradient(135deg, #b98727 0%, #f0cf7c 28%, #fff0b8 50%, #c79a45 74%, #8d641d 100%);
  background-size: 220% auto;
  box-shadow:
    0 0 0 1px rgba(240, 207, 124, 0.34),
    0 16px 44px rgba(199, 154, 69, 0.28);
  animation: gold-pulse 2.9s ease-in-out infinite;
}

.button-primary::after,
.button-gold::after,
.nav-cta::after,
.offer-card-feature a::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -70%;
  z-index: 0;
  width: 58%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  animation: cta-sweep 3.15s ease-in-out infinite;
  pointer-events: none;
}

.button-primary:hover,
.button-gold:hover {
  background-position: 100% center;
  box-shadow:
    0 0 0 2px rgba(255, 241, 189, 0.42),
    0 22px 62px rgba(199, 154, 69, 0.42);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: #fff;
  background: var(--green);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

@keyframes gold-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(240, 207, 124, 0.3),
      0 16px 44px rgba(199, 154, 69, 0.24);
  }

  50% {
    box-shadow:
      0 0 0 4px rgba(240, 207, 124, 0.14),
      0 22px 68px rgba(199, 154, 69, 0.42);
  }
}

@keyframes cta-sweep {
  0%,
  55% {
    left: -70%;
  }

  100% {
    left: 130%;
  }
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-strip span {
  border: 1px solid rgba(240, 207, 124, 0.32);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.proof-strip strong {
  color: var(--gold-light);
}

.hero-video-card {
  border: 1px solid rgba(240, 207, 124, 0.32);
  border-radius: 8px;
  padding: 14px;
  background: rgba(7, 9, 7, 0.76);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.hero-video-card p {
  margin: 12px 4px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
}

.video-frame,
.agent-video-frame {
  overflow: hidden;
  border: 1px solid rgba(240, 207, 124, 0.28);
  border-radius: 8px;
  background: #000;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.movement-band,
.ecosystem,
.roadmap-section,
.proof-video,
.who-section,
.offers,
.events-section,
.resources-section,
.future-section,
.testimonials-section,
.founder-section,
.final-cta {
  padding: clamp(66px, 8vw, 112px) clamp(18px, 4vw, 54px);
}

.movement-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 84px);
  background: var(--porcelain);
}

.movement-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
}

.ecosystem-grid,
.offer-grid,
.future-grid,
.testimonial-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 14px;
}

.ecosystem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ecosystem-grid article,
.offer-card,
.future-grid article,
.testimonial-grid figure,
.check-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.ecosystem-grid article {
  min-height: 230px;
  padding: 26px;
}

.ecosystem-grid span,
.offer-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 900;
}

.ecosystem-grid p,
.offer-card p,
.future-grid p,
.testimonial-grid blockquote,
.roadmap-copy p,
.resources-copy p,
.events-copy p,
.founder-copy p,
.proof-video p {
  color: var(--muted);
}

.roadmap-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f5ec, #fff);
  perspective: 1200px;
  --book-lift: 0px;
  --book-backdrop-lift: 0px;
  --book-rotate: -4deg;
  --book-backdrop-rotate: 4deg;
  --book-tilt-x: 0deg;
  --book-tilt-y: 0deg;
}

.workbook-visual {
  position: relative;
  display: grid;
  justify-items: center;
  transform-style: preserve-3d;
}

.workbook-visual::before {
  content: "";
  position: absolute;
  inset: 11% 4% -4% 18%;
  z-index: -1;
  border-radius: 8px;
  background: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(var(--book-backdrop-lift)) rotate(var(--book-backdrop-rotate));
  transition: transform 180ms ease;
}

.workbook-visual img {
  width: min(390px, 100%);
  border: 1px solid rgba(16, 20, 16, 0.16);
  border-radius: 8px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 28px 72px rgba(8, 10, 8, 0.2);
  transform:
    translate3d(0, var(--book-lift), 42px)
    rotateX(var(--book-tilt-y))
    rotateY(var(--book-tilt-x))
    rotateZ(var(--book-rotate));
  transform-origin: center;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
  will-change: transform;
}

.roadmap-section.is-active .workbook-visual img {
  box-shadow: 0 34px 86px rgba(8, 10, 8, 0.28);
}

.mini-grid,
.check-grid,
.event-list {
  display: grid;
  gap: 10px;
}

.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 28px;
}

.mini-grid span,
.event-list span {
  border: 1px solid rgba(16, 20, 16, 0.12);
  border-radius: 8px;
  padding: 13px 15px;
  background: #fff;
  font-weight: 900;
}

.proof-video,
.resources-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  color: #fff;
  background: var(--black);
}

.proof-video p,
.resources-section p {
  color: rgba(255, 255, 255, 0.72);
}

.agent-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.hub-review-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(66px, 8vw, 112px) clamp(18px, 4vw, 54px);
  background: linear-gradient(135deg, #f7f5ec, #fff);
}

.hub-review-copy {
  width: min(900px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(16, 20, 16, 0.12);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 55px rgba(8, 10, 8, 0.08);
}

.hub-review-copy p {
  color: var(--muted);
}

.hub-review-copy blockquote {
  margin: 28px 0 18px;
  border-left: 4px solid var(--gold);
  padding-left: 22px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}

.hub-review-copy strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.who-section {
  background: var(--paper);
}

.check-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-grid div {
  position: relative;
  min-height: 88px;
  padding: 24px 26px 24px 58px;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 14px 38px rgba(8, 10, 8, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.check-grid div:hover {
  border-color: rgba(199, 154, 69, 0.34);
  box-shadow: 0 18px 48px rgba(8, 10, 8, 0.09);
  transform: translateY(-2px);
}

.check-grid div::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 30px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(199, 154, 69, 0.14);
}

.offers {
  background: #edf2ea;
}

.offer-grid {
  grid-template-columns: 1.1fr 1.1fr 0.9fr;
}

.offer-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.offer-card-feature {
  color: #fff;
  border-color: rgba(240, 207, 124, 0.3);
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: var(--shadow);
}

.offer-card-feature p {
  color: rgba(255, 255, 255, 0.76);
}

.offer-card-feature a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
  padding: 14px 19px;
  color: var(--green);
  border: 1px solid rgba(255, 241, 189, 0.78);
  background: linear-gradient(135deg, #fffaf0 0%, #f0cf7c 42%, #fff0b8 58%, #d6ae5d 100%);
  box-shadow:
    0 0 0 1px rgba(240, 207, 124, 0.22),
    0 16px 44px rgba(0, 0, 0, 0.24),
    0 18px 50px rgba(199, 154, 69, 0.2);
  animation: gold-pulse 2.9s ease-in-out infinite;
}

.offer-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 2.4vw, 2.45rem);
}

.offer-card a {
  margin-top: auto;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.events-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.featured-event {
  background: linear-gradient(135deg, #fff, #f4f1e8);
}

.event-flyer-card {
  border: 1px solid rgba(16, 20, 16, 0.14);
  border-radius: 8px;
  padding: clamp(10px, 2vw, 16px);
  background: #fff;
  box-shadow: var(--shadow);
}

.event-flyer-card img {
  width: 100%;
  border-radius: 8px;
  object-fit: contain;
}

.event-tagline {
  margin-bottom: 18px;
  color: var(--green);
  font-size: clamp(1.16rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.25;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.event-details div,
.event-columns > div {
  border: 1px solid rgba(16, 20, 16, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.event-details div {
  min-height: 116px;
  padding: 18px;
}

.event-details span,
.event-columns h3 {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-details strong {
  display: block;
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  line-height: 1.08;
}

.event-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 28px;
}

.event-columns > div {
  padding: 22px;
}

.event-columns ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 800;
}

.event-columns li {
  position: relative;
  padding-left: 22px;
}

.event-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.resources-section {
  background: linear-gradient(135deg, var(--green-2), var(--green));
}

.resource-card {
  border: 1px solid rgba(240, 207, 124, 0.32);
  border-radius: 8px;
  padding: 30px;
  background: rgba(7, 9, 7, 0.45);
  box-shadow: var(--shadow);
}

.resource-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.free-label {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--black);
  background: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.future-section {
  background: var(--porcelain);
}

.future-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.future-grid article,
.testimonial-grid figure {
  margin: 0;
  padding: 28px;
}

.stars {
  margin-bottom: 14px;
  color: var(--gold);
  letter-spacing: 2px;
}

.testimonial-grid figcaption {
  margin-top: 18px;
  font-weight: 900;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.founder-section img {
  width: 100%;
  max-height: 620px;
  border: 1px solid rgba(16, 20, 16, 0.16);
  border-radius: 8px;
  padding: 8px;
  background: #fff;
  object-fit: cover;
  object-position: 50% 12%;
  box-shadow: var(--shadow);
}

.final-cta {
  text-align: center;
  color: #fff;
  background: var(--black);
}

.final-cta p {
  width: min(680px, 100%);
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta .hero-actions {
  justify-content: center;
}

.subpage-main {
  padding-top: 86px;
}

.about-hero,
.about-story,
.about-pillars,
.community-hero,
.community-grid,
.community-signup {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  padding: clamp(72px, 9vw, 128px) clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(135deg, var(--green-2), var(--green));
}

.about-copy p,
.community-hero p,
.community-signup p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.about-portrait {
  overflow: hidden;
  border: 1px solid rgba(240, 207, 124, 0.32);
  border-radius: 999px 999px 8px 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.about-portrait img {
  width: 100%;
  height: min(620px, 78vh);
  border-radius: 999px 999px 8px 8px;
  object-fit: cover;
  object-position: 50% 16%;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  padding: clamp(66px, 8vw, 112px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.about-story aside {
  align-self: start;
  border-radius: 8px;
  padding: 28px;
  color: #fff;
  background: var(--green);
  box-shadow: var(--shadow);
}

.about-story aside h2 {
  font-size: clamp(2rem, 3.2vw, 3.6rem);
}

.story-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 52px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 46px rgba(8, 10, 8, 0.08);
}

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

.story-card blockquote {
  margin: 28px 0 0;
  border-left: 4px solid var(--gold);
  padding-left: 22px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(18px, 4vw, 54px) clamp(66px, 8vw, 112px);
}

.about-pillars div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.1;
}

.community-hero {
  padding: clamp(82px, 10vw, 142px) clamp(18px, 4vw, 54px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 9, 7, 0.94), rgba(7, 9, 7, 0.74)),
    url("assets/jowanna-professional-white.jpg") center 18% / cover;
}

.community-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 14px;
  padding: clamp(66px, 8vw, 112px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.community-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.community-card-feature {
  color: #fff;
  border-color: rgba(240, 207, 124, 0.3);
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: var(--shadow);
}

.community-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.community-card h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

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

.community-card-feature p {
  color: rgba(255, 255, 255, 0.76);
}

.community-card a:not(.button) {
  margin-top: auto;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.community-signup {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  padding: clamp(66px, 8vw, 112px) clamp(18px, 4vw, 54px);
  color: #fff;
  background: var(--black);
}

.signup-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(240, 207, 124, 0.28);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signup-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.zoho-signup #customForm,
.zoho-signup .quick_form_21_css,
.zoho-signup .zoho-form-inner,
.zoho-signup #zcampaignOptinForm {
  width: 100%;
}

.zoho-signup .quick_form_21_css {
  border: 0;
  background: transparent;
  font-family: inherit;
}

.zoho-signup .zoho-form-inner {
  display: grid;
  gap: 16px;
}

.zoho-signup #SIGNUP_HEADING {
  color: var(--gold-light);
  background: linear-gradient(100deg, #9e6f22 0%, #f1cf7c 22%, #fff2bd 42%, #c79a45 62%, #8d641d 100%);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  filter: drop-shadow(0 0 18px rgba(199, 154, 69, 0.26));
  animation: gold-title-shine 4.2s ease-in-out infinite;
  -webkit-text-fill-color: transparent;
}

.zoho-signup #zcampaignOptinForm {
  display: grid;
  gap: 14px;
}

.zoho-signup .zoho-field {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.zoho-signup .zoho-field input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.zoho-signup .zoho-field input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.zoho-signup .zoho-submit {
  width: 100%;
  min-height: 58px;
  cursor: pointer;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  border-color: rgba(255, 241, 189, 0.82);
  background: linear-gradient(135deg, #a97720 0%, #f1cf7c 25%, #fff2bd 48%, #d1a24c 72%, #8d641d 100%);
  background-size: 240% auto;
  box-shadow:
    0 0 0 1px rgba(240, 207, 124, 0.42),
    0 0 26px rgba(241, 207, 124, 0.18),
    0 20px 58px rgba(199, 154, 69, 0.38);
}

.zoho-signup .zoho-submit:hover {
  background-position: 100% center;
  box-shadow:
    0 0 0 3px rgba(255, 241, 189, 0.2),
    0 0 34px rgba(241, 207, 124, 0.28),
    0 26px 72px rgba(199, 154, 69, 0.48);
  transform: translateY(-2px);
}

.zoho-signup #errorMsgDiv,
.zoho-signup #Zc_SignupSuccess {
  display: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.86rem;
}

.zoho-signup #errorMsgDiv {
  color: #ffd7d0;
  border: 1px solid rgba(255, 215, 208, 0.35);
  background: rgba(210, 0, 0, 0.14);
}

.zoho-signup #Zc_SignupSuccess {
  color: #dff4dc;
  border: 1px solid rgba(194, 225, 154, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.zoho-signup #zcOptinOverLay {
  display: none;
  text-align: center;
  background-color: #000;
  opacity: 0.5;
  z-index: 100;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100vh;
}

.zoho-signup #zcOptinSuccessPopup {
  display: none;
  z-index: 9999;
  width: min(800px, calc(100% - 36px));
  min-height: 260px;
  top: 84px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink);
  background-color: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 1px 10px rgba(66, 66, 66, 0.34);
  padding: 35px;
}

.zoho-signup #closeSuccess {
  position: absolute;
  top: -16px;
  right: -14px;
  z-index: 99999;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 28px clamp(18px, 4vw, 54px);
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 1100px) {
  .nav {
    gap: 11px;
    font-size: 0.7rem;
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .hero-layout,
  .movement-band,
  .roadmap-section,
  .proof-video,
  .hub-review-section,
  .events-section,
  .resources-section,
  .founder-section,
  .about-hero,
  .about-story,
  .community-signup {
    grid-template-columns: 1fr;
  }

  .ecosystem-grid,
  .offer-grid,
  .future-grid,
  .testimonial-grid,
  .event-details,
  .event-columns,
  .about-pillars,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding-top: 112px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    max-width: 190px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .button,
  .proof-strip span {
    width: 100%;
  }

  .mini-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .event-details div {
    min-height: auto;
  }

  .event-flyer-card {
    padding: 8px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .roadmap-section,
  .workbook-visual,
  .workbook-visual::before,
  .workbook-visual img,
  .who-section .eyebrow,
  .roadmap-copy .eyebrow,
  .events-copy .eyebrow,
  .resources-copy .eyebrow,
  .offers .eyebrow,
  .button-primary,
  .button-gold,
  .nav-cta::after,
  .offer-card-feature a,
  .offer-card-feature a::after,
  .button-primary::after,
  .button-gold::after,
  .gold-shimmer-text,
  .zoho-signup #SIGNUP_HEADING {
    animation: none;
    transform: none;
    transition: none;
  }
}
