:root {
  color-scheme: light;
  --ink: #1f2528;
  --muted: #5d676d;
  --line: #d8dedc;
  --paper: #f7f5ef;
  --field: #ffffff;
  --green: #2f7d61;
  --green-dark: #1f5d47;
  --coral: #e76f51;
  --blue: #287a9b;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 82vh;
  padding: 28px clamp(20px, 5vw, 72px) 48px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(247, 245, 239, 0.95) 0%, rgba(247, 245, 239, 0.8) 48%, rgba(47, 125, 97, 0.16) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='900' viewBox='0 0 1200 900'%3E%3Crect width='1200' height='900' fill='%23dfe8e3'/%3E%3Cg opacity='.9'%3E%3Cpath d='M98 643c154-117 284-145 389-84 121 70 234 51 338-58 85-89 174-108 267-58v457H98z' fill='%232f7d61'/%3E%3Cpath d='M0 721c185-95 342-106 470-33 130 74 267 70 410-13 114-66 221-63 320 9v216H0z' fill='%23287a9b'/%3E%3Cpath d='M708 184c98 33 178 95 241 186 63 92 83 196 60 313-36-26-70-52-102-79-32-26-66-43-102-50-58-11-116 10-176 62-65 57-126 82-183 75-58-7-109-40-154-99 59-30 103-74 133-132 29-57 54-106 74-145 48-94 117-138 209-131z' fill='%23f4c95d' opacity='.85'/%3E%3Ccircle cx='933' cy='202' r='72' fill='%23e76f51'/%3E%3Cpath d='M168 237h293v293H168z' fill='%23ffffff' opacity='.34'/%3E%3Cpath d='M219 288h191v191H219z' fill='none' stroke='%231f2528' stroke-width='11' opacity='.42'/%3E%3Cpath d='M250 424c41-79 87-119 138-119 34 0 60 17 78 51' fill='none' stroke='%231f2528' stroke-width='13' stroke-linecap='round' opacity='.45'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.brand-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--field);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
}

.status-dot::before {
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(47, 125, 97, 0.14);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  max-width: 1180px;
  margin: 96px auto 0;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.91;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #344044;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 0 18px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.primary {
  background: var(--coral);
  color: #141414;
}

.secondary {
  background: var(--field);
  color: var(--ink);
}

.result {
  min-height: 28px;
  margin: 18px 0 0;
  color: var(--green-dark);
  font-weight: 800;
}

.signal-panel {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 10px 10px 0 rgba(31, 37, 40, 0.92);
  padding: 24px;
}

.pulse {
  width: 100%;
  aspect-ratio: 1 / 0.62;
  border: 2px solid var(--ink);
  border-radius: 6px;
  margin-bottom: 22px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(31, 37, 40, 0.16) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(31, 37, 40, 0.16) 50%, transparent 51%),
    radial-gradient(circle at 78% 24%, var(--coral) 0 11%, transparent 12%),
    radial-gradient(circle at 22% 70%, var(--blue) 0 14%, transparent 15%),
    linear-gradient(135deg, #fff 0%, #e5f0ec 100%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.next-steps {
  padding: 48px clamp(20px, 5vw, 72px) 72px;
  background: var(--field);
}

.next-steps h2 {
  max-width: 1180px;
  margin: 0 auto 20px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fbfaf7;
}

article span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 18px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

article h3 {
  margin-bottom: 8px;
}

article p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .brand-strip,
  .hero-grid,
  dl div {
    align-items: flex-start;
  }

  .brand-strip,
  dl div {
    flex-direction: column;
  }

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

  .hero-grid {
    margin-top: 62px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  dd {
    text-align: left;
  }
}
