@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #152535;
  --navy-light:  #1c3045;
  --teal:        #1a9fa8;
  --teal-dark:   #137880;
  --teal-bg:     rgba(26, 159, 168, 0.12);
  --white:       #ffffff;
  --off-white:   #f8f9fa;
  --gray-light:  #e9ecef;
  --gray-mid:    #adb5bd;
  --gray-text:   #8a9bb0;
  --dark-text:   #2d2d2d;
  --gold:        #c8a25d;
  --green-banner:#1a4a3a;

  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius:    8px;
  --radius-lg: 14px;
  --shadow:    0 2px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.13);

  --max-width:   1160px;
  --section-pad: 1.5rem 1.5rem;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden;
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utility ────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: var(--section-pad); }
.section--light { background: var(--off-white); color: var(--dark-text); }
.section--navy  { background: var(--navy); }
.section--mid   { background: var(--navy-mid); }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 600px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub,
.section-sub.text-center { margin: 0 auto; }

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
}
.btn--teal {
  background: var(--teal);
  color: var(--white);
}
.btn--teal:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,159,168,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}
.btn--outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn--outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}
.btn--lg { padding: 1rem 2.2rem; font-size: 1rem; }

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 1.5rem;
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0.5rem 0;
}
.nav__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav__brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-mid);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-align: center;
  line-height: 1.3;
}
.nav__links a[href="community-launch.html"] {
  max-width: 68px;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
  background: var(--navy-light);
}
.nav__links .btn--teal {
  color: var(--white);
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(26,159,168,0.22) 0%, rgba(26,159,168,0.08) 60%, rgba(26,159,168,0.02) 85%, transparent 80%);
  z-index: 0;
}

/* Horizontal rules that cross the full width */
.hero__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Decorative teal corner squares */
.hero__corner {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--teal);
}
.hero__corner--tl { top: 2.5rem; left: 2.5rem; }
.hero__corner--tr { top: 2.5rem; right: 2.5rem; }
.hero__corner--bl { bottom: 2.5rem; left: 2.5rem; }
.hero__corner--br { bottom: 2.5rem; right: 2.5rem; }
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero__eyebrow-line {
  width: 36px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}
.hero__eyebrow-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.75rem;
  color: var(--white);
}
.hero__title em {
  font-style: italic;
  color: var(--teal);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--gray-text);
  margin-bottom: 2.75rem;
  line-height: 1.8;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
/* Right side: stacked service tiles */
.hero__tiles {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero__tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s;
  gap: 1rem;
}
.hero__tile:hover { background: rgba(255,255,255,0.05); }
.hero__tile-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__tile-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__tile-icon svg {
  width: 16px; height: 16px;
  stroke: var(--teal); fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__tile-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.hero__tile-price {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  flex-shrink: 0;
}
.hero__tile-price.muted { color: var(--gray-text); font-family: var(--font-body); font-weight: 500; font-size: 0.85rem; }
.hero__cta-note {
  margin-top: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: var(--green-banner);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hero__cta-note p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.hero__cta-note p strong { color: var(--white); display: block; margin-bottom: 0.15rem; }
.hero__cta-note a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  text-decoration: underline;
  opacity: 0.85;
}
.hero__cta-note a:hover { opacity: 1; }

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 5rem 1.5rem 4rem; }
  .hero__panel { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__corner { display: none; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; text-align: center; }
}

/* ─── Service Cards ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  color: var(--dark-text);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--teal-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card__name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 0.6rem;
}
.service-card__desc {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.service-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.service-card__btn {
  display: block;
  width: calc(100% + 2.5rem);
  margin: 0 -1.25rem;
  padding: 0.85rem;
  background: var(--teal);
  color: var(--white);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.service-card__btn:hover { background: var(--teal-dark); }

/* ─── Community Launch Banner ────────────────────────────────── */
.launch-banner {
  background: var(--green-banner);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.launch-banner__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  opacity: 0.9;
}
.launch-banner__icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.launch-banner__text { flex: 1; min-width: 200px; }
.launch-banner__text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.launch-banner__text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.launch-banner .btn--outline { flex-shrink: 0; font-size: 0.82rem; padding: 0.65rem 1.3rem; }

/* ─── Why Us ─────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-item {
  padding: 1.75rem;
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--teal);
}
.why-item__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.why-item__desc {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.65;
}

/* ─── Portfolio Grid ─────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.portfolio-card {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.portfolio-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.portfolio-card__img img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-card__body { padding: 1.25rem; }
.portfolio-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.portfolio-card__desc { font-size: 0.87rem; color: var(--gray-text); line-height: 1.6; }

/* ─── Blog Cards ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 0.75rem;
}
.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.blog-card__excerpt { font-size: 0.88rem; color: var(--gray-text); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.blog-card__link { font-size: 0.85rem; font-weight: 600; color: var(--teal); }
.blog-card__link:hover { color: var(--white); }

/* ─── CTA Section ────────────────────────────────────────────── */
.cta-section {
  padding: 5rem 1.5rem;
  text-align: center;
  background: var(--navy-mid);
}
.cta-section .section-title { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p { color: var(--gray-text); font-size: 1.05rem; margin-bottom: 2rem; }

/* ─── Contact Form ───────────────────────────────────────────── */
.form { max-width: 640px; margin: 2.5rem auto 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-group select option { background: var(--navy-mid); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; justify-content: center; }

/* ─── About ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-stat {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.about-stat__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
}
.about-stat__label { font-size: 0.82rem; color: var(--gray-text); margin-top: 0.25rem; }
.values-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-item__dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.value-item__text strong { display: block; color: var(--white); font-size: 0.95rem; }
.value-item__text p { font-size: 0.88rem; color: var(--gray-text); }

/* ─── Services Detail Page ───────────────────────────────────── */
.service-detail {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-detail:last-child { border-bottom: none; }
.service-detail__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.service-detail__icon {
  width: 56px;
  height: 56px;
  background: var(--teal-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-detail__icon svg {
  width: 26px; height: 26px;
  stroke: var(--teal); fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-detail__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.package-card {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-top: 3px solid var(--teal);
}
.package-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.package-card__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1rem;
}
.package-card__features { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.5rem; }
.package-card__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--gray-text);
}
.package-card__features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Community Launch Page ──────────────────────────────────── */
.launch-hero {
  background: var(--green-banner);
  padding: 5rem 1.5rem;
  text-align: center;
}
.launch-hero .section-sub { color: rgba(255,255,255,0.75); margin: 0 auto; }
.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.eligibility-item {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.eligibility-item__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.eligibility-item__title { font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.eligibility-item__desc { font-size: 0.87rem; color: var(--gray-text); line-height: 1.6; }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.process-step__num {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--white);
}
.process-step__text strong { display: block; color: var(--white); margin-bottom: 0.25rem; }
.process-step__text p { font-size: 0.88rem; color: var(--gray-text); line-height: 1.6; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 1.5rem 2rem;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer__tagline { font-size: 0.88rem; color: var(--gray-text); line-height: 1.65; max-width: 300px; }
.footer__email {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--teal);
}
.footer__email:hover { color: var(--white); }
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.88rem; color: var(--gray-text); transition: color 0.2s; }
.footer__links a:hover { color: var(--teal); }
.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__copy { font-size: 0.8rem; color: var(--gray-text); }
.footer__loc { font-size: 0.8rem; color: var(--gray-text); }

/* ─── Page Header ────────────────────────────────────────────── */
.page-header {
  padding: 4rem 1.5rem 3rem;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-header__inner { max-width: var(--max-width); margin: 0 auto; }

/* ─── Divider ────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.25rem; }

  .nav__links { display: none; flex-direction: column; align-items: stretch; gap: 0.25rem; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 1.5rem; }
  .nav__links.open { display: flex; }
  .nav__links a { display: block; padding: 0.9rem 0.75rem; border-radius: var(--radius); font-size: 1.05rem; text-align: left; max-width: none; }
  .nav__links a[href="community-launch.html"] { max-width: none; }
  .nav__toggle { display: flex; }

  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .hero { padding: 4rem 1.25rem 3.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .launch-banner { flex-direction: column; align-items: flex-start; }
}
