:root {
  --ink: #1e2938;
  --ink-soft: #4e5968;
  --paper: #fffdf9;
  --cream: #fff7e8;
  --cream-deep: #f7ead1;
  --teal: #075f5d;
  --teal-dark: #064947;
  --teal-light: #dff3f0;
  --sky: #e9f5fb;
  --orange: #9d3f08;
  --orange-light: #ffe3cc;
  --yellow: #f5bd4f;
  --yellow-light: #fff1c9;
  --pink: #f7ddd8;
  --line: #dce2e5;
  --white: #fff;
  --success: #27673c;
  --shadow-sm: 0 8px 28px rgba(24, 44, 55, 0.08);
  --shadow-md: 0 22px 56px rgba(24, 44, 55, 0.13);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-pill: 999px;
  --container: 73rem;
  --header-height: 4.75rem;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--teal);
  text-underline-offset: 0.16em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--teal-dark);
}

:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 2px;
  border-radius: 0.2rem;
  box-shadow: 0 0 0 6px var(--teal-dark);
}

::selection {
  background: var(--yellow-light);
  color: var(--ink);
}

h1,
h2,
h3,
p,
ul,
ol,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0.65em;
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 17ch;
  font-size: clamp(2.65rem, 9vw, 5.35rem);
}

h2 {
  font-size: clamp(2rem, 5.7vw, 3.55rem);
}

h3 {
  font-size: clamp(1.22rem, 2.8vw, 1.5rem);
  letter-spacing: -0.025em;
}

p {
  margin-bottom: 1.1em;
}

ul,
ol {
  padding-left: 1.35rem;
}

strong {
  font-weight: 750;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow-content {
  max-width: 48rem;
}

.narrow-content > p:not(.eyebrow) {
  font-size: clamp(1.06rem, 2vw, 1.22rem);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(30, 41, 56, 0.08);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-logo-shell {
  display: flex;
  min-height: 2.65rem;
  padding: 0.55rem 0.7rem;
  align-items: center;
  border-radius: 0.75rem;
  background: var(--teal);
}

.brand-logo {
  width: 7rem;
  height: auto;
}

.brand-logo--footer {
  width: 8rem;
}

.menu-toggle {
  display: none;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-weight: 750;
  cursor: pointer;
}

.has-js .menu-toggle {
  display: inline-flex;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -0.38rem;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 0.38rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-navigation {
  width: 100%;
  padding: 0.45rem 0 1rem;
}

.site-navigation > ul {
  display: flex;
  margin: 0 0 0.85rem;
  padding: 0;
  flex-direction: column;
  gap: 0.15rem;
  list-style: none;
}

.site-navigation li,
.footer-links li {
  margin: 0;
}

.site-navigation a:not(.button) {
  display: block;
  padding: 0.65rem 0.35rem;
  border-radius: 0.45rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 680;
  text-decoration: none;
}

.nav-dropdown details {
  width: 100%;
}

.nav-dropdown summary {
  display: flex;
  padding: 0.65rem 0.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-radius: 0.45rem;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 680;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
}

.nav-dropdown details[open] summary::after {
  content: "−";
}

.nav-dropdown summary:hover,
.nav-dropdown summary[aria-current="page"] {
  color: var(--teal);
}

.nav-dropdown summary[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.22rem;
  text-underline-offset: 0.32rem;
}

.site-navigation .nav-dropdown-menu {
  display: grid;
  margin: 0.35rem 0 0;
  padding: 0.45rem;
  gap: 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.7rem;
  background: var(--teal-dark);
  list-style: none;
}

.site-navigation .nav-dropdown-menu a:not(.button) {
  padding: 0.65rem 0.7rem;
  color: var(--white);
  font-size: 0.88rem;
}

.site-navigation .nav-dropdown-menu a:not(.button):hover,
.site-navigation .nav-dropdown-menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff0b5;
}

.site-navigation a:not(.button):hover,
.site-navigation a[aria-current="page"] {
  color: var(--teal);
}

.site-navigation a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.22rem;
  text-underline-offset: 0.32rem;
}

.has-js .site-navigation {
  display: none;
}

.has-js .site-navigation[data-open="true"] {
  display: block;
}

.header-cta {
  width: 100%;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(7, 95, 93, 0.22);
  color: var(--white);
}

.button--primary:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.button--secondary {
  border-color: rgba(30, 41, 56, 0.26);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.button--secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.button--small {
  min-height: 2.7rem;
  padding: 0.58rem 1rem;
  font-size: 0.9rem;
}

.button--full {
  width: 100%;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  margin-bottom: 1.7rem;
}

.breadcrumbs ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 650;
}

.breadcrumbs a {
  color: var(--ink-soft);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.3rem, 6vw, 5rem) 0 clamp(3.5rem, 8vw, 6.8rem);
  background:
    radial-gradient(circle at 96% 14%, rgba(245, 189, 79, 0.5), transparent 18rem),
    var(--cream);
}

.page-hero > .container {
  position: relative;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 57rem;
}

.page-hero--home {
  min-height: calc(100svh - var(--header-height));
  padding-bottom: clamp(2.8rem, 7vw, 5.2rem);
  background:
    radial-gradient(circle at 80% 28%, rgba(223, 243, 240, 0.9), transparent 20rem),
    radial-gradient(circle at 12% 90%, rgba(247, 221, 216, 0.72), transparent 20rem),
    var(--cream);
}

.page-hero--home h1 {
  max-width: 12ch;
}

.page-hero--home .page-hero-copy {
  max-width: 42rem;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--teal);
  font-size: 0.79rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #9ae0d9;
}

.hero-intro {
  max-width: 44rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.11rem, 2.6vw, 1.38rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-top: 1.7rem;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-actions .button {
  flex: 1 1 12rem;
}

.hero-points {
  display: flex;
  margin: 1.35rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 680;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-points li::before {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.hero-product {
  position: relative;
  width: min(85vw, 25rem);
  margin: 3rem auto 0;
}

.hero-phone {
  position: relative;
  z-index: 2;
  width: min(72vw, 19rem);
  margin-inline: auto;
  filter: drop-shadow(0 28px 30px rgba(30, 41, 56, 0.18));
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shape--one {
  top: 9%;
  right: -2%;
  width: 7rem;
  height: 7rem;
  background: var(--yellow);
}

.hero-shape--two {
  bottom: 3%;
  left: -4%;
  width: 8rem;
  height: 8rem;
  background: var(--pink);
}

.hero-note {
  position: absolute;
  z-index: 3;
  display: none;
  min-width: 10.5rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(30, 41, 56, 0.08);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  line-height: 1.35;
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  font-size: 0.88rem;
}

.hero-note span {
  margin-top: 0.18rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.hero-note--top {
  top: 24%;
  right: -8%;
}

.hero-note--bottom {
  bottom: 20%;
  left: -9%;
}

.hero-orb {
  position: absolute;
  right: -4rem;
  bottom: -9rem;
  width: 18rem;
  height: 18rem;
  border: 3rem solid rgba(7, 95, 93, 0.07);
  border-radius: 50%;
}

.section {
  padding: clamp(4.4rem, 9vw, 7.8rem) 0;
}

.section--tint {
  background: #eff7f5;
}

.section--warm {
  background: var(--cream);
}

.section--ink {
  background: var(--ink);
  color: #f8fafb;
}

.section--ink h2,
.section--ink h3,
.section--ink a {
  color: var(--white);
}

.section--ink p,
.section--ink li {
  color: #d6dee4;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2.1rem, 5vw, 3.7rem);
}

.section-heading h2 {
  margin-bottom: 0.4em;
}

.section-heading--split {
  max-width: none;
}

.section-intro {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
}

.section--ink .section-intro {
  color: #d6dee4;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.trust-grid p {
  display: flex;
  margin: 0;
  padding: 1.15rem 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.trust-grid p:last-child {
  border-bottom: 0;
}

.trust-grid strong {
  color: var(--teal);
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.trust-grid span {
  color: var(--ink-soft);
  font-size: 0.87rem;
  text-align: right;
}

.steps-grid,
.cards-grid,
.audience-grid,
.benefits-grid,
.press-grid,
.principles-grid,
.status-grid,
.category-grid,
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.step-card {
  min-height: 14rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-card--accent {
  border-color: transparent;
  background: var(--teal);
  color: var(--white);
}

.step-card.step-card--accent p {
  color: #e2f3f1;
}

.step-number {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 2.3rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 820;
}

.step-card--accent .step-number {
  color: var(--white);
}

.step-card p,
.info-card p,
.audience-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.section-link-row {
  margin-top: 1.6rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--teal);
  font-weight: 760;
}

.text-link--light {
  color: #a6ebe5 !important;
}

.text-link--light:hover {
  color: var(--white) !important;
}

.audience-card,
.info-card,
.contact-card {
  padding: 1.5rem;
  border: 1px solid rgba(30, 41, 56, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
}

.audience-card {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
}

.audience-card--person {
  background: var(--teal);
  color: var(--white);
}

.audience-card--person p {
  color: #d7efec;
}

.audience-card--person .card-kicker,
.audience-card--person a {
  color: #fff0b5;
}

.audience-card .text-link {
  margin-top: auto;
  padding-top: 1.5rem;
}

.card-kicker {
  display: block;
  margin-bottom: 2rem;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-split,
.story-grid,
.story-origin,
.founder-grid,
.form-layout,
.dual-product,
.faq-layout,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.feature-copy {
  align-self: center;
}

.feature-copy > p:not(.eyebrow) {
  font-size: clamp(1.04rem, 2vw, 1.18rem);
}

.feature-visual {
  position: relative;
  display: grid;
  min-height: 30rem;
  padding: 2rem 1.4rem 0;
  place-items: end center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--orange-light);
}

.feature-visual--soft {
  background: var(--teal-light);
}

.feature-visual img {
  width: min(100%, 16rem);
  border-radius: 1.4rem 1.4rem 0 0;
  box-shadow: var(--shadow-md);
}

.feature-visual-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border: 1px solid rgba(30, 41, 56, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.feature-visual-caption strong,
.feature-visual-caption span {
  display: block;
}

.feature-visual-caption span {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.check-list {
  display: grid;
  margin: 1.5rem 0 0;
  padding: 0;
  gap: 0.7rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  position: absolute;
  top: 0.32rem;
  left: 0;
  display: grid;
  width: 1.15rem;
  height: 1.15rem;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.section--ink .check-list li::before {
  background: rgba(154, 224, 217, 0.16);
  color: #9ae0d9;
}

.inline-links {
  display: flex;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
}

.benefits-grid article {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(30, 41, 56, 0.17);
}

.benefit-index {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
}

.benefits-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.screens-grid {
  display: grid;
  padding: 0.5rem 0 1.5rem;
  grid-auto-flow: column;
  grid-auto-columns: minmax(14rem, 72vw);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--teal) var(--teal-light);
}

.screens-grid figure {
  margin: 0;
  padding: 1rem 1rem 1.2rem;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.screens-grid img {
  border-radius: 1rem;
}

.screens-grid figcaption {
  padding-top: 1rem;
  font-weight: 750;
  text-align: center;
}

.story-grid {
  align-items: center;
}

.story-grid h2 {
  font-size: clamp(2rem, 5vw, 3.7rem);
}

blockquote {
  margin-bottom: 0;
}

blockquote p {
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  line-height: 1.55;
}

blockquote footer {
  color: #aebac4;
  font-size: 0.88rem;
  font-weight: 720;
}

.story-photo {
  max-width: 24rem;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

.press-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.press-card p {
  color: var(--ink-soft);
}

.press-card a {
  font-weight: 760;
}

.press-meta {
  margin-bottom: 2rem;
  color: var(--orange) !important;
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.press-card--dark {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.press-card--dark p {
  color: #d6dee4;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  border-top: 1px solid rgba(30, 41, 56, 0.16);
}

.faq-item {
  border-bottom: 1px solid rgba(30, 41, 56, 0.16);
}

.faq-item summary {
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  cursor: pointer;
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  font-weight: 740;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-symbol {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
}

.faq-symbol::before,
.faq-symbol::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background: var(--teal);
  content: "";
}

.faq-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item[open] .faq-symbol::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-width: 45rem;
  padding: 0 2.6rem 1.4rem 0;
  color: var(--ink-soft);
}

.faq-answer p:last-child,
.faq-answer:last-child {
  margin-bottom: 0;
}

.faq-aside {
  display: grid;
  gap: 1rem;
}

.aside-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--cream);
}

.aside-card--soft {
  background: var(--teal-light);
}

.aside-card h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.download-section {
  padding-top: 1rem;
  background: var(--paper);
}

.download-card,
.cta-banner {
  display: grid;
  padding: clamp(1.6rem, 5vw, 3.5rem);
  align-items: center;
  gap: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 15%, rgba(245, 189, 79, 0.5), transparent 14rem),
    var(--teal-light);
}

.download-card h2,
.cta-banner h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.download-card p:last-child,
.cta-banner p:last-child {
  margin-bottom: 0;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.store-link {
  display: inline-flex;
  max-width: 11.5rem;
  border-radius: 0.65rem;
  transition: transform 180ms ease;
}

.store-link:hover {
  transform: translateY(-2px);
}

.store-links--compact {
  gap: 0.45rem;
}

.store-links--compact .store-link {
  max-width: 8.8rem;
}

.cards-grid--three,
.audience-grid--three {
  grid-template-columns: 1fr;
}

.info-card {
  min-height: 13rem;
}

.info-card .text-link {
  margin-top: 1rem;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.process-list > li {
  display: grid;
  padding: 1.5rem 0;
  grid-template-columns: 2.7rem 1fr;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.process-list > li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list > li > span,
.compact-steps span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 820;
}

.process-list h3 {
  margin-bottom: 0.35rem;
}

.process-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.levels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.levels-grid article {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.levels-grid article > span {
  display: block;
  margin-bottom: 3rem;
  color: #9ae0d9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.levels-grid .level-featured {
  background: var(--teal);
}

.quote-panel {
  max-width: 52rem;
}

.quote-panel h2 {
  font-size: clamp(2rem, 5vw, 3.65rem);
}

.category-card {
  min-height: 18rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.category-card--green {
  background: #dff3df;
}

.category-card--blue {
  background: var(--sky);
}

.category-card--orange {
  background: var(--orange-light);
}

.category-card > span {
  display: block;
  margin-bottom: 3.8rem;
  font-size: 0.78rem;
  font-weight: 820;
}

.category-card p {
  color: var(--ink-soft);
}

.category-card a {
  font-weight: 760;
}

.compact-steps {
  display: grid;
  margin: 1.5rem 0;
  padding: 0;
  gap: 0.7rem;
  list-style: none;
}

.compact-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.compact-steps strong {
  display: block;
  margin-bottom: 0.18rem;
  font-weight: 760;
}

.compact-steps p {
  margin: 0;
  color: var(--ink-soft);
}

.compact-steps span {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
}

.principles-grid article {
  padding: 1.5rem;
  border-top: 3px solid var(--teal);
  background: var(--white);
}

.principles-grid article > span {
  display: block;
  margin-bottom: 2.6rem;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 820;
}

.principles-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.story-origin,
.founder-grid {
  align-items: center;
}

.story-origin-photo,
.founder-photo {
  max-width: 26rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--orange-light);
}

.story-origin-photo img,
.founder-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.dual-product {
  gap: 1rem;
}

.dual-product-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
}

.dual-product-card--app {
  background: var(--teal);
  color: var(--white);
}

.dual-product-card--app .card-kicker {
  color: #fff0b5;
}

.dual-product-card--app li {
  color: #e1f2f0;
}

.dual-product-card--dashboard {
  background: var(--orange-light);
}

.status-grid article {
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.status {
  display: inline-flex;
  margin-bottom: 2rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status--available {
  background: rgba(125, 224, 154, 0.17);
  color: #b6f0c7;
}

.status--soon {
  background: rgba(245, 189, 79, 0.18);
  color: #ffe2a6;
}

.form-layout {
  align-items: start;
}

.form-intro {
  position: static;
}

.form-alternative {
  margin-top: 2rem;
}

.contact-form {
  padding: clamp(1.2rem, 4vw, 2.1rem);
  border: 1px solid rgba(30, 41, 56, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 720;
}

.field input:not([type="checkbox"]),
.field textarea,
.field select {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #a8b1b8;
  border-radius: 0.65rem;
  background: var(--white);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:hover,
.field textarea:hover {
  border-color: var(--ink-soft);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(7, 95, 93, 0.16);
  outline-offset: 1px;
}

.field small {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-soft);
}

.choice-row {
  display: grid;
  gap: 0.55rem;
}

.choice-row label {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 0.55rem;
  font-weight: 580;
}

input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  accent-color: var(--teal);
}

.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 560;
}

.consent-field input {
  margin-top: 0.25rem;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-form .button {
  margin-top: 1.35rem;
  cursor: pointer;
}

.contact-form .button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.5em;
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.form-status[data-state="error"] {
  color: #9b2c2c;
  font-weight: 650;
}

.form-status[data-state="success"] {
  color: var(--teal);
  font-weight: 650;
}

.form-disclosure {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.timeline {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0 0 0 1rem;
  gap: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 0.4rem;
  bottom: 1rem;
  left: 0;
  width: 2px;
  background: var(--teal);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  padding: 0 0 2.3rem 1.4rem;
  gap: 0.35rem;
}

.timeline li::before {
  position: absolute;
  top: 0.25rem;
  left: -1.38rem;
  width: 0.8rem;
  height: 0.8rem;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
  content: "";
}

.timeline time {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.contact-card {
  min-height: 16rem;
}

.contact-index {
  display: block;
  margin-bottom: 2.8rem;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 820;
}

.contact-card a {
  font-weight: 760;
}

.faq-layout--contact {
  align-items: center;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.article-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.article-card-image {
  display: grid;
  min-height: 12rem;
  padding: 1.2rem;
  place-items: center;
  background: var(--cream);
}

.article-card-image img {
  width: auto;
  max-height: 13rem;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.article-card-body {
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
}

.article-card-meta,
.article-meta {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.article-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.article-category {
  color: var(--teal);
  font-weight: 780;
}

.article-card h3 a {
  color: var(--ink);
  text-decoration-color: rgba(7, 95, 93, 0.32);
}

.article-card p:not(.article-card-meta) {
  color: var(--ink-soft);
}

.article-card .text-link {
  margin-top: auto;
  padding-top: 0.8rem;
}

.featured-article {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.featured-article-image {
  display: grid;
  min-height: 22rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  place-items: center;
  background:
    radial-gradient(circle at 75% 20%, rgba(245, 189, 79, 0.36), transparent 28%),
    var(--cream);
}

.featured-article-image img {
  width: auto;
  max-height: 28rem;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.featured-article-copy {
  align-self: center;
  padding: clamp(1.6rem, 5vw, 3.4rem);
}

.featured-article-copy h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.featured-article-copy h3 a {
  color: var(--ink);
}

.featured-article-copy > p:not(.article-card-meta) {
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 2vw, 1.18rem);
}

.article-filters ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
}

.article-filters a {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  align-items: center;
  border: 1px solid rgba(7, 95, 93, 0.25);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.article-filters a:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.cluster-overview-grid,
.start-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cluster-overview-card {
  display: flex;
  min-height: 15rem;
  padding: 1.4rem;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.cluster-overview-card p {
  color: var(--ink-soft);
}

.cluster-overview-card .text-link {
  margin-top: auto;
}

.cluster-sections .section {
  border-top: 1px solid var(--line);
}

.start-grid article {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.start-grid .text-link {
  color: #fff0b5;
}

.article-layout {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
}

.article-content {
  max-width: 49rem;
}

.article-meta {
  display: flex;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
}

.article-featured-image {
  display: grid;
  max-width: 22rem;
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  padding: 1rem;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.article-featured-image img {
  max-height: 35rem;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.article-toc {
  margin: 0 0 2.5rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #eff7f5;
}

.article-toc h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.article-toc ol {
  margin-bottom: 0;
}

.article-toc li + li {
  margin-top: 0.45rem;
}

.article-toc a {
  font-weight: 680;
}

.article-content h2 {
  scroll-margin-top: calc(var(--header-height) + 1rem);
  margin-top: 2.4rem;
  font-size: clamp(1.55rem, 3.5vw, 2.25rem);
}

.article-content h3 {
  margin-top: 1.8rem;
}

.article-content p,
.article-content li {
  color: #3f4a57;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
}

.article-content li + li {
  margin-top: 0.55rem;
}

.article-aside {
  align-self: start;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #eff7f5;
}

.article-aside h2 {
  font-size: 1.35rem;
}

.article-aside ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.7rem;
  list-style: none;
}

.article-aside a {
  font-weight: 700;
}

.article-sources {
  margin-top: 3rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.article-sources a {
  overflow-wrap: anywhere;
}

.article-cta {
  margin-top: 2.5rem;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: var(--cream);
}

.article-cta p:last-child {
  margin-bottom: 0;
}

.article-page .faq-layout {
  display: block;
  max-width: 54rem;
}

.stacked-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.legal-section {
  background: #f4f1eb;
}

.legal-content {
  max-width: 54rem;
  padding: clamp(1.3rem, 4vw, 3.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.legal-content p,
.legal-content li {
  color: #3f4a57;
}

.legal-updated {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  padding: clamp(3.5rem, 8vw, 6rem) 0 1.4rem;
  background: #17212f;
  color: #d8e0e6;
}

.footer-grid {
  gap: 2rem;
}

.brand--footer {
  margin-bottom: 1.1rem;
  color: var(--white);
}

.brand--footer:hover {
  color: var(--white);
}

.footer-brand p {
  max-width: 24rem;
  color: #aebac4;
}

.footer-heading {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.6rem;
  list-style: none;
}

.footer-links a {
  color: #c7d1d9;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-other-product {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-other-product p {
  margin: 0 0 0.45rem;
  color: #93a1ac;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-other-product a {
  display: block;
  color: var(--white);
  font-weight: 720;
  text-decoration: none;
}

.footer-other-product a:hover {
  text-decoration: underline;
}

.footer-other-product span {
  display: block;
  margin-top: 0.35rem;
  color: #aebac4;
  font-size: 0.76rem;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  margin-top: 3rem;
  padding-top: 1.25rem;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #93a1ac;
  font-size: 0.77rem;
}

@media (min-width: 34rem) {
  .hero-actions .button {
    flex: 0 0 auto;
  }

  .hero-note {
    display: block;
  }

  .trust-grid p {
    justify-content: flex-start;
  }

  .trust-grid span {
    text-align: left;
  }

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

  .field--full {
    grid-column: 1 / -1;
  }

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

@media (min-width: 42rem) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .steps-grid,
  .cards-grid,
  .article-grid,
  .cluster-overview-grid,
  .start-grid,
  .audience-grid,
  .benefits-grid,
  .principles-grid,
  .status-grid,
  .category-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .trust-grid p {
    padding: 1.3rem;
    flex-direction: column;
    gap: 0.1rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-grid p:first-child {
    padding-left: 0;
  }

  .trust-grid p:last-child {
    padding-right: 0;
    border-right: 0;
  }

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

  .screens-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    overflow: visible;
  }

  .download-card,
  .cta-banner {
    grid-template-columns: minmax(0, 1.4fr) auto;
  }

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

@media (min-width: 60rem) {
  .form-intro {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr);
    align-items: end;
    gap: 2rem;
  }

  .section-heading--split .section-intro {
    margin-bottom: 0.5rem;
  }

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

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

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

  .cards-grid--three,
  .article-grid,
  .cluster-overview-grid,
  .audience-grid--three,
  .category-grid,
  .contact-cards,
  .principles-grid--three,
  .press-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.42fr);
  }

  .featured-article {
    grid-template-columns: minmax(19rem, 0.75fr) minmax(0, 1.25fr);
  }

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

  .article-aside {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .feature-split {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.78fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 7rem);
  }

  .feature-split--reverse {
    grid-template-columns: minmax(21rem, 0.78fr) minmax(0, 1fr);
  }

  .feature-split--reverse .feature-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .feature-split--reverse .feature-visual {
    grid-column: 1;
    grid-row: 1;
  }

  .story-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
    gap: 5rem;
  }

  .story-photo {
    justify-self: end;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(17rem, 0.5fr);
    gap: 4rem;
  }

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

  .process-list--horizontal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .process-list--horizontal > li {
    padding: 1.5rem;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
  }

  .process-list--horizontal > li:last-child {
    border-bottom: 1px solid var(--line);
  }

  .story-origin,
  .founder-grid {
    grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
    gap: 5rem;
  }

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

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

  .form-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(30rem, 1.28fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .timeline li {
    grid-template-columns: 10rem 1fr;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.6fr repeat(3, 1fr);
  }
}

@media (min-width: 69rem) {
  .has-js .menu-toggle {
    display: none;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .site-navigation,
  .has-js .site-navigation,
  .has-js .site-navigation[data-open="true"] {
    display: flex;
    width: auto;
    padding: 0;
    align-items: center;
    gap: 1.1rem;
  }

  .site-navigation > ul {
    margin: 0;
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
  }

  .site-navigation a:not(.button) {
    padding: 0.5rem 0.55rem;
    font-size: 0.82rem;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown details,
  .nav-dropdown summary {
    width: auto;
  }

  .nav-dropdown summary {
    padding: 0.5rem 0.55rem;
    gap: 0.35rem;
    font-size: 0.82rem;
  }

  .nav-dropdown summary::after {
    font-size: 0.92rem;
  }

  .site-navigation .nav-dropdown-menu {
    position: absolute;
    z-index: 10;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 19rem;
    max-width: calc(100vw - 2rem);
    margin: 0;
    padding: 0.55rem;
    gap: 0.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.7rem;
    background: var(--teal-dark);
    box-shadow: var(--shadow-md);
  }

  .site-navigation .nav-dropdown-menu a:not(.button) {
    padding: 0.65rem 0.7rem;
  }

  .header-cta {
    width: auto;
    flex: 0 0 auto;
  }

  .page-hero--home > .container {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(22rem, 0.88fr);
    align-items: center;
    gap: 3rem;
  }

  .page-hero--home .breadcrumbs {
    grid-column: 1 / -1;
  }

  .page-hero--home .page-hero-copy {
    grid-column: 1;
  }

  .hero-product {
    grid-column: 2;
    grid-row: 2;
    margin-top: -1rem;
  }
}

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

  .button:hover,
  .store-link:hover {
    transform: none;
  }
}

@media (forced-colors: active) {
  .brand-logo-shell,
  .step-card--accent,
  .button--primary,
  .process-list > li > span,
  .compact-steps span {
    border: 1px solid ButtonText;
  }
}

/* Home, 2026 editorial direction */
.home-page {
  --home-paper: #f4f0e6;
  --home-ink: #18201d;
  --home-green: #16483f;
  --home-yellow: #efbc45;
  --home-coral: #de765f;
  background: var(--home-paper);
  color: var(--home-ink);
}

.home-page h1,
.home-page h2,
.home-page blockquote p {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.home-page .site-header {
  border-color: rgba(24, 32, 29, 0.16);
  background: rgba(244, 240, 230, 0.96);
}

.home-page .page-hero--home {
  min-height: auto;
  padding: 0;
  overflow: visible;
  border-bottom: 1px solid var(--home-ink);
  background: var(--home-paper);
}

.home-page .page-hero--home > .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.home-page .page-hero--home .breadcrumbs {
  display: none;
}

.home-page .page-hero-copy {
  max-width: none;
  padding: clamp(2.8rem, 6vw, 4.8rem) max(1rem, calc((100vw - var(--container)) / 2));
}

.home-page .page-hero-copy .eyebrow {
  max-width: 32rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--home-ink);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.home-page .page-hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 0.34em;
  font-size: clamp(3.25rem, 8vw, 6rem);
  line-height: 0.92;
  text-wrap: balance;
}

.home-page .hero-intro {
  max-width: 36rem;
  color: #34433d;
  font-size: clamp(1.08rem, 2.5vw, 1.32rem);
  line-height: 1.55;
}

.home-hero-actions {
  display: flex;
  margin-top: 2rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.3rem;
}

.home-hero-actions .store-links {
  gap: 0.5rem;
}

.home-hero-actions .store-link {
  width: 9.8rem;
}

.home-arrow-link {
  display: inline-flex;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
}

.home-arrow-link:hover {
  color: inherit;
}

.home-hero-note,
.home-download-note {
  max-width: 28rem;
  margin: 1.5rem 0 0;
  color: #5b645f;
  font-size: 0.72rem;
  line-height: 1.45;
}

.home-hero-visual {
  position: relative;
  min-height: 36rem;
  padding: 4rem 1rem 0;
  overflow: hidden;
  border-top: 1px solid var(--home-ink);
  background: var(--home-yellow);
}

.home-hero-phone {
  width: min(74vw, 21rem);
  margin: 0 auto -4.8rem;
  filter: drop-shadow(0 1.7rem 1.2rem rgba(24, 32, 29, 0.18));
}

.home-visual-label,
.home-visual-caption {
  position: absolute;
  z-index: 2;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.4;
}

.home-visual-label {
  top: 1rem;
  left: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-visual-label span {
  margin-right: 0.6rem;
  font-variant-numeric: tabular-nums;
}

.home-visual-caption {
  right: 1rem;
  bottom: 1rem;
  width: 9rem;
  padding: 0.7rem;
  border: 1px solid var(--home-ink);
  background: var(--home-yellow);
}

.home-demo,
.home-story,
.home-reading,
.home-faq,
.home-download {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.home-demo {
  background: var(--home-green);
  color: #f5f1e7;
}

.home-demo-grid {
  display: grid;
  gap: 2.5rem 1.2rem;
}

.home-demo-copy h2,
.home-reading h2,
.home-faq h2,
.home-download h2 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.home-demo-copy > p:not(.eyebrow) {
  max-width: 35rem;
  color: #dce8e4;
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
}

.home-demo .home-arrow-link {
  color: #f5f1e7;
}

.home-levels {
  margin: 2.4rem 0;
}

.home-levels div {
  display: grid;
  padding: 0.85rem 0;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(245, 241, 231, 0.34);
}

.home-levels div:last-child {
  border-bottom: 1px solid rgba(245, 241, 231, 0.34);
}

.home-levels dt {
  color: var(--home-yellow);
  font-weight: 780;
}

.home-levels dd {
  margin: 0;
  color: #dce8e4;
  font-size: 0.86rem;
}

.home-demo figure,
.home-story figure {
  margin: 0;
}

.home-demo figure img {
  width: 100%;
  border: 1px solid rgba(245, 241, 231, 0.45);
}

.home-demo figcaption,
.home-story figcaption {
  padding-top: 0.65rem;
  font-size: 0.7rem;
}

.home-demo figcaption {
  color: #b8c9c4;
}

.home-demo-carousel {
  display: flex;
  padding-bottom: 0.75rem;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--home-yellow) rgba(245, 241, 231, 0.16);
  -webkit-overflow-scrolling: touch;
}

.home-demo-carousel figure {
  width: calc(100% - 1.5rem);
  flex: 0 0 calc(100% - 1.5rem);
  scroll-snap-align: start;
}

.home-carousel-controls {
  display: none;
}

.has-js .home-carousel-controls {
  display: flex;
  margin-bottom: 0.8rem;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.home-carousel-controls p {
  min-width: 7rem;
  margin: 0;
  color: #dce8e4;
  font-size: 0.75rem;
  text-align: center;
}

.home-carousel-controls button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(245, 241, 231, 0.7);
  border-radius: 50%;
  background: transparent;
  color: #f5f1e7;
  cursor: pointer;
  font-size: 1.1rem;
}

.home-carousel-controls button:hover:not(:disabled) {
  background: var(--home-yellow);
  color: var(--home-ink);
}

.home-carousel-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}

.home-capabilities {
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--home-ink);
  background: var(--home-yellow);
}

.home-capabilities .eyebrow {
  color: var(--home-ink);
}

.home-capabilities h3 {
  max-width: 15ch;
  margin-bottom: 0;
  color: var(--home-ink);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.home-activity-list {
  border-bottom: 1px solid rgba(245, 241, 231, 0.5);
}

.home-activity-list a {
  display: grid;
  padding: 1.5rem 0;
  grid-template-columns: 2rem 1fr;
  gap: 0.55rem 1rem;
  border-top: 1px solid rgba(245, 241, 231, 0.5);
  color: #f5f1e7;
  text-decoration: none;
  transition: padding 160ms ease, background-color 160ms ease;
}

.home-activity-list a:hover {
  padding-inline: 1rem;
  background: rgba(245, 241, 231, 0.09);
  color: #fff;
}

.home-activity-number {
  color: var(--home-yellow);
  font-size: 0.7rem;
  font-weight: 800;
}

.home-activity-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.home-activity-list a > span:last-child {
  grid-column: 2;
  max-width: 36rem;
  color: #cbdad5;
  font-size: 0.86rem;
}

.home-press-strip {
  display: grid;
  margin-top: 2.2rem;
  padding-top: 1rem;
  gap: 0.8rem;
  border-top: 1px solid rgba(245, 241, 231, 0.45);
  font-size: 0.76rem;
}

.home-press-strip p {
  margin: 0;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-press-strip a {
  color: #f5f1e7;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.home-story {
  padding-bottom: 0;
  background: var(--home-coral);
}

.home-story-grid {
  display: grid;
  gap: 3rem;
}

.home-story-photo img {
  width: 100%;
  max-height: 42rem;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(0.82) contrast(1.04);
}

.home-story-photo figcaption {
  color: #3e2d28;
}

.home-story-copy {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.home-story-copy blockquote {
  margin: clamp(3rem, 8vw, 6rem) 0 2.2rem;
}

.home-story-copy blockquote p {
  margin-bottom: 0.55em;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.98;
}

.home-story-copy blockquote footer {
  color: #3c2a25;
  font-size: 0.8rem;
}

.home-story-copy > p:not(.eyebrow) {
  max-width: 36rem;
  margin-left: auto;
  color: #3c2a25;
}

.home-story-press {
  max-width: 36rem;
  margin: clamp(3rem, 6vw, 5rem) 0 0 auto;
}

.home-story-press .eyebrow {
  margin-bottom: 1rem;
  color: #3c2a25;
}

.home-story .home-press-links,
.home-story .home-press-links a {
  border-color: rgba(60, 42, 37, 0.65);
}

.home-reading-grid,
.home-faq-grid,
.home-download-grid {
  display: grid;
  gap: 3rem;
}

.home-reading h2,
.home-faq h2,
.home-download h2 {
  margin-top: clamp(2.5rem, 7vw, 5rem);
}

.home-reading {
  background: var(--home-ink);
  color: #f7f3e9;
}

.home-reading .home-arrow-link {
  color: var(--home-yellow);
}

.home-reading-list {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(247, 243, 233, 0.38);
  list-style: none;
}

.home-reading-list a {
  display: grid;
  padding: 1.45rem 0;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(247, 243, 233, 0.38);
  color: #f7f3e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  line-height: 1.17;
  text-decoration: none;
}

.home-reading-list a:hover {
  color: var(--home-yellow);
}

.home-reading-list span {
  padding-top: 0.3rem;
  color: #abb4af;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 760;
}

.home-press-links {
  border-bottom: 1px solid var(--home-ink);
}

.home-press-links a {
  position: relative;
  display: grid;
  padding: 1.5rem 2.5rem 1.5rem 0;
  gap: 0.5rem;
  border-top: 1px solid var(--home-ink);
  color: var(--home-ink);
  text-decoration: none;
}

.home-press-links a > span:first-child {
  color: #6c746f;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-press-links strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.14;
}

.home-press-links i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-style: normal;
}

.home-faq {
  background: var(--home-paper);
}

.home-faq-heading h2 {
  max-width: 11ch;
}

.home-faq .faq-list,
.home-faq .faq-item {
  border-color: var(--home-ink);
}

.home-faq .faq-item summary {
  min-height: 5.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 3vw, 1.7rem);
  font-weight: 400;
}

.home-faq .faq-answer {
  color: #505b56;
}

.home-download {
  border-block: 1px solid var(--home-ink);
  background: var(--home-yellow);
}

.home-download .eyebrow {
  color: var(--home-ink);
}

.home-download h2 {
  max-width: 9ch;
}

.home-download p:not(.eyebrow):not(.home-download-note) {
  max-width: 36rem;
}

.home-download .store-links {
  align-items: flex-start;
}

.home-download .home-download-note {
  color: #514828;
}

@media (min-width: 42rem) {
  .home-hero-actions {
    flex-direction: row;
    align-items: center;
  }

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

  .home-demo-copy,
  .home-demo-gallery,
  .home-capabilities,
  .home-activity-list,
  .home-press-strip {
    grid-column: 1 / -1;
  }

  .home-activity-list a {
    grid-template-columns: 2.5rem minmax(13rem, 0.75fr) minmax(15rem, 1.25fr);
    align-items: baseline;
    gap: 1rem;
  }

  .home-activity-list a > span:last-child {
    grid-column: 3;
  }

  .home-press-strip {
    grid-template-columns: minmax(12rem, 1fr) auto auto;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (min-width: 60rem) {
  .home-page .page-hero--home > .container {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(25rem, 0.84fr);
    align-items: stretch;
    gap: 0;
  }

  .home-page .page-hero--home .page-hero-copy {
    grid-column: 1;
    grid-row: 1;
    padding-right: clamp(2rem, 6vw, 6rem);
  }

  .home-hero-visual {
    grid-column: 2;
    grid-row: 1;
    min-height: 44rem;
    padding-top: 5rem;
    border-top: 0;
    border-left: 1px solid var(--home-ink);
  }

  .home-hero-phone {
    width: min(23vw, 22rem);
    margin-bottom: -4rem;
  }

  .home-visual-label {
    top: 1.5rem;
    left: 1.5rem;
  }

  .home-visual-caption {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 10rem;
  }

  .home-demo-grid {
    grid-template-columns: minmax(20rem, 0.9fr) minmax(24rem, 1.1fr);
    align-items: start;
    gap: clamp(2rem, 6vw, 5rem);
  }

  .home-demo-copy {
    grid-column: 1;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .home-demo-gallery {
    grid-column: 2;
  }

  .home-demo-carousel {
    display: grid;
    padding-bottom: 0;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: end;
    overflow: visible;
    scroll-snap-type: none;
  }

  .home-demo-carousel figure:nth-child(2) {
    margin-top: 7rem;
  }

  .home-demo-carousel figure {
    width: auto;
  }

  .has-js .home-carousel-controls {
    display: none;
  }

  .home-capabilities,
  .home-activity-list,
  .home-press-strip {
    grid-column: 1 / -1;
  }

  .home-story-grid {
    grid-template-columns: minmax(22rem, 0.8fr) minmax(0, 1.2fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 7rem);
  }

  .home-story-photo img {
    height: min(68rem, 86vw);
    max-height: none;
  }

  .home-story-copy {
    padding-bottom: clamp(4rem, 8vw, 7rem);
  }

  .home-reading-grid,
  .home-faq-grid,
  .home-download-grid {
    grid-template-columns: minmax(20rem, 0.88fr) minmax(24rem, 1.12fr);
    gap: clamp(4rem, 10vw, 9rem);
  }

  .home-faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    align-self: start;
  }

  .home-download-grid {
    align-items: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-activity-list a {
    transition: none;
  }
}

@media (forced-colors: active) {
  .home-hero-visual,
  .home-download,
  .home-story {
    border: 1px solid CanvasText;
  }
}

/* Site-wide editorial system */
body:not(.home-page) {
  --page-paper: #f4f0e6;
  --page-paper-light: #f8f6f0;
  --page-ink: #18201d;
  --page-green: #16483f;
  --page-yellow: #efbc45;
  --page-coral: #de765f;
  --page-line: rgba(24, 32, 29, 0.34);
  background: var(--page-paper);
  color: var(--page-ink);
}

body:not(.home-page) h1,
body:not(.home-page) h2,
body:not(.home-page) blockquote p {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.brand-logo-shell,
.button,
.menu-toggle {
  border-radius: 0;
}

.button--primary {
  border-color: var(--teal);
  box-shadow: none;
}

.button--secondary {
  background: transparent;
}

body:not(.home-page) .site-header {
  border-color: rgba(24, 32, 29, 0.18);
  background: rgba(244, 240, 230, 0.96);
}

body:not(.home-page) .page-hero {
  min-height: 29rem;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--page-ink);
  background: var(--page-paper);
}

body:not(.home-page) .page-hero > .container {
  position: relative;
  z-index: 2;
}

body:not(.home-page) .breadcrumbs {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

body:not(.home-page) .breadcrumbs li,
body:not(.home-page) .breadcrumbs a {
  color: #545f59;
}

body:not(.home-page) .page-hero-copy {
  max-width: 52rem;
}

body:not(.home-page) .page-hero-copy .eyebrow {
  color: var(--page-ink);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

body:not(.home-page) .page-hero h1 {
  max-width: 12.5ch;
  margin-bottom: 0.38em;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.94;
}

body:not(.home-page) .hero-intro {
  max-width: 40rem;
  color: #3e4d46;
  font-size: clamp(1.08rem, 2.5vw, 1.34rem);
}

body:not(.home-page) .hero-actions {
  margin-top: 2rem;
}

.page-hero-folio {
  display: flex;
  min-height: 8rem;
  margin-top: 3rem;
  padding: 1rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--page-ink);
  background: var(--page-yellow);
  color: var(--page-ink);
}

.page-hero-folio span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.page-hero-folio strong {
  max-width: 18rem;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.page-hero-media,
.page-hero-summary {
  margin: 2.5rem 0 0;
  padding: 1rem;
  border: 1px solid var(--page-ink);
  background: var(--page-yellow);
  color: var(--page-ink);
}

.page-hero-media {
  display: grid;
  grid-template-columns: minmax(6.5rem, 8.5rem) minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
}

.page-hero-media img {
  width: 100%;
  max-height: 15rem;
  object-fit: contain;
  filter: drop-shadow(0 0.8rem 0.7rem rgba(24, 32, 29, 0.16));
}

.page-hero-media figcaption {
  max-width: 13rem;
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.45;
}

.page-hero-summary > p {
  margin-bottom: 1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero-summary ul {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--page-ink);
  list-style: none;
}

.page-hero-summary li {
  padding: 0.75rem 0;
  border-top: 1px solid var(--page-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.2;
}

body:not(.home-page) .section {
  padding: clamp(4.25rem, 8vw, 7rem) 0;
  border-bottom: 1px solid var(--page-line);
  background: var(--page-paper-light);
}

body:not(.home-page) .section--tint {
  background: #e6e2d8;
}

body:not(.home-page) .section--warm {
  background: var(--page-yellow);
}

body:not(.home-page) .section--ink {
  background: var(--page-green);
  color: #f7f3e9;
}

body:not(.home-page) .section-heading {
  max-width: 61rem;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

body:not(.home-page) .section-heading h2,
body:not(.home-page) .narrow-content h2,
body:not(.home-page) .feature-copy h2,
body:not(.home-page) .quote-panel h2,
body:not(.home-page) .form-intro h2 {
  max-width: 14ch;
  font-size: clamp(2.55rem, 7vw, 5.1rem);
  line-height: 0.98;
}

body:not(.home-page) .section-heading > .eyebrow,
body:not(.home-page) .section-heading > div > .eyebrow,
body:not(.home-page) .narrow-content > .eyebrow,
body:not(.home-page) .feature-copy > .eyebrow,
body:not(.home-page) .quote-panel > .eyebrow,
body:not(.home-page) .form-intro > .eyebrow {
  width: min(100%, 18rem);
  padding-top: 0.7rem;
  border-top: 1px solid currentColor;
}

body:not(.home-page) .section-intro {
  color: #56615b;
}

body:not(.home-page) .section--ink .section-intro {
  color: #d8e2dd;
}

body:not(.home-page) .cards-grid,
body:not(.home-page) .audience-grid,
body:not(.home-page) .benefits-grid,
body:not(.home-page) .principles-grid,
body:not(.home-page) .steps-grid,
body:not(.home-page) .press-grid,
body:not(.home-page) .status-grid,
body:not(.home-page) .category-grid,
body:not(.home-page) .contact-cards,
body:not(.home-page) .cluster-overview-grid,
body:not(.home-page) .start-grid {
  gap: 1px;
  border: 1px solid var(--page-ink);
  background: var(--page-ink);
}

body:not(.home-page) .cards-grid > article,
body:not(.home-page) .audience-grid > article,
body:not(.home-page) .benefits-grid > article,
body:not(.home-page) .principles-grid > article,
body:not(.home-page) .steps-grid > article,
body:not(.home-page) .press-grid > article,
body:not(.home-page) .status-grid > article,
body:not(.home-page) .category-grid > article,
body:not(.home-page) .contact-cards > article,
body:not(.home-page) .cluster-overview-grid > article,
body:not(.home-page) .start-grid > article {
  min-height: 15rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 0;
  border-radius: 0;
  background: var(--page-paper-light);
  box-shadow: none;
}

body:not(.home-page) .section--tint .cards-grid > article,
body:not(.home-page) .section--tint .audience-grid > article,
body:not(.home-page) .section--tint .principles-grid > article,
body:not(.home-page) .section--tint .cluster-overview-grid > article {
  background: #f0ede5;
}

body:not(.home-page) .section--ink .press-grid,
body:not(.home-page) .section--ink .status-grid,
body:not(.home-page) .section--ink .start-grid {
  border-color: rgba(247, 243, 233, 0.55);
  background: rgba(247, 243, 233, 0.55);
}

body:not(.home-page) .section--ink .press-grid > article,
body:not(.home-page) .section--ink .status-grid > article,
body:not(.home-page) .section--ink .start-grid > article {
  background: var(--page-green);
  color: #f7f3e9;
}

body:not(.home-page) .audience-card--person,
body:not(.home-page) .step-card--accent {
  background: var(--page-green) !important;
  color: #f7f3e9;
}

body:not(.home-page) .category-card--green {
  background: #d7e2cc !important;
}

body:not(.home-page) .category-card--blue {
  background: #d9e6e7 !important;
}

body:not(.home-page) .category-card--orange {
  background: #e7aa88 !important;
}

body:not(.home-page) .step-number,
body:not(.home-page) .process-list > li > span,
body:not(.home-page) .compact-steps span {
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--page-green);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
}

body:not(.home-page) .step-card--accent .step-number,
body:not(.home-page) .section--ink .process-list > li > span {
  color: var(--page-yellow);
}

body:not(.home-page) .process-list {
  border-bottom: 1px solid var(--page-ink);
}

body:not(.home-page) .process-list > li {
  padding: 1.7rem 0;
  grid-template-columns: 3rem 1fr;
  border-top: 1px solid var(--page-ink);
  border-bottom: 0;
}

body:not(.home-page) .process-list h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 400;
}

body:not(.home-page) .levels-grid {
  gap: 1px;
  border: 1px solid rgba(247, 243, 233, 0.55);
  background: rgba(247, 243, 233, 0.55);
}

body:not(.home-page) .levels-grid article {
  border: 0;
  border-radius: 0;
  background: var(--page-green);
}

body:not(.home-page) .levels-grid .level-featured {
  background: #285f55;
}

body:not(.home-page) .feature-split {
  gap: clamp(3rem, 8vw, 7rem);
}

body:not(.home-page) .feature-visual {
  min-height: 34rem;
  padding: 2.2rem 1.5rem 0;
  border: 1px solid var(--page-ink);
  border-radius: 0;
  background: var(--page-coral);
}

body:not(.home-page) .feature-visual--soft {
  background: var(--page-yellow);
}

body:not(.home-page) .feature-visual img {
  border-radius: 0;
}

body:not(.home-page) .feature-visual-caption {
  border-color: var(--page-ink);
  border-radius: 0;
  box-shadow: none;
}

body:not(.home-page) .story-photo,
body:not(.home-page) .story-origin-photo,
body:not(.home-page) .founder-photo {
  border: 1px solid var(--page-ink);
  border-radius: 0;
}

body:not(.home-page) .dual-product {
  gap: 1px;
  border: 1px solid var(--page-ink);
  background: var(--page-ink);
}

body:not(.home-page) .dual-product-card {
  border-radius: 0;
}

body:not(.home-page) .dual-product-card--app {
  background: var(--page-green);
}

body:not(.home-page) .dual-product-card--dashboard {
  background: var(--page-coral);
}

body:not(.home-page) .status {
  padding: 0.25rem 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
}

body:not(.home-page) .download-section {
  padding-top: clamp(5rem, 10vw, 8.5rem);
  background: var(--page-paper-light);
}

body:not(.home-page) .download-card,
body:not(.home-page) .cta-banner {
  padding: clamp(1.8rem, 5vw, 3.7rem);
  border: 1px solid var(--page-ink);
  border-radius: 0;
  background: var(--page-yellow);
}

body:not(.home-page) .download-card h2,
body:not(.home-page) .cta-banner h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1;
}

body:not(.home-page) .contact-form {
  padding: clamp(1.35rem, 4vw, 2.4rem);
  border-color: var(--page-ink);
  border-radius: 0;
  background: var(--page-paper-light);
  box-shadow: none;
}

body:not(.home-page) .field input:not([type="checkbox"]),
body:not(.home-page) .field textarea,
body:not(.home-page) .field select {
  border-color: #68716c;
  border-radius: 0;
  background: #fffdf7;
}

body:not(.home-page) .choice-row label {
  padding: 0.7rem;
  border: 1px solid var(--page-line);
}

body:not(.home-page) .timeline {
  padding-left: 0;
  border-bottom: 1px solid var(--page-ink);
}

body:not(.home-page) .timeline::before,
body:not(.home-page) .timeline li::before {
  display: none;
}

body:not(.home-page) .timeline li {
  padding: 1.6rem 0;
  border-top: 1px solid var(--page-ink);
}

body:not(.home-page) .article-grid {
  gap: 1px;
  border: 1px solid var(--page-ink);
  background: var(--page-ink);
}

body:not(.home-page) .article-card,
body:not(.home-page) .featured-article {
  border: 0;
  border-radius: 0;
  background: var(--page-paper-light);
  box-shadow: none;
}

body:not(.home-page) .article-card-image,
body:not(.home-page) .featured-article-image {
  background: var(--page-yellow);
}

body:not(.home-page) .article-card-image img,
body:not(.home-page) .featured-article-image img {
  border-radius: 0;
}

body:not(.home-page) .article-card h3,
body:not(.home-page) .featured-article-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

body:not(.home-page) .article-filters ul {
  gap: 0.55rem;
}

body:not(.home-page) .article-filters a {
  border-color: var(--page-ink);
  border-radius: 0;
  background: transparent;
  color: var(--page-ink);
}

body:not(.home-page) .article-filters a:hover {
  background: var(--page-green);
  color: #f7f3e9;
}

body:not(.home-page) .article-featured-image,
body:not(.home-page) .article-toc,
body:not(.home-page) .article-aside,
body:not(.home-page) .article-cta,
body:not(.home-page) .aside-card,
body:not(.home-page) .legal-content {
  border: 1px solid var(--page-ink);
  border-radius: 0;
  background: var(--page-paper);
  box-shadow: none;
}

body:not(.home-page) .article-featured-image {
  max-width: 30rem;
  padding: 1.5rem;
  background: var(--page-yellow);
}

body:not(.home-page) .article-featured-image img {
  border-radius: 0;
}

body:not(.home-page) .article-content {
  max-width: 52rem;
}

body:not(.home-page) .article-content h2 {
  margin-top: 3.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--page-line);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
}

body:not(.home-page) .article-content p,
body:not(.home-page) .article-content li,
body:not(.home-page) .legal-content p,
body:not(.home-page) .legal-content li {
  color: #35433d;
}

body:not(.home-page) .legal-section {
  background: var(--page-paper-light);
}

body:not(.home-page) .legal-content {
  max-width: 58rem;
  padding: clamp(1.5rem, 5vw, 4rem);
}

body:not(.home-page) .faq-list,
body:not(.home-page) .faq-item {
  border-color: var(--page-ink);
}

body:not(.home-page) .faq-item summary {
  min-height: 5.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 3vw, 1.65rem);
  font-weight: 400;
}

body:not(.home-page) .site-footer {
  background: #12382f;
}

@media (min-width: 42rem) {
  body:not(.home-page) .timeline li {
    grid-template-columns: minmax(9rem, 0.35fr) minmax(0, 1.65fr);
    gap: 2rem;
  }
}

@media (min-width: 60rem) {
  body:not(.home-page) .page-hero {
    min-height: 34rem;
    overflow: hidden;
  }

  body:not(.home-page) .page-hero::after {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: max(23vw, calc((100vw - var(--container)) / 2 + 16rem));
    border-left: 1px solid var(--page-ink);
    background: var(--page-yellow);
    content: "";
  }

  body:not(.home-page) .page-hero-copy {
    max-width: min(61vw, 48rem);
  }

  .page-hero-folio {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    width: 14rem;
    min-height: 0;
    margin: 0;
    padding: 1.5rem 0;
    border: 0;
    background: transparent;
  }

  .page-hero-folio span {
    font-size: 1.45rem;
  }

  .page-hero-media,
  .page-hero-summary {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    width: 14rem;
    min-height: 0;
    margin: 0;
    padding: 1.5rem 0;
    border: 0;
    background: transparent;
  }

  .page-hero-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .page-hero-media img {
    width: 10rem;
    max-height: 25rem;
  }

  .page-hero-media figcaption {
    width: 10rem;
  }

  .page-hero-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body:not(.home-page) .section-heading--split {
    grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
    gap: clamp(3rem, 8vw, 7rem);
  }

  body:not(.home-page) .process-list--horizontal > li {
    padding: 1.6rem;
    border: 0;
    border-radius: 0;
  }

  body:not(.home-page) .process-list--horizontal {
    gap: 1px;
    border: 1px solid var(--page-ink);
    background: var(--page-ink);
  }

  body:not(.home-page) .process-list--horizontal > li {
    background: var(--page-paper-light);
  }

  body:not(.home-page) .article-layout {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.38fr);
    gap: clamp(4rem, 8vw, 7rem);
  }
}

@media (forced-colors: active) {
  .page-hero-folio,
  body:not(.home-page) .feature-visual,
  body:not(.home-page) .download-card,
  body:not(.home-page) .cta-banner {
    border: 1px solid CanvasText;
  }
}

/* Compact article library */
.articles-index-page .section.blog-news-section {
  background: var(--page-green);
  color: var(--white);
}

.blog-section-head {
  display: grid;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  gap: 1.2rem;
}

.blog-section-head h2 {
  max-width: 12ch;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
}

.blog-section-head > p {
  max-width: 42rem;
  margin: 0;
  align-self: end;
  color: #d8e9e4;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.library-grid--news {
  border-color: rgba(255, 255, 255, 0.55);
}

.library-grid--news .library-item {
  border-color: rgba(24, 32, 29, 0.8);
}

.articles-index-page .library-section {
  background: #f8f6f0;
}

.library-head {
  display: grid;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  gap: 2.5rem;
}

.library-head > div > .eyebrow {
  width: min(100%, 18rem);
  padding-top: 0.7rem;
  border-top: 1px solid currentColor;
}

.library-head h2 {
  max-width: 11ch;
  margin-bottom: 0.35em;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.96;
}

.library-head > div > p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
  color: #56615b;
}

.library-filters {
  align-self: end;
  padding-top: 0.8rem;
  border-top: 1px solid var(--page-ink);
}

.library-filters > p {
  margin-bottom: 0.8rem;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.library-filters ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.3rem 0.9rem;
  list-style: none;
}

.library-filters a {
  color: var(--page-ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration-color: rgba(24, 32, 29, 0.45);
}

.library-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--page-ink);
  border-left: 1px solid var(--page-ink);
}

.library-item {
  position: relative;
  display: flex;
  min-height: 13.5rem;
  padding: 1.2rem;
  flex-direction: column;
  border-right: 1px solid var(--page-ink);
  border-bottom: 1px solid var(--page-ink);
  background: #f8f6f0;
  color: var(--page-ink);
  text-decoration: none;
  transition: background-color 160ms ease;
}

.library-item:hover {
  background: #e7aa88;
  color: var(--page-ink);
}

.library-item--featured {
  background: var(--page-yellow);
}

.library-item-meta {
  display: flex;
  margin: 0 1.8rem 1.4rem 0;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem 0.7rem;
  color: #56615b;
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.library-item h3 {
  margin-bottom: 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.07;
}

.library-item-intro {
  display: -webkit-box;
  margin: auto 0 0;
  overflow: hidden;
  color: #4f5b55;
  font-size: 0.78rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.library-item-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.9rem;
}

.library-item[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

@media (min-width: 42rem) {
  .library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 60rem) {
  .blog-section-head {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.8fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 7rem);
  }

  .library-head {
    grid-template-columns: minmax(0, 1.1fr) minmax(24rem, 0.9fr);
    align-items: end;
    gap: clamp(4rem, 9vw, 8rem);
  }

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

@media (min-width: 75rem) {
  .library-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .library-item {
    transition: none;
  }
}
