@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./assets/geist.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("./assets/geist-mono.woff2") format("woff2");
}

:root {
  color-scheme: light;
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17211c;
  background: #ffffff;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 1px solid #dfe6e1;
  background: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 132px;
  height: auto;
}

.quiet-link {
  color: #53635a;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.quiet-link:hover,
.quiet-link:focus-visible {
  color: #1f6546;
  text-decoration: underline;
  text-underline-offset: 4px;
}

main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.directory-intro {
  max-width: 760px;
  padding-bottom: 64px;
}

.section-label,
.category,
.planned-state {
  margin: 0;
  color: #80671f;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 14px 0 20px;
  font-size: 56px;
  font-weight: 680;
  line-height: 1.03;
}

.intro-copy {
  max-width: 690px;
  margin: 0;
  color: #53635a;
  font-size: 19px;
  line-height: 1.65;
}

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

h2 {
  margin: 7px 0 0;
  font-size: 28px;
  font-weight: 680;
  line-height: 1.2;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid #cfdad3;
  border-radius: 4px;
  color: #285f45;
  background: #f8fbf9;
  font-size: 12px;
  font-weight: 700;
}

.availability span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f8b5c;
  box-shadow: 0 0 0 3px #e3f0e8;
}

.featured-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  min-height: 470px;
  overflow: hidden;
  border: 1px solid #d8e0db;
  border-radius: 8px;
  background: #f7f9f8;
}

.featured-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  border-right: 1px solid #d8e0db;
}

.featured-copy h3 {
  margin: 12px 0 16px;
  font-size: 32px;
  font-weight: 680;
  line-height: 1.12;
}

.featured-copy > p:not(.category) {
  margin: 0;
  color: #53635a;
  font-size: 16px;
  line-height: 1.65;
}

.outcome-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 32px;
  padding: 0;
  color: #32443a;
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.outcome-list li {
  position: relative;
  padding-left: 19px;
}

.outcome-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 1px;
  content: "";
  background: #9c7a26;
}

.primary-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #153e2d;
  border-radius: 6px;
  color: #ffffff;
  background: #153e2d;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.primary-action:hover,
.primary-action:focus-visible {
  border-color: #9c7a26;
  background: #245a42;
}

.preview-link {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #e9efeb;
}

.preview-link img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: top left;
  transition: transform 180ms ease;
}

.preview-link:hover img,
.preview-link:focus-visible img {
  transform: scale(1.012);
}

.planned-section {
  padding-top: 76px;
}

.section-note {
  max-width: 410px;
  margin: 0;
  color: #647269;
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}

.planned-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d8e0db;
  border-bottom: 1px solid #d8e0db;
}

.planned-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 30px;
  color: #17211c;
  background: #ffffff;
  text-decoration: none;
}

.planned-card + .planned-card {
  border-left: 1px solid #d8e0db;
}

.planned-card:hover,
.planned-card:focus-visible {
  background: #f7f9f8;
}

.planned-index {
  color: #8d9a92;
  font-family: "Geist Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.planned-state {
  position: absolute;
  top: 30px;
  right: 30px;
}

.planned-card h3 {
  margin: 68px 0 13px;
  font-size: 24px;
  font-weight: 680;
}

.planned-card p {
  margin: 0;
  color: #5a6960;
  font-size: 14px;
  line-height: 1.6;
}

.card-link {
  margin-top: auto;
  padding-top: 28px;
  color: #285f45;
  font-size: 13px;
  font-weight: 720;
}

footer {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  border-top: 1px solid #dfe6e1;
  color: #65736b;
  background: #f7f9f8;
  font-size: 12px;
}

.planned-page main {
  display: grid;
  min-height: calc(100vh - 143px);
  align-items: center;
  padding-top: 56px;
  padding-bottom: 72px;
}

.planned-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  border-top: 1px solid #d8e0db;
  border-bottom: 1px solid #d8e0db;
}

.planned-detail-copy {
  padding: 56px 48px 56px 0;
}

.planned-detail h1 {
  margin-top: 16px;
  font-size: 48px;
}

.planned-detail-copy > p:not(.section-label) {
  max-width: 560px;
  margin: 0;
  color: #53635a;
  font-size: 17px;
  line-height: 1.65;
}

.back-link {
  display: inline-block;
  margin-top: 32px;
  color: #285f45;
  font-size: 14px;
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.scenario-panel {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 38px;
  border-left: 1px solid #d8e0db;
  background: #f7f9f8;
}

.scenario-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #d8e0db;
}

.scenario-row:first-child {
  border-top: 1px solid #d8e0db;
}

.scenario-row span {
  color: #80671f;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-row p {
  margin: 0;
  color: #314239;
  font-size: 14px;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 880px) {
  .featured-demo,
  .planned-detail {
    grid-template-columns: 1fr;
  }

  .featured-copy {
    border-right: 0;
    border-bottom: 1px solid #d8e0db;
  }

  .preview-link img {
    min-height: 360px;
  }

  .planned-grid {
    grid-template-columns: 1fr;
  }

  .planned-card {
    min-height: 260px;
  }

  .planned-card + .planned-card {
    border-top: 1px solid #d8e0db;
    border-left: 0;
  }

  .planned-detail-copy {
    padding: 48px 0;
  }

  .scenario-panel {
    border-top: 1px solid #d8e0db;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .brand img {
    width: 112px;
  }

  .quiet-link {
    max-width: 110px;
    text-align: right;
  }

  main {
    width: min(100% - 32px, 1180px);
    padding: 48px 0 64px;
  }

  .directory-intro {
    padding-bottom: 48px;
  }

  h1 {
    font-size: 40px;
  }

  .intro-copy {
    font-size: 17px;
  }

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

  .section-note {
    text-align: left;
  }

  .featured-copy {
    padding: 32px 24px;
  }

  .featured-copy h3 {
    font-size: 28px;
  }

  .preview-link img {
    min-height: 290px;
  }

  .planned-section {
    padding-top: 58px;
  }

  .planned-card {
    padding: 26px 22px;
  }

  .planned-state {
    top: 26px;
    right: 22px;
  }

  .scenario-panel {
    padding: 26px 20px;
  }

  .scenario-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .planned-detail h1 {
    font-size: 40px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 18px;
  }
}
