:root {
  --page: #f7f8f2;
  --surface: #fffdf8;
  --ink: #18343b;
  --muted: #5c6e70;
  --line: #d7dfda;
  --ocean: #123d4a;
  --ocean-soft: #2f8290;
  --coral: #b8503c;
  --sun: #f1c66b;
  --forest: #2f7059;
  --max-width: 1120px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 9px 13px;
  background: var(--surface);
  border: 2px solid var(--coral);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.home-header,
.home-hero,
.essentials,
.footer-inner,
.legal-header-inner,
.legal-main {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.home-header {
  display: flex;
  justify-content: center;
  padding: 32px 0 18px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 800;
}

.wordmark img {
  border-radius: 6px;
}

.home-hero {
  padding: 40px 0 74px;
}

.hero-copy {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.legal-title h1 {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-weight: 600;
}

.hero-copy h1 {
  color: var(--ocean);
  font-size: 66px;
  line-height: 1.08;
}

.hero-description {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.store-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 194px;
  min-height: 58px;
  margin-top: 30px;
  padding: 8px 18px;
  background: #171918;
  border: 1px solid #171918;
  border-radius: 6px;
  color: #fff;
  text-align: left;
}

.store-status small,
.store-status strong {
  display: block;
}

.store-status small {
  font-size: 10px;
  line-height: 1.2;
}

.store-status strong {
  font-size: 19px;
  line-height: 1.25;
}

.play-mark {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
}

.product-stage {
  aspect-ratio: 1369 / 860;
  margin: 58px 0 0;
  overflow: hidden;
  background: #bfdde0;
  border: 1px solid #afcbcd;
  border-radius: 6px;
}

.product-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.essentials {
  padding: 92px 0 108px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1fr;
  gap: 44px;
  align-items: start;
}

.section-heading .eyebrow {
  padding-top: 8px;
}

.section-heading h2 {
  font-size: 42px;
  line-height: 1.17;
}

.section-heading > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.essential-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 60px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.essential-list li {
  min-height: 256px;
  padding: 28px 32px 0 0;
  border-right: 1px solid var(--line);
}

.essential-list li + li {
  padding-left: 32px;
}

.essential-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.essential-list > li > span {
  color: var(--coral);
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 23px;
}

.essential-list h3 {
  margin: 44px 0 0;
  font-size: 18px;
}

.essential-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.essential-list a {
  display: inline-flex;
  gap: 8px;
  margin-top: 17px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-footer {
  padding: 54px 0;
  background: var(--ocean);
  color: #f5f8f5;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px 64px;
  align-items: end;
}

.wordmark-light {
  color: #f5f8f5;
  font-size: 19px;
}

.footer-brand p {
  margin: 10px 0 0;
  color: #cfe0dc;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 28px;
  color: #e4efec;
  font-size: 13px;
}

.legal-links a:hover,
.legal-links a:focus-visible,
.back-link:hover,
.back-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgb(245 248 245 / 18%);
  color: #b9cfca;
  font-size: 12px;
}

.legal-page {
  background: var(--surface);
}

.legal-header {
  border-bottom: 1px solid var(--line);
}

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.legal-header .wordmark {
  font-size: 18px;
}

.back-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.legal-main {
  max-width: 780px;
  padding-top: 76px;
  padding-bottom: 112px;
}

.legal-title {
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.legal-title .eyebrow {
  margin-bottom: 12px;
}

.legal-title h1 {
  font-size: 52px;
  line-height: 1.12;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-intro {
  margin: 38px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.8;
}

.legal-content {
  margin-top: 64px;
}

.legal-section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section h2 {
  margin: 0 0 16px;
  color: var(--ocean);
  font-size: 19px;
  line-height: 1.4;
}

.legal-section h3 {
  margin: 24px 0 8px;
  font-size: 15px;
}

.legal-section p {
  margin: 12px 0 0;
  color: #41575b;
  font-size: 15px;
  line-height: 1.85;
}

.legal-section a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page .site-footer {
  padding-block: 42px;
}

@media (max-width: 820px) {
  .hero-copy h1 {
    font-size: 54px;
  }

  .section-heading {
    grid-template-columns: 1fr 1.4fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .essential-list li {
    padding-right: 24px;
  }

  .essential-list li + li {
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .home-header,
  .home-hero,
  .essentials,
  .footer-inner,
  .legal-header-inner,
  .legal-main {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .home-header {
    padding-top: 22px;
  }

  .wordmark {
    gap: 10px;
    font-size: 20px;
  }

  .wordmark img {
    width: 42px;
    height: 42px;
  }

  .home-hero {
    padding: 28px 0 62px;
  }

  .hero-copy h1 {
    font-size: 43px;
    line-height: 1.1;
  }

  .hero-description {
    margin-top: 20px;
    font-size: 15px;
  }

  .store-status {
    min-width: 184px;
    min-height: 54px;
    margin-top: 26px;
  }

  .store-status strong {
    font-size: 17px;
  }

  .play-mark {
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 22px;
  }

  .product-stage {
    aspect-ratio: 4 / 5;
    margin-top: 42px;
  }

  .product-stage img {
    object-position: right top;
  }

  .essentials {
    padding: 70px 0 76px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    padding: 0;
  }

  .section-heading h2 {
    font-size: 35px;
  }

  .section-heading > p:last-child {
    margin-top: 20px;
  }

  .essential-list {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .essential-list li,
  .essential-list li + li {
    min-height: 0;
    padding: 26px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .essential-list li:last-child {
    border-bottom: 0;
  }

  .essential-list h3 {
    margin-top: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .legal-links {
    justify-content: flex-start;
  }

  .copyright {
    grid-column: auto;
  }

  .legal-header-inner {
    min-height: 72px;
  }

  .legal-header .wordmark img {
    width: 36px;
    height: 36px;
  }

  .legal-main {
    padding-top: 54px;
    padding-bottom: 76px;
  }

  .legal-title {
    padding-bottom: 34px;
  }

  .legal-title h1 {
    font-size: 39px;
  }

  .legal-intro {
    margin-top: 30px;
    font-size: 16px;
  }

  .legal-content {
    margin-top: 46px;
  }

  .legal-section {
    padding: 30px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
