:root {
  color-scheme: light;
  --background: #f6f4ee;
  --surface: #ffffff;
  --surface-muted: #e8edf0;
  --text: #172027;
  --muted: #5d6870;
  --accent: #0d6b68;
  --accent-strong: #084a49;
  --line: #d8dedf;
  --shadow: 0 18px 45px rgba(23, 32, 39, 0.09);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(13, 107, 104, 0.12), transparent 36rem),
    var(--background);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.intro {
  max-width: 720px;
  padding-bottom: 48px;
}

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

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.92;
}

.intro p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.apps-section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading span {
  color: var(--muted);
  font-size: 0.92rem;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
}

.app-card {
  display: grid;
  gap: 10px;
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.app-card:hover,
.app-card:focus-visible {
  border-color: rgba(13, 107, 104, 0.6);
  box-shadow: 0 22px 55px rgba(23, 32, 39, 0.14);
  transform: translateY(-2px);
}

.app-card:focus-visible {
  outline: 3px solid rgba(13, 107, 104, 0.24);
  outline-offset: 4px;
}

.app-kicker {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-card strong {
  font-size: 1.6rem;
  line-height: 1.1;
}

.app-card span:last-child {
  color: var(--muted);
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 24px, 1040px);
    padding: 48px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
