:root {
  color-scheme: light;
  --ink: #171611;
  --muted: #66675e;
  --paper: #f6f1e8;
  --panel: #fffaf0;
  --line: #ded5c2;
  --forest: #143529;
  --forest-soft: #244f3d;
  --leaf: #5f7f50;
  --clay: #b75c37;
  --gold: #c59b4a;
  --shadow: 0 22px 60px rgba(23, 22, 17, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(20, 53, 41, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fbf8ef 0%, var(--paper) 48%, #efe5d2 100%);
  background-size: 76px 76px, auto;
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.section,
.page-hero,
.post-list,
.content-grid,
.article,
.pathways {
  width: min(1160px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(20, 53, 41, 0.16);
}

.brand,
.site-header nav,
.hero-actions,
.screen-header,
.contact-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  color: var(--forest);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
}

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

.site-header nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 750;
}

.site-header nav a,
.site-footer a,
.back-link,
.pathway-card,
.post-card h2 a {
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer a:hover,
.back-link:hover,
.post-card a:hover,
.feature-card a:hover,
.compact-card a:hover,
.text-link:hover,
.link-panel a:hover,
.contact-panel a:hover,
.pathway-card:hover h2 {
  color: var(--clay);
}

.hero {
  position: relative;
  min-height: clamp(560px, 76vh, 780px);
  isolation: isolate;
  overflow: hidden;
}

.resource-hero {
  display: grid;
  align-items: end;
  margin-top: 0;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 18, 13, 0.92) 0%, rgba(17, 18, 13, 0.74) 38%, rgba(17, 18, 13, 0.24) 72%),
    linear-gradient(180deg, rgba(17, 18, 13, 0.08) 0%, rgba(17, 18, 13, 0.76) 100%);
}

.hero-copy {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding: 74px 0 90px;
  max-width: none;
}

.hero-copy > * {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #efb87c;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.9rem, 10vw, 8.8rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.hero h1,
.hero .lede {
  color: #fff8ea;
}

.page-hero .hero-copy {
  width: auto;
  margin: 0;
  padding: 0;
}

.page-hero .hero-copy > * {
  max-width: none;
}

.lede {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  border-radius: 2px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--forest);
  color: white;
}

.hero .button.primary,
.dark-section .button.primary {
  border-color: #f4d7a6;
  background: #f4d7a6;
  color: #1b1a13;
}

.button.secondary {
  background: transparent;
  color: var(--forest);
}

.hero .button.secondary,
.dark-section .button.secondary {
  border-color: rgba(255, 248, 234, 0.62);
  color: #fff8ea;
}

.pathways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: var(--shadow);
}

.pathway-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  padding: 26px;
}

.pathway-card:last-child {
  border-right: 0;
}

.pathway-card span,
.service-card span,
.task-card span,
.sensei-card span,
.screen-header span {
  display: block;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pathway-card h2 {
  margin-top: 32px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.pathway-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.about-principles {
  margin-top: 24px;
}

.section {
  padding: 84px 0;
}

.compact-section {
  padding-top: 64px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.feature-grid,
.service-grid,
.content-grid,
.guide-category-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 24px 0 90px;
}

.guide-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.post-card,
.compact-card,
.link-panel,
.contact-panel,
.service-card {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.84);
  padding: 24px;
}

.guide-start {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  align-items: start;
  gap: 48px;
}

.guide-start-links {
  display: grid;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.84);
}

.guide-start-links a,
.guide-list-item {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  padding: 18px;
  text-decoration: none;
}

.guide-start-links a:last-child,
.guide-list-item:last-child {
  border-bottom: 0;
}

.guide-start-links a:hover,
.guide-list-item:hover,
.guide-archive-list a:hover {
  color: var(--clay);
}

.guide-start-links span,
.guide-list-item span {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-start-links strong {
  font-size: 1.08rem;
}

.feature-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.feature-card::before,
.service-card::before {
  content: "";
  width: 46px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--gold);
}

.feature-card p,
.service-card p,
.post-card p,
.compact-card p,
.section p,
.contact-panel p,
.page-hero p,
.article header p,
.article-body {
  color: var(--muted);
}

.feature-card a,
.compact-card a,
.text-link,
.link-panel a {
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

.feature-card a {
  margin-top: auto;
}

.guide-category {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
  gap: 24px;
  border-top: 1px solid rgba(20, 53, 41, 0.18);
  padding-top: 28px;
}

.guide-category + .guide-category {
  margin-top: 28px;
}

.guide-category-heading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.guide-list {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.88);
}

.guide-list-item strong {
  font-size: 1.02rem;
}

.guide-list-item small {
  color: var(--muted);
  line-height: 1.5;
}

.guide-archive-list {
  columns: 2;
  column-gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.guide-archive-list a {
  display: block;
  break-inside: avoid;
  color: var(--forest);
  font-weight: 900;
  padding: 9px 0;
  text-decoration: none;
}

.guide-library {
  padding-top: 30px;
}

.guide-library-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.guide-library-heading > * {
  max-width: 580px;
  margin-bottom: 0;
}

.guide-library-controls {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.84);
  padding: 18px;
}

.guide-search-label {
  display: block;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.guide-search {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fffdf7;
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
}

.guide-search:focus {
  outline: 3px solid rgba(95, 127, 80, 0.3);
  outline-offset: 2px;
}

.guide-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.guide-filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 8px 12px;
}

.guide-filter:hover,
.guide-filter.is-active {
  border-color: var(--forest);
  background: var(--forest);
  color: #fffaf0;
}

.guide-filter span {
  font-size: 0.74rem;
  opacity: 0.8;
}

.guide-result-count {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  margin: 20px 0 12px;
}

.guide-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.guide-library-card {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 190px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.6);
  color: var(--forest);
  padding: 20px;
  text-decoration: none;
}

.guide-library-card[hidden] {
  display: none;
}

.guide-library-card:hover {
  background: #fffaf0;
  color: var(--clay);
}

.guide-library-card span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-library-card strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.guide-library-card small {
  color: var(--muted);
  line-height: 1.45;
}

.guide-no-results {
  color: var(--muted);
  margin: 18px 0 0;
}

.dark-section {
  width: auto;
  max-width: none;
  margin-inline: 0;
  padding-inline: max(22px, calc((100vw - 1160px) / 2));
  background: var(--forest);
  color: #fff8ea;
}

.dark-section .section-heading p,
.dark-section .service-card p {
  color: rgba(255, 248, 234, 0.72);
}

.dark-section .service-card {
  border-color: rgba(255, 248, 234, 0.18);
  background: rgba(255, 248, 234, 0.07);
}

.dark-section .service-card span {
  color: #efb87c;
}

.dark-section .service-card::before {
  background: #efb87c;
}

.editorial-band {
  position: relative;
}

.editorial-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  border-block: 1px solid rgba(20, 53, 41, 0.1);
  background: rgba(255, 250, 240, 0.42);
  z-index: -1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  align-items: start;
  gap: 44px;
  border-top: 1px solid var(--line);
}

.contact-panel {
  box-shadow: var(--shadow);
}

.contact-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-hero {
  padding: 76px 0 38px;
  max-width: 850px;
}

.page-hero h1 {
  font-size: clamp(2.65rem, 6vw, 5.2rem);
}

.app-page-hero {
  max-width: 1160px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.52fr);
  align-items: center;
  gap: 54px;
  padding-bottom: 72px;
}

.app-page-hero h1 {
  max-width: 760px;
}

.app-hero,
.app-band-inner,
.app-cta-band {
  width: min(100% - 56px, 1160px);
  margin: 0 auto;
}

.app-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.54fr);
  align-items: center;
  gap: 76px;
  padding: 82px 0 86px;
}

.app-hero h1 { max-width: 690px; font-size: clamp(3rem, 6.2vw, 5.7rem); }
.app-availability { margin-top: 18px; color: var(--muted); font-size: 0.9rem; font-weight: 800; }

.app-device { position: relative; border: 8px solid #17231b; border-radius: 34px; background: #f8f4e9; box-shadow: 0 28px 70px rgba(22, 32, 24, 0.2); overflow: hidden; }
.app-device-hero { justify-self: center; width: min(100%, 350px); min-height: 590px; padding: 22px 18px 14px; }
.app-device-speaker { width: 96px; height: 6px; margin: 0 auto 24px; border-radius: 999px; background: #17231b; }
.app-screen-top, .app-screen-heading, .app-tree-row, .app-tab-bar, .sensei-preview-top { display: flex; align-items: center; }
.app-screen-top { justify-content: space-between; color: var(--forest); font-weight: 900; }
.app-kicker { letter-spacing: 0.12em; }.app-avatar { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: #dbe7d8; font-size: 0.68rem; }
.app-screen-heading { justify-content: space-between; margin: 24px 0 16px; }.app-screen-heading span { color: var(--ink); font-size: 1.7rem; font-weight: 900; }.app-screen-heading strong { color: var(--muted); font-size: 0.78rem; }
.app-tree-row { gap: 11px; margin-top: 9px; border: 1px solid rgba(33, 55, 37, 0.12); border-radius: 15px; background: rgba(255, 253, 247, 0.92); padding: 10px; }.app-tree-row div { flex: 1; }.app-tree-row strong, .app-tree-row small { display: block; }.app-tree-row strong { color: var(--ink); font-size: 0.88rem; }.app-tree-row small { margin-top: 3px; color: var(--muted); font-size: 0.72rem; }.app-tree-row b { color: var(--forest); font-size: 1.35rem; }
.tree-thumb { width: 43px; height: 43px; border-radius: 12px; background: #b7c7a7; }.tree-thumb.pine { background: linear-gradient(135deg, #384e32 0 46%, #d2c09c 47% 60%, #78976a 61%); }.tree-thumb.maple, .maple-photo { background: linear-gradient(135deg, #8a3023, #d0663c 46%, #e8c180 47%, #6d7d3d 70%); }.tree-thumb.elm { background: linear-gradient(135deg, #315941, #a9bf75 54%, #c9a66e 55%); }
.app-tab-bar { justify-content: space-around; margin: 24px -3px 0; border-top: 1px solid rgba(33, 55, 37, 0.13); padding-top: 13px; color: var(--muted); font-size: 0.7rem; font-weight: 900; }.app-tab-bar .active { color: var(--forest); }
.app-section-heading { max-width: 720px; }.app-showcase-grid { display: grid; grid-template-columns: minmax(240px, 0.66fr) minmax(0, 0.84fr); align-items: center; gap: 80px; margin-top: 48px; }.app-showcase-grid.reverse { grid-template-columns: minmax(0, 0.84fr) minmax(240px, 0.66fr); }
.app-device-small { width: min(100%, 292px); min-height: 454px; justify-self: center; padding: 18px; }.mini-screen-title { margin: 0 0 14px; color: var(--ink); font-size: 1.23rem; font-weight: 900; }.mini-photo { height: 172px; border-radius: 16px; }.mini-stat { display: grid; gap: 4px; margin-top: 17px; border-radius: 15px; background: #edf4e9; padding: 15px; }.mini-stat span { color: var(--muted); font-size: 0.72rem; font-weight: 900; }.mini-stat strong { color: var(--forest); font-size: 0.92rem; line-height: 1.25; }
.app-feature-stack { display: grid; gap: 0; border-top: 1px solid var(--line); }.app-feature-card { display: grid; grid-template-columns: 42px 1fr; gap: 16px; border-bottom: 1px solid var(--line); padding: 20px 0; }.app-feature-card h3 { margin: 0; color: var(--ink); font-size: 1.12rem; }.app-feature-card p { margin: 7px 0 0; color: var(--muted); }.app-feature-number { color: var(--clay); font-size: 0.78rem; font-weight: 900; }
.app-band { margin-top: 28px; background: var(--forest); color: #f6f3e8; }.app-band-inner { display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(250px, 0.46fr); align-items: center; gap: 92px; padding: 86px 0; }.app-band .eyebrow { color: #c5d6a8; }.app-band h2 { max-width: 550px; color: #fffdf6; font-size: clamp(2.3rem, 4.5vw, 4.35rem); }.app-band-copy > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,0.75); font-size: 1.08rem; }.app-feature-list { display: grid; gap: 17px; margin-top: 29px; }.app-feature-list div { display: grid; gap: 4px; border-left: 2px solid #c6a765; padding-left: 15px; }.app-feature-list strong { color: #fffdf6; }.app-feature-list span { color: rgba(255,255,255,0.72); font-size: 0.93rem; }
.app-device-today { width: min(100%, 306px); min-height: 485px; justify-self: center; padding: 18px; background: #f8f5eb; }.today-date { margin: -8px 0 17px; color: var(--muted); font-size: 0.76rem; }.today-task { display: grid; gap: 5px; margin-top: 10px; border: 1px solid rgba(33, 55, 37, 0.13); border-radius: 15px; background: #fffdf7; padding: 14px; }.today-task.urgent { border-color: rgba(183, 92, 55, 0.42); background: #fff0e5; }.today-task span { color: var(--clay); font-size: 0.72rem; font-weight: 900; }.today-task strong { color: var(--ink); }.today-task small { color: var(--muted); }
.sensei-preview { border: 1px solid var(--line); border-radius: 23px; background: #f7f4ea; box-shadow: var(--shadow); padding: 24px; }.sensei-preview-top { gap: 11px; }.sensei-preview-top img { border-radius: 10px; }.sensei-preview-top strong, .sensei-preview-top span { display: block; }.sensei-preview-top span { margin-top: 2px; color: var(--muted); font-size: 0.78rem; }.sensei-message { max-width: 86%; margin-top: 20px; border-radius: 16px; padding: 13px 15px; font-size: 0.92rem; line-height: 1.5; }.sensei-message.user { margin-left: auto; background: var(--forest); color: white; }.sensei-message.reply { background: #e7f0e4; color: var(--ink); }.sensei-preview > p { margin: 18px 0 0; color: var(--muted); font-size: 0.86rem; }
.app-cta-band { display: flex; align-items: center; justify-content: space-between; gap: 32px; border-top: 1px solid var(--line); padding: 74px 0 88px; }.app-cta-band h2 { margin: 0; font-size: clamp(2.15rem, 4.5vw, 4rem); }.app-cta-band p:not(.eyebrow) { max-width: 670px; color: var(--muted); }

.post-list {
  display: grid;
  gap: 16px;
  padding: 18px 0 82px;
}

.library-list {
  padding-top: 42px;
}

.list-heading {
  margin-bottom: 8px;
}

.list-heading h2 {
  font-size: clamp(1.85rem, 3.5vw, 3rem);
}

.post-list.compact {
  padding-bottom: 0;
}

.post-card {
  display: grid;
  gap: 8px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.post-card:hover {
  border-color: rgba(183, 92, 55, 0.42);
  box-shadow: 0 18px 36px rgba(23, 22, 17, 0.08);
  transform: translateY(-2px);
}

.post-card time,
.compact-card time,
.article time {
  color: var(--clay);
  font-size: 0.88rem;
  font-weight: 900;
}

.post-card h2 {
  margin-top: 4px;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  line-height: 1.1;
}

.compact-card h3 {
  margin: 6px 0 8px;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
}

.link-panel {
  display: grid;
  gap: 0;
}

.link-panel a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.link-panel a:first-child {
  padding-top: 0;
}

.link-panel a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.region-list,
.tags,
.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.region-list a,
.tags span,
.post-meta-row a,
.post-meta-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--forest);
  padding: 7px 12px;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.tags {
  margin-top: 14px;
}

.post-meta-row {
  margin-top: 24px;
}

.article {
  max-width: 790px;
  padding: 64px 0 88px;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 900;
}

.article header h1 {
  margin-top: 10px;
  font-size: clamp(2.35rem, 5.5vw, 5rem);
  line-height: 0.98;
}

.article-body {
  margin-top: 34px;
  font-size: 1.04rem;
}

.article-note {
  margin-top: 28px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 250, 240, 0.78);
  padding: 16px 18px;
  color: var(--muted);
}

.article-note strong {
  color: var(--forest);
}

.article-body h2 {
  margin-top: 40px;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: rgba(255, 250, 240, 0.7);
}

.article-body th,
.article-body td {
  border: 1px solid var(--line);
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
}

.article-body th {
  color: var(--forest);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-body blockquote {
  margin: 28px 0;
  border-left: 4px solid var(--clay);
  padding: 4px 0 4px 18px;
  color: var(--muted);
}

.article-body li + li {
  margin-top: 8px;
}

.meta-grid,
.mini-meta {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

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

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

.meta-grid div,
.mini-meta div {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.72);
  padding: 13px;
}

.meta-grid dt,
.mini-meta dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.meta-grid dd,
.mini-meta dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.related-list {
  margin-top: 58px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

.related-list h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.phone-preview {
  width: min(100%, 330px);
  min-height: 500px;
  justify-self: center;
  border: 8px solid #18231c;
  border-radius: 28px;
  background: linear-gradient(180deg, #f9f6ee 0%, #edf3ed 100%);
  box-shadow: var(--shadow);
  padding: 20px;
}

.phone-bar {
  width: 92px;
  height: 5px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: #29352d;
}

.screen-header {
  gap: 12px;
  margin-bottom: 18px;
}

.screen-header img {
  border-radius: 9px;
}

.screen-header strong {
  display: block;
  font-size: 1.25rem;
}

.task-card,
.sensei-card {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.84);
  margin-top: 12px;
  padding: 18px;
}

.task-card.urgent {
  border-color: rgba(183, 92, 55, 0.38);
  background: #fff1e8;
}

.task-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.25rem;
}

.task-card small {
  display: block;
  margin-top: 24px;
  color: var(--clay);
}

.sensei-card {
  margin-top: 18px;
  background: #eef5ed;
}

.sensei-card p {
  margin: 10px 0 0;
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 30px 0 46px;
  color: var(--muted);
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--forest);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .site-header nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: 640px;
  }

  .pathways,
  .hero,
  .split,
  .app-page-hero,
  .app-hero,
  .app-band-inner,
  .guide-start,
  .guide-category {
    grid-template-columns: 1fr;
  }

  .pathways {
    border-top: 1px solid var(--line);
  }

  .pathway-card {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pathway-card:last-child {
    border-bottom: 0;
  }

  .app-page-hero .phone-preview {
    justify-self: start;
  }

  .app-hero { gap: 46px; }
  .app-showcase-grid,
  .app-showcase-grid.reverse { grid-template-columns: minmax(230px, 0.58fr) minmax(0, 0.82fr); gap: 42px; }
  .app-band-inner { gap: 48px; }

  .feature-grid,
  .feature-grid.three,
  .service-grid,
  .content-grid,
  .guide-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 600px) {
  .site-header,
  .site-footer,
  .section,
  .page-hero,
  .app-hero,
  .app-band-inner,
  .app-cta-band,
  .post-list,
  .content-grid,
  .article,
  .pathways,
  .hero-copy {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: 600px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 18, 13, 0.92) 0%, rgba(17, 18, 13, 0.74) 100%),
      linear-gradient(180deg, rgba(17, 18, 13, 0.08) 0%, rgba(17, 18, 13, 0.76) 100%);
  }

  .hero-copy {
    padding-bottom: 58px;
  }

  .app-page-hero {
    padding-bottom: 54px;
  }

  .app-hero { padding: 54px 0 62px; }
  .app-hero h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .app-device-hero { justify-self: stretch; width: min(100%, 360px); }
  .app-showcase-grid,
  .app-showcase-grid.reverse,
  .app-band-inner { grid-template-columns: 1fr; gap: 36px; }
  .app-showcase-grid.reverse .sensei-preview { order: 0; }
  .app-device-small, .app-device-today { justify-self: start; }
  .app-band-inner { padding: 58px 0; }
  .app-cta-band { display: grid; padding: 56px 0 64px; }

  .section {
    padding-block: 56px;
  }

  .feature-grid,
  .feature-grid.three,
  .service-grid,
  .content-grid,
  .guide-category-grid,
  .meta-grid,
  .mini-meta {
    grid-template-columns: 1fr;
  }

  .guide-library-heading,
  .guide-library-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .guide-archive-list {
    columns: 1;
  }

  .site-footer {
    display: grid;
  }

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

  .button {
    width: 100%;
    text-align: center;
  }

  .contact-actions,
  .hero-actions {
    display: grid;
  }

  .phone-preview {
    width: 100%;
    border-width: 8px;
    border-radius: 26px;
    padding: 18px;
  }
}
