:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5f6975;
  --line: #d8dee6;
  --paper: #f5f7fa;
  --white: #ffffff;
  --blue: #155ea8;
  --blue-dark: #0d4378;
  --green: #1e7d59;
  --focus: #ffbf47;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(30, 125, 89, 0.12), transparent 34rem),
    linear-gradient(135deg, #f9faf8 0%, #eef3f7 55%, #f8fafc 100%);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.intro {
  width: min(100%, 920px);
  display: grid;
  gap: 34px;
}

.brand-lockup {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(21, 94, 168, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 10px 30px rgba(21, 94, 168, 0.18);
}

.intro-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 7vw, 5.75rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

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

.quote-link {
  min-height: 142px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  box-shadow: 0 16px 45px rgba(39, 54, 68, 0.08);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.quote-link:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 94, 168, 0.42);
  box-shadow: 0 18px 54px rgba(39, 54, 68, 0.13);
}

.quote-link:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 4px;
}

.quote-link.primary {
  border-color: rgba(21, 94, 168, 0.38);
}

.icon-wrap {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4f8;
}

.icon-wrap img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.quote-link strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.2;
}

.quote-link small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .page-shell {
    align-items: start;
    padding: 24px;
  }

  .intro {
    gap: 28px;
    padding: 18px 0 32px;
  }

  .quote-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .page-shell {
    padding: 20px;
  }

  .quote-link {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .icon-wrap {
    width: 56px;
    height: 56px;
  }

  .icon-wrap img {
    width: 46px;
    height: 46px;
  }
}
