@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/bricolage-grotesque-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/assets/hanken-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #f8f7f2;
  --white: #fffefa;
  --ink: #273e31;
  --text: #3e4c41;
  --muted: #686f64;
  --sage: #536c49;
  --sage-light: #dce5cd;
  --lime: #d8e1b1;
  --peach: #f0dfce;
  --sand: #efede4;
  --quiet: #e7e9de;
  --font-interface: "Hanken Grotesk", sans-serif;
  --font-display: "Bricolage Grotesque", sans-serif;
  --measure: 74rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 2rem; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-interface);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  caret-color: var(--sage);
  scrollbar-color: var(--sage-light) var(--paper);
  scrollbar-width: thin;
}
::selection { color: var(--white); background: var(--sage); }
::-webkit-scrollbar { width: .65rem; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--sage-light); border: 2px solid var(--paper); border-radius: 1rem; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
a:hover { color: var(--sage); }
a:focus-visible { outline: 2px solid var(--sage); outline-offset: 4px; }
button, input, textarea { font: inherit; }
img, svg { display: block; }
img { max-width: 100%; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 { color: var(--ink); font-family: var(--font-display); font-weight: 500; }
h1 { font-size: clamp(3rem, 6.4vw, 5.25rem); letter-spacing: -.045em; line-height: .99; }
h2 { font-size: clamp(2rem, 3.3vw, 2.75rem); letter-spacing: -.035em; line-height: 1.1; }
h3 { font-size: 1.35rem; letter-spacing: -.025em; line-height: 1.2; }
p { max-width: 68ch; }
.wrap { width: min(calc(100% - 3.5rem), var(--measure)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 20; inset: 1rem auto auto 1rem; transform: translateY(-180%); padding: .75rem 1rem; color: var(--white); background: var(--ink); }
.skip-link:focus { transform: translateY(0); }
.site-header {
  min-height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.wordmark {
  color: var(--ink);
  font: 700 2rem/1 var(--font-display);
  letter-spacing: -.07em;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark span { color: #82916a; }
.site-nav, .site-footer nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.25rem); }
.site-nav a, .site-footer nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: .9375rem;
  text-decoration: none;
}
.site-nav a:hover, .site-footer nav a:hover, .site-nav [aria-current="page"] { color: var(--sage); }
.site-nav [aria-current="page"] { text-decoration: underline; text-underline-offset: .4rem; text-decoration-thickness: 1px; }
.hero {
  min-height: 42rem;
  display: grid;
  grid-template-columns: minmax(19rem, .92fr) minmax(24rem, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: 3.5rem 5.5rem;
}
.hero-copy { padding-block: 1rem; }
.hero h1 span { color: #82916a; }
.hero-lede {
  max-width: 34rem;
  margin-top: 1.65rem;
  color: var(--text);
  font-size: clamp(1.125rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.75rem; margin-top: 2rem; }
.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  border-radius: 4px;
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .18s ease-out, color .18s ease-out;
}
.button-primary { color: var(--white); background: var(--ink); }
.button-primary:hover { color: var(--white); background: var(--sage); }
.text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--sage);
  font-weight: 600;
  text-decoration: none;
}
.text-link:hover { color: var(--ink); }
.arrow-icon { width: 1.125rem; height: 1.125rem; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.hero-note { margin-top: 1.75rem; color: var(--muted); font-size: .9375rem; }
.preview-scene {
  position: relative;
  min-width: 0;
  height: 39rem;
  isolation: isolate;
  animation: arrive .75s cubic-bezier(.16, 1, .3, 1) both;
}
.preview-scene::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 13% 8% 9% 14%;
  background: var(--sage-light);
  border-radius: 48% 45% 42% 46%;
}
.device {
  position: absolute;
  overflow: hidden;
  border: 7px solid #1e2b23;
  border-radius: 2.5rem;
  background: #1e2b23;
}
.device img { width: 100%; height: auto; }
.device-main { z-index: 3; top: 1rem; left: 23%; width: min(61%, 18rem); transform: rotate(-2.2deg); }
.device-recipes { z-index: 2; top: 5rem; right: 0; width: min(40%, 12.25rem); transform: rotate(4deg); }
.device-insights { z-index: 1; bottom: 1.9rem; left: 0; width: min(37%, 11rem); transform: rotate(-5deg); }
.preview-scene figcaption { position: absolute; right: .5rem; bottom: 0; color: var(--muted); font-size: .8125rem; }
.journal-section { padding-block: 6rem 6.5rem; background: var(--white); }
.section-intro { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(15rem, .9fr); align-items: end; gap: 2rem 5rem; }
.section-intro h2 { max-width: 23ch; }
.section-intro p { color: var(--muted); font-size: 1.0625rem; }
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4.25rem;
  border-top: 1px solid var(--quiet);
  padding-top: 2rem;
}
.feature { display: grid; grid-template-columns: 2.25rem 1fr; align-items: start; gap: 1rem; }
.feature-mark { width: 2rem; color: var(--sage); }
.feature-mark svg { width: 1.75rem; height: 1.75rem; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { margin-bottom: .65rem; }
.feature p { color: var(--muted); font-size: .98rem; }
.care-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding-block: 4.6rem;
  border-bottom: 1px solid var(--quiet);
}
.care-section h2 { margin-bottom: .85rem; }
.care-section p { max-width: 57ch; }
.care-section .text-link { max-width: 15rem; }
.closing { display: flex; flex-direction: column; align-items: center; padding-block: 5.75rem; text-align: center; }
.closing p { margin-top: .8rem; color: var(--muted); }
.closing .text-link { margin-top: 1.3rem; }
.site-footer { background: #f0f0e7; }
.footer-inner {
  min-height: 8.5rem;
  display: grid;
  grid-template-columns: auto minmax(12rem, 1fr) auto auto;
  align-items: center;
  gap: 1.75rem;
}
.footer-inner .wordmark { font-size: 1.6rem; }
.footer-inner p, .footer-inner small { color: var(--muted); font-size: .875rem; }
.site-footer nav { gap: 1.5rem; }
.site-footer nav a { font-size: .875rem; }
.reading-page { width: min(calc(100% - 3.5rem), 54rem); margin-inline: auto; padding-block: 1.5rem 6rem; }
.reading-head { padding-block: 1rem 3.25rem; border-bottom: 1px solid var(--quiet); }
.back-link { min-height: 2.75rem; display: inline-flex; align-items: center; gap: .55rem; color: var(--sage); font-size: .9375rem; text-decoration: none; }
.arrow-back { width: 1rem; height: 1rem; }
.reading-head h1 { margin-top: 2rem; font-size: clamp(2.8rem, 6vw, 4.8rem); }
.reading-lede { max-width: 58ch; margin-top: 1.15rem; font-size: 1.125rem; }
.updated { margin-top: 1.5rem; color: var(--muted); font-size: .9375rem; }
.policy-copy { padding-top: 2.25rem; }
.policy-copy h2 { margin-top: 2.7rem; margin-bottom: .85rem; font-size: 1.75rem; }
.policy-copy h3 { margin-top: 1.65rem; margin-bottom: .5rem; font-size: 1.25rem; }
.policy-copy p + p, .policy-copy ul + p { margin-top: 1rem; }
.policy-copy ul { display: grid; gap: .55rem; margin-block: .8rem 1rem; padding-left: 1.35rem; }
.policy-copy li { padding-left: .2rem; }
.policy-copy li::marker { color: var(--sage); }
.policy-copy a { color: var(--sage); font-weight: 600; }
.policy-copy a:hover { color: var(--ink); }
.support-page { padding-bottom: 6.5rem; }
.support-email { min-height: 3rem; display: inline-flex; align-items: center; gap: .8rem; margin-top: 1.4rem; color: var(--sage); font-size: 1.25rem; font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
.support-topics { padding-top: 3rem; }
.support-topics h2, .support-note h2 { font-size: 1.75rem; }
.faq-list { margin: 1.3rem 0 0; }
.faq-item { display: grid; grid-template-columns: minmax(11rem, .7fr) minmax(0, 1.3fr); gap: 1rem 2.25rem; padding-block: 1.35rem; border-top: 1px solid var(--quiet); }
.faq-item dt { color: var(--ink); font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; line-height: 1.25; }
.faq-item dd { margin: 0; }
.support-note { margin-top: 3.2rem; padding-top: 2.3rem; border-top: 1px solid var(--quiet); }
.support-note p { max-width: 60ch; margin-top: .8rem; }
.support-note .button { margin-top: 1.4rem; }
@keyframes arrive {
  from { opacity: .25; transform: translateY(1rem) scale(.985); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@media (max-width: 900px) {
  .hero { min-height: auto; grid-template-columns: minmax(0, .95fr) minmax(20rem, 1.05fr); gap: 2rem; padding-block: 3rem 4.25rem; }
  .preview-scene { height: 34rem; }
  .feature-list { gap: 1.5rem; }
  .feature { grid-template-columns: 1.8rem 1fr; gap: .7rem; }
  .footer-inner { grid-template-columns: auto 1fr auto; }
  .footer-inner p { grid-column: 1 / 3; grid-row: 2; padding-bottom: 1.5rem; }
  .footer-inner small { grid-column: 3; grid-row: 2; text-align: right; padding-bottom: 1.5rem; }
}
@media (max-width: 680px) {
  body { font-size: 1rem; }
  .wrap { width: min(calc(100% - 2rem), var(--measure)); }
  .site-header { min-height: 5rem; gap: 1rem; }
  .wordmark { font-size: 1.75rem; }
  .site-nav { gap: .85rem; }
  .site-nav a { min-height: 2.75rem; font-size: .875rem; }
  .hero { display: flex; flex-direction: column; align-items: stretch; gap: 1.25rem; padding-block: 2.5rem 3.5rem; }
  .hero h1 { font-size: clamp(3.15rem, 13vw, 4.5rem); }
  .hero-lede { margin-top: 1.25rem; font-size: 1.125rem; }
  .hero-actions { gap: .6rem 1.25rem; margin-top: 1.5rem; }
  .hero-note { margin-top: 1.1rem; }
  .preview-scene { width: 100%; max-width: 24rem; height: 32rem; align-self: center; margin-top: .3rem; }
  .preview-scene::before { inset: 10% 4% 8% 7%; }
  .device { border-width: 6px; border-radius: 2rem; }
  .device-main { top: .5rem; left: 20%; width: min(65%, 16rem); }
  .device-recipes, .device-insights { display: none; }
  .preview-scene figcaption { right: 0; bottom: .2rem; left: 0; text-align: center; }
  .journal-section { padding-block: 4rem 4.5rem; }
  .section-intro { grid-template-columns: 1fr; gap: .9rem; }
  .section-intro p { font-size: 1rem; }
  .feature-list { grid-template-columns: 1fr; gap: 1.75rem; margin-top: 2rem; padding-top: 1.6rem; }
  .feature { grid-template-columns: 2.1rem 1fr; gap: .95rem; }
  .feature h3 { font-size: 1.25rem; }
  .feature p { font-size: 1rem; }
  .care-section { grid-template-columns: 1fr; gap: .8rem; padding-block: 3.25rem; }
  .care-section h2 { font-size: 2rem; }
  .care-section .text-link { max-width: none; }
  .closing { align-items: flex-start; padding-block: 3.6rem; text-align: left; }
  .site-footer { padding-block: 1.25rem .4rem; }
  .footer-inner { grid-template-columns: 1fr auto; gap: .55rem 1rem; }
  .footer-inner .wordmark { grid-column: 1; }
  .footer-inner p { grid-column: 1 / -1; grid-row: auto; padding: .15rem 0 .1rem; }
  .site-footer nav { grid-column: 1 / -1; grid-row: auto; gap: 1.2rem; }
  .footer-inner small { grid-column: 2; grid-row: 1; padding: 0; }
  .reading-page { width: min(calc(100% - 2rem), 54rem); padding-block: .5rem 4rem; }
  .reading-head { padding-bottom: 2.25rem; }
  .reading-head h1 { margin-top: 1.25rem; font-size: clamp(2.75rem, 12vw, 4rem); }
  .reading-lede { font-size: 1.0625rem; }
  .policy-copy { padding-top: 1.6rem; }
  .policy-copy h2 { margin-top: 2.2rem; font-size: 1.6rem; }
  .faq-item { grid-template-columns: 1fr; gap: .55rem; padding-block: 1.2rem; }
  .support-topics { padding-top: 2.25rem; }
}
@media (max-width: 380px) {
  .site-header { align-items: flex-start; flex-direction: column; padding-block: 1.1rem .5rem; }
  .site-nav { width: 100%; justify-content: space-between; }
  .site-nav a { min-height: 2.5rem; }
  .preview-scene { height: 29rem; }
  .hero h1 { font-size: 3rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
