:root {
  color-scheme: light;
  --navy-950: #020b1c;
  --navy-900: #031631;
  --navy-700: #082f64;
  --cyan: #13b7d4;
  --cyan-soft: #89e7f4;
  --text: #062652;
  --muted: #52677c;
  --line: rgba(9, 54, 94, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 37%, rgba(22, 174, 201, 0.13), transparent 34%),
    radial-gradient(circle at 15% 9%, rgba(26, 90, 146, 0.09), transparent 30%),
    linear-gradient(145deg, #f8fafb, #eef3f5 58%, #e5edf1);
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
}

#dome-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100% - 64px, 1320px);
  min-height: 100svh;
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 122px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: block;
  width: 176px;
  height: 84px;
  overflow: hidden;
}

.brand-image-wrap {
  display: block;
  width: 176px;
  height: 84px;
  overflow: hidden;
  border-radius: 4px;
  background: transparent;
}

.brand img {
  width: 125px;
  height: 125px;
  margin-top: -20px;
  margin-left: 25px;
  object-fit: cover;
}

.action-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 100%);
  padding: 80px 0 110px;
}

.eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 25px;
  color: #087f99;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero > p {
  max-width: 590px;
  margin: 32px 0 42px;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  line-height: 1.75;
}

.primary-action {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(100%, 590px);
  min-height: 82px;
  padding: 13px 14px 13px 24px;
  border: 1px solid rgba(8, 91, 125, 0.2);
  border-radius: 8px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.82), rgba(241, 247, 249, 0.66));
  box-shadow: 0 18px 50px rgba(10, 49, 78, 0.09);
  color: var(--text);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.primary-action:hover {
  border-color: rgba(8, 143, 169, 0.55);
  background: linear-gradient(100deg, #ffffff, rgba(236, 247, 249, 0.9));
  transform: translateY(-2px);
}

.primary-action:hover .action-icon svg {
  transform: translateX(4px);
}

.action-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.action-email {
  color: #087f99;
  font-size: 14px;
}

.action-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 6px;
  background: var(--cyan);
  color: #01223a;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  border-top: 1px solid var(--line);
  color: rgba(25, 63, 91, 0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 36px, 1320px);
  }

  .site-header {
    min-height: 96px;
  }

  .brand,
  .brand-image-wrap {
    width: 142px;
    height: 68px;
  }

  .brand img {
    width: 100px;
    height: 100px;
    margin-top: -16px;
    margin-left: 21px;
  }

  .hero {
    padding: 72px 0 90px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .primary-action {
    grid-template-columns: 1fr auto;
    gap: 5px 14px;
    padding-left: 18px;
  }

  .action-label {
    grid-column: 1;
  }

  .action-email {
    grid-column: 1;
    font-size: 12px;
  }

  .action-icon {
    grid-row: 1 / 3;
    grid-column: 2;
  }

}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
