html {
  background: #fbf8ef;
  color: #1c2028;
  font-family: Inter, Arial, sans-serif;
}

body {
  background:
    linear-gradient(120deg, rgba(13, 95, 88, .08), transparent 42%),
    linear-gradient(300deg, rgba(220, 38, 38, .08), transparent 48%),
    #fbf8ef;
  margin: 0;
  min-width: 320px;
}

.topbar {
  align-items: center;
  background: #14161d;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 30px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  color: #ffcf5a;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .01em;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

nav a {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: #f7f2e8;
  font-size: 14px;
  font-weight: 750;
  padding: 8px 13px;
  text-decoration: none;
}

nav a:hover {
  background: #ffcf5a;
  border-color: #ffcf5a;
  color: #14161d;
}

nav a:focus,
.cta-button:focus,
.text-link:focus,
.quick-path a:focus,
summary:focus {
  outline: 3px solid #ffcf5a;
  outline-offset: 3px;
}

main {
  margin: 0 auto;
  max-width: 1180px;
  padding: 34px 22px 70px;
}

.eyebrow,
.panel-kicker {
  color: #b91c1c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero {
  background:
    linear-gradient(135deg, #171922 0%, #25303d 52%, #0d5f58 100%);
  border: 1px solid rgba(20, 22, 29, .14);
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(20, 22, 29, .18);
  color: #fff;
  display: grid;
  gap: 22px 30px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  overflow: hidden;
  padding: 42px;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(255, 207, 90, .25) 0 2px, transparent 2px 100%),
    linear-gradient(rgba(255, 255, 255, .08) 0 1px, transparent 1px 100%);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  opacity: .35;
  pointer-events: none;
  position: absolute;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero > .eyebrow,
.hero > h1,
.hero > p,
.hero > .hero-actions,
.hero > .metrics,
.hero > .keywords {
  grid-column: 1;
}

.hero h1,
h1 {
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0;
  line-height: .98;
  margin: 0;
  max-width: 840px;
}

.hero p {
  color: #f7f2e8;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  max-width: 760px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.cta-button {
  align-items: center;
  background: #ffcf5a;
  border: 1px solid #ffcf5a;
  border-radius: 999px;
  color: #14161d;
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  text-decoration: none;
}

.cta-button:hover {
  background: #ffe7a0;
}

.text-link {
  color: #f7f2e8;
  font-weight: 800;
}

.hero-panel {
  align-self: stretch;
  background: #fff7df;
  border: 1px solid rgba(255, 207, 90, .75);
  border-radius: 8px;
  box-shadow: 0 22px 38px rgba(0, 0, 0, .18);
  color: #14161d;
  grid-column: 2;
  grid-row: 1 / span 5;
  padding: 24px;
}

.hero-panel ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.hero-panel li {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
  line-height: 1.45;
}

.hero-panel li span {
  background: #14161d;
  border-radius: 999px;
  color: #ffcf5a;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 7px;
}

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

.metric {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  padding: 13px;
}

.metric span {
  color: #cbd5e1;
  display: block;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.metric-value {
  color: #ffcf5a;
  font-size: 16px;
  margin-top: 6px;
}

.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keywords span {
  background: rgba(255, 255, 255, .92);
  border-radius: 999px;
  color: #164e63;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 11px;
}

.quick-path {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -20px 24px 30px;
  position: relative;
  z-index: 2;
}

.quick-path a {
  background: #fff;
  border: 1px solid #eadfc8;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(20, 22, 29, .09);
  color: #1c2028;
  display: grid;
  gap: 5px;
  min-height: 118px;
  padding: 18px;
  text-decoration: none;
}

.quick-path a:hover {
  border-color: #0d5f58;
  transform: translateY(-2px);
}

.quick-path a > span {
  background: #dc2626;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  height: 28px;
  line-height: 28px;
  text-align: center;
  width: 28px;
}

.path-title {
  color: #14161d;
  font-size: 20px;
  font-weight: 900;
}

.quick-path small {
  color: #64748b;
  font-size: 14px;
}

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

.section {
  background: rgba(255, 255, 255, .88);
  border: 1px solid #eadfc8;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(20, 22, 29, .05);
  padding: 28px;
}

.section:first-child,
.section:last-child {
  grid-column: 1 / -1;
}

.section h2 {
  align-items: center;
  color: #14161d;
  display: flex;
  font-size: clamp(24px, 3vw, 34px);
  gap: 12px;
  line-height: 1.16;
  margin: 0 0 14px;
}

.section h2::before {
  background: #0d5f58;
  border-radius: 3px;
  content: "";
  flex: 0 0 auto;
  height: 30px;
  width: 7px;
}

.section p {
  color: #334155;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.faq {
  margin-top: 20px;
}

.action-band {
  align-items: center;
  background: #14161d;
  border: 0;
  border-radius: 8px;
  color: #fff;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin-bottom: 26px;
  padding: 26px;
}

.action-band h2 {
  color: #fff;
  margin: 6px 0 8px;
}

.action-band p {
  color: #dbe4ef;
  margin: 0;
}

.secondary-cta {
  background: #0d5f58;
  border-color: #0d5f58;
  color: #fff;
  flex: 0 0 auto;
}

details {
  background: #fff;
  border: 1px solid #eadfc8;
  border-radius: 8px;
  margin-top: 12px;
  padding: 18px 20px;
}

summary {
  color: #14161d;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
}

details p {
  color: #475569;
  line-height: 1.7;
  margin: 12px 0 0;
}

footer {
  color: #64748b;
  font-size: 14px;
  padding: 24px;
  text-align: center;
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }

  nav {
    justify-content: flex-start;
  }

  main {
    padding: 22px 14px 48px;
  }

  .hero,
  .section-grid,
  .quick-path {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 28px;
  }

  .hero > .eyebrow,
  .hero > h1,
  .hero > p,
  .hero > .hero-actions,
  .hero > .metrics,
  .hero > .keywords,
  .hero-panel {
    grid-column: 1;
  }

  .hero-panel {
    grid-row: auto;
  }

  .quick-path {
    margin: 18px 0 28px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .section:first-child,
  .section:last-child {
    grid-column: auto;
  }

  .action-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .secondary-cta {
    width: 100%;
  }
}
