:root {
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --bg: #f7f5ef;
  --text: #153d33;
  --muted: #577068;
  --green-950: #0f5f41;
  --green-900: #126b49;
  --green-700: #20a06d;
  --green-200: #c9f7b8;
  --green-150: #dcf9c9;
  --cream: #fffdf7;
  --mint: #ebffe1;
  --peach: #ffe7da;
  --pink: #ffd8eb;
  --sky: #daf7ff;
  --lavender: #6958e8;
  --lavender-soft: #7b68f0;
  --line: rgba(21, 61, 51, 0.1);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --shadow: 0 22px 52px rgba(24, 41, 34, 0.12);
  --section-space: 88px;
  --container: min(1180px, calc(100% - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 247, 184, 0.68), transparent 26rem),
    radial-gradient(circle at top right, rgba(32, 160, 109, 0.1), transparent 22rem),
    linear-gradient(180deg, #f7f5ef 0%, #fbfaf6 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-glow {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
  opacity: 0.4;
  z-index: -1;
}

.page-glow-left {
  top: -6rem;
  left: -8rem;
  background: rgba(201, 247, 184, 0.8);
}

.page-glow-right {
  top: 18rem;
  right: -9rem;
  background: rgba(123, 104, 240, 0.12);
}

.site-header,
.section,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  margin-top: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 247, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(19, 43, 35, 0.08);
}

.brand,
.header-actions,
.hero-actions,
.membership-buttons,
.cta-band-actions,
.dashboard-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  flex-shrink: 0;
}

.header-actions {
  justify-content: flex-end;
  min-width: 0;
}

.header-user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.header-user-copy {
  display: grid;
  min-width: 0;
  text-align: right;
}

.header-user-copy strong {
  font-size: 0.96rem;
  color: var(--green-950);
}

.header-user-copy span {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.35;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 4px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy span {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-900);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius-pill);
  background: #101010;
  color: #fff;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 24px rgba(16, 16, 16, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(16, 16, 16, 0.18);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.74);
  color: var(--green-950);
  border: 1px solid rgba(21, 61, 51, 0.12);
  box-shadow: none;
}

.button-soft {
  background: rgba(255, 255, 255, 0.54);
  color: var(--green-900);
  border: 1px solid rgba(21, 61, 51, 0.08);
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.button-with-icon {
  justify-content: center;
}

.button-icon {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.eyebrow,
.micro-label,
.footer-title {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
.footer-title {
  color: var(--green-900);
}

.micro-label {
  color: var(--soil, #7b4f2c);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.8);
}

.section-intro,
.hero-copy {
  max-width: 620px;
}

.section-intro h2,
.hero-copy h1,
.story-copy h2,
.location-story-copy h2,
.about-column h2,
.allies-column h2,
.trust-header h2,
.cta-band-shell h2,
.feature-card h3,
.conversion-card h3,
.event-card h3,
.membership-copy h3,
.google-card h3,
.auth-card h3,
.dashboard-card h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.92;
  max-width: 9.5ch;
}

.section-intro h2,
.story-copy h2,
.location-story-copy h2,
.about-column h2,
.allies-column h2,
.trust-header h2,
.cta-band-shell h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
}

.hero-text,
.section-intro p,
.story-copy p,
.feature-card p,
.location-story-copy p,
.story-list li,
.quote-bubble p,
.person-card p,
.ally-card p,
.trust-header p,
.conversion-card p,
.event-card p,
.membership-copy p,
.google-auth-status,
.storage-note,
.summary-card span,
.site-footer p,
.footer-columns a {
  color: var(--muted);
  line-height: 1.65;
}

.hero-shell {
  padding-top: 30px;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
  gap: 28px;
  padding: 48px 40px 42px;
  border-radius: 0 0 58px 58px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.38), transparent 18rem),
    linear-gradient(180deg, var(--green-150), var(--green-200));
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 340px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.identity-chip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  width: min(100%, 780px);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.identity-chip img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px;
}

.identity-chip strong {
  display: block;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 56ch;
  font-size: 1.06rem;
}

.hero-actions {
  flex-wrap: nowrap;
  margin-top: 24px;
  align-items: stretch;
}

.hero-actions .button {
  white-space: nowrap;
}

.hero-media {
  display: grid;
  align-items: center;
}

.hero-media-card {
  position: relative;
  z-index: 1;
}

.media-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-media-frame {
  min-height: 360px;
  padding: 26px;
  border-radius: 34px;
  background: linear-gradient(140deg, rgba(15, 95, 65, 0.22), rgba(255, 255, 255, 0.65));
  border: 2px solid rgba(21, 61, 51, 0.1);
  box-shadow: var(--shadow);
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  padding: 28px;
}

.hero-media-note {
  margin-top: 14px;
  color: var(--green-950);
}

.hero-media-title {
  font-size: clamp(1.65rem, 2.2vw, 2rem);
  line-height: 1.02;
}

.hero-media-note strong {
  display: block;
  font-size: 1.05rem;
}

.hero-media-note p {
  margin: 6px 0 0;
  color: var(--muted);
}

.connector-stage {
  position: relative;
  height: 110px;
  margin-top: -6px;
}

.connector-line {
  position: absolute;
  top: 0;
  width: 2px;
  height: 92px;
  border-radius: var(--radius-pill);
}

.connector-line-left {
  left: 26%;
  background: linear-gradient(180deg, var(--green-900), rgba(105, 88, 232, 0.22));
  transform: rotate(16deg);
}

.connector-line-center {
  left: 50%;
  background: linear-gradient(180deg, var(--green-700), rgba(32, 160, 109, 0.1));
}

.connector-line-right {
  right: 24%;
  background: linear-gradient(180deg, rgba(255, 110, 72, 0.8), rgba(105, 88, 232, 0.16));
  transform: rotate(-18deg);
}

.feature-intro {
  padding-top: 10px;
}

.feature-intro .section-intro {
  max-width: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-card,
.ally-card,
.person-card,
.conversion-card,
.event-card,
.membership-copy,
.google-card,
.lead-card,
.auth-card,
.dashboard-card,
.summary-card,
.quote-bubble,
.photo-placeholder-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 24px;
  border: 1px solid rgba(21, 61, 51, 0.08);
}

.feature-card h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.08;
}

.feature-card a,
.event-card a {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 800;
  color: var(--green-950);
}

.feature-card-project {
  background: #dcd8fb;
}

.feature-card-impact {
  background: var(--peach);
}

.feature-card-community {
  background: var(--pink);
}

.feature-card-events {
  background: var(--sky);
}

.story-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding: 52px clamp(28px, 4vw, 56px);
  overflow: hidden;
}

.story-band::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
  z-index: -1;
}

.story-badge {
  position: relative;
  min-height: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
}

.story-badge-card {
  position: relative;
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 300px;
  min-height: 300px;
  padding: 30px 28px 34px;
  align-content: center;
  justify-items: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.34), transparent 14rem),
    linear-gradient(180deg, #d8f7c9, #f6ffee);
  box-shadow: 0 24px 44px rgba(10, 35, 27, 0.18);
  text-align: center;
}

.story-badge-card::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -72px;
  width: 2px;
  height: 92px;
  background: rgba(216, 247, 201, 0.8);
  border-radius: var(--radius-pill);
}

.story-badge-card img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  justify-self: center;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 16px 30px rgba(13, 57, 42, 0.1);
}

.story-badge-card span {
  font-family: var(--font-display);
  font-size: 1.95rem;
  line-height: 1.06;
  color: var(--green-900);
  max-width: 9ch;
}

.story-copy {
  width: 100%;
  max-width: none;
  padding: 0;
  display: grid;
  align-content: center;
  gap: 18px;
  color: #f3fbf7;
}

.story-copy p,
.story-copy .eyebrow {
  color: inherit;
}

.story-copy h2 {
  max-width: 16ch;
  margin: 0;
}

.story-copy p {
  max-width: 58ch;
  margin: 0;
}

.story-button {
  margin-top: 6px;
  justify-self: start;
  background: rgba(16, 16, 16, 0.9);
}

.location-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
}

.story-list {
  margin: 20px 0 0;
  padding-left: 22px;
}

.story-list li + li {
  margin-top: 10px;
}

.location-story-visual {
  position: relative;
  padding-top: 0;
}

.photo-placeholder-card {
  margin-top: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 61, 51, 0.08);
}

.photo-placeholder-frame {
  min-height: 290px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(15, 95, 65, 0.18), rgba(255, 255, 255, 0.9));
  overflow: hidden;
}

.photo-placeholder-frame img {
  width: min(220px, 60%);
  object-fit: contain;
}

.map-frame {
  padding: 0;
  background: linear-gradient(145deg, rgba(15, 95, 65, 0.12), rgba(255, 255, 255, 0.94));
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 290px;
  border: 0;
}

.photo-placeholder-card span {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #efffe4;
  color: var(--green-900);
  font-size: 0.84rem;
  font-weight: 700;
}

.about-allies {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.about-column,
.allies-column {
  display: grid;
  align-content: start;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.person-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 61, 51, 0.08);
}

.person-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.34rem;
}

.ally-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.ally-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 61, 51, 0.08);
  min-height: 176px;
  display: grid;
  align-content: start;
}

.ally-card h3 {
  font-family: var(--font-display);
  font-size: 1.34rem;
  margin: 0 0 8px;
}

.ally-card .micro-label,
.ally-card p {
  margin-top: 0;
}

.ally-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  flex-wrap: wrap;
}

.ally-link-text,
.ally-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  color: var(--green-950);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.ally-link-text {
  padding: 10px 14px;
  background: rgba(220, 249, 201, 0.7);
  border: 1px solid rgba(32, 160, 109, 0.18);
}

.ally-link-icon {
  width: 40px;
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 61, 51, 0.12);
}

.ally-link-text:hover,
.ally-link-text:focus-visible,
.ally-link-icon:hover,
.ally-link-icon:focus-visible {
  transform: translateY(-1px);
}

.ally-link-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.trust-section {
  color: #fff;
}

.trust-shell {
  padding: 46px 40px;
  border-radius: 42px;
  background: linear-gradient(180deg, var(--lavender-soft), var(--lavender));
}

.trust-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.trust-header p,
.trust-header .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.trust-metric {
  padding: 22px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
}

.trust-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
}

.trust-metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.trust-ribbon span {
  display: grid;
  place-items: center;
  min-height: 64px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: #4e42b1;
  font-weight: 800;
  text-align: center;
}

.conversion-grid,
.events-grid,
.membership-top,
.lead-form,
.auth-grid,
.dashboard-grid,
.dashboard-summary,
.dual-field,
.footer-columns {
  display: grid;
  gap: 20px;
}

.conversion-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.conversion-intro {
  max-width: none;
}

.conversion-intro h2 {
  max-width: none;
}

.conversion-card {
  padding: 24px;
  border: 1px solid rgba(21, 61, 51, 0.08);
  background: rgba(255, 255, 255, 0.78);
  display: grid;
  align-content: start;
}

.conversion-card-primary {
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
}

.conversion-card-primary h3,
.conversion-card-primary p,
.conversion-card-primary .micro-label {
  color: #f4fbf8;
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.events-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  align-items: stretch;
}

.event-card {
  position: relative;
  padding: 70px 24px 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 61, 51, 0.08);
  display: grid;
  align-content: start;
  min-height: 220px;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 54px;
  background: linear-gradient(135deg, rgba(255, 216, 235, 0.9), rgba(218, 247, 255, 0.95));
}

.event-date {
  position: absolute;
  top: 14px;
  left: 18px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-900);
  font-size: 0.84rem;
  font-weight: 800;
}

.membership-top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.membership-copy {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(229, 252, 214, 0.82));
  border: 1px solid rgba(21, 61, 51, 0.08);
}

.membership-copy h3,
.google-card h3,
.auth-card h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.08;
}

.membership-buttons {
  flex-wrap: wrap;
  margin-top: 20px;
}

.google-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 61, 51, 0.08);
}

.google-card-copy {
  margin: 12px 0 0;
}

.google-auth-button {
  width: 100%;
  margin-top: 10px;
}

.google-auth-status {
  margin: 14px 0 0;
  font-size: 0.94rem;
}

.google-auth-status.error {
  color: #8f2f22;
}

.google-auth-status.success {
  color: var(--green-900);
  font-weight: 700;
}

.status-banner {
  min-height: 24px;
  margin: 12px 0 18px;
  color: var(--green-900);
  font-weight: 800;
}

.status-banner.error {
  color: #8f2f22;
}

.lead-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 20px;
  padding: 24px;
  margin-top: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(218, 247, 255, 0.86));
  border: 1px solid rgba(21, 61, 51, 0.08);
}

.lead-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.stack-form {
  display: grid;
  gap: 18px;
}

.stack-form label,
.lead-form label {
  display: grid;
  gap: 8px;
}

.stack-form span,
.lead-form span {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--green-950);
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(21, 61, 51, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: rgba(18, 107, 73, 0.62);
  box-shadow: 0 0 0 4px rgba(32, 160, 109, 0.12);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-line {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.auth-grid {
  grid-template-columns: 1fr;
  margin-top: 22px;
}

.auth-details {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(21, 61, 51, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.auth-details summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
  color: var(--green-950);
}

.auth-details summary::-webkit-details-marker {
  display: none;
}

.auth-details summary::after {
  content: "+";
  float: right;
  font-size: 1.2rem;
  line-height: 1;
}

.auth-details[open] summary::after {
  content: "-";
}

.auth-details .auth-card {
  border: 0;
  border-top: 1px solid rgba(21, 61, 51, 0.08);
  border-radius: 0;
  box-shadow: none;
}

.auth-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 61, 51, 0.08);
}

.auth-card-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 231, 218, 0.84));
}

.auth-note,
.admin-copy {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.resend-form {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 61, 51, 0.08);
}

.trust-box {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(18, 107, 73, 0.06);
}

.trust-box h4,
.profile-form h4 {
  margin: 0 0 12px;
  font-size: 1.06rem;
}

.mini-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-card {
  margin-top: 22px;
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(220, 249, 201, 0.3), transparent 18rem),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 61, 51, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 44px rgba(20, 41, 33, 0.1);
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(21, 61, 51, 0.08);
}

.dashboard-intro {
  max-width: 700px;
}

.dashboard-intro h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
}

.dashboard-intro p:last-child {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.65;
}

.member-badge {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(18, 107, 73, 0.12);
  color: var(--green-900);
  font-weight: 800;
}

.dashboard-summary {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.summary-card {
  min-height: 112px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(247, 255, 240, 0.96), rgba(241, 252, 232, 0.9));
  border: 1px solid rgba(21, 61, 51, 0.06);
  box-shadow: 0 14px 26px rgba(16, 47, 35, 0.06);
}

.summary-card strong {
  display: block;
  margin-top: 10px;
  line-height: 1.45;
  font-size: 1rem;
  color: var(--green-950);
}

.profile-form {
  gap: 22px;
  margin-top: 24px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(252, 255, 248, 0.93));
  border: 1px solid rgba(21, 61, 51, 0.08);
  box-shadow: 0 20px 38px rgba(16, 47, 35, 0.08);
}

.profile-form-head {
  display: grid;
  gap: 10px;
}

.profile-form h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.4rem);
  line-height: 1.02;
}

.profile-form-copy {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.65;
}

.profile-form input,
.profile-form select,
.profile-form textarea {
  min-height: 58px;
  border-radius: 18px;
  font-size: 1rem;
}

.profile-form textarea {
  min-height: 170px;
}

.membership-status-note {
  gap: 12px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(18, 107, 73, 0.06);
  border: 1px solid rgba(21, 61, 51, 0.08);
}

.membership-status-note span {
  line-height: 1.55;
}

.profile-submit-button {
  width: 100%;
  min-height: 56px;
  margin-top: 6px;
}

.storage-note {
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.admin-panel {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(21, 61, 51, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.admin-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.admin-panel-actions,
.admin-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-stats {
  margin-top: 18px;
}

.admin-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(21, 61, 51, 0.08);
  text-align: left;
}

.admin-table th {
  color: var(--green-900);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-band-shell {
  padding: 44px 34px;
  border-radius: 40px 40px 0 0;
  background: linear-gradient(180deg, #d2f9bc, #efffe0);
  text-align: center;
}

.cta-band-shell p {
  max-width: 760px;
  margin-inline: auto;
}

.cta-band-actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 32px;
  padding: 26px 0 110px;
}

.footer-brand-link {
  display: inline-flex;
}

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

.footer-columns div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-columns a:hover,
.footer-columns a:focus-visible {
  color: var(--green-900);
}

.mobile-sticky-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 253, 247, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 30px rgba(22, 41, 33, 0.16);
}

.mobile-sticky-button {
  min-width: 0;
}

.hidden {
  display: none;
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }

  .hero-panel,
  .location-story,
  .about-allies,
  .membership-top,
  .lead-card,
  .auth-grid,
  .dashboard-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .conversion-grid,
  .events-grid,
  .trust-metrics,
  .trust-ribbon,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-band {
    grid-template-columns: 1fr;
  }

  .quote-bubble {
    position: relative;
    right: auto;
    max-width: none;
  }

  .photo-placeholder-card {
    margin-top: 20px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --section-space: 54px;
    --container: min(1180px, calc(100% - 20px));
  }

  .site-header {
    top: 8px;
    padding: 10px 12px;
  }

  .header-actions {
    display: none;
  }

  .hero-panel {
    padding: 30px 18px 28px;
    border-radius: 0 0 36px 36px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .identity-chip {
    width: 100%;
    padding: 14px;
  }

  .hero-media-frame {
    min-height: 280px;
  }

  .connector-stage {
    height: 56px;
  }

  .connector-line {
    height: 48px;
  }

  .feature-grid,
  .people-grid,
  .ally-stack,
  .conversion-grid,
  .events-grid,
  .dashboard-summary,
  .dual-field,
  .trust-metrics,
  .trust-ribbon,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .story-copy,
  .trust-shell,
  .cta-band-shell,
  .membership-copy,
  .google-card,
  .auth-card,
  .dashboard-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .story-badge-card::after {
    display: none;
  }

  .dashboard-top,
  .dashboard-actions,
  .hero-actions,
  .membership-buttons,
  .cta-band-actions,
  .admin-panel-head,
  .admin-panel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mobile-sticky-bar {
    display: grid;
  }
}

@media (max-width: 479px) {
  :root {
    --section-space: 36px;
  }

  .brand-copy strong {
    font-size: 0.7rem;
  }

  .brand-copy span {
    font-size: 1.06rem;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .identity-chip {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
