﻿:root {
  --black: #050706;
  --ink: #0b0f0d;
  --muted: rgba(5, 7, 6, 0.68);
  --paper: #ffffff;
  --soft: #f7fbfa;
  --line: rgba(5, 7, 6, 0.12);
  --line-green: rgba(102, 245, 140, 0.3);
  --green: #66f58c;
  --green-dark: #129447;
  --green-soft: rgba(102, 245, 140, 0.14);
  --glass: rgba(255, 255, 255, 0.76);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 4%, rgba(102, 245, 140, 0.16), transparent 28rem),
    linear-gradient(90deg, rgba(102, 245, 140, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(102, 245, 140, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 86px 86px, 86px 86px, auto;
  color: var(--ink);
  font-family: "Raleway", Arial, sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
}

body::before {
  width: 48vw;
  height: 48vw;
  right: -22vw;
  top: 16vh;
  border: 1px solid rgba(102, 245, 140, 0.26);
  border-radius: 50%;
  box-shadow: inset 0 0 0 34px rgba(102, 245, 140, 0.04);
}

body::after {
  width: 34vw;
  height: 4px;
  left: -6vw;
  top: 44vh;
  background: linear-gradient(90deg, transparent, rgba(102, 245, 140, 0.84), transparent);
  transform: rotate(-18deg);
  filter: drop-shadow(0 0 18px rgba(102, 245, 140, 0.34));
}

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

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 44px);
  background:
    radial-gradient(circle at 6% 50%, rgba(102, 245, 140, 0.12), transparent 260px),
    rgba(5, 7, 6, 0.96);
  border-bottom: 1px solid rgba(102, 245, 140, 0.26);
  box-shadow: 0 18px 50px rgba(5, 7, 6, 0.18);
  backdrop-filter: blur(22px);
}

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

.brand-logo {
  width: 220px;
  height: 58px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 16px rgba(102, 245, 140, 0.18));
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(102, 245, 140, 0.14);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  transform: translateY(-2px);
  border-color: var(--green);
  background: rgba(102, 245, 140, 0.1);
  color: var(--green);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  background: var(--green);
  color: var(--black);
  font-size: 12px;
  box-shadow: 0 0 0 1px rgba(102, 245, 140, 0.34), 0 16px 34px rgba(102, 245, 140, 0.18);
}

.button {
  min-height: 56px;
  padding: 0 26px;
  font-size: 13px;
  text-align: center;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--black);
  color: var(--green);
  box-shadow: 0 0 0 1px rgba(102, 245, 140, 0.38), 0 22px 48px rgba(102, 245, 140, 0.22);
}

.button-secondary {
  border-color: rgba(5, 7, 6, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--black);
  backdrop-filter: blur(14px);
}

.button-secondary:hover {
  background: var(--green-soft);
  box-shadow: 0 18px 44px rgba(5, 7, 6, 0.1);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

main {
  overflow: hidden;
}

.home-hero,
.page-hero,
.section {
  position: relative;
  padding: clamp(78px, 9vw, 128px) clamp(18px, 5vw, 56px);
}

.home-hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  min-height: calc(100vh - 75px);
  background:
    radial-gradient(circle at 20% 22%, rgba(102, 245, 140, 0.24), transparent 22rem),
    linear-gradient(118deg, var(--black) 0 46%, rgba(102, 245, 140, 0.08) 46% 47%, var(--paper) 47% 100%);
  isolation: isolate;
}

.home-hero > *,
.page-hero > *,
.story-strip > *,
.journey-section > *,
.split-section > *,
.founder-card > *,
.mission-vision > * {
  min-width: 0;
}

.home-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 62px 62px;
  clip-path: polygon(0 0, 52% 0, 42% 100%, 0 100%);
}

.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  width: 48vw;
  height: 5px;
  right: -10vw;
  top: 26%;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(102, 245, 140, 0.86), transparent);
  transform: rotate(-14deg);
  filter: blur(0.2px) drop-shadow(0 0 18px rgba(102, 245, 140, 0.42));
}

.about-hero {
  min-height: 78vh;
}

.hero-copy,
.page-hero > div,
.section-heading {
  max-width: 760px;
}

.home-hero .eyebrow,
.page-hero .eyebrow,
.home-hero h1,
.page-hero h1 {
  color: var(--paper);
}

.home-hero .hero-subhead,
.page-hero .hero-subhead {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green-dark);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  font-family: "Raleway", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(56px, 8.4vw, 118px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(34px, 5.7vw, 72px);
  font-weight: 900;
  line-height: 0.96;
}

h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.08;
}

p {
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.72;
  overflow-wrap: break-word;
}

.hero-subhead {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(5, 7, 6, 0.74);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  overflow-wrap: break-word;
}

.registration-note {
  max-width: 640px;
  margin: 20px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(102, 245, 140, 0.38);
  background: rgba(255, 255, 255, 0.1);
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  backdrop-filter: blur(14px);
}

.band {
  max-width: none;
  background:
    radial-gradient(circle at 78% 20%, rgba(102, 245, 140, 0.14), transparent 24rem),
    linear-gradient(90deg, rgba(102, 245, 140, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(102, 245, 140, 0.055) 1px, transparent 1px),
    var(--soft);
  background-size: auto, 70px 70px, 70px 70px, auto;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
}

.section::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: clamp(14px, 5vw, 80px);
  top: 34px;
  border: 1px solid rgba(102, 245, 140, 0.18);
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 60px);
}

.photo-frame {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(102, 245, 140, 0.34);
  background:
    linear-gradient(135deg, rgba(102, 245, 140, 0.26), transparent 36%),
    repeating-linear-gradient(-34deg, rgba(5, 7, 6, 0.08) 0 1px, transparent 1px 18px),
    var(--paper);
  box-shadow: 0 28px 70px rgba(5, 7, 6, 0.14);
}

.photo-frame img {
  opacity: 0;
  transition: opacity 220ms ease, transform 500ms ease, filter 500ms ease;
}

.photo-frame.has-image img {
  opacity: 1;
}

.photo-frame.has-image:hover img {
  transform: scale(1.035);
  filter: contrast(1.04) saturate(1.02);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, transparent 46%, rgba(102, 245, 140, 0.2)),
    linear-gradient(0deg, rgba(5, 7, 6, 0.22), transparent 42%);
}

.photo-frame.has-image::before {
  opacity: 1;
}

.photo-frame.has-image::after {
  opacity: 1;
}

.photo-frame figcaption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 10px;
  background: rgba(5, 7, 6, 0.72);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.photo-frame.has-image figcaption {
  opacity: 0;
}

.hero-photo,
.page-hero-photo {
  min-height: min(68vh, 680px);
  border-radius: 0;
  transform: skew(-2deg);
}

.membership-photo-block {
  width: min(100%, 660px);
  height: auto;
  aspect-ratio: auto;
  min-height: 0;
  max-height: none;
  padding: 14px;
  justify-self: center;
  transform: none;
  background: var(--black);
}

.membership-photo-block img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.membership-photo-block > * {
  transform: none;
}

.compact-home-photo {
  width: min(100%, 470px);
  min-height: 330px;
  justify-self: center;
}

.hero-photo > *,
.page-hero-photo > * {
  transform: skew(2deg);
}

.link-grid,
.feature-grid,
.stat-grid,
.photo-grid,
.blog-grid {
  display: grid;
  gap: 18px;
}

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

.link-card,
.feature-card,
.stat-grid article,
.blog-card {
  position: relative;
  min-height: 250px;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(5, 7, 6, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 55px rgba(5, 7, 6, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.link-card::before,
.feature-card::before,
.stat-grid article::before,
.blog-card::before,
.pricing-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -54px;
  top: -54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 245, 140, 0.22), transparent 66%);
}

.link-card:hover,
.feature-card:hover,
.blog-card:hover,
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(102, 245, 140, 0.48);
  box-shadow: 0 30px 70px rgba(102, 245, 140, 0.14), 0 24px 55px rgba(5, 7, 6, 0.08);
}

.link-card span,
.feature-card span,
.story-line span,
.blog-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.link-card p,
.feature-card p,
.blog-card p {
  margin-bottom: 0;
  font-size: 16px;
}

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

.blog-card {
  min-height: 350px;
  background:
    linear-gradient(145deg, rgba(102, 245, 140, 0.12), transparent 44%),
    var(--paper);
}

.center-row {
  justify-content: center;
}

.story-strip,
.journey-section,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
}

.story-line p,
.journey-section p,
.split-section p,
.final-note p {
  max-width: 700px;
}

.visual-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.visual-list div {
  min-height: 118px;
  display: flex;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(5, 7, 6, 0.1);
  background:
    linear-gradient(135deg, rgba(102, 245, 140, 0.14), transparent 48%),
    var(--paper);
  color: var(--black);
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(5, 7, 6, 0.07);
  transition: transform 180ms ease, border-color 180ms ease;
}

.visual-list div:hover {
  transform: translateX(5px);
  border-color: var(--green);
}

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

.stat-grid strong {
  display: block;
  color: var(--black);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.home-stat-grid strong {
  font-size: clamp(30px, 3.5vw, 46px);
}

.stat-grid span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.founders-section {
  max-width: none;
  background:
    linear-gradient(135deg, rgba(102, 245, 140, 0.08), transparent 34%),
    var(--paper);
}

.founder-grid {
  display: grid;
  gap: 28px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(5, 7, 6, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 70px rgba(5, 7, 6, 0.09);
}

.portrait-frame {
  min-height: 430px;
}

.role {
  margin: 8px 0 20px;
  color: var(--green-dark);
  font-weight: 900;
}

.mission-vision {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--black);
}

.mission-vision article {
  min-height: 430px;
  padding: clamp(42px, 7vw, 82px);
  background:
    radial-gradient(circle at 82% 12%, rgba(102, 245, 140, 0.22), transparent 20rem),
    linear-gradient(135deg, var(--black), #050706);
}

.mission-vision article h2,
.mission-vision article p {
  color: var(--paper);
}

.mission-vision article .eyebrow {
  color: var(--green);
}

.final-note {
  max-width: none;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(102, 245, 140, 0.22), transparent 26rem),
    var(--paper);
}

.final-note h2,
.final-note p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.content-placeholder {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px dashed var(--green-dark);
  background: rgba(102, 245, 140, 0.08);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.wide-placeholder {
  margin-top: 24px;
}

.placeholder-page {
  display: grid;
  gap: 34px;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.membership-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.pdf-preview {
  height: min(78vh, 720px);
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(102, 245, 140, 0.34);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(5, 7, 6, 0.1);
}

.pdf-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.pricing-card {
  position: relative;
  min-height: 390px;
  padding: clamp(30px, 5vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(102, 245, 140, 0.32);
  background:
    linear-gradient(145deg, rgba(102, 245, 140, 0.12), transparent 42%),
    var(--paper);
  box-shadow: 0 30px 72px rgba(5, 7, 6, 0.11);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pricing-label {
  margin: 0 0 22px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.9;
}

.pricing-card h3 span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 16px;
}

.accent-card {
  background:
    linear-gradient(135deg, var(--black), #050706);
}

.accent-card h3,
.accent-card p {
  color: var(--paper);
}

.accent-card .pricing-label {
  color: var(--green);
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(102, 245, 140, 0.28);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 70px rgba(5, 7, 6, 0.1);
  backdrop-filter: blur(18px);
}

.contact-panel a {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(5, 7, 6, 0.12);
  background: var(--paper);
  color: var(--black);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-panel a:hover {
  transform: translateX(5px);
  border-color: var(--green);
  background: rgba(102, 245, 140, 0.08);
}

.faq-section {
  max-width: 1120px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid rgba(102, 245, 140, 0.32);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(5, 7, 6, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--black);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green-dark);
  font-weight: 900;
}

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

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
}

.contact-label {
  margin: 0;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 56px);
  border-top: 1px solid rgba(102, 245, 140, 0.18);
  background: var(--black);
}

footer p {
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
  }

  .home-hero,
  .page-hero,
  .story-strip,
  .journey-section,
  .split-section,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .page-hero {
    background:
      radial-gradient(circle at 18% 12%, rgba(102, 245, 140, 0.22), transparent 22rem),
      linear-gradient(180deg, var(--black) 0 48%, var(--paper) 48% 100%);
  }

  .link-grid,
  .feature-grid,
  .photo-grid,
  .stat-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr);
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
    justify-content: center;
  }

  .brand-logo {
    width: 178px;
    height: 52px;
  }

  .header-cta {
    width: 100%;
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .home-hero,
  .page-hero,
  .section {
    padding: 54px 16px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 62px);
    line-height: 0.94;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(31px, 11vw, 48px);
    line-height: 1;
    overflow-wrap: break-word;
  }

  h3 {
    overflow-wrap: break-word;
  }

  p {
    font-size: 16px;
  }

  .eyebrow {
    font-size: 16px;
    line-height: 1.2;
  }

  .hero-subhead {
    font-size: 17px;
  }

  .registration-note {
    font-size: 13px;
  }

  .hero-photo,
  .page-hero-photo,
  .portrait-frame {
    min-height: 300px;
    transform: none;
  }

  .membership-photo-block {
    width: min(330px, calc(100% - 48px));
    padding: 10px;
    aspect-ratio: auto;
    min-height: 0;
  }

  .membership-photo-block img {
    object-fit: contain;
    object-position: center;
    background: var(--black);
  }

  .hero-photo > *,
  .page-hero-photo > * {
    transform: none;
  }

  .link-grid,
  .feature-grid,
  .photo-grid,
  .stat-grid,
  .blog-grid,
  .visual-list,
  .mission-vision,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-row,
  .membership-actions,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    white-space: normal;
  }

  .link-card,
  .feature-card,
  .stat-grid article,
  .blog-card,
  .founder-card,
  .contact-panel,
  .faq-list details {
    max-width: 100%;
  }

  .link-card,
  .feature-card,
  .stat-grid article,
  .blog-card {
    min-height: auto;
  }

  .visual-list div {
    min-height: 92px;
    padding: 18px;
  }

  .stat-grid strong,
  .home-stat-grid strong {
    font-size: clamp(34px, 12vw, 48px);
  }

  .portrait-frame {
    min-height: 340px;
  }

  .mission-vision article {
    min-height: auto;
    padding: 44px 22px;
  }

  .pricing-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .pricing-card h3 {
    font-size: clamp(40px, 13vw, 54px);
    overflow-wrap: anywhere;
  }

  .pricing-card h3 span {
    font-size: 14px;
  }

  .pdf-preview {
    height: 440px;
    max-width: 100%;
  }

  .faq-list summary {
    padding: 20px;
    font-size: 18px;
  }

  .faq-list p {
    padding: 0 20px 20px;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-panel a {
    min-height: auto;
    padding: 16px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 166px;
    height: 50px;
  }

  .home-hero,
  .page-hero,
  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-photo,
  .page-hero-photo {
    min-height: 260px;
  }

  .membership-photo-block {
    width: 100%;
    min-height: 0;
  }

  .pricing-card h3 {
    font-size: 38px;
  }
}

