:root {
  color-scheme: light;
  --ink: #15252e;
  --muted: #59686f;
  --line: #dce4e5;
  --paper: #f4f7f8;
  --mint: #b3efcf;
  --blue: #172b38;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    1rem/1.6 'Segoe UI',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid #34785d;
  outline-offset: 5px;
}
.wrap {
  width: min(1120px, calc(100% - 80px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 10px 18px;
  color: #fff;
  background: var(--ink);
  z-index: 5;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.5rem;
  font-weight: 720;
  letter-spacing: -0.8px;
}
.brand img {
  flex-shrink: 0;
}
.brand-accent {
  font-weight: 450;
}
.brand-period {
  color: #428768;
}
.header-link {
  font-size: 0.875rem;
  font-weight: 600;
}
.header-link span {
  margin-left: 12px;
  color: #428768;
  font-size: 1.2rem;
}
.header-link:hover {
  color: #34785d;
}
.intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  padding: 35px 0 29px;
}
.eyebrow {
  margin: 0 0 9px;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 1.35px;
  color: #48715e;
}
h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -1.25px;
}
h1 span {
  color: #536f7e;
}
.intro-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  flex-shrink: 0;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
}
.collection-count {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: #596e79;
}
.collection-count > span {
  width: 6px;
  height: 6px;
  background: #428768;
  border-radius: 50%;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
  padding-bottom: 28px;
}
.app-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 315px;
  padding: 25px 29px 22px;
  color: #fff;
  background: var(--blue);
  border: 1px solid #294955;
  border-radius: 12px;
  box-shadow: 0 6px 18px -16px #15252e80;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 0.75rem;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mint);
  font-weight: 550;
}
.availability > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
}
.card-number {
  color: #9eb2bf;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}
.app-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 13px;
}
.app-heading img {
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid #46616b;
}
.app-category {
  margin: 0 0 1px;
  color: #aac0cb;
  font-size: 0.75rem;
}
.app-heading h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 650;
  letter-spacing: -0.9px;
  line-height: 1.15;
}
.name-period {
  color: var(--mint);
}
.app-description {
  margin: 0 0 22px;
  max-width: 460px;
  color: #c5d4db;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.app-bottom {
  margin-top: auto;
}
.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 0.875rem;
  font-weight: 650;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.button span {
  font-size: 1.15rem;
  line-height: 1;
}
.button:focus-visible {
  outline-color: var(--mint);
}
.primary {
  color: #173c30;
  background: var(--mint);
}
.primary:hover {
  background: #d3f9e3;
}
.secondary {
  border-color: #617b89;
  color: #e1ebf0;
}
.secondary:hover {
  background: #2a4553;
  border-color: #9fb9c5;
}
.app-meta {
  margin: 13px 0 0;
  font-size: 0.75rem;
  color: #a8bec9;
}
.app-meta span {
  padding-inline: 4px;
}
.future-card {
  background: #203745;
  border-color: #415964;
  box-shadow: none;
}
.future-label {
  color: #b2c6ce;
}
.future-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 21px 0;
  text-align: center;
}
.future-plus {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px dashed #75948f;
  border-radius: 11px;
  color: var(--mint);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
}
.future-content h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 550;
  color: #e2edf0;
}
.future-content p {
  margin: 5px 0 0;
  font-size: 0.875rem;
  color: #aec3cf;
}
.future-footnote {
  margin: 0;
  color: #a5bec9;
  font-size: 0.75rem;
  text-align: center;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 19px 24px;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: #5c737f;
}
.footer-brand {
  color: #3e5b6b;
  font-weight: 650;
}
.site-footer a {
  font-size: 0.875rem;
}
.site-footer a span {
  margin-left: 6px;
}
@media (min-width: 1500px) {
  .wrap {
    width: min(1240px, calc(100% - 96px));
  }
  .app-card {
    min-height: 335px;
    padding: 28px 32px;
  }
  .intro {
    padding-block: 40px 33px;
  }
}
@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
  .intro-note br {
    display: none;
  }
  .app-card {
    padding: 23px;
  }
  .button {
    gap: 12px;
    padding-inline: 12px;
  }
}
@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .header-inner {
    min-height: 72px;
    gap: 15px;
  }
  .brand {
    font-size: 1.25rem;
    gap: 8px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .header-link {
    font-size: 0.75rem;
    max-width: 75px;
    text-align: right;
    line-height: 1.4;
  }
  .header-link span {
    display: none;
  }
  .intro {
    padding-block: 27px 25px;
  }
  .eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 1px;
  }
  h1 {
    max-width: 370px;
    font-size: 2rem;
  }
  .intro-note {
    max-width: 340px;
  }
  .app-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .app-card {
    min-height: 315px;
    padding: 24px;
  }
  .future-card {
    min-height: 285px;
  }
  .site-footer > span:nth-child(2) {
    display: none;
  }
  .button {
    gap: 18px;
    padding: 11px 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
