/* Home and contact page styles only. */
.geo-home-shell {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 5rem);
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(130deg, rgba(246, 248, 242, 0.98), rgba(255, 255, 255, 0.92) 42%, rgba(235, 244, 229, 0.96)),
    repeating-linear-gradient(90deg, rgba(7, 14, 8, 0.035) 0 1px, transparent 1px 94px),
    repeating-linear-gradient(0deg, rgba(7, 14, 8, 0.03) 0 1px, transparent 1px 94px);
  padding: clamp(1rem, 2.4vw, 2rem);
  color: #070e08;
  box-shadow: 0 24px 60px -50px rgba(7, 14, 8, 0.75);
}

.geo-home-shell,
.geo-home-shell * {
  box-sizing: border-box;
}

html[data-theme="dark"] .geo-home-shell {
  background:
    linear-gradient(130deg, rgba(8, 16, 8, 0.98), rgba(13, 19, 13, 0.96) 48%, rgba(5, 10, 6, 0.98)),
    repeating-linear-gradient(90deg, rgba(111, 230, 13, 0.065) 0 1px, transparent 1px 94px),
    repeating-linear-gradient(0deg, rgba(111, 230, 13, 0.045) 0 1px, transparent 1px 94px);
  color: #ffffff;
  box-shadow: 0 24px 70px -54px rgba(111, 230, 13, 0.45);
}

.geo-home-shell::before,
.geo-home-shell::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.geo-home-shell::before {
  background:
    linear-gradient(115deg, rgba(111, 230, 13, 0.18), transparent 34%),
    linear-gradient(248deg, rgba(42, 160, 255, 0.14), transparent 38%),
    linear-gradient(90deg, transparent, rgba(111, 230, 13, 0.07), transparent);
}

.geo-home-shell::after {
  background: linear-gradient(180deg, transparent 0%, rgba(246, 248, 242, 0.86) 92%);
}

html[data-theme="dark"] .geo-home-shell::after {
  background: linear-gradient(180deg, transparent 0%, rgba(8, 16, 8, 0.82) 92%);
}

.geo-home-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 5;
}

.geo-home-brand,
.geo-home-actions,
.geo-home-cta-row,
.geo-home-pulse-row {
  display: flex;
  align-items: center;
}

.geo-home-brand {
  min-width: 0;
  gap: 0.65rem;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}

.geo-home-brand img {
  height: 3.4rem;
  width: auto;
  max-width: 12.5rem;
  object-fit: contain;
}

.geo-home-brand strong {
  border-radius: 999px;
  background: #6fe60d;
  color: #070e08;
  padding: 0.18rem 0.45rem;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.geo-home-actions {
  justify-content: flex-end;
  gap: 0.45rem;
}

.geo-home-nav-link,
.geo-home-primary-mini,
.geo-home-icon-btn,
.geo-home-secondary,
.geo-home-cta {
  min-height: 2.5rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.geo-home-nav-link,
.geo-home-icon-btn,
.geo-home-secondary {
  border: 1px solid rgba(7, 14, 8, 0.1);
  background: rgba(255, 255, 255, 0.62);
  color: #070e08;
}

html[data-theme="dark"] .geo-home-nav-link,
html[data-theme="dark"] .geo-home-icon-btn,
html[data-theme="dark"] .geo-home-secondary {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.geo-home-nav-link,
.geo-home-primary-mini,
.geo-home-secondary,
.geo-home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  white-space: nowrap;
}

.geo-home-icon-btn {
  display: grid;
  width: 2.5rem;
  place-items: center;
}

.geo-home-primary-mini,
.geo-home-cta {
  background: #070e08;
  color: #6fe60d;
  box-shadow: 0 16px 34px -24px rgba(7, 14, 8, 0.9);
}

html[data-theme="dark"] .geo-home-primary-mini,
html[data-theme="dark"] .geo-home-cta {
  background: #6fe60d;
  color: #070e08;
  box-shadow: 0 16px 34px -24px rgba(111, 230, 13, 0.9);
}

.geo-home-nav-link:hover,
.geo-home-primary-mini:hover,
.geo-home-icon-btn:hover,
.geo-home-secondary:hover,
.geo-home-cta:hover {
  transform: translateY(-1px);
}

.geo-home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(20rem, 1.07fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: clamp(34rem, 64vh, 42rem);
  padding: clamp(2rem, 5vw, 4.2rem) 0 clamp(1.2rem, 3vw, 2rem);
  perspective: 1200px;
}

.geo-home-copy {
  min-width: 0;
  width: 100%;
  max-width: 44rem;
}

.geo-home-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(111, 230, 13, 0.18);
  padding: 0.45rem 0.75rem;
  color: #175e0b;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html[data-theme="dark"] .geo-home-kicker {
  color: #a8ff62;
}

.geo-home-copy h1 {
  margin: 1.15rem 0 0;
  max-width: 15ch;
  font-size: clamp(4.35rem, 6vw, 5.35rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.geo-home-lede {
  margin: 1.35rem 0 0;
  max-width: 42rem;
  color: #64705f;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.7;
}

html[data-theme="dark"] .geo-home-lede {
  color: rgba(255, 255, 255, 0.6);
}

.geo-home-cta-row {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.geo-home-cta,
.geo-home-secondary {
  min-height: 3.25rem;
  padding-inline: 1.25rem;
  font-size: 0.88rem;
}

.geo-home-pulse-row {
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.geo-home-pulse-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0.5rem 0.72rem;
  color: #566052;
  font-size: 0.72rem;
  font-weight: 900;
}

html[data-theme="dark"] .geo-home-pulse-row span {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.65);
}

.geo-home-stage {
  position: relative;
  min-height: 32rem;
  transform-style: preserve-3d;
}

.geo-home-orbit {
  position: absolute;
  border: 1px solid rgba(7, 14, 8, 0.08);
  border-radius: 50%;
  transform-style: preserve-3d;
  will-change: transform;
}

.geo-home-orbit-a {
  inset: 4rem 1rem auto auto;
  width: min(34vw, 28rem);
  aspect-ratio: 1;
  transform: rotateX(64deg) rotateZ(-18deg);
}

.geo-home-orbit-b {
  right: 18%;
  bottom: 2rem;
  width: min(28vw, 20rem);
  aspect-ratio: 1;
  transform: rotateX(68deg) rotateZ(22deg);
}

html[data-theme="dark"] .geo-home-orbit {
  border-color: rgba(111, 230, 13, 0.16);
}

.geo-home-map-card {
  position: absolute;
  inset: 3rem 0 auto auto;
  width: min(100%, 43rem);
  aspect-ratio: 1.28;
  overflow: hidden;
  border: 1px solid rgba(7, 14, 8, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(228, 239, 223, 0.82)),
    linear-gradient(90deg, rgba(111, 230, 13, 0.16), transparent);
  box-shadow: 0 42px 90px -55px rgba(7, 14, 8, 0.95);
  transform: rotateX(0deg) rotateY(0deg) translateZ(0);
  transform-style: preserve-3d;
  will-change: transform;
}

html[data-theme="dark"] .geo-home-map-card {
  border-color: rgba(111, 230, 13, 0.18);
  background:
    linear-gradient(145deg, rgba(17, 29, 16, 0.94), rgba(5, 12, 6, 0.9)),
    linear-gradient(90deg, rgba(111, 230, 13, 0.11), transparent);
  box-shadow: 0 42px 90px -55px rgba(111, 230, 13, 0.55);
}

.geo-home-grid {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(rgba(7, 14, 8, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 14, 8, 0.075) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: rotateX(62deg) rotateZ(-18deg) translateY(3rem);
  transform-origin: center;
}

html[data-theme="dark"] .geo-home-grid {
  background:
    linear-gradient(rgba(111, 230, 13, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 230, 13, 0.13) 1px, transparent 1px);
  background-size: 46px 46px;
}

.geo-home-route,
.geo-home-route svg {
  position: absolute;
  inset: 0;
}

.geo-home-route path {
  fill: none;
  stroke: #175e0b;
  stroke-linecap: round;
  stroke-width: 5;
  stroke-dasharray: 11 12;
  animation: geo-home-route-flow 7s linear infinite;
}

.geo-home-route .geo-home-route-glow {
  stroke: #6fe60d;
  stroke-dasharray: none;
  stroke-width: 13;
  opacity: 0.22;
  filter: blur(9px);
}

.geo-home-route .node {
  position: absolute;
  z-index: 2;
  display: block;
  width: 1rem;
  height: 1rem;
  border: 3px solid #070e08;
  border-radius: 999px;
  background: #6fe60d;
  box-shadow: 0 0 0 0 rgba(111, 230, 13, 0.55);
  animation: geo-home-node-pulse 2.6s ease-in-out infinite;
}

html[data-theme="dark"] .geo-home-route .node {
  border-color: #ffffff;
}

.geo-home-route .node-a {
  left: 10%;
  top: 68%;
}

.geo-home-route .node-b {
  left: 54%;
  top: 52%;
  animation-delay: 0.4s;
}

.geo-home-route .node-c {
  right: 8%;
  top: 24%;
  animation-delay: 0.8s;
}

.geo-home-holo-panel {
  position: absolute;
  z-index: 3;
  min-width: 9.5rem;
  border: 1px solid rgba(7, 14, 8, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.9rem 1rem;
  box-shadow: 0 24px 50px -36px rgba(7, 14, 8, 0.9);
  backdrop-filter: blur(16px);
}

html[data-theme="dark"] .geo-home-holo-panel {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 14, 8, 0.58);
}

.geo-home-holo-panel strong,
.geo-home-holo-panel span {
  display: block;
}

.geo-home-holo-panel strong {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
}

.geo-home-holo-panel span {
  margin-top: 0.2rem;
  color: #64705f;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="dark"] .geo-home-holo-panel span {
  color: rgba(255, 255, 255, 0.55);
}

.geo-home-holo-panel.panel-a {
  left: 6%;
  top: 10%;
}

.geo-home-holo-panel.panel-b {
  right: 7%;
  bottom: 8%;
}

.geo-home-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(111, 230, 13, 0.22), transparent);
  opacity: 0.5;
  transform: translateY(-100%);
  animation: geo-home-scan 5.5s ease-in-out infinite;
}

.geo-home-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.geo-home-strip article {
  min-height: 11rem;
  border: 1px solid rgba(7, 14, 8, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  padding: 1.15rem;
  box-shadow: 0 20px 42px -36px rgba(7, 14, 8, 0.75);
  backdrop-filter: blur(14px);
}

html[data-theme="dark"] .geo-home-strip article {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.geo-home-strip i {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: 999px;
  background: #6fe60d;
  color: #070e08;
  font-size: 1rem;
}

.geo-home-strip h2 {
  margin: 1rem 0 0;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.geo-home-strip p {
  margin: 0.5rem 0 0;
  color: #667060;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.55;
}

html[data-theme="dark"] .geo-home-strip p {
  color: rgba(255, 255, 255, 0.58);
}

.geo-home-economics {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  position: relative;
  z-index: 2;
  margin-top: 0.9rem;
  border: 1px solid rgba(7, 14, 8, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(111, 230, 13, 0.16), rgba(255, 255, 255, 0.6)),
    rgba(255, 255, 255, 0.68);
  padding: clamp(1.15rem, 3vw, 1.7rem);
  box-shadow: 0 20px 42px -36px rgba(7, 14, 8, 0.75);
  backdrop-filter: blur(14px);
}

html[data-theme="dark"] .geo-home-economics {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(111, 230, 13, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
}

.geo-home-economics h2 {
  margin: 0.95rem 0 0;
  max-width: 15ch;
  font-size: clamp(1.65rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.geo-home-economics p:last-child {
  margin: 0;
  color: #566052;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.75;
}

html[data-theme="dark"] .geo-home-economics p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.geo-home-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  position: relative;
  z-index: 2;
  margin-top: 0.9rem;
}

.geo-home-contact-copy,
.geo-home-contact-form {
  border: 1px solid rgba(7, 14, 8, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 20px 42px -36px rgba(7, 14, 8, 0.75);
  backdrop-filter: blur(14px);
}

html[data-theme="dark"] .geo-home-contact-copy,
html[data-theme="dark"] .geo-home-contact-form {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.geo-home-contact-copy {
  padding: clamp(1.15rem, 3vw, 1.7rem);
}

.geo-home-contact-page {
  min-height: calc(100vh - 5rem);
}

.geo-home-contact-standalone {
  align-items: center;
  margin-top: clamp(2rem, 7vw, 7rem);
}

.geo-home-contact-copy h1,
.geo-home-contact-copy h2 {
  margin: 1rem 0 0;
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.geo-home-contact-copy p {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: #667060;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.65;
}

html[data-theme="dark"] .geo-home-contact-copy p {
  color: rgba(255, 255, 255, 0.58);
}

.geo-home-contact-copy a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  margin-top: 1.25rem;
  border-radius: 999px;
  background: #070e08;
  padding: 0.72rem 1rem;
  color: #6fe60d;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

html[data-theme="dark"] .geo-home-contact-copy a {
  background: #6fe60d;
  color: #070e08;
}

.geo-home-contact-form {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1rem, 2.6vw, 1.45rem);
}

.geo-home-contact-trap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.geo-home-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.geo-home-contact-notes {
  border: 1px solid rgba(7, 14, 8, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  padding: clamp(1.15rem, 3vw, 1.7rem);
  box-shadow: 0 20px 42px -36px rgba(7, 14, 8, 0.75);
  backdrop-filter: blur(14px);
}

html[data-theme="dark"] .geo-home-contact-notes {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.geo-home-contact-notes h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.geo-home-contact-notes p {
  margin: 0.75rem 0 0;
  color: #667060;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.6;
}

html[data-theme="dark"] .geo-home-contact-notes p {
  color: rgba(255, 255, 255, 0.58);
}

.geo-home-contact-notes div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.geo-home-contact-notes span {
  border-radius: 999px;
  background: rgba(111, 230, 13, 0.18);
  padding: 0.45rem 0.65rem;
  color: #175e0b;
  font-size: 0.7rem;
  font-weight: 900;
}

html[data-theme="dark"] .geo-home-contact-notes span {
  color: #a8ff62;
}

.geo-home-contact-alert {
  grid-column: 1 / -1;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.geo-home-contact-alert.is-success {
  border: 1px solid rgba(23, 94, 11, 0.18);
  background: rgba(111, 230, 13, 0.18);
  color: #175e0b;
}

.geo-home-contact-alert.is-error {
  border: 1px solid rgba(185, 28, 28, 0.18);
  background: rgba(254, 226, 226, 0.9);
  color: #991b1b;
}

html[data-theme="dark"] .geo-home-contact-alert.is-success {
  color: #a8ff62;
}

html[data-theme="dark"] .geo-home-contact-alert.is-error {
  background: rgba(127, 29, 29, 0.22);
  color: #fecaca;
}

.geo-home-contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  color: #566052;
  font-size: 0.73rem;
  font-weight: 900;
}

html[data-theme="dark"] .geo-home-contact-form label {
  color: rgba(255, 255, 255, 0.66);
}

.geo-home-contact-form input,
.geo-home-contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(7, 14, 8, 0.08);
  border-radius: 14px;
  background: rgba(246, 248, 242, 0.9);
  padding: 0.82rem 0.9rem;
  color: #070e08;
  font-size: 0.9rem;
  font-weight: 800;
  outline: none;
}

html[data-theme="dark"] .geo-home-contact-form input,
html[data-theme="dark"] .geo-home-contact-form textarea {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.geo-home-contact-form input::placeholder,
.geo-home-contact-form textarea::placeholder {
  color: #8a9384;
  font-weight: 700;
}

html[data-theme="dark"] .geo-home-contact-form input::placeholder,
html[data-theme="dark"] .geo-home-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.geo-home-contact-form input:focus,
.geo-home-contact-form textarea:focus {
  border-color: rgba(111, 230, 13, 0.65);
  box-shadow: 0 0 0 4px rgba(111, 230, 13, 0.16);
}

.geo-home-contact-form textarea {
  resize: vertical;
}

.geo-home-contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  border: 0;
  border-radius: 999px;
  background: #070e08;
  color: #6fe60d;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

html[data-theme="dark"] .geo-home-contact-form button {
  background: #6fe60d;
  color: #070e08;
}

.geo-home-contact-form button:hover {
  transform: translateY(-1px);
}

.geo-home-contact-status {
  min-height: 1.2rem;
  margin: 0;
  color: #667060;
  font-size: 0.78rem;
  font-weight: 800;
}

html[data-theme="dark"] .geo-home-contact-status {
  color: rgba(255, 255, 255, 0.58);
}

@keyframes geo-home-route-flow {
  to {
    stroke-dashoffset: -92;
  }
}

@keyframes geo-home-node-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(111, 230, 13, 0.5);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(111, 230, 13, 0);
  }
}

@keyframes geo-home-scan {
  0%,
  22% {
    transform: translateY(-100%);
  }
  70%,
  100% {
    transform: translateY(100%);
  }
}

@media (max-width: 1100px) {
  .geo-home-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .geo-home-copy h1 {
    font-size: 5.1rem;
    max-width: 14ch;
  }

  .geo-home-stage {
    min-height: 27rem;
  }

  .geo-home-map-card {
    position: relative;
    inset: auto;
    width: min(100%, 42rem);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .geo-home-shell {
    border-radius: 18px;
    padding: 0.9rem;
    max-width: 100%;
    width: 100%;
    overflow-x: clip;
  }

  .geo-home-nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .geo-home-actions {
    flex-wrap: wrap;
    max-width: 3rem;
  }

  .geo-home-nav-link {
    display: none;
  }

  .geo-home-primary-mini {
    display: none;
  }

  .geo-home-hero {
    gap: 1.25rem;
    padding-top: 2.5rem;
    min-width: 0;
  }

  .geo-home-kicker {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .geo-home-copy h1 {
    max-width: 9.4ch;
    font-size: 2.75rem;
    overflow-wrap: break-word;
  }

  .geo-home-lede {
    width: 100%;
    max-width: 33ch;
    font-size: 0.96rem;
    overflow-wrap: anywhere;
  }

  .geo-home-stage {
    min-height: 18rem;
    width: min(100%, 22rem);
  }

  .geo-home-map-card {
    width: min(100%, 22rem);
    border-radius: 18px;
  }

  .geo-home-holo-panel {
    min-width: 7.4rem;
    padding: 0.65rem 0.75rem;
  }

  .geo-home-holo-panel strong {
    font-size: 1.05rem;
  }

  .geo-home-holo-panel span {
    font-size: 0.55rem;
  }

  .geo-home-strip {
    grid-template-columns: 1fr;
  }

  .geo-home-economics {
    grid-template-columns: 1fr;
  }

  .geo-home-economics h2 {
    max-width: 100%;
    font-size: 2rem;
  }

  .geo-home-contact {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .geo-home-contact-copy h1,
  .geo-home-contact-copy h2 {
    max-width: 100%;
    font-size: 2rem;
  }

  .geo-home-contact-copy,
  .geo-home-contact-form,
  .geo-home-contact-notes,
  .geo-home-economics {
    width: min(100%, 22rem);
    max-width: 22rem;
    min-width: 0;
  }

  .geo-home-contact-copy p,
  .geo-home-economics p,
  .geo-home-contact-form input,
  .geo-home-contact-form textarea {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .geo-home-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .geo-home-route path,
  .geo-home-route .node,
  .geo-home-scan {
    animation: none;
  }
}
