/* DeFlock West Georgia — bright, welcoming, blue accent */

:root {
  --bg: #f7f9fc;
  --bg-alt: #eef3f9;
  --surface: #ffffff;
  --ink: #0b1524;
  --ink-soft: #334155;
  --mute: #64748b;
  --line: rgba(11, 21, 36, 0.1);
  --line-strong: rgba(11, 21, 36, 0.16);
  /* Softer sky blue system — welcoming, high-tech */
  --blue: #3b8fe8;
  --blue-deep: #2470d0;
  --blue-soft: rgba(59, 143, 232, 0.12);
  --blue-glow: rgba(59, 143, 232, 0.22);
  --blue-bright: #6bb0f5;
  --blue-header: #4ea0e0;
  --max: 72rem;
  --narrow: 42rem;
  --display: "Exo 2", system-ui, sans-serif;
  --body: "Barlow", system-ui, sans-serif;
  --header-display: "Barlow Condensed", "Barlow", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue-deep);
  text-decoration: none;
  transition: color 180ms var(--ease), opacity 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

a:hover {
  color: var(--blue);
}

strong {
  color: var(--ink);
  font-weight: 600;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 0.55rem 0.85rem;
  z-index: 100;
  font-weight: 600;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

/* ——— Header (SpaceX / drewalbertmd pattern) ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transform: translate3d(0, 0, 0);
  transition: transform 0.28s ease;
}

.site-header.is-hidden {
  transform: translate3d(0, -100%, 0);
}

.site-header.is-mobile-open {
  transform: none;
}

.site-header__veil {
  position: absolute;
  inset: 0 0 auto 0;
  height: 11rem;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.4) 42%,
    rgba(0, 0, 0, 0.12) 72%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
}

.site-header--solid .site-header__veil {
  display: none;
}

.site-header--solid {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  padding-top: max(0.85rem, env(safe-area-inset-top));
  padding-left: max(1.25rem, env(safe-area-inset-left));
  padding-right: max(1.25rem, env(safe-area-inset-right));
}

@media (min-width: 768px) {
  .site-header__bar {
    gap: 2rem;
    padding: 1.15rem 2.5rem;
    padding-top: max(1.15rem, env(safe-area-inset-top));
  }
}

.site-wordmark {
  --wordmark-size: 1.0625rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.45em;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  opacity: 1;
}

.site-wordmark__name,
.site-wordmark__accent {
  font-family: var(--header-display);
  font-size: var(--wordmark-size);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-wordmark__name {
  color: #fff;
}

.site-wordmark__accent {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-header);
}

.site-wordmark:hover {
  opacity: 1;
}

.site-wordmark:hover .site-wordmark__name {
  color: rgba(255, 255, 255, 0.88);
}

.site-wordmark:hover .site-wordmark__accent {
  color: color-mix(in srgb, var(--blue-header) 78%, white);
}

@media (min-width: 768px) {
  .site-wordmark {
    --wordmark-size: 1.25rem;
  }
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  min-width: 0;
}

@media (min-width: 768px) {
  .site-header__nav {
    display: flex;
  }
}

@media (min-width: 1100px) {
  .site-header__nav {
    gap: 1.75rem;
  }
}

.site-header__link {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  transition: color 0.15s ease;
  opacity: 1;
}

.site-header__link:hover,
.site-header__link[aria-current="page"] {
  color: #fff;
  opacity: 1;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  height: 2rem;
  padding: 0 0.9rem;
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  background: #fff;
  border: 1px solid #fff;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
  opacity: 1;
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }
}

.header-cta:hover {
  background: transparent;
  color: #fff;
  opacity: 1;
}

.site-header__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -0.35rem;
  color: #fff;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

@media (min-width: 768px) {
  .site-header__menu-toggle {
    display: none;
  }
}

.site-header__burger {
  position: relative;
  display: block;
  width: 1.15rem;
  height: 0.75rem;
}

.site-header__burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.site-header__burger span:nth-child(1) { top: 0; }
.site-header__burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.site-header__burger span:nth-child(3) { bottom: 0; }

.site-header.is-mobile-open .site-header__burger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.site-header.is-mobile-open .site-header__burger span:nth-child(2) {
  opacity: 0;
}
.site-header.is-mobile-open .site-header__burger span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #000;
  padding: 5.5rem 1.5rem 2rem;
}

.site-header.is-mobile-open ~ .mobile-overlay,
.mobile-overlay.is-open {
  display: block;
}

.mobile-overlay nav {
  display: grid;
  gap: 0.35rem;
}

.mobile-overlay a {
  display: block;
  padding: 0.95rem 0;
  font-family: var(--header-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.mobile-overlay a:hover {
  color: var(--blue-header);
  opacity: 1;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.45rem;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #d9e6f5;
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Source crop places the camera in the right third. */
  object-position: center center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  /* Darken only the copy side; leave the camera clear. */
  background: linear-gradient(
    90deg,
    rgba(4, 14, 31, 0.78) 0%,
    rgba(4, 14, 31, 0.58) 30%,
    rgba(4, 14, 31, 0.16) 50%,
    rgba(4, 14, 31, 0) 64%
  );
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 2.2rem, 34rem);
  margin: 0 auto 0 clamp(1.1rem, 5vw, 4rem);
  padding: 0 0 clamp(3.5rem, 10vh, 6.5rem);
}

.hero.hero--photo .brand-mark {
  color: var(--blue-bright);
}

.hero.hero--photo h1 {
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(4, 14, 31, 0.28);
}

.hero--photo .lede {
  color: rgba(255, 255, 255, 0.9);
}

.hero--photo .lede strong {
  color: #ffffff;
  font-weight: 700;
}

.hero--photo .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.hero--photo .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.brand-mark {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 5.2vw, 3.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.02;
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  max-width: 28ch;
}

.lede {
  margin: 0 0 2rem;
  color: var(--mute);
  font-size: 1.05rem;
  max-width: 38ch;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .hero-photo {
    object-position: 58% center;
  }

  .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(7, 18, 36, 0.3) 0%,
      rgba(7, 18, 36, 0.18) 45%,
      rgba(7, 18, 36, 0.7) 100%
    );
  }
}

/* ——— Sections ——— */
.section,
.content-section {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.1rem, 4vw, 2.75rem);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.section-alt,
.content-section.section-alt {
  background: var(--bg-alt);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-inner--narrow {
  width: min(100%, var(--narrow));
}

.section-label {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.section h2,
.content-section h2,
.page-hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.55rem);
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--ink);
}

.section-lede {
  margin: 0 0 2rem;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.section-timelapse {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 143, 232, 0.08), transparent 55%),
    linear-gradient(180deg, #0b1220 0%, #111827 100%);
  border-top: none;
  color: #c5d0de;
}

.section-timelapse .section-inner {
  width: min(100%, 68rem);
  text-align: center;
}

.section-timelapse .section-label {
  color: var(--blue-bright);
}

.section-timelapse h2 {
  color: #f4f7fb;
}

.section-timelapse .section-lede {
  color: #a8b6c8;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.timelapse {
  margin: 0 auto;
  width: 100%;
}

/* Cap just under DeFlock's 1024px "lg" breakpoint so the embed stays
   map-first (no side panel) while their timeline still auto-plays. */
.timelapse__frame {
  position: relative;
  width: 100%;
  max-width: 63.5rem;
  margin-inline: auto;
  height: min(68vh, 42rem);
  min-height: 28rem;
  border: 1px solid rgba(107, 176, 245, 0.22);
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(59, 143, 232, 0.18), transparent 60%),
    #0a0a0f;
  overflow: hidden;
}

.timelapse__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.timelapse__load {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 1.5rem;
  border: 0;
  background: transparent;
  color: #f4f7fb;
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.timelapse__load:hover .timelapse__load-title,
.timelapse__load:focus-visible .timelapse__load-title {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.timelapse__load:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: -4px;
}

.timelapse__load-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid rgba(107, 176, 245, 0.55);
  background: var(--blue);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timelapse__load-note {
  max-width: 28ch;
  color: #a8b6c8;
  font-size: 0.92rem;
  line-height: 1.45;
}

.timelapse__external {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 3;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9bb4cc;
  padding: 0.45rem 0.55rem;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
}

.timelapse__external:hover {
  color: #fff;
}

.timelapse__frame.is-loaded .timelapse__external {
  display: none;
}

@media (max-width: 700px) {
  .timelapse__frame {
    min-height: 24rem;
    height: min(78vh, 36rem);
  }
}

.timelapse__caption {
  margin: 0.85rem auto 0;
  max-width: 62ch;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #8090a4;
  text-align: center;
}

.timelapse__caption a {
  color: var(--blue-bright);
}

.timelapse__caption a:hover {
  color: #9cc8f8;
}

.prose p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose ul {
  margin: 0 0 1.15rem;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.prose li {
  margin-bottom: 0.55rem;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.prose .case-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.35rem;
}

.prose .case-list li {
  margin: 0 0 1.25rem;
  padding: 1rem 0 1.15rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.55;
}

.prose .case-list li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.prose .case-list a {
  font-size: 0.92em;
  white-space: nowrap;
}

/* Feature rows */
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) 1fr;
  gap: 1.25rem 2rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  line-height: 1.4;
}

.feature-list p {
  margin: 0;
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .feature-list li {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

/* Path strip */
.path-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}

.path-strip a {
  display: block;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  color: inherit;
  background: var(--surface);
  transition: background 200ms var(--ease);
}

.path-strip a + a {
  border-left: 1px solid var(--line);
}

.path-strip a:hover {
  background: var(--blue-soft);
  color: inherit;
}

.path-strip .path-kicker {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.path-strip h3 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.path-strip p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.path-strip .path-link {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

@media (max-width: 720px) {
  .path-strip {
    grid-template-columns: 1fr;
  }

  .path-strip a + a {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

.map-panel {
  display: grid;
  gap: 1.25rem;
  justify-items: start;
  max-width: 36rem;
}

.map-panel p {
  margin: 0;
  color: var(--ink-soft);
}

.callout {
  margin: 1.75rem 0 0;
  padding: 1.25rem 0 0;
  border: 0;
  border-top: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--ink-soft);
}

.callout p {
  margin: 0 0 0.75rem;
}

.callout p:last-child {
  margin-bottom: 0;
}

/* ——— Inner pages ——— */
.page-hero {
  padding: clamp(6.5rem, 14vw, 9rem) clamp(1.1rem, 4vw, 2.75rem) clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(ellipse 70% 55% at 80% 0%, rgba(59, 143, 232, 0.16), transparent 55%),
    linear-gradient(180deg, #e8f0fb 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  margin: 0;
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.join-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  margin: 1.5rem 0 0 !important;
  max-width: none !important;
}

.join-cta__note {
  color: var(--mute);
  font-size: 0.95rem;
  max-width: 28ch;
  line-height: 1.45;
}

.join-inline {
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.join-inline a {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 0.35rem;
}

@media (max-width: 720px) {
  .join-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .join-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .join-inline a {
    display: inline-block;
    margin: 0.45rem 0 0;
    margin-left: 0;
  }
}

.action-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.action-list li {
  position: relative;
  display: grid;
  gap: 0.4rem;
  padding: 1.5rem 0 1.5rem 3.25rem;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}

.action-list li:first-child {
  border-top: 1px solid var(--line);
}

.action-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.55rem;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.action-list strong {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.action-list span {
  color: var(--ink-soft);
}

.action-list a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.governance-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.governance-list li {
  padding: 1rem 0 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  position: relative;
}

.governance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 0.4rem;
  height: 1px;
  background: var(--blue);
}

.ask-group-title {
  margin: 1.75rem 0 0.65rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.ask-group-lede {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 52ch;
}

.ask-stack {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: ask;
  border-top: 1px solid var(--line);
}

.ask-stack li {
  counter-increment: ask;
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 0 1.2rem 2.1rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.ask-stack li::before {
  content: counter(ask);
  position: absolute;
  left: 0;
  top: 1.2rem;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.ask-stack strong {
  display: block;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.35;
}

.ask-stack span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.ask-stack em {
  font-style: italic;
}

.pushback {
  margin: 0;
  border-top: 1px solid var(--line);
}

.pushback dt {
  margin: 0;
  padding: 1.35rem 0 0.4rem;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.pushback dd {
  margin: 0;
  padding: 0 0 1.35rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.source-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.source-list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.source-list a {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ——— Footer ——— */
.site-footer {
  padding: 3rem clamp(1.1rem, 4vw, 2.75rem) 3.5rem;
  border-top: 1px solid var(--line);
  background: #edf2f8;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.footer-brand {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.site-footer p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.85rem !important;
}

.footer-links a {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-links a:hover {
  color: var(--blue-deep);
}

.footer-credit {
  margin-top: 0.35rem !important;
  font-size: 0.78rem !important;
}

.footer-credit a {
  color: var(--mute);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.footer-credit a:hover {
  color: var(--blue-deep);
}

.section-more {
  margin: 1.75rem 0 0;
}

.section-more a {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-list--compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.feature-list--compact li {
  display: block;
  grid-template-columns: none;
  padding: 1.35rem 1.1rem 1.45rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.feature-list--compact li:last-child {
  border-right: 0;
}

.feature-list--compact h3 {
  margin-bottom: 0.55rem;
}

@media (max-width: 820px) {
  .feature-list--compact {
    grid-template-columns: 1fr;
  }

  .feature-list--compact li {
    border-right: 0;
  }
}

/* ——— Meeting calendar ——— */
.meeting-sheet {
  margin: 0 0 2.25rem;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
}

.meeting-sheet__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 0.85rem;
}

.meeting-sheet__status {
  margin: 0;
  font-size: 0.92rem;
  color: var(--mute);
  line-height: 1.4;
}

.meeting-sheet__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.meeting-sheet__btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 0.95rem;
  cursor: pointer;
  min-height: 2.5rem;
}

.meeting-sheet__btn:hover,
.meeting-sheet__btn:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  outline: none;
}

.meeting-sheet__btn--primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.meeting-sheet__btn--primary:hover,
.meeting-sheet__btn--primary:focus-visible {
  filter: brightness(1.06);
  color: #fff;
}

.meeting-sheet__scroll {
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--surface);
  max-height: min(28rem, 70vh);
  -webkit-overflow-scrolling: touch;
}

.meeting-sheet__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.35;
  min-width: 40rem;
}

.meeting-sheet__table th,
.meeting-sheet__table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.meeting-sheet__table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: color-mix(in srgb, var(--surface) 92%, var(--ink));
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
}

.meeting-sheet__table th[data-sort-key] {
  padding: 0;
}

.meeting-sheet__sort {
  appearance: none;
  border: 0;
  background: none;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  cursor: pointer;
  min-height: 2.5rem;
}

.meeting-sheet__sort:hover,
.meeting-sheet__sort:focus-visible {
  color: var(--blue);
  outline: none;
}

.meeting-sheet__arrow {
  font-size: 0.7em;
  opacity: 0.35;
}

.meeting-sheet__arrow::before {
  content: "\2195";
}

.meeting-sheet__table th.is-sorted {
  color: var(--blue);
}

.meeting-sheet__table th.is-sorted .meeting-sheet__arrow {
  opacity: 1;
}

.meeting-sheet__table th.is-sorted .meeting-sheet__arrow::before {
  content: "\2191";
}

.meeting-sheet__table th.is-sorted.is-desc .meeting-sheet__arrow::before {
  content: "\2193";
}

.meeting-sheet__table tbody tr:last-child td {
  border-bottom: 0;
}

.meeting-sheet__table tbody tr:hover td {
  background: color-mix(in srgb, var(--blue) 6%, transparent);
}

.meeting-sheet__table a {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meeting-sheet__note {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--mute);
  max-width: 62ch;
  line-height: 1.45;
}

.meeting-group-title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.meeting-grid + .meeting-group-title {
  margin-top: 2.25rem;
}

.meeting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.meeting-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.2rem 1.35rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.meeting-card__when {
  margin: 0;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.meeting-card__also {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--mute);
}

.meeting-card__also[hidden] {
  display: none;
}

.meeting-card h3 {
  margin: 0.15rem 0 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}

.meeting-card__where,
.meeting-card__note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.meeting-card__where {
  color: var(--mute);
}

.meeting-card__link {
  margin-top: auto;
  padding-top: 0.85rem;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
}

.meeting-footnote {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.92rem;
}

.meeting-footnote p {
  margin: 0;
  max-width: 62ch;
}

.meeting-footnote strong {
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .meeting-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-copy {
    width: min(100% - 1.6rem, 34rem);
    margin-left: auto;
    margin-right: auto;
    padding-bottom: max(3rem, env(safe-area-inset-bottom) + 2rem);
  }

  .brand-mark {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .hero h1 {
    font-size: clamp(1.15rem, 4.4vw, 1.4rem);
    max-width: none;
  }

  .lede {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-row .btn {
    flex: 1 1 auto;
    min-width: min(100%, 10rem);
    justify-content: center;
  }

  .section,
  .content-section {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .path-strip a {
    min-height: 3rem;
  }
}

/* ——— Motion ——— */
.motion-on .hero-copy {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.motion-on .hero-copy.in-view {
  opacity: 1;
  transform: none;
}

.motion-on .section,
.motion-on .content-section {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.motion-on .section.in-view,
.motion-on .content-section.in-view {
  opacity: 1;
  transform: none;
}

.motion-on .grid-pulse {
  animation: pulse-grid 8s ease-in-out infinite;
}

.motion-on .orbit-ring {
  animation: spin-slow 60s linear infinite;
  transform-origin: 1100px 420px;
}

@keyframes pulse-grid {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.85; }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, a { transition: none; }
  .motion-on .grid-pulse,
  .motion-on .orbit-ring { animation: none; }
}
