:root {
  color-scheme: light;
  --paper: oklch(96.8% 0.014 85);
  --sand: oklch(93% 0.021 82);
  --ink: oklch(27% 0.045 220);
  --ink-muted: oklch(47% 0.026 220);
  --card: oklch(99.5% 0.006 85);
  --primary: oklch(53% 0.085 216);
  --primary-dark: oklch(42% 0.075 216);
  --primary-foreground: oklch(98% 0.01 85);
  --accent: oklch(50% 0.16 39);
  --accent-dark: oklch(43% 0.14 39);
  --accent-foreground: oklch(99% 0.01 85);
  --border: oklch(88% 0.021 82);
  --deep-start: oklch(45% 0.08 216);
  --deep-end: oklch(32% 0.055 220);
  --shadow-soft: 0 18px 40px -24px oklch(27% 0.045 220 / 0.45);
  --radius: 8px;
  --max: 72rem;
  --narrow: 48rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: color-mix(in oklab, var(--accent) 34%, white);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--accent) 70%, white);
  outline-offset: 3px;
}

* {
  scrollbar-color: color-mix(in oklab, var(--primary) 70%, var(--border)) var(--sand);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Karla", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.55rem, 2.05rem + 2vw, 4rem);
  font-weight: 650;
}

h2 {
  font-size: clamp(1.85rem, 1.65rem + 0.8vw, 2.7rem);
  font-weight: 650;
}

h3 {
  font-size: 1.35rem;
  font-weight: 650;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.08rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.08;
}

.brand-text span:last-child {
  color: var(--ink-muted);
  font-family: "Karla", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
}

.nav-link {
  color: var(--ink-muted);
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link.is-active,
.footer-link:hover,
.footer-link.is-active {
  color: var(--primary);
}

.nav-cta,
.mobile-cta {
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 700;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.nav-cta {
  padding: 0.58rem 1rem;
}

.nav-cta:hover,
.mobile-cta:hover,
.button-accent:hover {
  background: var(--accent-dark);
}

.nav-cta:hover,
.mobile-cta:hover,
.button:hover,
.word-card:hover {
  transform: translateY(-1px);
}

.menu-button {
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(4px);
}

.mobile-nav {
  border-top: 1px solid var(--border);
  background: var(--paper);
}

.mobile-nav-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
  padding: 1rem 0 1.25rem;
}

.mobile-nav-inner hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--border);
}

.mobile-link {
  color: var(--ink-muted);
}

.mobile-cta {
  padding: 0.8rem 1rem;
  text-align: center;
}

.social-icon-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.social-icon-link {
  position: relative;
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in oklab, var(--primary) 38%, var(--border));
  border-radius: 999px;
  background: color-mix(in oklab, var(--card) 86%, transparent);
  color: var(--primary);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.social-icon-link svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
  border-color: color-mix(in oklab, var(--accent) 72%, var(--border));
  background: color-mix(in oklab, var(--accent) 12%, var(--card));
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.social-icon-link::after {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.45rem);
  z-index: 5;
  padding: 0.3rem 0.45rem;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  content: attr(data-label);
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.15rem);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
  white-space: nowrap;
}

.social-icon-link:hover::after,
.social-icon-link:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.header-social-list {
  display: none;
}

.mobile-social-list {
  justify-content: center;
  margin-top: 0.1rem;
}

.surface-deep {
  background:
    linear-gradient(160deg, var(--deep-start), var(--deep-end)),
    var(--primary-dark);
  color: var(--primary-foreground);
}

.hero {
  overflow: hidden;
}

.hero-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  align-items: center;
  gap: 2rem;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.hero-copy {
  max-width: 34rem;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.accent {
  color: var(--accent);
}

.muted {
  color: var(--ink-muted);
}

.hero h1 {
  margin-top: 1rem;
}

.hero-lede {
  max-width: 34rem;
  margin-top: 1.25rem;
  font-size: clamp(1.08rem, 1.02rem + 0.3vw, 1.28rem);
  opacity: 0.95;
}

.hero-support {
  max-width: 31rem;
  margin-top: 0.85rem;
  opacity: 0.82;
}

.hero-image {
  width: 100%;
  border-radius: calc(var(--radius) * 2);
  box-shadow: 0 22px 50px -30px oklch(12% 0.03 220 / 0.85);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button-row.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font-size: 0.93rem;
  font-weight: 700;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    border-color 160ms ease;
}

.button.compact {
  min-height: 40px;
  padding: 0.63rem 1.05rem;
}

.button-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

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

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

.button-ghost {
  border: 1px solid color-mix(in oklab, white 42%, transparent);
  color: white;
}

.button-ghost:hover {
  background: color-mix(in oklab, white 10%, transparent);
}

.button-outline {
  border: 1px solid var(--border);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 5rem) 0;
}

.section-tight {
  padding-top: 0;
}

.section-pad-top-none {
  padding-top: 0;
}

.narrow {
  width: min(var(--narrow), calc(100% - 2rem));
}

.section-heading {
  max-width: 41rem;
}

.section-heading p,
.page-intro p,
.center-section p,
.story-copy,
.card p {
  color: var(--ink-muted);
}

.section-heading p,
.page-intro p {
  margin-top: 0.9rem;
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.word-card {
  min-height: 260px;
  padding: 1.35rem;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.word-card:hover {
  border-color: color-mix(in oklab, var(--accent) 62%, var(--border));
}

.word-number {
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: var(--radius);
  background: var(--sand);
  color: var(--accent);
  font-weight: 700;
}

.word-card h3,
.book-card h2,
.app-list-card h2,
.agent-card h2 {
  margin-top: 1rem;
}

.word-card p,
.book-card p,
.app-list-card p,
.agent-card p,
.resource-card p {
  margin-top: 0.8rem;
}

.card-tagline {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
}

.text-link {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--primary);
  font-weight: 700;
}

.text-link::after {
  content: " ->";
}

.origin-band {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--sand) 70%, white);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.origin-band p:last-child {
  max-width: 52rem;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.action-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--sand) 55%, white);
}

.action-grid {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  padding: 3rem 0;
}

.action-item p:nth-child(2) {
  margin-top: 0.55rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.25;
}

.center-section,
.center-card,
.center-note {
  text-align: center;
}

.center-section p,
.center-card p {
  max-width: 39rem;
  margin: 1rem auto 0;
}

.center-section .button,
.center-card .button {
  margin-top: 1.5rem;
}

.page-intro {
  max-width: 64rem;
}

.page-intro h1 {
  margin-top: 0.8rem;
}

.page-hero-inner {
  width: min(var(--narrow), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 5.5rem) 0;
}

.page-hero h1 {
  margin-top: 0.8rem;
}

.page-hero p:last-child {
  margin-top: 0.8rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  opacity: 0.9;
}

.article-wrap {
  width: min(var(--narrow), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 0;
}

.intro {
  font-size: 1.12rem;
  line-height: 1.7;
}

.article-section {
  margin-top: 3.2rem;
}

.article-section h2 {
  font-size: 1.75rem;
}

.question-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.question-card {
  padding: 1rem;
}

.app-card,
.center-card,
.purchase-card,
.book-teaser-card,
.contact-card {
  margin-top: 3.2rem;
  padding: clamp(1.35rem, 3vw, 1.9rem);
}

.app-card h2,
.center-card h2,
.book-teaser-card h2,
.contact-card h2 {
  margin-top: 0.6rem;
  font-size: 1.75rem;
}

.status-badge {
  display: inline-block;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink);
  padding: 0.38rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.status-badge.is-live {
  background: color-mix(in oklab, var(--accent) 18%, white);
  color: var(--accent-dark);
}

.book-teaser-card {
  display: grid;
  gap: 1.5rem;
  background: color-mix(in oklab, var(--card) 82%, var(--sand));
}

.book-teaser-copy,
.book-teaser-tool {
  min-width: 0;
}

.book-teaser-copy p,
.book-teaser-tool p {
  margin-top: 0.85rem;
  color: var(--ink-muted);
}

.book-teaser-copy blockquote {
  margin: 1.35rem 0 0;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.book-teaser-tool {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1.2rem;
}

.book-teaser-tool .button {
  margin-top: 1.1rem;
}

.book-teaser-tool .text-link {
  margin-left: 0;
}

.zone-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 1rem;
}

.zone-list li {
  border-radius: var(--radius);
  background: var(--sand);
  padding: 0.65rem 0.75rem;
  font-weight: 700;
}

.survey-callout {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.35rem, 3vw, 1.9rem);
  background: color-mix(in oklab, var(--sand) 70%, white);
}

.survey-callout h2,
.survey-card h2,
.survey-result h2 {
  margin-top: 0.55rem;
  font-size: 1.65rem;
}

.survey-callout p,
.survey-card p,
.survey-instructions p,
.survey-result p {
  margin-top: 0.75rem;
}

.survey-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.survey-chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  padding: 0.65rem 0.9rem;
  font-weight: 700;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.survey-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

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

.survey-card {
  min-height: 230px;
  padding: 1.35rem;
}

.survey-card .button {
  margin-top: 1.25rem;
}

.survey-page {
  width: min(var(--narrow), calc(100% - 2rem));
}

.survey-form,
.survey-question-list {
  display: grid;
  gap: 1rem;
}

.survey-instructions,
.survey-result {
  padding: 1.25rem;
}

.survey-privacy,
.result-next,
.survey-total {
  color: var(--ink);
  font-weight: 700;
}

.survey-question {
  margin: 0;
  padding: 1rem;
}

.survey-question legend {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0 0.25rem 0.75rem 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.2;
}

.survey-question legend span {
  display: inline-grid;
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  background: var(--sand);
  color: var(--accent);
  font-family: "Karla", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
}

.survey-options {
  display: grid;
  gap: 0.65rem;
}

.survey-option {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--paper) 70%, white);
  padding: 0.75rem 0.85rem;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.survey-option:hover,
.survey-option:has(input:checked) {
  border-color: var(--primary);
  background: color-mix(in oklab, var(--primary) 10%, white);
}

.survey-option input {
  flex: 0 0 auto;
  margin-top: 0.2rem;
  accent-color: var(--primary);
}

.survey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.app-card .status-badge {
  margin-top: 1rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
}

.resource-card {
  padding: 1.2rem;
}

.resource-card h3 {
  margin-top: 0.55rem;
  font-size: 1.16rem;
}

.byline {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.word-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  color: var(--primary);
  font-weight: 700;
}

.resource-sections {
  display: grid;
  gap: 3.5rem;
  padding-top: 0;
}

.resource-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.65rem;
}

.resource-heading h2 {
  font-size: 1.8rem;
}

.book-card {
  min-height: 285px;
  padding: 1.35rem;
}

.card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.card-footer .text-link {
  margin-top: 0;
}

.app-list {
  display: grid;
  gap: 1rem;
}

.app-list-card {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
}

.app-title-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.app-title-row-large {
  align-items: flex-start;
}

.app-icon {
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
  border-radius: 14px;
  box-shadow: 0 12px 26px -18px rgb(0 0 0 / 0.55);
}

.app-icon-fallback {
  display: inline-grid;
  place-items: center;
  background:
    linear-gradient(145deg, color-mix(in oklab, var(--primary) 82%, black), var(--accent));
  color: white;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 750;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.app-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.app-card-actions .text-link {
  margin-top: 0;
}

.app-meta {
  margin-top: 0.65rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.app-screenshot-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(9rem, 12rem);
  gap: 0.85rem;
  margin-top: 1.2rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.45rem;
  scrollbar-width: thin;
}

.app-screenshot-card {
  margin: 0;
}

.app-screenshot-card img {
  width: 100%;
  height: 15.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--sand);
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 16px 30px -24px rgb(0 0 0 / 0.6);
}

.app-screenshot-card figcaption {
  margin-top: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.agent-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.agent-card {
  padding: 1.3rem;
}

.story-copy {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
  font-size: 1.08rem;
  line-height: 1.72;
}

.contact-card .button {
  margin-top: 1rem;
}

.v2-page {
  --v2-paper: #fff8ee;
  --v2-ink: #203231;
  --v2-muted: #60706b;
  --v2-green: #254a40;
  --v2-mint: #dce9dc;
  --v2-coral: #d76245;
  --v2-gold: #d3a13e;
  --v2-blue: #315f80;
  --v2-lilac: #6862a8;
  --v2-line: #ded0bc;
  --v2-card: #fffdf8;
  background: var(--v2-paper);
  color: var(--v2-ink);
}

.v2-hero {
  position: relative;
  min-height: min(68vh, 46rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.v2-hero-bg,
.v2-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.v2-hero-bg {
  object-fit: cover;
}

.v2-hero-shade {
  background: rgb(26 42 40 / 0.68);
}

.v2-hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 2rem));
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}

.v2-hero h1 {
  margin-top: 0.9rem;
}

.v2-hero-kicker {
  max-width: 42rem;
  margin-top: 1.2rem;
  font-size: clamp(1.08rem, 1.02rem + 0.3vw, 1.28rem);
  color: rgb(255 255 255 / 0.9);
}

.v2-button-light {
  background: var(--v2-paper);
  color: var(--v2-ink);
}

.v2-button-light:hover {
  background: white;
}

.v2-button-outline {
  border: 1px solid rgb(255 255 255 / 0.62);
  color: white;
}

.v2-button-outline:hover {
  background: rgb(255 255 255 / 0.12);
}

.v2-section {
  width: min(76rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 5.25rem) 0;
}

.v2-section-heading {
  max-width: 45rem;
}

.v2-section-heading h2 {
  margin-top: 0.65rem;
}

.v2-section-heading p:last-child {
  margin-top: 0.85rem;
  color: var(--v2-muted);
  font-size: 1.06rem;
}

.v2-start-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.v2-weekly-focus {
  display: grid;
  gap: 0.95rem;
  border: 1px solid color-mix(in oklab, var(--v2-green) 26%, var(--v2-line));
  border-radius: var(--radius);
  background: var(--v2-mint);
  padding: clamp(1.2rem, 3vw, 1.65rem);
}

.v2-weekly-focus h3 {
  font-size: 2rem;
}

.v2-weekly-focus p {
  color: #475a55;
}

.v2-prompt {
  display: grid;
  gap: 0.35rem;
  border-left: 4px solid var(--v2-coral);
  padding-left: 0.9rem;
}

.v2-prompt span {
  color: #475a55;
}

.v2-weekly-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.v2-word-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.v2-word-tile {
  min-height: 9rem;
  display: grid;
  align-content: space-between;
  gap: 0.8rem;
  border: 1px solid var(--v2-line);
  border-top: 4px solid var(--v2-coral);
  border-radius: var(--radius);
  background: var(--v2-card);
  padding: 1rem;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.v2-word-tile:hover {
  border-color: color-mix(in oklab, var(--v2-coral) 65%, var(--v2-line));
  transform: translateY(-1px);
}

.v2-word-tile-finances {
  border-top-color: var(--v2-gold);
}

.v2-word-tile-friends {
  border-top-color: var(--v2-green);
}

.v2-word-tile-followings {
  border-top-color: var(--v2-blue);
}

.v2-word-tile-family {
  border-top-color: var(--v2-lilac);
}

.v2-word-tile-future {
  border-top-color: #2a8475;
}

.v2-word-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.v2-word-number {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--v2-line) 72%, white);
  color: var(--v2-ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.v2-word-action {
  color: var(--v2-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.v2-word-tile p {
  margin-top: 0.45rem;
  color: var(--v2-muted);
}

.v2-return-band {
  background: var(--v2-green);
  color: #fff8ee;
}

.v2-return-inner {
  width: min(76rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 5.25rem) 0;
}

.v2-section-heading-light p:last-child {
  color: rgb(255 248 238 / 0.76);
}

.v2-rhythm-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.v2-rhythm-step {
  min-height: 13rem;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  border: 1px solid rgb(255 248 238 / 0.22);
  border-radius: var(--radius);
  background: rgb(255 248 238 / 0.08);
  padding: 1rem;
}

.v2-step-number {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: var(--radius);
  background: var(--v2-gold);
  color: #2c2a20;
  font-weight: 700;
}

.v2-rhythm-step h3 {
  font-size: 1.4rem;
}

.v2-rhythm-step p {
  color: rgb(255 248 238 / 0.74);
}

.v2-podcast-feature {
  display: grid;
  gap: 1.5rem;
  border: 1px solid var(--v2-line);
  border-radius: var(--radius);
  background: var(--v2-card);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.v2-podcast-copy h2,
.v2-practice-copy h2 {
  margin-top: 0.7rem;
}

.v2-podcast-copy p,
.v2-practice-copy p {
  margin-top: 0.9rem;
  color: var(--v2-muted);
}

.v2-podcast-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.v2-podcast-meta span,
.v2-status-pill {
  border: 1px solid var(--v2-line);
  border-radius: 999px;
  background: #f5ecdd;
  padding: 0.4rem 0.7rem;
  color: var(--v2-ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.v2-listen-panel {
  border: 1px solid var(--v2-line);
  border-radius: var(--radius);
  background: #f3ead8;
  padding: 1.15rem;
}

.v2-audio-bars {
  height: 4.5rem;
  display: flex;
  align-items: end;
  gap: 0.38rem;
  margin: 1.35rem 0;
}

.v2-audio-bars span {
  width: 0.55rem;
  border-radius: 999px 999px 0 0;
  background: var(--v2-blue);
}

.v2-audio-bars span:nth-child(1) {
  height: 34%;
}

.v2-audio-bars span:nth-child(2) {
  height: 62%;
}

.v2-audio-bars span:nth-child(3) {
  height: 45%;
}

.v2-audio-bars span:nth-child(4) {
  height: 86%;
}

.v2-audio-bars span:nth-child(5) {
  height: 54%;
}

.v2-audio-bars span:nth-child(6) {
  height: 72%;
}

.v2-audio-bars span:nth-child(7) {
  height: 38%;
}

.v2-audio-bars span:nth-child(8) {
  height: 66%;
}

.v2-listen-panel h3 {
  font-size: 1.45rem;
}

.v2-listen-panel p {
  margin-top: 0.7rem;
  color: var(--v2-muted);
}

.v2-spotlight-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.v2-spotlight-card {
  min-height: 15rem;
  display: grid;
  align-content: start;
  border: 1px solid var(--v2-line);
  border-radius: var(--radius);
  background: var(--v2-card);
  padding: 1.1rem;
}

.v2-spotlight-card h3 {
  margin-top: 0.8rem;
  font-size: 1.45rem;
}

.v2-spotlight-card p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: var(--v2-muted);
}

.v2-toolbox-band {
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  background: #f1e5d0;
}

.v2-toolbox-inner {
  width: min(76rem, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  padding: clamp(4rem, 7vw, 5.25rem) 0;
}

.v2-survey-list {
  display: grid;
  gap: 0.75rem;
}

.v2-survey-link {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--v2-line);
  border-radius: var(--radius);
  background: var(--v2-card);
  padding: 0.9rem 1rem;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.v2-survey-link:hover {
  border-color: var(--v2-blue);
  transform: translateY(-1px);
}

.v2-survey-link span:first-child {
  display: grid;
  gap: 0.25rem;
}

.v2-survey-link small {
  color: var(--v2-muted);
  font-size: 0.88rem;
}

.v2-survey-link span:last-child {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: var(--radius);
  background: var(--v2-blue);
  color: white;
  font-weight: 700;
}

.v2-practice-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.v2-practice-copy .button {
  margin-top: 1.3rem;
}

.v2-app-stack {
  display: grid;
  gap: 0.75rem;
}

.v2-app-item {
  display: grid;
  gap: 0.9rem;
  border: 1px solid var(--v2-line);
  border-radius: var(--radius);
  background: var(--v2-card);
  padding: 1rem;
}

.v2-app-item h3 {
  margin-top: 0.35rem;
  font-size: 1.25rem;
}

.v2-app-item p:not(.eyebrow) {
  margin-top: 0.4rem;
  color: var(--v2-muted);
}

.v2-app-item .status-badge {
  width: fit-content;
}

.v2-app-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.v2-app-footer .button {
  width: fit-content;
}

.home-experience {
  --home-paper: #fff8ee;
  --home-ink: #203231;
  --home-muted: #5c706a;
  --home-deep: #203f38;
  --home-deeper: #142b29;
  --home-coral: #d76245;
  --home-coral-dark: #ad482f;
  --home-gold: #d3a13e;
  --home-blue: #315f80;
  --home-lilac: #6862a8;
  --home-mint: #dce9dc;
  --home-line: #decfb8;
  --home-card: #fffdf8;
  --v2-line: var(--home-line);
  --v2-card: var(--home-card);
  --v2-muted: var(--home-muted);
  --v2-ink: var(--home-ink);
  background:
    radial-gradient(circle at 14% 10%, rgb(211 161 62 / 0.16), transparent 24rem),
    linear-gradient(180deg, #fff8ee 0%, #f8eddb 100%);
  color: var(--home-ink);
}

.home-hero {
  position: relative;
  min-height: min(74svh, 47rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.home-hero-image,
.home-hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-image {
  object-fit: cover;
}

.home-hero-wash {
  background:
    linear-gradient(90deg, rgb(17 35 33 / 0.88) 0%, rgb(17 35 33 / 0.72) 38%, rgb(17 35 33 / 0.28) 100%),
    linear-gradient(180deg, rgb(17 35 33 / 0.08) 0%, rgb(17 35 33 / 0.86) 100%);
}

.home-hero-inner {
  position: relative;
  width: min(76rem, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  align-items: end;
  padding: clamp(5rem, 11vw, 7rem) 0 clamp(2rem, 4vw, 3.2rem);
}

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

.home-hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0;
}

.home-hero-lede {
  max-width: 39rem;
  margin-top: 1rem;
  color: rgb(255 255 255 / 0.94);
  font-size: clamp(1.12rem, 1.04rem + 0.52vw, 1.45rem);
  line-height: 1.45;
}

.home-hero-support {
  max-width: 35rem;
  margin-top: 0.8rem;
  color: rgb(255 255 255 / 0.78);
}

.home-button-light {
  background: var(--home-paper);
  color: var(--home-ink);
}

.home-button-light:hover {
  background: white;
}

.home-button-outline {
  border: 1px solid rgb(255 255 255 / 0.66);
  color: white;
}

.home-button-outline:hover {
  background: rgb(255 255 255 / 0.12);
}

.home-table-note {
  max-width: 24rem;
  border: 1px solid rgb(255 248 238 / 0.3);
  border-radius: var(--radius);
  background: rgb(20 43 41 / 0.72);
  box-shadow: 0 24px 52px -34px rgb(0 0 0 / 0.85);
  backdrop-filter: blur(10px);
  padding: 1.1rem;
}

.home-table-note span {
  color: var(--home-gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-table-note h2 {
  margin-top: 0.55rem;
  font-size: 1.55rem;
}

.home-table-note p {
  margin-top: 0.75rem;
  color: rgb(255 255 255 / 0.8);
}

.home-console {
  width: min(76rem, calc(100% - 2rem));
  margin: -1.1rem auto 0;
  position: relative;
  z-index: 2;
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  background: var(--home-card);
  box-shadow: 0 22px 55px -36px rgb(32 50 49 / 0.55);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.home-console-head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.home-console-head h2 {
  max-width: 28rem;
  font-size: clamp(1.65rem, 1.36rem + 1.2vw, 2.7rem);
}

.home-console-head p {
  max-width: 36rem;
  color: var(--home-muted);
}

.home-word-doors {
  display: grid;
  gap: 0.75rem;
}

.home-word-door {
  min-height: 6.2rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  border: 1px solid var(--home-line);
  border-top: 5px solid var(--home-coral);
  border-radius: var(--radius);
  background: #fffaf1;
  padding: 0.9rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.home-word-door:hover {
  border-color: color-mix(in oklab, var(--home-coral) 58%, var(--home-line));
  box-shadow: 0 18px 32px -28px rgb(32 50 49 / 0.55);
  transform: translateY(-2px);
}

.home-word-door-finances {
  border-top-color: var(--home-gold);
}

.home-word-door-friends {
  border-top-color: #2c6a5b;
}

.home-word-door-followings {
  border-top-color: var(--home-blue);
}

.home-word-door-family {
  border-top-color: var(--home-lilac);
}

.home-word-door-future {
  border-top-color: #2a8475;
}

.home-word-index {
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: var(--radius);
  background: #efe0c8;
  color: var(--home-ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.home-word-copy {
  display: grid;
  gap: 0.18rem;
}

.home-word-copy strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.1;
}

.home-word-copy small {
  color: var(--home-muted);
  font-size: 0.9rem;
}

.home-word-cta {
  color: var(--home-coral-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.home-section {
  width: min(76rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 5.4rem) 0;
}

.home-section-copy {
  max-width: 45rem;
}

.home-section-copy p {
  margin-top: 0.8rem;
  color: var(--home-muted);
  font-size: 1.06rem;
}

.home-section-copy .button,
.home-section-copy .text-link {
  margin-top: 1.2rem;
}

.home-loop-section {
  display: grid;
  gap: 2rem;
}

.home-loop-grid {
  display: grid;
  gap: 1rem;
}

.home-loop-step {
  min-height: 12rem;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  background: var(--home-card);
  padding: 1rem;
}

.home-loop-step span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: var(--radius);
  background: var(--home-deep);
  color: white;
  font-weight: 800;
}

.home-loop-step h3 {
  font-size: 1.38rem;
}

.home-loop-step p {
  color: var(--home-muted);
}

.home-feature-grid {
  display: grid;
  gap: 1.25rem;
  padding-top: 0;
}

.home-podcast-panel,
.home-survey-panel {
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  background: var(--home-card);
  padding: clamp(1.15rem, 3vw, 1.6rem);
}

.home-podcast-panel {
  background:
    linear-gradient(145deg, rgb(32 63 56 / 0.96), rgb(49 95 128 / 0.92));
  color: white;
}

.home-podcast-panel p {
  margin-top: 0.8rem;
  color: rgb(255 255 255 / 0.78);
}

.home-waveform {
  height: 5.6rem;
  display: flex;
  align-items: end;
  gap: 0.48rem;
  margin-top: 1.5rem;
}

.home-waveform span {
  width: 0.7rem;
  border-radius: 999px 999px 0 0;
  background: var(--home-gold);
}

.home-waveform span:nth-child(1) {
  height: 33%;
}

.home-waveform span:nth-child(2) {
  height: 70%;
}

.home-waveform span:nth-child(3) {
  height: 45%;
}

.home-waveform span:nth-child(4) {
  height: 92%;
}

.home-waveform span:nth-child(5) {
  height: 58%;
}

.home-waveform span:nth-child(6) {
  height: 80%;
}

.home-waveform span:nth-child(7) {
  height: 38%;
}

.home-waveform span:nth-child(8) {
  height: 64%;
}

.home-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.home-meta-row span {
  border: 1px solid rgb(255 248 238 / 0.25);
  border-radius: 999px;
  padding: 0.38rem 0.66rem;
  color: rgb(255 255 255 / 0.82);
  font-size: 0.78rem;
  font-weight: 800;
}

.home-survey-panel p {
  margin-top: 0.75rem;
  color: var(--home-muted);
}

.home-survey-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.home-survey-rail {
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  background: #fff8ee;
  padding: 0.85rem;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.home-survey-rail:hover {
  border-color: var(--home-blue);
  transform: translateY(-1px);
}

.home-survey-rail span:first-child {
  display: grid;
  gap: 0.2rem;
}

.home-survey-rail small {
  color: var(--home-muted);
}

.home-survey-arrow {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: var(--radius);
  background: var(--home-blue);
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
}

.home-practice-section {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.home-app-stack {
  display: grid;
  gap: 0.75rem;
}

.home-app-stack .v2-app-item {
  background: var(--home-card);
}

.home-backend-section {
  display: grid;
  gap: 1.5rem;
}

.home-backend-grid {
  display: grid;
  gap: 1rem;
}

.home-backend-stage {
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  background: #f3e7d6;
  padding: 1rem;
}

.home-backend-stage h3 {
  font-size: 1.26rem;
}

.home-backend-stage p {
  margin-top: 0.7rem;
  color: var(--home-muted);
}

.policy-page > p {
  margin-top: 1rem;
}

.policy-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.policy-card {
  padding: clamp(1.15rem, 3vw, 1.45rem);
}

.policy-card h2 {
  font-size: 1.45rem;
}

.policy-card p {
  margin-top: 0.75rem;
  color: var(--ink-muted);
}

.policy-date {
  color: var(--primary-dark) !important;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-caveat {
  margin-top: 1.5rem !important;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-size: 0.92rem;
}

.home-audience-line {
  margin-top: 1rem;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-adult-band {
  width: min(var(--max), calc(100% - 2rem));
  margin: clamp(4rem, 7vw, 5rem) auto 0;
  display: grid;
  gap: 2rem;
  border-block: 1px solid var(--border);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.home-adult-band > div:first-child {
  max-width: 47rem;
}

.home-adult-band > div:first-child p {
  max-width: 67ch;
  margin-top: 0.9rem;
  color: var(--ink-muted);
}

.home-adult-principles {
  display: grid;
  gap: 1.2rem;
}

.home-adult-principles article {
  border-top: 2px solid var(--primary);
  padding-top: 0.85rem;
}

.home-adult-principles strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
}

.home-adult-principles p {
  margin-top: 0.45rem;
  color: var(--ink-muted);
}

.home-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1rem;
}

.home-share-band {
  width: min(var(--max), calc(100% - 2rem));
  margin: clamp(1rem, 4vw, 3rem) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: var(--radius);
  background: var(--primary-dark);
  padding: clamp(1.5rem, 5vw, 3rem);
  color: white;
}

.home-share-band > div {
  max-width: 43rem;
}

.home-share-band p {
  margin-top: 0.7rem;
  color: rgb(255 255 255 / 0.82);
}

.home-signal-band {
  border-block: 1px solid var(--border);
  background: color-mix(in oklab, var(--sand) 76%, white);
}

.home-signal-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.home-signal-copy {
  max-width: 48rem;
}

.home-signal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-signal-copy h2 {
  max-width: 18ch;
  margin-top: 0.8rem;
}

.home-signal-copy > p {
  max-width: 64ch;
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.home-signal-direction {
  align-self: start;
  border-top: 1px solid color-mix(in oklab, var(--accent) 42%, var(--border));
  padding-top: 1.25rem;
}

.home-signal-direction > span {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-signal-direction h3 {
  margin-top: 0.45rem;
}

.home-signal-direction > p {
  margin-top: 0.65rem;
  color: var(--ink-muted);
}

.subscribe-control {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.subscribe-control h3 {
  font-size: 1.22rem;
}

.subscribe-control p,
.subscribe-control small {
  margin-top: 0.35rem;
  color: var(--ink-muted);
}

.subscribe-control small {
  font-size: 0.78rem;
}

.subscribe-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.subscribe-form input[type="email"] {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  font: inherit;
}

.subscribe-form input:disabled,
.subscribe-form button:disabled {
  cursor: not-allowed;
  opacity: 0.66;
}

.subscribe-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.subscribe-consent input {
  margin-top: 0.18rem;
}

.standards-intro {
  padding-bottom: 2rem;
}

.status-banner {
  display: grid;
  gap: 0.3rem;
  margin-top: 1.5rem;
  border-block: 1px solid var(--border);
  padding: 1rem 0;
}

.status-banner strong {
  color: var(--primary-dark);
}

.status-banner span {
  color: var(--ink-muted);
}

.standards-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.standard-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.standard-item h2 {
  font-size: 1.45rem;
}

.standard-item p {
  max-width: 67ch;
  margin-top: 0.65rem;
  color: var(--ink-muted);
}

.review-standard {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  border-radius: var(--radius);
  background: var(--primary-dark);
  padding: clamp(1.5rem, 5vw, 3rem);
  color: white;
}

.review-standard > div:first-child p,
.review-lanes p {
  margin-top: 0.65rem;
  color: rgb(255 255 255 / 0.76);
}

.review-lanes {
  display: grid;
  gap: 1.25rem;
}

.review-lanes article {
  border-top: 1px solid rgb(255 255 255 / 0.24);
  padding-top: 0.85rem;
}

.policy-route-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.policy-route-grid a {
  display: grid;
  gap: 0.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1rem;
  transition: border-color 160ms ease, transform 160ms ease;
}

.policy-route-grid a:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.policy-route-grid span,
.standards-source-note {
  color: var(--ink-muted);
}

.standards-source-note {
  max-width: 69ch;
  margin-top: 1.5rem;
}

.share-control {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  margin-top: 1.5rem;
}

.share-control-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.share-action {
  gap: 0.6rem;
}

.share-action svg {
  width: 1.08rem;
  height: 1.08rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.share-ledger {
  display: grid;
  min-width: 7.6rem;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 0.4rem;
  border-block: 1px solid color-mix(in oklab, var(--primary) 28%, var(--border));
  padding: 0.45rem 0;
  font-variant-numeric: tabular-nums;
}

.share-ledger strong {
  min-width: 2.2ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.share-ledger span {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
}

.share-control-deep .button-outline {
  border-color: rgb(255 255 255 / 0.45);
  color: white;
}

.share-control-deep .button-outline:hover {
  border-color: white;
  color: white;
}

.share-control-deep .share-ledger {
  border-color: rgb(255 255 255 / 0.3);
}

.share-control-deep .share-ledger span {
  color: rgb(255 255 255 / 0.75);
}

.share-control .share-status {
  min-height: 1.3rem;
  flex-basis: 100%;
  margin: 0;
  font-size: 0.84rem;
}

.share-control-paper .share-status,
.share-control-sand .share-status {
  color: var(--ink-muted);
}

.share-control-paper .share-fallback,
.share-control-sand .share-fallback {
  border-color: var(--border);
  background: var(--card);
  color: var(--ink);
}

.word-share-section {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  border-block: 1px solid var(--border);
  padding: 2rem 0;
}

.word-share-section > div:first-child {
  max-width: 39rem;
}

.word-share-section p {
  margin-top: 0.7rem;
  color: var(--ink-muted);
}

.word-share-section .share-control {
  margin-top: 0;
}

.podcast-hero {
  overflow: hidden;
  background: var(--primary-dark);
  color: white;
}

.podcast-hero-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  align-items: end;
  gap: 2.5rem;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.podcast-hero-inner > div:first-child {
  max-width: 48rem;
}

.podcast-hero p {
  max-width: 62ch;
  margin-top: 1rem;
  color: rgb(255 255 255 / 0.82);
  font-size: 1.08rem;
}

.podcast-hero .podcast-boundary {
  color: rgb(255 255 255 / 0.65);
  font-size: 0.9rem;
}

.podcast-signal {
  height: 8rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(0.35rem, 1vw, 0.8rem);
}

.podcast-signal span {
  width: 100%;
  min-width: 0.35rem;
  border-radius: 999px 999px 2px 2px;
  background: var(--accent);
  transform-origin: bottom;
  animation: podcast-signal 3.6s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

.podcast-signal span:nth-child(1),
.podcast-signal span:nth-child(9) { height: 26%; }
.podcast-signal span:nth-child(2),
.podcast-signal span:nth-child(7) { height: 58%; animation-delay: -0.8s; }
.podcast-signal span:nth-child(3),
.podcast-signal span:nth-child(6) { height: 82%; animation-delay: -1.6s; }
.podcast-signal span:nth-child(4),
.podcast-signal span:nth-child(8) { height: 44%; animation-delay: -2.4s; }
.podcast-signal span:nth-child(5) { height: 100%; animation-delay: -3.2s; }

@keyframes podcast-signal {
  from { transform: scaleY(0.78); }
  to { transform: scaleY(1); }
}

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

  .podcast-signal span {
    animation: none;
  }
}

.podcast-series {
  display: grid;
  gap: 2rem;
}

.podcast-series-intro {
  max-width: 43rem;
}

.podcast-series-intro p,
.podcast-feed-head p,
.podcast-episode-copy > p {
  margin-top: 0.75rem;
  color: var(--ink-muted);
}

.podcast-guests {
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--border);
}

.podcast-guests-intro {
  max-width: 48rem;
}

.podcast-guests-intro p {
  max-width: 68ch;
  margin-top: 0.8rem;
  color: var(--ink-muted);
}

.podcast-guest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  border-top: 1px solid var(--border);
}

.podcast-guest-grid article {
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 1rem 1.4rem 0;
}

.podcast-guest-grid h3 {
  font-size: 1.25rem;
}

.podcast-guest-grid p {
  margin-top: 0.65rem;
  color: var(--ink-muted);
}

.podcast-opening-question {
  display: grid;
  gap: 0.55rem;
  border-radius: var(--radius);
  background: var(--primary-dark);
  padding: clamp(1.35rem, 4vw, 2.4rem);
  color: white;
}

.podcast-opening-question strong {
  color: color-mix(in oklab, var(--accent) 56%, white);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.podcast-opening-question p {
  max-width: 30ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 1.35rem + 0.75vw, 2.2rem);
  font-weight: 650;
  line-height: 1.12;
}

.podcast-word-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}

.podcast-word-track a {
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0.2rem;
  color: var(--primary-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 650;
  transition: color 160ms ease, padding 160ms ease;
}

.podcast-word-track a:hover {
  padding-left: 0.5rem;
  color: var(--accent);
}

.podcast-feed-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.podcast-feed-head > div {
  max-width: 44rem;
}

.podcast-episode {
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.podcast-episode-copy {
  max-width: 48rem;
}

.podcast-episode-copy h2 {
  margin-top: 0.7rem;
}

.podcast-episode-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.podcast-production-note {
  font-style: italic;
}

.podcast-episode audio {
  width: 100%;
  margin-top: 1rem;
}

.share-hero {
  background: var(--primary-dark);
  color: white;
}

.share-hero-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.share-hero-inner > div {
  align-self: center;
}

.share-hero-inner p {
  max-width: 62ch;
  margin-top: 1rem;
  color: rgb(255 255 255 / 0.82);
}

.share-hero-inner img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 52px -34px rgb(0 0 0 / 0.85);
}

.share-status {
  min-height: 1.5rem;
  font-weight: 700;
}

.share-fallback {
  width: min(100%, 38rem);
  min-height: 5.5rem;
  margin-top: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.5);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.1);
  padding: 0.75rem;
  color: white;
  font: inherit;
  resize: vertical;
}

.share-kit {
  display: grid;
  gap: 2rem;
}

.share-script,
.share-questions,
.channel-system,
.share-rule {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.share-script blockquote {
  max-width: 38ch;
  margin: 1rem 0 1.25rem;
  color: var(--primary-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.3;
}

.share-questions ol {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--ink-muted);
}

.share-rule p {
  max-width: 66ch;
  margin-top: 0.8rem;
  color: var(--ink-muted);
}

.channel-system > div:first-child p {
  max-width: 62ch;
  margin-top: 0.7rem;
  color: var(--ink-muted);
}

.channel-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.channel-grid > * {
  display: grid;
  gap: 0.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1rem;
}

.channel-grid a {
  transition: border-color 160ms ease, transform 160ms ease;
}

.channel-grid a:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.channel-grid span,
.channel-grid small {
  color: var(--ink-muted);
}

.channel-grid small {
  font-weight: 700;
}

.ops-shell {
  width: min(88rem, calc(100% - 2rem));
  margin: 1rem auto 0;
  display: grid;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--primary-dark) 38%, var(--border));
  border-radius: var(--radius);
  background: #eef1ed;
  color: #213a38;
  box-shadow: var(--shadow-soft);
}

.ops-sidebar {
  display: none;
  background: #193d3a;
  color: white;
  padding: 1.5rem;
}

.ops-brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.ops-sidebar nav {
  display: grid;
  gap: 0.25rem;
  margin-top: 2.5rem;
}

.ops-sidebar nav a {
  border-radius: 6px;
  padding: 0.7rem 0.8rem;
  color: rgb(255 255 255 / 0.72);
  font-weight: 700;
}

.ops-sidebar nav a.is-active,
.ops-sidebar nav a:hover {
  background: rgb(255 255 255 / 0.1);
  color: white;
}

.ops-sidebar > p {
  margin-top: auto;
  color: rgb(255 255 255 / 0.58);
  font-size: 0.78rem;
}

.ops-main {
  min-width: 0;
  padding: clamp(1rem, 3vw, 2rem);
}

.ops-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.ops-header h1 {
  font-size: 2.25rem;
}

.ops-header p {
  margin-top: 0.4rem;
  color: #5c706e;
}

.ops-prototype-badge,
.ops-lane {
  border-radius: 999px;
  background: #e4dbbd;
  padding: 0.35rem 0.6rem;
  color: #604f22;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.ops-metrics {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.ops-metrics article {
  display: grid;
  gap: 0.2rem;
  border-radius: var(--radius);
  background: white;
  padding: 1rem;
}

.ops-metrics span,
.ops-metrics small {
  color: #697b79;
  font-size: 0.78rem;
}

.ops-metrics strong {
  font-variant-numeric: tabular-nums;
  font-size: 1.8rem;
}

.ops-panel {
  margin-top: 1rem;
  border-radius: var(--radius);
  background: white;
  padding: 1.15rem;
}

.ops-panel h2 {
  font-family: "Karla", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.ops-panel p {
  margin-top: 0.35rem;
  color: #617472;
}

.ops-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.ops-panel button {
  min-height: 36px;
  border: 1px solid #cbd4d1;
  border-radius: 6px;
  background: #f5f7f5;
  padding: 0.45rem 0.7rem;
  color: #7b8b89;
  font-weight: 700;
}

.ops-panel button:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

.ops-table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
}

.ops-table-wrap table {
  width: 100%;
  min-width: 48rem;
  border-collapse: collapse;
  text-align: left;
}

.ops-table-wrap th,
.ops-table-wrap td {
  border-top: 1px solid #e3e8e5;
  padding: 0.75rem 0.65rem;
  font-size: 0.86rem;
}

.ops-table-wrap th {
  color: #647674;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.ops-split {
  display: grid;
  gap: 0;
}

.ops-checklist,
.ops-gates {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
}

.ops-checklist li {
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
}

.ops-checklist li > span {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: #dfeae6;
  color: #25514d;
  font-size: 0.76rem;
  font-weight: 800;
}

.ops-checklist p {
  margin: 0;
}

.ops-checklist strong {
  color: #213a38;
}

.ops-gates li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid #e3e8e5;
  padding-bottom: 0.65rem;
}

.ops-gates span {
  min-width: 4.25rem;
  border-radius: 999px;
  padding: 0.25rem 0.45rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.ops-gates .is-ready {
  background: #dfece4;
  color: #285e45;
}

.ops-gates .is-blocked {
  background: #f2dfd6;
  color: #804532;
}

.ops-readiness {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff7dc;
}

.ops-readiness > span {
  border-radius: 999px;
  background: #e8c85b;
  padding: 0.45rem 0.7rem;
  color: #4c3d09;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.studio-shell {
  min-height: 100vh;
  background: #eef1ed;
  color: #213a38;
}

.studio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #d7ded9;
  background: white;
  padding: 1rem max(1rem, calc((100% - 82rem) / 2));
}

.studio-brand {
  color: #47756f;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.studio-header h1 {
  margin-top: 0.18rem;
  font-family: "Karla", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.studio-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.studio-private {
  border-radius: 999px;
  background: #e3eee8;
  padding: 0.38rem 0.65rem;
  color: #315e50;
  font-size: 0.74rem;
  font-weight: 800;
}

.studio-layout {
  width: min(82rem, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 1rem 0 3rem;
}

.studio-form,
.studio-preview {
  border: 1px solid #d7ded9;
  border-radius: var(--radius);
  background: white;
}

.studio-form {
  padding: clamp(1rem, 3vw, 2rem);
}

.studio-section-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.studio-section-head h2 {
  font-family: "Karla", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.studio-section-head p,
.studio-section-head > span {
  margin-top: 0.25rem;
  color: #657673;
  font-size: 0.82rem;
}

.studio-section-head > span {
  margin-top: 0;
  white-space: nowrap;
}

.studio-section-divider {
  margin-top: 2rem;
  border-top: 1px solid #e0e5e1;
  padding-top: 1.5rem;
}

.studio-fields {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.studio-fields label {
  display: grid;
  gap: 0.4rem;
}

.studio-fields label > span {
  color: #526764;
  font-size: 0.78rem;
  font-weight: 800;
}

.studio-fields input,
.studio-fields select,
.studio-fields textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cbd5d0;
  border-radius: 6px;
  background: #fbfcfa;
  padding: 0.7rem 0.75rem;
  color: #213a38;
  font: inherit;
}

.studio-fields textarea {
  line-height: 1.5;
  resize: vertical;
}

.studio-publish-bar {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid #e0e5e1;
  padding-top: 1.25rem;
}

.studio-publish-bar p {
  color: #526764;
  font-size: 0.84rem;
}

.studio-publish-bar button:disabled {
  cursor: progress;
  opacity: 0.65;
}

.studio-preview {
  align-self: start;
  padding: clamp(1rem, 3vw, 2rem);
}

.studio-preview > p:first-child {
  color: #6e7f7c;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.studio-preview-meta {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  color: #a84e36;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.studio-preview h2 {
  margin-top: 0.65rem;
  font-size: 2rem;
}

.studio-preview > p:not(:first-child),
.studio-preview-direction p {
  margin-top: 0.8rem;
  color: #5d716e;
}

.studio-preview-direction {
  margin-top: 2rem;
  border-top: 1px solid #d7ded9;
  padding-top: 1rem;
}

.studio-preview-direction > span {
  color: #a84e36;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.studio-preview-direction h3 {
  margin-top: 0.4rem;
}

.studio-rhythm {
  grid-column: 1 / -1;
  border: 1px solid #d7ded9;
  border-radius: var(--radius);
  background: white;
  padding: clamp(1rem, 3vw, 2rem);
}

.studio-rhythm-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.studio-rhythm-head h2,
.studio-rhythm h3 {
  font-family: "Karla", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
}

.studio-rhythm-head h2 {
  font-size: 1.05rem;
}

.studio-rhythm-head p,
.studio-rhythm-grid p,
.studio-guest-filter p {
  margin-top: 0.45rem;
  color: #657673;
}

.studio-rhythm-head p {
  max-width: 66ch;
  font-size: 0.88rem;
}

.studio-rhythm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  border-top: 1px solid #e0e5e1;
}

.studio-rhythm-grid article {
  padding-top: 1.1rem;
}

.studio-rhythm-grid span {
  color: #a84e36;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.studio-rhythm-grid h3 {
  margin-top: 0.35rem;
  font-size: 1rem;
}

.studio-rhythm-grid p,
.studio-guest-filter p {
  font-size: 0.84rem;
}

.studio-guest-filter {
  margin-top: 1.5rem;
  border-radius: 6px;
  background: #eef3ef;
  padding: 1rem;
}

.studio-guest-filter h3 {
  font-size: 0.95rem;
}

.center-note {
  margin-top: 1.5rem;
}

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--sand) 64%, white);
}

.footer-grid {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-grid h2 {
  font-size: 1.2rem;
}

.footer-grid p {
  max-width: 22rem;
  margin-top: 0.65rem;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.footer-owner {
  font-weight: 700;
}

.footer-owner a,
.creator-line a {
  color: var(--primary);
}

.footer-social-list {
  margin-top: 1rem;
}

.footer-social-list .social-icon-link::after {
  top: auto;
  bottom: calc(100% + 0.45rem);
  transform: translate(-50%, 0.15rem);
}

.footer-social-list .social-icon-link:hover::after,
.footer-social-list .social-icon-link:focus-visible::after {
  transform: translate(-50%, 0);
}

.creator-line {
  margin-top: 0.9rem;
  color: var(--ink-muted);
  font-weight: 700;
}

.footer-eyebrow {
  margin-top: 0;
}

.footer-word-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
  margin-top: 0.9rem;
}

.footer-link-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.footer-link {
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.copyright {
  border-top: 1px solid var(--border);
  padding: 1rem;
  color: var(--ink-muted);
  text-align: center;
  font-size: 0.78rem;
}

@media (min-width: 42rem) {
  .card-grid,
  .resource-grid,
  .agent-preview,
  .three-card-grid,
  .survey-grid,
  .board-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .studio-field-wide {
    grid-column: 1 / -1;
  }

  .app-list-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .app-screenshot-gallery {
    grid-auto-flow: initial;
    grid-template-columns: repeat(2, minmax(0, 10.5rem));
    overflow: visible;
    padding-bottom: 0;
  }

  .v2-word-tiles,
  .v2-rhythm-grid,
  .v2-spotlight-grid,
  .v2-survey-list,
  .v2-app-stack,
  .home-word-doors,
  .home-loop-grid,
  .home-board-grid,
  .home-backend-grid,
  .policy-list,
  .home-adult-principles,
  .standards-grid,
  .policy-route-grid,
  .channel-grid,
  .ops-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversation-flow {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

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

@media (min-width: 52rem) {
  .desktop-nav {
    display: flex;
  }

  .menu-button {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .survey-callout {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.75fr);
    align-items: center;
  }

  .book-teaser-card {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    align-items: start;
  }

  .v2-podcast-feature,
  .v2-practice-grid,
  .v2-toolbox-inner,
  .home-hero-inner,
  .home-feature-grid,
  .home-practice-section,
  .home-backend-section {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.85fr);
    align-items: center;
  }

  .share-hero-inner,
  .review-standard,
  .ops-split,
  .home-signal-inner,
  .podcast-hero-inner,
  .podcast-episode {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .podcast-episode .share-control {
    align-self: end;
    justify-self: end;
  }

  .home-hero-copy {
    padding-bottom: 1rem;
  }

  .home-console-head {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: end;
  }
}

@media (min-width: 64rem) {
  .header-social-list {
    display: flex;
    padding-left: 0.25rem;
  }

  .header-social-list .social-icon-link {
    width: 2.05rem;
    height: 2.05rem;
  }

  .header-social-list .social-icon-link svg {
    width: 1rem;
    height: 1rem;
  }

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

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

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

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

  .v2-start-grid {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  }

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

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

  .v2-rhythm-grid,
  .v2-spotlight-grid,
  .home-loop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .home-adult-band {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

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

  .studio-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
    align-items: start;
  }

  .ops-shell {
    grid-template-columns: 13.5rem minmax(0, 1fr);
  }

  .ops-sidebar {
    display: flex;
    min-height: 52rem;
    flex-direction: column;
  }
}

@media (max-width: 34rem) {
  .word-nav {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .home-word-door {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-word-cta {
    grid-column: 2;
  }

  .home-table-note {
    display: none;
  }

  .home-share-band,
  .studio-header,
  .studio-header-actions,
  .studio-section-head,
  .studio-publish-bar,
  .ops-header,
  .ops-panel-head,
  .ops-readiness {
    align-items: stretch;
    flex-direction: column;
  }

  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .share-control,
  .share-control-actions {
    width: 100%;
  }

  .studio-header-actions {
    align-items: stretch;
  }

  .ops-prototype-badge,
  .ops-readiness > span {
    align-self: flex-start;
  }
}
