:root {
  color-scheme: light;
  --ink: #152b34;
  --ink-soft: #25414b;
  --panel: rgba(255, 255, 255, 0.72);
  --line: rgba(29, 70, 84, 0.14);
  --cream: #274f6f;
  --text: #152b34;
  --muted: #5e737b;
  --sky: #2f759c;
  --teal: #1d7c70;
  --warm: #e5a15c;
  --shadow: 0 28px 70px rgba(53, 73, 78, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #eef1f0;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 8%, rgba(104, 190, 180, 0.16), transparent 29rem),
    radial-gradient(circle at 88% 22%, rgba(135, 200, 232, 0.22), transparent 32rem),
    linear-gradient(135deg, #f1f3f2 0%, #e9edec 54%, #f0f2f1 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(38, 75, 84, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 75, 84, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 32px;
}

.hero {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 52px;
}

.brand-mark {
  position: relative;
}

.brand-mark::before {
  position: absolute;
  inset: 12% -10% -4%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: rgba(93, 170, 204, 0.22);
  filter: blur(34px);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(30, 67, 80, 0.18);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow sup {
  position: relative;
  top: -0.15em;
  margin-left: 0.18em;
  font-size: 0.7em;
}

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

h1 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.1rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

h1 span {
  color: var(--cream);
}

.lede {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.58;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(221, 241, 247, 0.96), rgba(204, 231, 240, 0.94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.resource-column {
  min-width: 0;
  padding: 32px;
}

.resource-column + .resource-column {
  border-left: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: baseline;
  margin-bottom: 26px;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.link-list {
  display: grid;
  gap: 12px;
}

.resource-link {
  display: flex;
  gap: 18px;
  align-items: center;
  min-width: 0;
  min-height: 94px;
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.resource-link:hover,
.resource-link:focus-visible {
  z-index: 1;
  border-color: rgba(47, 117, 156, 0.48);
  outline: none;
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-3px);
}

.featured-link {
  border-color: rgba(29, 124, 112, 0.28);
  background: linear-gradient(145deg, rgba(235, 250, 247, 0.94), rgba(244, 252, 253, 0.94));
}

.link-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
  flex: 1;
}

.link-copy strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
  line-height: 1.3;
}

.link-copy small {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.pointer-note {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  width: fit-content;
  color: #b4232c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.pointer-note [aria-hidden="true"] {
  color: #b56a28;
  font-size: 1rem;
  transform: translateY(-1px);
}

.link-arrow,
.play-mark {
  flex: none;
  color: var(--sky);
  font-size: 1rem;
}

.play-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #203139;
  background: var(--warm);
  font-size: 0.66rem;
}

.resource-link.compact {
  min-height: 63px;
  padding-block: 14px;
}

.customer-link {
  min-height: 88px;
}

.customer-monogram {
  display: grid;
  width: 42px;
  height: 42px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(39, 79, 111, 0.2);
  border-radius: 13px;
  color: var(--cream);
  background: rgba(39, 79, 111, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.feedback-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 13px 19px;
  border: 1px solid rgba(180, 35, 44, 0.34);
  border-radius: 999px;
  color: #8f1f27;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(64, 78, 82, 0.12);
  font-size: 0.86rem;
  font-weight: 750;
  justify-self: end;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.feedback-button:hover,
.feedback-button:focus-visible {
  border-color: rgba(180, 35, 44, 0.72);
  outline: none;
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-2px);
}

.bug-glyph {
  width: 21px;
  height: 21px;
  flex: none;
}

.bug-glyph line {
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
}

.bug-glyph line:first-of-type {
  stroke: #f6f3ea;
  stroke-width: 1.1;
}

.footer-patch {
  display: flex;
  justify-content: center;
}

.footer-patch img {
  display: block;
  width: min(170px, 60vw);
  height: auto;
  border: 1px solid rgba(35, 68, 81, 0.16);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 34px 6px 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer p {
  margin-bottom: 0;
}

.copyright sup {
  position: relative;
  top: -0.2em;
  margin-left: 0.12em;
  font-size: 0.68em;
}

@media (max-width: 1040px) {
  .resource-grid {
    grid-template-columns: 1fr 1fr;
  }

  .column-customers {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0 !important;
  }

  .column-customers .link-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 28px, 560px);
    padding-top: 28px;
  }

  .hero {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 22px;
    margin-bottom: 32px;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .lede {
    grid-column: 1 / -1;
    font-size: 0.98rem;
  }

  .resource-grid {
    display: block;
    border-radius: 22px;
  }

  .resource-column {
    padding: 25px 20px;
  }

  .resource-column + .resource-column {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .column-customers .link-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .feedback-button {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .resource-link,
  .feedback-button {
    transition: none;
  }
}
