@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/Newsreader-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/Manrope-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/Manrope-Medium.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --background: #fbf9f4;
  --surface: #ffffff;
  --surface-low: #f5f3ee;
  --surface-container: #f0eee9;
  --sage: #475347;
  --sage-strong: #303b31;
  --sage-soft: #d9e6d6;
  --clay: #675d50;
  --warm: #efe0cf;
  --cool: #edf4f6;
  --text: #1b1c19;
  --text-secondary: #444842;
  --text-muted: #5f635d;
  --border: #c4c8c0;
  --border-soft: rgba(71, 83, 71, 0.14);
  --shadow: rgba(27, 28, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body.noindex-note {
  background: var(--surface-low);
}

a {
  color: var(--sage-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

img {
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: rgba(251, 249, 244, 0.96);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  font-family: "Newsreader", Georgia, serif;
  font-size: 25px;
  gap: 10px;
  line-height: 32px;
  text-decoration: none;
}

.brand-mark {
  border-radius: 8px;
  display: block;
  height: 36px;
  width: 36px;
}

.brand-wordmark {
  display: block;
  height: 24px;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 22px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  text-decoration: underline;
}

.nav-cta,
.cta-link {
  align-items: center;
  background: var(--sage);
  border: 1px solid var(--sage);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
  line-height: 22px;
  min-height: 44px;
  padding: 10px 18px;
  text-decoration: none;
}

.site-nav .nav-cta {
  color: #ffffff;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.cta-link:hover,
.cta-link:focus-visible {
  background: var(--sage-strong);
  border-color: var(--sage-strong);
  color: #ffffff;
  text-decoration: none;
}

.text-link {
  color: var(--sage-strong);
  font-weight: 500;
}

.marketing-main {
  overflow: hidden;
}

.hero-section {
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(251, 249, 244, 0.98) 0%,
      rgba(251, 249, 244, 0.92) 43%,
      rgba(251, 249, 244, 0.54) 100%
    ),
    url("/assets/marketing/morrow-today.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  min-height: 72svh;
  padding: 60px 32px;
}

.hero-content,
.section-inner,
.legal-main {
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.section-eyebrow {
  color: var(--clay);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: 64px;
  line-height: 72px;
  margin: 0;
  max-width: 780px;
}

.hero-subhead {
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 32px;
  margin: 24px 0 0;
  max-width: 690px;
}

.hero-actions,
.page-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.reassurance-line {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 24px;
  margin: 18px 0 0;
  max-width: 650px;
}

.marketing-section {
  border-top: 1px solid var(--border-soft);
  padding: 72px 32px;
}

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

.quiet-band {
  background: #eef4ed;
}

.cool-band {
  background: var(--cool);
}

.warm-band {
  background: #f4eee4;
}

.copy-column {
  max-width: 780px;
}

.section-heading {
  font-size: 42px;
  line-height: 50px;
  margin: 0;
  max-width: 820px;
}

.copy-column p,
.section-lede {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 30px;
  margin: 18px 0 0;
  max-width: 760px;
}

.feature-grid,
.example-grid,
.faq-list,
.download-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.example-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.feature-card,
.example-card,
.download-panel {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  min-width: 0;
  padding: 22px;
}

.feature-card h3,
.example-card h3,
.download-panel h3,
.faq-item h3 {
  font-size: 24px;
  line-height: 31px;
  margin: 0;
}

.feature-card p,
.example-card p,
.download-panel p,
.faq-item p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 26px;
  margin: 12px 0 0;
  max-width: none;
}

.example-meta {
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.example-meta li {
  background: var(--surface-container);
  border-radius: 999px;
  padding: 6px 9px;
}

.screen-strip {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.phone-frame {
  aspect-ratio: 9 / 19.5;
  background: #1b1c19;
  border: 1px solid rgba(27, 28, 25, 0.24);
  border-radius: 28px;
  box-shadow: 0 24px 48px var(--shadow);
  display: block;
  margin: 0 auto;
  max-width: 252px;
  overflow: hidden;
  padding: 9px;
  width: 100%;
}

.phone-frame img {
  border-radius: 20px;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.boundary-list {
  color: var(--text-secondary);
  display: grid;
  font-size: 18px;
  gap: 12px;
  line-height: 30px;
  list-style: none;
  margin: 24px 0 0;
  max-width: 760px;
  padding: 0;
}

.boundary-list li {
  border-top: 1px solid rgba(71, 83, 71, 0.18);
  padding-top: 12px;
}

.faq-list {
  max-width: 860px;
}

.faq-item {
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
}

.final-cta-section {
  background: #eef4ed;
  border-top: 1px solid var(--border-soft);
  padding: 54px 32px;
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 30px 32px 44px;
}

.site-footer .section-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.site-footer p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 22px;
}

.legal-main {
  max-width: 780px;
  padding: 56px 32px 72px;
}

.last-updated {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 24px;
  margin: 10px 0 0;
}

.intro {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 30px;
  margin: 26px 0 0;
  max-width: 720px;
}

.legal-section {
  border-top: 1px solid var(--border-soft);
  margin-top: 34px;
  padding-top: 28px;
}

.legal-section h2 {
  font-size: 28px;
  line-height: 36px;
  margin: 0 0 12px;
}

.legal-section p,
.legal-section li {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 26px;
}

.legal-section p {
  margin: 0 0 12px;
  max-width: none;
}

.legal-section ul {
  margin: 0;
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .feature-grid,
  .example-grid,
  .download-grid,
  .screen-strip {
    grid-template-columns: 1fr;
  }

  .screen-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-section {
    background:
      linear-gradient(
        180deg,
        rgba(251, 249, 244, 1) 0%,
        rgba(251, 249, 244, 0.99) 68%,
        rgba(251, 249, 244, 0.82) 100%
      ),
      url("/assets/marketing/morrow-today.png");
    background-position: center bottom;
    background-size: cover;
    min-height: 520px;
    padding: 44px 20px;
  }

  .marketing-section,
  .final-cta-section,
  .site-footer,
  .legal-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .marketing-section {
    padding-bottom: 54px;
    padding-top: 54px;
  }

  h1 {
    font-size: 44px;
    line-height: 52px;
  }

  .hero-subhead,
  .copy-column p,
  .section-lede,
  .boundary-list {
    font-size: 17px;
    line-height: 28px;
  }

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

  .screen-strip {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    max-width: 210px;
  }
}
