:root {
  --ink: #10192d;
  --paper: #f1f0e9;
  --acid: #c8ff3d;
  --blue: #1939ff;
  --line: rgba(16, 25, 45, 0.18);
  --muted: #6e746f;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
  --display: "Syne", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

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

button {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cursor-glow {
  position: fixed;
  z-index: 20;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 61, 0.14), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 26px 4vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark,
.footer-brand {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.brand-meta {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5vw;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.main-nav a:not(.nav-cta) {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: flex;
  min-width: 160px;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--ink);
  color: white;
  transition: background 200ms ease, color 200ms ease;
}

.nav-cta:hover {
  background: var(--acid);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.section-shell {
  width: min(1420px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  grid-template-columns: 58% 42%;
  overflow: hidden;
  padding: 170px 4vw 65px;
}

.hero::before {
  position: absolute;
  top: 0;
  left: 46%;
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 50px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.55rem;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 7.5vw, 8.6rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.orbit-word {
  position: relative;
  display: inline-block;
  color: var(--blue);
  font-style: italic;
}

.orbit-word i {
  position: absolute;
  top: 48%;
  left: 48%;
  width: 110%;
  height: 58%;
  border: 1px solid var(--blue);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.orbit-word i::after {
  position: absolute;
  top: 5px;
  right: 12%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.hero-footer {
  display: flex;
  max-width: 830px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 70px;
}

.hero-footer p {
  max-width: 470px;
  margin: 0;
  color: #4f5651;
  font-size: 1.02rem;
  line-height: 1.6;
}

.text-link {
  display: flex;
  min-width: 225px;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 550px;
  isolation: isolate;
}

.globe-orbit {
  position: absolute;
  top: 50%;
  left: 52%;
  width: min(34vw, 520px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.globe-orbit::before,
.globe-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.globe-orbit::before {
  z-index: -2;
  inset: 5%;
  background: radial-gradient(circle, rgba(63, 92, 255, 0.22), rgba(63, 92, 255, 0.06) 48%, transparent 72%);
  filter: blur(28px);
  animation: aura-breathe 4.5s ease-in-out infinite;
}

.globe-orbit::after {
  z-index: -1;
  inset: 7%;
  border: 1px solid rgba(97, 122, 255, 0.18);
  box-shadow: 0 0 80px rgba(25, 57, 255, 0.14);
}

.planet {
  position: absolute;
  z-index: 2;
  inset: 8%;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 29%, rgba(77, 111, 255, 0.34), transparent 26%),
    radial-gradient(circle at 55% 58%, #172541 0%, #0b1428 64%, #040813 100%);
  box-shadow:
    inset -55px -25px 80px rgba(0, 0, 0, 0.62),
    inset 28px 12px 65px rgba(73, 105, 255, 0.18),
    0 0 0 1px rgba(25, 57, 255, 0.32),
    0 35px 100px rgba(11, 20, 40, 0.32),
    0 0 75px rgba(25, 57, 255, 0.16);
}

.planet::after {
  position: absolute;
  z-index: 8;
  inset: 0;
  border: 1px solid rgba(150, 169, 255, 0.38);
  border-radius: 50%;
  box-shadow:
    inset 0 0 22px rgba(108, 132, 255, 0.22),
    inset 10px 0 28px rgba(82, 111, 255, 0.12);
  content: "";
  pointer-events: none;
}

.globe-atmosphere {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.12), transparent 22%),
    radial-gradient(circle at 50% 50%, transparent 63%, rgba(80, 112, 255, 0.2) 78%, transparent 100%);
}

.globe-grid {
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: 50%;
  background:
    repeating-radial-gradient(ellipse at 50% 50%, transparent 0 38px, rgba(144, 161, 255, 0.1) 39px 40px),
    linear-gradient(90deg, transparent 49.7%, rgba(144, 161, 255, 0.14) 50%, transparent 50.3%);
  transform: scaleX(1.85);
}

.globe-map {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  width: 200%;
  height: 100%;
  color: #8ca0ff;
  opacity: 0.96;
  will-change: transform;
  animation: globe-spin 18s linear infinite;
}

.globe-map svg {
  width: 50%;
  height: 100%;
  flex: 0 0 50%;
}

.globe-shade {
  position: absolute;
  z-index: 4;
  inset: -1px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(4, 8, 19, 0.9), transparent 24%, transparent 69%, rgba(4, 8, 19, 0.92)),
    radial-gradient(circle at 38% 30%, transparent 0 35%, rgba(4, 8, 19, 0.08) 55%, rgba(4, 8, 19, 0.58) 100%);
  pointer-events: none;
}

@keyframes globe-spin {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.location-core {
  position: absolute;
  z-index: 7;
  top: 47%;
  left: 61%;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(200, 255, 61, 0.8);
  border-radius: 50%;
  background: rgba(4, 8, 19, 0.82);
  box-shadow:
    0 0 0 8px rgba(200, 255, 61, 0.09),
    0 0 25px rgba(200, 255, 61, 0.62);
}

.location-core span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
}

.location-core i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95px;
  border-top: 1px dashed rgba(200, 255, 61, 0.8);
  transform: rotate(-38deg);
  transform-origin: left;
}

.orbit-ring {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(25, 57, 255, 0.42);
  border-radius: 50%;
  animation: orbit-one 14s linear infinite;
}

.orbit-ring::after {
  position: absolute;
  top: 8%;
  right: 18%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 7px rgba(200, 255, 61, 0.1), 0 0 20px var(--acid);
  content: "";
}

.orbit-ring-two {
  inset: 5%;
  border-style: dashed;
  opacity: 0.55;
  animation: orbit-two 19s linear infinite reverse;
}

.orbit-ring-two::after {
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(25, 57, 255, 0.12), 0 0 20px var(--blue);
}

.star-field {
  position: absolute;
  z-index: -1;
  inset: -12%;
  animation: star-drift 30s linear infinite;
}

.star-field i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(25, 57, 255, 0.8);
}

.star-field i:nth-child(1) { top: 8%; left: 22%; }
.star-field i:nth-child(2) { top: 18%; right: 9%; width: 2px; height: 2px; }
.star-field i:nth-child(3) { top: 44%; left: 4%; background: var(--acid); }
.star-field i:nth-child(4) { right: 2%; bottom: 34%; }
.star-field i:nth-child(5) { bottom: 7%; left: 29%; width: 2px; height: 2px; }
.star-field i:nth-child(6) { right: 25%; bottom: 3%; background: var(--acid); }
.star-field i:nth-child(7) { top: 31%; right: 22%; width: 2px; height: 2px; }
.star-field i:nth-child(8) { bottom: 22%; left: 14%; }

@keyframes orbit-one {
  from { transform: rotate(-14deg) scaleY(0.74); }
  to { transform: rotate(346deg) scaleY(0.74); }
}

@keyframes orbit-two {
  from { transform: rotate(58deg) scaleY(0.92); }
  to { transform: rotate(418deg) scaleY(0.92); }
}

@keyframes aura-breathe {
  50% {
    opacity: 0.62;
    transform: scale(1.1);
  }
}

@keyframes star-drift {
  to { transform: rotate(360deg); }
}

.coordinate {
  position: absolute;
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--mono);
  line-height: 1.45;
}

.coordinate span,
.coordinate small {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coordinate span {
  color: var(--blue);
}

.coordinate strong {
  font-size: 0.72rem;
  font-weight: 500;
}

.coordinate small {
  color: var(--muted);
}

.coordinate-top {
  top: 5%;
  right: 1%;
  padding-left: 13px;
  border-left: 1px solid var(--blue);
}

.coordinate-bottom {
  bottom: 5%;
  left: 1%;
}

.coordinate-bottom span i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
  animation: signal-pulse 1.8s ease-in-out infinite;
}

@keyframes signal-pulse {
  50% {
    opacity: 0.35;
  }
}

.signal-strip {
  overflow: hidden;
  padding: 17px 0;
  background: var(--acid);
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.signal-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 38px;
  animation: ticker 24s linear infinite;
}

.signal-track i {
  color: var(--blue);
  font-size: 0.9rem;
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.approach {
  padding: 150px 0 170px;
}

.section-heading h2 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.approach-layout {
  display: grid;
  grid-template-columns: 32% 68%;
  margin-top: 120px;
}

.approach-intro {
  max-width: 320px;
  margin: 0;
  color: #505853;
  line-height: 1.65;
}

.capability {
  display: grid;
  grid-template-columns: 60px 1fr 45px;
  gap: 20px;
  padding: 28px 0 35px;
  border-top: 1px solid var(--line);
}

.capability-number,
.capability p {
  color: var(--muted);
  font-size: 0.8rem;
}

.capability h3 {
  margin: 0 0 9px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.capability p {
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
}

.capability-icon {
  font-family: var(--display);
  font-size: 1.7rem;
}

.projects {
  padding: 150px 0;
  background: var(--ink);
  color: white;
}

.projects-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.projects-heading h2 {
  max-width: 780px;
}

.project-filters {
  display: flex;
  gap: 8px;
}

.filter {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.filter.active,
.filter:hover {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-top: 90px;
}

.project-card {
  transition: opacity 250ms ease, transform 250ms ease;
}

.project-card:hover .project-art {
  transform: translateY(-5px);
}

.project-card.hidden {
  display: none;
}

.project-card:nth-child(3) {
  grid-column: 2;
}

.project-large {
  grid-row: span 2;
}

.project-art {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #d8dccf;
  transition: transform 300ms ease;
}

.project-large .project-art {
  min-height: 660px;
}

.art-label {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  padding: 7px 9px;
  background: var(--ink);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.art-orbit {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(16, 25, 45, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 25, 45, 0.08) 1px, transparent 1px),
    #c8ff3d;
  background-size: 38px 38px;
}

.orbital-system {
  position: relative;
  width: 67%;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.orbital-system::before,
.orbital-system::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.orbital-system::before {
  width: 64%;
  height: 64%;
}

.orbital-system::after {
  width: 10%;
  height: 10%;
  border: 0;
  background: var(--blue);
}

.orbital-system i {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
}

.orbital-system i:nth-child(1) {
  top: -7px;
  left: 48%;
}

.orbital-system i:nth-child(2) {
  top: 32%;
  right: 6%;
  background: var(--blue);
}

.orbital-system i:nth-child(3) {
  right: 36%;
  bottom: 8%;
}

.orbital-system i:nth-child(4) {
  top: 55%;
  left: 16%;
  background: white;
}

.art-signal {
  display: grid;
  place-items: center;
  background: var(--blue);
}

.signal-sphere {
  width: 185px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 40% 40%, var(--acid) 0 2px, transparent 3px 8px);
  box-shadow: 0 0 60px rgba(200, 255, 61, 0.4);
}

.art-terrain {
  background: #ebe8dc;
}

.terrain-lines {
  position: absolute;
  inset: 12%;
  background: repeating-radial-gradient(ellipse at 62% 46%, transparent 0 13px, var(--blue) 14px 15px);
  transform: rotate(-8deg) scale(1.2);
}

.project-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 22px 0 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.project-info span {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
}

.project-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.78rem;
  line-height: 1.6;
}

.project-open {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 22px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: white;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.project-open:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.method {
  padding: 155px 0;
}

.method-heading {
  display: grid;
  grid-template-columns: 32% 68%;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 120px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-steps article {
  min-height: 390px;
  padding: 30px 35px;
  border-right: 1px solid var(--line);
}

.method-steps article:last-child {
  border-right: 0;
}

.method-steps span,
.step-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.method-steps h3 {
  margin: 105px 0 20px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.method-steps p {
  max-width: 310px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.booking {
  display: grid;
  grid-template-columns: 44% 56%;
  background: var(--blue);
  color: white;
}

.booking-copy {
  display: flex;
  min-height: 820px;
  flex-direction: column;
  padding: 105px 6vw;
}

.booking-copy h2 {
  margin: 25px 0 35px;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 6.3rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.booking-copy h2 em {
  color: var(--acid);
  font-weight: 500;
}

.booking-copy > p:not(.eyebrow) {
  max-width: 465px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.booking-contact {
  display: flex;
  margin-top: auto;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.63rem;
}

.booking-contact a {
  font-size: 0.8rem;
}

.booking-panel {
  display: grid;
  min-height: 820px;
  place-items: center;
  padding: 55px 3vw;
  background: var(--paper);
  color: var(--ink);
}

.calendar-shell {
  width: min(760px, 100%);
}

.calendar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.calendar-heading p {
  margin: 0;
}

.calendar-heading > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.cal-inline {
  width: 100%;
  min-height: 690px;
  overflow: auto;
}

.calendar-fallback {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--ink);
  color: white;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.booking-form {
  width: min(610px, 100%);
}

.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 65px;
}

.form-progress span {
  width: 42px;
  height: 3px;
  background: #d5d5cd;
}

.form-progress span.active {
  background: var(--blue);
}

.form-step,
.form-success {
  display: none;
}

.form-step.active,
.form-success.active {
  display: block;
  animation: step-in 350ms ease both;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

.form-step h3,
.form-success h3 {
  margin: 14px 0 45px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.service-options {
  display: grid;
  gap: 10px;
}

.service-options input {
  position: absolute;
  opacity: 0;
}

.service-options span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 180ms ease;
}

.service-options span::after {
  content: "○";
  font-size: 1.2rem;
}

.service-options input:checked + span {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.service-options input:checked + span::after {
  content: "●";
  color: var(--acid);
}

.form-next,
.form-submit {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 28px;
  padding: 17px 20px;
  border: 0;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.form-next:hover,
.form-submit:hover {
  background: var(--blue);
}

.form-actions {
  display: flex;
  align-items: flex-end;
  gap: 25px;
}

.form-actions .form-next,
.form-actions .form-submit {
  flex: 1;
}

.form-back,
.form-reset {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.time-field {
  margin: 10px 0 0;
  padding: 0;
  border: 0;
}

.time-field legend {
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.time-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.time-options input {
  position: absolute;
  opacity: 0;
}

.time-options span {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.7rem;
  transition: all 180ms ease;
}

.time-options input:checked + span {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.time-options input:focus-visible + span {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.field {
  display: flex;
  margin-bottom: 22px;
  flex-direction: column;
  gap: 9px;
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
  text-transform: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--blue);
}

.success-orbit {
  display: grid;
  width: 110px;
  height: 110px;
  margin-bottom: 45px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 2rem;
  box-shadow: 0 0 0 18px rgba(25, 57, 255, 0.07);
}

.form-success > p:not(.step-label) {
  max-width: 450px;
  color: var(--muted);
  line-height: 1.7;
}

.success-summary {
  display: grid;
  max-width: 450px;
  grid-template-columns: 90px 1fr;
  gap: 10px 20px;
  margin-top: 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.success-summary span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.success-summary strong {
  font-size: 0.82rem;
}

.form-reset {
  margin-top: 30px;
}

.project-dialog {
  width: min(1180px, calc(100% - 40px));
  max-height: 90vh;
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

.project-dialog[open] {
  display: grid;
  grid-template-columns: 42% 58%;
  animation: dialog-in 280ms ease both;
}

.project-dialog::backdrop {
  background: rgba(8, 13, 27, 0.78);
  backdrop-filter: blur(7px);
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  font-size: 1.4rem;
}

.dialog-visual {
  min-height: 680px;
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0 35px, rgba(16, 25, 45, 0.2) 36px 37px),
    var(--acid);
}

.dialog-visual.materia {
  background:
    repeating-radial-gradient(circle at 45% 40%, var(--acid) 0 2px, transparent 3px 12px),
    var(--blue);
}

.dialog-visual.habitats {
  background:
    repeating-radial-gradient(ellipse at 62% 46%, transparent 0 18px, var(--blue) 19px 20px),
    #ebe8dc;
}

.dialog-content {
  overflow-y: auto;
  padding: 70px 60px 55px;
}

.dialog-content h2 {
  margin: 16px 0 25px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.dialog-lead {
  max-width: 620px;
  margin-bottom: 55px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.dialog-details {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.dialog-details > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 25px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.dialog-details span {
  font-family: var(--mono);
  font-size: 0.58rem;
}

.dialog-details p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.dialog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 42px;
}

.dialog-tags span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-family: var(--mono);
  font-size: 0.55rem;
  text-transform: uppercase;
}

.dialog-cta {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--ink);
  color: white;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 65px 4vw;
  background: var(--ink);
  color: white;
}

footer p,
footer > span,
.footer-links {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.6;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 900px) {
  .cursor-glow {
    display: none;
  }

  .site-header {
    position: absolute;
  }

  .menu-toggle {
    position: relative;
    z-index: 12;
    display: flex;
    width: 38px;
    height: 38px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .menu-toggle span:not(.sr-only) {
    width: 100%;
    height: 1px;
    background: currentColor;
  }

  .main-nav {
    position: fixed;
    z-index: 11;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 12vw;
    background: var(--acid);
    font-family: var(--display);
    font-size: 2.3rem;
    text-transform: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    margin-top: 15px;
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 145px;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 15vw, 7rem);
  }

  .hero-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 45px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .globe-orbit {
    width: min(88vw, 500px);
  }

  .approach-layout,
  .method-heading {
    grid-template-columns: 1fr;
  }

  .approach-intro {
    margin-bottom: 70px;
  }

  .projects-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card:nth-child(3) {
    grid-column: auto;
  }

  .project-large {
    grid-row: auto;
  }

  .project-large .project-art {
    min-height: 500px;
  }

  .method-heading h2 {
    margin-left: 0;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-steps article {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking {
    grid-template-columns: 1fr;
  }

  .project-dialog[open] {
    grid-template-columns: 1fr;
  }

  .dialog-visual {
    min-height: 280px;
  }

  .booking-copy,
  .booking-panel {
    min-height: 700px;
  }

  .cal-inline {
    min-height: 720px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 22px 20px;
  }

  .brand-meta {
    display: none;
  }

  .hero {
    padding: 130px 20px 40px;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .approach,
  .method,
  .projects {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-heading h2 {
    font-size: 3.2rem;
  }

  .approach-layout,
  .method-steps {
    margin-top: 75px;
  }

  .capability {
    grid-template-columns: 36px 1fr;
  }

  .capability-icon {
    display: none;
  }

  .project-filters {
    flex-wrap: wrap;
  }

  .project-large .project-art,
  .project-art {
    min-height: 360px;
  }

  .project-info {
    grid-template-columns: 1fr;
  }

  .method-steps article {
    padding-right: 8px;
    padding-left: 8px;
  }

  .booking-copy {
    min-height: 680px;
    padding: 85px 25px;
  }

  .booking-panel {
    min-height: 720px;
    padding: 55px 16px;
  }

  .calendar-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .time-options {
    grid-template-columns: 1fr 1fr;
  }

  .dialog-content {
    padding: 55px 24px 35px;
  }

  .dialog-details > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 55px 25px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .globe-map {
    transform: translateX(0);
  }
}
