:root {
  color: #172033;
  background: #fbfaf6;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(226, 240, 237, 0.75), rgba(251, 250, 246, 0) 42%),
    #fbfaf6;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: clamp(72px, 11vw, 132px) 0 clamp(36px, 7vw, 72px);
}

.eyebrow,
.brand-name {
  margin: 0;
  color: #0d766e;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  margin: 18px 0 0;
  color: #111a2b;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro {
  max-width: 760px;
  margin: 28px 0 0;
  color: #4c5b69;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.58;
}

.brands {
  padding: 0 0 clamp(56px, 9vw, 104px);
}

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

.brand-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(23, 32, 51, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 64px rgba(17, 26, 43, 0.08);
  padding: clamp(24px, 4vw, 36px);
}

.brand-card h2 {
  margin: 16px 0 0;
  color: #111a2b;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.brand-card p:not(.brand-name) {
  margin: 18px 0 0;
  color: #53616f;
  font-size: 1rem;
  line-height: 1.65;
}

.brand-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  border: 1px solid rgba(13, 118, 110, 0.28);
  border-radius: 999px;
  background: #111a2b;
  color: #ffffff;
  padding: 13px 18px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.brand-card a:hover,
.brand-card a:focus-visible {
  background: #0d766e;
  transform: translateY(-1px);
}

footer {
  border-top: 1px solid rgba(23, 32, 51, 0.1);
  padding: 28px 0;
  color: #53616f;
  font-size: 0.92rem;
  font-weight: 800;
}

footer p {
  margin: 0;
}

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

  .brand-card {
    min-height: 0;
  }
}
