:root {
  --navy: #081728;
  --navy-2: #0e2438;
  --ink: #151a22;
  --muted: #5e6a78;
  --line: #dfe6ee;
  --soft: #f5f8fb;
  --white: #ffffff;
  --cyan: #19a7ce;
  --steel: #8ba0b6;
  --shadow: 0 14px 36px rgba(8, 23, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

.construction-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.construction-main {
  min-height: 100vh;
  display: grid;
  grid-template-rows: minmax(340px, 58vh) auto;
  background:
    linear-gradient(90deg, rgba(8, 23, 40, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 23, 40, 0.03) 1px, transparent 1px),
    linear-gradient(145deg, #ffffff 0%, #f7fafc 54%, #eaf1f7 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.construction-logo {
  min-height: auto;
  padding-bottom: 0;
  background: transparent;
}

.construction-logo::before {
  inset: 18% -12% auto;
}

.construction-logo .wave-stage {
  min-height: 100%;
}

.construction-message {
  display: grid;
  place-items: start center;
  padding: clamp(10px, 3vw, 24px) clamp(18px, 6vw, 76px) clamp(42px, 8vw, 84px);
  text-align: center;
}

.construction-message h1 {
  max-width: none;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(223, 230, 238, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-wordmark {
  width: min(174px, 42vw);
  height: 34px;
  display: block;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 8px 12px;
  color: #2d3846;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.wave-showcase {
  position: relative;
  min-height: clamp(300px, 44vh, 430px);
  padding: clamp(28px, 4vw, 46px) clamp(18px, 6vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 23, 40, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 23, 40, 0.03) 1px, transparent 1px),
    linear-gradient(145deg, #ffffff 0%, #f7fafc 54%, #eaf1f7 100%);
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--navy);
}

.wave-showcase::before {
  content: "";
  position: absolute;
  inset: 14% -12% auto;
  height: 280px;
  background: linear-gradient(90deg, transparent, rgba(8, 23, 40, 0.08), transparent);
  transform: rotate(-10deg);
  animation: waveLightDrift 6s ease-in-out infinite;
}

.wave-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: clamp(240px, 36vh, 340px);
}

.wave-fx-canvas {
  position: absolute;
  inset: -12%;
  z-index: 1;
  width: 124%;
  height: 124%;
  pointer-events: none;
}

.wave-stage::before,
.wave-stage::after {
  content: "";
  position: absolute;
  width: min(430px, 64vw);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
}

.wave-stage::before {
  background: radial-gradient(circle, rgba(8, 23, 40, 0.11), transparent 58%);
  filter: blur(16px);
  animation: waveCorePulse 4.8s ease-in-out infinite;
}

.wave-stage::after {
  border: 1px solid rgba(8, 23, 40, 0.1);
  transform: rotateX(66deg);
}

.wave-orbit {
  position: absolute;
  z-index: 1;
  width: min(500px, 66vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(8, 23, 40, 0.12);
  transform: rotateX(66deg);
}

.wave-orbit::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border-top: 2px solid rgba(8, 23, 40, 0.48);
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  filter: drop-shadow(0 0 12px rgba(8, 23, 40, 0.18));
}

.wave-orbit-one {
  animation: waveOrbitOne 8.5s linear infinite;
}

.wave-orbit-two {
  width: min(390px, 52vw);
  opacity: 0.62;
  animation: waveOrbitTwo 11s linear infinite;
}

.static-logo-lockup {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: clamp(22px, 4vw, 38px);
  width: min(560px, 68vw);
  transition: opacity 260ms ease;
}

.static-wave-logo {
  width: min(170px, 32vw);
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(8, 23, 40, 0.18));
}

.shine-wordmark-wrap {
  position: relative;
  width: min(280px, 54vw);
  overflow: hidden;
}

.shine-wordmark {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.shine-wordmark-wrap::after {
  content: "";
  position: absolute;
  inset: -25% auto -25% -45%;
  width: 34%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 14%,
    rgba(255, 255, 255, 0.92) 48%,
    rgba(25, 167, 206, 0.22) 58%,
    transparent 100%
  );
  transform: skewX(-18deg);
  mix-blend-mode: screen;
  animation: wordmarkShine 3.6s ease-in-out infinite;
}

.hero {
  position: relative;
  display: block;
  min-height: auto;
  padding: clamp(48px, 7vw, 72px) clamp(18px, 6vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 23, 40, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 23, 40, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f5f8fb 54%, #eaf1f7 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.hero-copy,
.service-band,
.process,
.apps-band,
.contact-band {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 690px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.services-title {
  max-width: 920px;
  font-size: clamp(2rem, 3.1vw, 3rem);
}

h2 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.7vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 1rem;
}

.hero-text {
  max-width: 840px;
  margin: 14px 0 0;
  color: #3d4b5a;
  font-size: clamp(0.92rem, 1.1vw, 1.03rem);
}

.hero-text + .hero-text {
  margin-top: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(8, 23, 40, 0.16);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.metric {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.service-band,
.process,
.apps-band,
.contact-band,
.remote-band {
  padding: clamp(50px, 7vw, 82px) clamp(18px, 6vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
}

.service-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.service-card p,
.timeline-item p,
.apps-copy p,
.contact-band p {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-index {
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 900;
}

.process {
  color: var(--white);
  background: var(--navy);
}

.process h2 {
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(223, 230, 238, 0.18);
  border: 1px solid rgba(223, 230, 238, 0.18);
}

.timeline-item {
  min-height: 180px;
  padding: 20px;
  background: var(--navy);
}

.timeline-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 900;
}

.timeline-item p {
  color: #c6d1dc;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.app-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(223, 230, 238, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.app-logo-wrap {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(223, 230, 238, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.app-logo-wrap img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.24));
}

.app-copy {
  min-width: 0;
}

.app-kicker {
  margin: 0;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-copy h3 {
  margin: 8px 0 12px;
  color: var(--white);
  font-size: 1.28rem;
}

.app-copy p {
  margin: 0;
  color: #c6d1dc;
  font-size: 0.9rem;
}

.app-copy p + p {
  margin-top: 10px;
}

.apps-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  background: var(--soft);
}

.code-window {
  border: 1px solid #cfd9e5;
  border-radius: 8px;
  background: #101820;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-controls {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dfe6ee;
}

pre {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  color: #dce9f5;
  font: 700 0.82rem/1.65 "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}

@keyframes waveLightDrift {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-4%) rotate(-10deg);
  }
  50% {
    opacity: 0.62;
    transform: translateX(4%) rotate(-10deg);
  }
}

@keyframes waveCorePulse {
  0%,
  100% {
    opacity: 0.54;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@keyframes waveOrbitOne {
  from {
    transform: rotateX(66deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(66deg) rotateZ(360deg);
  }
}

@keyframes waveOrbitTwo {
  from {
    transform: rotateX(66deg) rotateZ(360deg);
  }
  to {
    transform: rotateX(66deg) rotateZ(0deg);
  }
}

@keyframes wholeWaveBreath {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

@keyframes edgeTravel {
  0% {
    stroke-dashoffset: 320;
    opacity: 0.2;
  }
  35%,
  65% {
    opacity: 0.86;
  }
  100% {
    stroke-dashoffset: -260;
    opacity: 0.2;
  }
}

@keyframes wordmarkShine {
  0%,
  26% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }
  42% {
    opacity: 0.92;
  }
  72%,
  100% {
    transform: translateX(430%) skewX(-18deg);
    opacity: 0;
  }
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 23, 40, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 23, 40, 0.022) 1px, transparent 1px),
    #ffffff;
  background-size: 72px 72px, 72px 72px, auto;
}

.contact-heading p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
}

.location-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 620px;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.location-card p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.bahamas-flag {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 23, 40, 0.1);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 18px;
  color: var(--navy);
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.contact-card:hover {
  border-color: rgba(25, 167, 206, 0.42);
}

.contact-card span {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1rem;
}

.contact-card small {
  min-height: 1.1em;
  color: #5e6a78;
  font-size: 0.78rem;
  font-weight: 700;
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 20px;
}

.request-modal.is-open,
.price-modal.is-open {
  display: grid;
}

.price-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 20px;
}

.request-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 23, 40, 0.46);
  backdrop-filter: blur(10px);
}

.request-dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(760px, 92vh);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(223, 230, 238, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 80px rgba(8, 23, 40, 0.28);
}

.price-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: min(860px, 92vh);
  overflow-y: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(223, 230, 238, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 80px rgba(8, 23, 40, 0.28);
}

.price-adjustment {
  max-width: 760px;
  margin: 12px 0 24px;
  color: var(--muted);
  font-weight: 800;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 18px;
  align-items: start;
}

.price-list {
  display: grid;
  gap: 14px;
}

.price-category {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.price-category h3 {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.price-items {
  display: grid;
}

.price-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.price-item:last-child {
  border-bottom: 0;
}

.price-item strong {
  color: var(--navy);
}

.price-item-price {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.price-item-note,
.price-item-support {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.price-includes {
  margin: 9px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.price-calculator {
  position: sticky;
  top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.price-calculator h3 {
  margin-top: 0;
}

.price-calculator > p,
.calculator-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.calculator-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.calculator-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.calculator-form input,
.calculator-form select {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}

.calculator-support {
  min-height: 1.3em;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.calculator-items {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.calculator-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 0.84rem;
}

.calculator-line button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.calculator-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
}

.request-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
}

.request-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  font: inherit;
}

.request-form textarea {
  resize: vertical;
}

.request-status {
  min-height: 1.4em;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: 2px solid rgba(25, 167, 206, 0.28);
  border-color: rgba(25, 167, 206, 0.6);
}

.remote-band {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.remote-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.remote-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.remote-copy p + p {
  margin-top: 12px;
}

.remote-copy .button {
  margin-top: 24px;
}

.remote-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.remote-steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.remote-steps span {
  color: var(--cyan);
  font-weight: 900;
}

.remote-steps p {
  margin: 0;
  color: #3d4b5a;
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px clamp(18px, 6vw, 76px);
  color: #687483;
  font-size: 0.82rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
}

.footer-mark {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footer-wordmark {
  width: 118px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .hero,
  .apps-band,
  .contact-band,
  .remote-content,
  .price-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .timeline,
  .app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-band {
    align-items: start;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .bahamas-flag {
    max-width: 240px;
  }

  .remote-copy p {
    max-width: none;
  }

  .price-calculator {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .construction-main {
    grid-template-rows: minmax(320px, 54vh) auto;
  }

  .construction-message {
    padding-top: 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    padding-top: 36px;
  }

  .wave-showcase {
    min-height: 320px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .wave-stage {
    min-height: 250px;
  }

  .static-logo-lockup {
    width: min(340px, 94vw);
  }

  .static-wave-logo {
    width: min(145px, 44vw);
  }

  .shine-wordmark-wrap {
    width: min(240px, 66vw);
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  .service-grid,
  .timeline,
  .app-grid,
  .app-card {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline-item {
    min-height: 0;
  }

  .app-logo-wrap {
    width: min(160px, 48vw);
  }

  .brand-wordmark {
    width: min(150px, 48vw);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .price-item,
  .calculator-line {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
