:root {
  color: #e9f3ef;
  background: #07110f;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: #07110f;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgb(38 145 116 / 18%), transparent 34rem),
    radial-gradient(circle at 10% 86%, rgb(42 103 91 / 16%), transparent 30rem),
    #07110f;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  padding: 30px 0;
  border-bottom: 1px solid rgb(181 224 207 / 12%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f5fbf8;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark-shield {
  width: 38px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #06120f;
  background: #77e2bc;
  border-radius: 10px 10px 14px 14px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgb(83 216 170 / 20%);
}

.status {
  padding: 7px 11px;
  color: #b8cfc6;
  border: 1px solid rgb(184 207 198 / 18%);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main {
  display: grid;
  align-items: center;
  padding: 72px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: center;
}

.hero > * {
  min-width: 0;
}

.eyebrow,
.card-label {
  margin: 0;
  color: #77e2bc;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 22px 0 24px;
  color: #f5fbf8;
  font-size: clamp(3.2rem, 7.6vw, 6.8rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.intro {
  max-width: 660px;
  margin: 0;
  color: #abc2b9;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0;
}

.signals span {
  padding: 8px 12px;
  color: #c9ddd5;
  background: rgb(191 232 216 / 6%);
  border: 1px solid rgb(191 232 216 / 10%);
  border-radius: 8px;
  font-size: 0.82rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #83e8c3;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.contact-link:hover {
  color: #b6f4dc;
}

.contact-link:focus-visible,
.wordmark:focus-visible {
  outline: 3px solid #77e2bc;
  outline-offset: 5px;
  border-radius: 4px;
}

.assurance-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: linear-gradient(145deg, rgb(17 39 34 / 94%), rgb(8 24 20 / 94%));
  border: 1px solid rgb(151 216 190 / 16%);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgb(0 0 0 / 32%);
  min-width: 0;
}

.assurance-card::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  background: rgb(83 216 170 / 8%);
  border-radius: 50%;
  content: "";
}

.assurance-card ol {
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.assurance-card li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  color: #d7e6e0;
  font-size: 0.94rem;
  line-height: 1.5;
  border-bottom: 1px solid rgb(188 225 211 / 10%);
}

.assurance-card li span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.step-number {
  color: #5ea98e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.local-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8ea99f;
  font-size: 0.78rem;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #77e2bc;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(119 226 188 / 10%);
}

footer {
  padding: 24px 0 30px;
  color: #60776f;
  border-top: 1px solid rgb(181 224 207 / 10%);
  font-size: 0.78rem;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 32px, 680px);
  }

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

  main {
    padding: 60px 0;
  }

  h1 {
    font-size: clamp(3.4rem, 15vw, 5.4rem);
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: calc(100% - 40px);
  }

  .site-header {
    padding: 22px 0;
  }

  .status {
    display: none;
  }

  main {
    padding: 46px 0;
  }

  h1 {
    margin-top: 18px;
    font-size: clamp(3rem, 13.5vw, 4.1rem);
  }

  .assurance-card {
    padding: 24px;
    border-radius: 20px;
  }

  footer {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
