:root {
  color-scheme: light;
  --navy-950: #061a28;
  --navy-900: #0a2232;
  --navy-700: #294352;
  --teal-700: #0b6f78;
  --teal-500: #2199a1;
  --teal-100: #dceced;
  --paper: #f4f7f7;
  --surface: #ffffff;
  --line: #d9e2e4;
  --muted: #5e717b;
  --max-width: 1180px;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--navy-950);
  background:
    radial-gradient(circle at 80% 12%, rgba(33, 153, 161, 0.08), transparent 27rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 3px solid rgba(11, 111, 120, 0.35);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  color: #fff;
  background: var(--navy-950);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(10, 34, 50, 0.1);
  background: rgba(244, 247, 247, 0.94);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 37px;
  height: auto;
}

.brand-wordmark {
  width: 139px;
  height: auto;
}

.header-contact {
  color: var(--navy-700);
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
}

.header-contact:hover {
  color: var(--teal-700);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  width: 100%;
  display: flex;
  align-items: center;
  padding: clamp(72px, 10vh, 128px) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(60px, 9vw, 132px);
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--teal-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.85rem, 5vw, 4.5rem);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--navy-700);
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.status-copy {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.button {
  min-height: 50px;
  margin-top: 34px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  background: var(--navy-950);
  border: 1px solid var(--navy-950);
  border-radius: 7px;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
}

.button span {
  font-size: 1.12rem;
}

.contact-section {
  padding: clamp(76px, 10vw, 128px) 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1fr);
  align-items: start;
  gap: clamp(56px, 9vw, 120px);
}

.contact-copy {
  position: sticky;
  top: 40px;
}

.contact-copy h2 {
  max-width: 520px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.contact-copy > p:last-child {
  max-width: 510px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-form {
  padding: clamp(26px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

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

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  margin-bottom: 7px;
  display: block;
  color: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 650;
}

.form-field label span {
  color: var(--muted);
  font-weight: 450;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--navy-950);
  background: var(--surface);
  border: 1px solid #c7d3d6;
  border-radius: 7px;
  font: inherit;
  line-height: 1.4;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input {
  min-height: 49px;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: #9eafb4;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible,
.privacy-check input:focus-visible {
  outline: none;
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(11, 111, 120, 0.16);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  cursor: pointer;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--teal-700);
}

.privacy-check a {
  color: var(--teal-700);
}

.form-submit {
  margin-top: 26px;
  cursor: pointer;
}

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

.hero-visual {
  position: relative;
  aspect-ratio: 0.88;
  min-height: 490px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, #0b2637 0%, #071c2a 68%, #0b3541 100%);
  border: 1px solid rgba(6, 26, 40, 0.15);
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(6, 26, 40, 0.16);
}

.visual-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.visual-mark {
  position: absolute;
  top: 17%;
  left: 50%;
  z-index: -1;
  width: 58%;
  height: auto;
  transform: translateX(-50%);
  filter: brightness(0) invert(1);
  opacity: 0.1;
}

.signal {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #7ed4d8;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(126, 212, 216, 0.08);
}

.signal::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 95px;
  height: 1px;
  background: linear-gradient(90deg, rgba(126, 212, 216, 0.65), transparent);
  transform-origin: left center;
}

.signal-one {
  top: 25%;
  left: 18%;
}

.signal-one::after {
  transform: rotate(17deg);
}

.signal-two {
  top: 43%;
  right: 17%;
}

.signal-two::after {
  transform: rotate(158deg);
}

.signal-three {
  top: 58%;
  left: 28%;
}

.signal-three::after {
  transform: rotate(-28deg);
}

.status-card {
  position: absolute;
  top: 26px;
  right: 26px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #58c5c9;
  border-radius: 50%;
}

.visual-caption {
  position: absolute;
  right: 32px;
  bottom: 31px;
  left: 32px;
  padding-top: 22px;
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.visual-caption span {
  color: #71cbd0;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.visual-caption strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  font-weight: 520;
  letter-spacing: -0.025em;
}

.site-footer {
  border-top: 1px solid rgba(10, 34, 50, 0.1);
}

.footer-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  gap: 22px;
}

.footer-inner a {
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--teal-700);
  text-decoration: underline;
}

.legal-main {
  flex: 1;
  padding: clamp(64px, 9vw, 112px) 0;
}

.message-main {
  flex: 1;
  justify-content: center;
  padding: clamp(72px, 12vw, 140px) 0;
}

.message-card {
  max-width: 760px;
  text-align: center;
}

.message-card .eyebrow {
  margin-bottom: 20px;
}

.message-card h1 {
  margin-inline: auto;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.message-card > p:last-of-type {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  margin-bottom: 44px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.legal-content h2 {
  margin: 42px 0 12px;
  color: var(--navy-950);
  font-size: 1.18rem;
  font-weight: 650;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content address,
.legal-content li {
  color: var(--navy-700);
}

.legal-content address {
  font-style: normal;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-content a {
  color: var(--teal-700);
}

.legal-note {
  padding: 18px 20px;
  background: var(--teal-100);
  border-left: 3px solid var(--teal-700);
  border-radius: 0 7px 7px 0;
}

@media (max-width: 860px) {
  .hero {
    padding: 64px 0 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 0;
    aspect-ratio: 1.35;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 32px;
  }

  .brand-wordmark {
    width: 117px;
  }

  .hero {
    padding: 52px 0 58px;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 3.25rem);
  }

  .lead {
    margin-top: 28px;
    font-size: 1.06rem;
  }

  .button {
    width: 100%;
  }

  .contact-section {
    padding: 64px 0;
  }

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

  .contact-form {
    padding: 22px 18px;
  }

  .hero-visual {
    aspect-ratio: 0.96;
    border-radius: 14px;
  }

  .visual-caption {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .status-card {
    top: 20px;
    right: 20px;
  }

  .footer-inner {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

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

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