:root {
  --bg: #f4ecde;
  --bg-soft: #fbf6ef;
  --surface: rgba(255, 252, 246, 0.74);
  --surface-strong: #fffaf2;
  --ink: #12343b;
  --ink-soft: #385861;
  --line: rgba(18, 52, 59, 0.1);
  --line-strong: rgba(18, 52, 59, 0.2);
  --accent: #ff7a59;
  --accent-deep: #e35733;
  --accent-cool: #56c2b3;
  --accent-gold: #f5b83d;
  --shadow: 0 20px 60px rgba(18, 52, 59, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(86, 194, 179, 0.35), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(245, 184, 61, 0.18), transparent 26%),
    linear-gradient(180deg, #fff7ed 0%, var(--bg) 52%, #f0e7d7 100%);
  min-height: 100vh;
}

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

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

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

.site-shell {
  overflow: clip;
}

.section {
  width: min(var(--max), calc(100vw - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(var(--max), calc(100vw - 2rem));
  margin: 1rem auto 0;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(18, 52, 59, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

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

.brand strong {
  font-size: 1rem;
  font-weight: 700;
}

.brand span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(227, 87, 51, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(227, 87, 51, 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  border-color: rgba(18, 52, 59, 0.12);
  box-shadow: none;
}

.button-ghost {
  min-height: 2.75rem;
  padding: 0 1.2rem;
  background: rgba(18, 52, 59, 0.04);
  color: var(--ink);
  border-color: rgba(18, 52, 59, 0.08);
  box-shadow: none;
}

.button-small {
  font-size: 0.9rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 3rem;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.eyebrow,
.panel-kicker,
.card-label,
.section-intro p:first-child,
.launch-copy .eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
  font-weight: 700;
}

.hero h1,
.section-intro h2,
.switcher-panel h3,
.launch-copy h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.3rem, 8vw, 6.7rem);
  max-width: 10ch;
}

.hero-subhead {
  margin: 1.2rem 0 0;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.6;
  max-width: 32rem;
}

.hero-detail,
.hero-definition,
.section-intro p:last-child,
.switcher-panel p,
.path-card p,
.info-card p,
.process-list li,
.trust-card p,
.neighborhood-card p,
.legal-card p,
.footer-brand p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.hero-definition {
  margin: 1rem 0 0;
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.trust-pills {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-pills li {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 52, 59, 0.08);
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
}

.hero-grid {
  position: relative;
  min-height: 38rem;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 246, 233, 0.66)),
    radial-gradient(circle at 20% 20%, rgba(86, 194, 179, 0.2), transparent 28%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
}

.hero-grid::before {
  inset: -5rem auto auto -5rem;
  width: 13rem;
  height: 13rem;
  background: rgba(86, 194, 179, 0.22);
}

.hero-grid::after {
  inset: auto -4rem 3rem auto;
  width: 12rem;
  height: 12rem;
  background: rgba(245, 184, 61, 0.18);
}

.floating-card,
.signal-panel,
.info-card,
.switcher,
.path-card,
.process-column,
.trust-card,
.legal-card {
  border: 1px solid rgba(18, 52, 59, 0.08);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  padding: 1.4rem;
  border-radius: 28px;
  max-width: 18rem;
}

.card-customer {
  top: 2rem;
  left: 2rem;
}

.card-doer {
  right: 2rem;
  top: 11.5rem;
}

.floating-card h2,
.info-card h3,
.path-card h3,
.process-column h3,
.trust-card h3,
.legal-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.mini-flow {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mini-flow span,
.diagram-node,
.loop-node,
.loop-center,
.neighborhood-card span {
  border-radius: 999px;
  background: #fff7ee;
  border: 1px solid rgba(18, 52, 59, 0.08);
}

.mini-flow span {
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
}

.signal-panel {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 24px;
}

.signal-panel small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
}

.signal-panel strong {
  font-size: 0.95rem;
}

.orbit {
  position: absolute;
  inset: 0;
}

.orbit span {
  position: absolute;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(18, 52, 59, 0.06);
  font-size: 0.8rem;
  color: var(--ink);
}

.orbit span:nth-child(1) { top: 8%; right: 12%; }
.orbit span:nth-child(2) { top: 29%; left: 9%; }
.orbit span:nth-child(3) { top: 42%; right: 8%; }
.orbit span:nth-child(4) { top: 57%; left: 14%; }
.orbit span:nth-child(5) { top: 16%; left: 43%; }
.orbit span:nth-child(6) { top: 70%; right: 23%; }

.section-intro {
  max-width: 48rem;
}

.section-intro h2,
.launch-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.momentum-grid,
.path-grid,
.trust-grid,
.search-grid,
.faq-grid,
.neighborhood-grid,
.legal-grid {
  display: grid;
  gap: 1rem;
}

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

.info-card,
.search-card,
.path-card,
.trust-card,
.legal-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.switcher {
  margin-top: 1.4rem;
  border-radius: var(--radius-xl);
  padding: 1.2rem;
}

.switcher-controls {
  display: inline-flex;
  gap: 0.7rem;
  padding: 0.4rem;
  border-radius: 999px;
  background: rgba(18, 52, 59, 0.05);
}

.switcher-button {
  padding: 0.9rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.switcher-button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(18, 52, 59, 0.08);
}

.switcher-panels {
  margin-top: 1rem;
}

.switcher-panel {
  display: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1rem 0 0;
}

.switcher-panel.active {
  display: grid;
}

.panel-list,
.process-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.panel-list li,
.process-list li {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(18, 52, 59, 0.06);
}

.diagram-card,
.process-graphic,
.launch-section {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(18, 52, 59, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 246, 233, 0.76)),
    radial-gradient(circle at 15% 15%, rgba(86, 194, 179, 0.18), transparent 30%);
  box-shadow: var(--shadow);
}

.diagram-card {
  min-height: 18rem;
  padding: 1.2rem;
  display: grid;
  place-items: center;
}

.diagram-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.diagram-node {
  padding: 0.95rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.diagram-arrow {
  width: 2.8rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(18, 52, 59, 0.15), var(--accent));
}

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

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

.events-grid,
.waitlist-grid,
.form-row {
  display: grid;
  gap: 1rem;
}

.events-grid,
.waitlist-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.customer-side .path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.process-column {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.process-list strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.process-graphic {
  min-height: 28rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
  padding: 1.3rem;
}

.loop-node {
  position: relative;
  z-index: 1;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.loop-center {
  position: absolute;
  padding: 1rem 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cool), #82d6c4);
  color: #08343a;
}

.loop-link {
  position: absolute;
  border-color: rgba(18, 52, 59, 0.14);
  border-style: dashed;
}

.loop-link-top,
.loop-link-bottom {
  width: 42%;
  height: 0;
  left: 29%;
  border-top-width: 2px;
}

.loop-link-top {
  top: 24%;
}

.loop-link-bottom {
  bottom: 24%;
}

.loop-link-left,
.loop-link-right {
  width: 0;
  height: 42%;
  top: 29%;
  border-left-width: 2px;
}

.loop-link-left {
  left: 24%;
}

.loop-link-right {
  right: 24%;
}

.neighborhood-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.7);
  border: 1px solid rgba(18, 52, 59, 0.08);
}

.neighborhood-card span {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  font-weight: 700;
}

.search-card,
.faq-card,
.content-card,
.event-card,
.waitlist-form {
  display: block;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 52, 59, 0.08);
  background: rgba(255, 252, 246, 0.74);
  box-shadow: var(--shadow);
}

.search-card h3,
.faq-card h3,
.content-card h3,
.event-card h3,
.content-prose h2 {
  margin: 0 0 0.7rem;
}

.search-card p,
.faq-card p,
.content-card p,
.event-card p,
.content-card li,
.content-prose p,
.content-prose li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  margin-top: 0.95rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.featured-event {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 246, 233, 0.76)),
    radial-gradient(circle at 15% 15%, rgba(86, 194, 179, 0.18), transparent 30%);
}

.event-meta {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.event-meta li {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(18, 52, 59, 0.06);
  color: var(--ink-soft);
}

.waitlist-form {
  display: grid;
  gap: 1rem;
}

.waitlist-form > form {
  display: grid;
  gap: 1rem;
}

.waitlist-form > form .button {
  margin-top: 0.45rem;
}

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

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field span {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-field input,
.form-field select {
  min-height: 3.3rem;
  width: 100%;
  padding: 0 1rem;
  border-radius: 16px;
  border: 1px solid rgba(18, 52, 59, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus {
  outline: 2px solid rgba(86, 194, 179, 0.4);
  outline-offset: 2px;
  border-color: rgba(18, 52, 59, 0.22);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.consent-row input {
  margin-top: 0.2rem;
}

.status-message {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 600;
}

.form-note {
  margin: -0.15rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.status-message.is-success {
  background: rgba(86, 194, 179, 0.14);
  border-color: rgba(86, 194, 179, 0.34);
  color: #0b4b44;
}

.status-message.is-error {
  background: rgba(227, 87, 51, 0.1);
  border-color: rgba(227, 87, 51, 0.22);
  color: #8a321a;
}

.status-message.is-warning {
  background: rgba(245, 184, 61, 0.16);
  border-color: rgba(245, 184, 61, 0.32);
  color: #7a5400;
}

.subpage-hero {
  padding-top: 5rem;
  padding-bottom: 1.5rem;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--ink-soft);
}

.subpage-hero h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.subpage-hero p {
  max-width: 46rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.pill-row span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(18, 52, 59, 0.08);
  font-size: 0.88rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1rem;
}

.content-card ul,
.content-prose ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.content-stack {
  display: grid;
  gap: 1rem;
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(18, 52, 59, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 246, 233, 0.76)),
    radial-gradient(circle at 15% 15%, rgba(86, 194, 179, 0.18), transparent 30%);
  box-shadow: var(--shadow);
}

.cta-strip p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
}

.legal-page .content-prose {
  max-width: 54rem;
}

.legal-page .content-prose p,
.legal-page .content-prose li {
  color: var(--ink-soft);
  line-height: 1.8;
}

.admin-table-card {
  overflow: hidden;
}

.table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 42rem;
}

.admin-table th,
.admin-table td {
  padding: 0.85rem 0.95rem;
  text-align: left;
  border-bottom: 1px solid rgba(18, 52, 59, 0.08);
  vertical-align: top;
}

.admin-table th {
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.launch-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

.launch-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.site-footer {
  width: min(var(--max), calc(100vw - 2rem));
  margin: 0 auto;
  padding: 1.8rem 0 3rem;
  border-top: 1px solid rgba(18, 52, 59, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.6fr) minmax(0, 2.4fr);
  gap: 2.5rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.footer-brand p {
  margin: 0;
  max-width: 36rem;
}

.footer-nav-cluster {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.6rem;
  align-items: start;
}

.footer-column h3 {
  margin: 0 0 0.7rem;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.55rem;
  color: var(--ink-soft);
}

.footer-column a {
  position: relative;
  display: inline-flex;
  width: max-content;
  font-size: 0.95rem;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 1px;
  background: rgba(18, 52, 59, 0.16);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--ink);
}

.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  transform: scaleX(1);
}

.copyright {
  margin: 1.6rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legal-grid {
  margin-top: 1rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .site-header {
    border-radius: 28px;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .switcher-panel,
  .process-grid,
  .launch-section {
    grid-template-columns: 1fr;
  }

  .momentum-grid,
  .trust-grid,
  .search-grid,
  .faq-grid,
  .legal-grid,
  .customer-side .path-grid,
  .events-grid,
  .waitlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid,
  .footer-nav-cluster {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 1.4rem;
  }

  .launch-cta {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .section {
    width: min(var(--max), calc(100vw - 1.2rem));
    padding: 2rem 0;
  }

  .site-header {
    margin-top: 0.6rem;
    padding: 0.85rem;
  }

  .button-ghost {
    display: none;
  }

  .hero {
    padding-top: 4.2rem;
    gap: 2rem;
  }

  .hero-grid {
    min-height: 34rem;
  }

  .floating-card,
  .signal-panel {
    position: static;
    max-width: none;
  }

  .hero-grid {
    display: grid;
    gap: 1rem;
    padding: 1rem;
  }

  .signal-panel,
  .momentum-grid,
  .path-grid,
  .trust-grid,
  .search-grid,
  .faq-grid,
  .neighborhood-grid,
  .legal-grid,
  .events-grid,
  .waitlist-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .content-grid,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .orbit {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .orbit span {
    position: static;
  }

  .switcher-controls {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .switcher-button {
    width: 100%;
  }

  .diagram-row {
    flex-direction: column;
  }

  .diagram-arrow {
    width: 2px;
    height: 2rem;
    background: linear-gradient(180deg, rgba(18, 52, 59, 0.15), var(--accent));
  }

  .process-graphic {
    min-height: 24rem;
  }

  .loop-link-top,
  .loop-link-bottom {
    width: 50%;
    left: 25%;
  }

  .loop-link-left,
  .loop-link-right {
    height: 48%;
    top: 26%;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-grid,
  .footer-nav-cluster {
    grid-template-columns: 1fr;
  }

  .footer-column {
    gap: 0.55rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
