:root {
  --page: #f5f7f8;
  --paper: #ffffff;
  --ink: #111314;
  --muted: #5e676b;
  --line: #d8dee2;
  --blue: #23a9df;
  --blue-dark: #0979a5;
  --green: #2f8f5b;
  --coral: #cb5148;
  --lilac: #9b68e4;
  --violet: #6840b9;
  --charcoal: #171819;
  --charcoal-2: #232527;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body.exploration {
  background: var(--charcoal);
  color: #f5f3ff;
}

body.home {
  min-height: 100vh;
  overflow-x: hidden;
  background: #050607;
  color: #f7f9fb;
}

a {
  color: inherit;
}

button,
a.button {
  min-height: 44px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
}

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

.site-header {
  width: 100%;
  border-bottom: 1px solid rgba(17, 19, 20, 0.1);
}

.exploration .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.home .site-header,
.practice .site-header {
  border-bottom-color: rgba(247, 249, 251, 0.13);
}

.nav-shell {
  width: min(100vw, var(--max));
  max-width: var(--max);
  margin: 0 auto;
  min-height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.wordmark,
.explore-wordmark {
  text-decoration: none;
  font-weight: 850;
  line-height: 1;
}

.wordmark {
  font-size: 2rem;
  color: var(--blue);
}

.explore-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 1.45rem;
}

.three-motion {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: var(--lilac);
  perspective: 700px;
}

.explore-wordmark .mark-blue {
  color: #42c3f4;
}

.explore-wordmark .mark-lilac,
.explore-wordmark .motion,
.three-motion .mark-lilac,
.three-motion .motion {
  color: var(--lilac);
}

.rotating-three {
  display: inline-block;
  transform-style: preserve-3d;
  animation: spinThree 5.5s linear infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
  background: rgba(17, 19, 20, 0.06);
  outline: none;
}

.exploration .nav-link {
  color: #c8c2d8;
}

.home .nav-link,
.practice .nav-link {
  color: #c7d0d6;
}

.exploration .nav-link:hover,
.exploration .nav-link:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.home .nav-link:hover,
.home .nav-link:focus-visible,
.practice .nav-link:hover,
.practice .nav-link:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: 84svh;
  width: 100%;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 24px 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  animation: heroLift 520ms ease-out both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 760;
}

.exploration .eyebrow {
  color: #8ee7ff;
}

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

.hero-title {
  margin: 0;
  color: var(--blue);
  font-size: 6rem;
  line-height: 0.92;
  font-weight: 900;
}

.exploration .hero-title {
  color: #ffffff;
  font-size: 4rem;
  max-width: 780px;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: #263034;
  font-size: 1.22rem;
}

.exploration .hero-lede {
  color: #d8d5e0;
}

.explore-hero .eyebrow,
.explore-hero .hero-title,
.explore-hero .hero-lede {
  margin-left: auto;
  margin-right: auto;
}

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

.explore-hero .actions {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 760;
  text-decoration: none;
  border: 1px solid transparent;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #2b2f31;
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--blue);
}

.exploration .button.primary {
  background: #ffffff;
  color: var(--charcoal);
}

.exploration .button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

.responsible-note {
  margin-top: 34px;
  max-width: 680px;
  color: #4b5559;
  font-size: 0.96rem;
}

.responsible-note details {
  margin-top: 8px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  isolation: isolate;
  animation: heroLift 680ms 120ms ease-out both;
}

.motion-field {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(17, 19, 20, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(17, 19, 20, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 19, 20, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
}

.motion-field::before,
.motion-field::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 10%;
  height: 2px;
  background: var(--blue);
  transform-origin: left center;
  animation: drawLine 900ms ease-out both;
}

.motion-field::before {
  top: 37%;
  transform: rotate(-10deg) scaleX(0);
}

.motion-field::after {
  top: 62%;
  background: var(--coral);
  transform: rotate(8deg) scaleX(0);
  animation-delay: 180ms;
}

.field-number {
  position: absolute;
  font-weight: 900;
  line-height: 1;
  color: rgba(17, 19, 20, 0.9);
}

.field-number.one {
  top: 22%;
  left: 10%;
  font-size: 7rem;
}

.field-number.two {
  top: 42%;
  left: 42%;
  font-size: 9rem;
  color: var(--green);
}

.field-number.three {
  right: 6%;
  bottom: 8%;
  font-size: 12rem;
  color: var(--blue);
}

.field-caption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  max-width: 250px;
  color: #384145;
  font-size: 0.98rem;
}

.page-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 24px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 780;
}

.section-title {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.08;
}

.section-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.steps {
  margin-top: 42px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 850;
}

.step h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.18;
}

.step p {
  max-width: 780px;
  color: #3f494d;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 760;
  color: var(--ink);
  list-style-position: inside;
}

details[open] summary {
  border-bottom: 1px solid var(--line);
}

.details-body {
  padding: 18px 18px 20px;
}

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

.example-grid h4,
.text-columns h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.pill-list,
.flow-list,
.study-list,
.system-list {
  margin: 0;
  padding-left: 20px;
}

.pill-list {
  columns: 2;
  column-gap: 30px;
}

.pill-list li,
.flow-list li,
.system-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.text-band {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.text-columns p {
  color: #384145;
}

.cta-band {
  background: var(--ink);
  color: #ffffff;
}

.cta-band .page-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-band p {
  max-width: 640px;
  margin: 12px 0 0;
  color: #cfd6da;
}

.site-footer {
  padding: 28px 24px;
  border-top: 1px solid rgba(17, 19, 20, 0.1);
  color: var(--muted);
  text-align: center;
  font-size: 0.93rem;
}

.exploration .site-footer {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: #aaa4b8;
}

.home .site-footer {
  border-top-color: rgba(247, 249, 251, 0.13);
  color: #c7d0d6;
}

.home-shell {
  width: min(100vw, var(--max));
  margin: 0 auto;
  padding: 0 24px;
}

.home-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 72px 0;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.34;
}

.home-hero .home-shell {
  position: relative;
  z-index: 1;
}

.home-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  margin: 0;
  font-size: clamp(3.25rem, 7.6vw, 6.3rem);
  font-weight: 900;
  line-height: 0.86;
}

.home-logo .mark-blue,
.home .explore-wordmark .mark-blue,
.practice .explore-wordmark .mark-blue {
  color: #42c3f4;
}

.home-logo .mark-lilac,
.home-logo .motion,
.home .explore-wordmark .mark-lilac,
.home .explore-wordmark .motion,
.practice .explore-wordmark .mark-lilac,
.practice .explore-wordmark .motion {
  color: var(--lilac);
}

.home-kicker {
  max-width: 820px;
  margin: 36px 0 0;
  color: #ffffff;
  font-size: clamp(1.85rem, 2.75vw, 2.85rem);
  line-height: 1.1;
  font-weight: 880;
}

.home-kicker span {
  display: block;
}

.home-intro {
  max-width: 860px;
  margin: 18px 0 0;
  color: #edf3f6;
  font-size: clamp(1.02rem, 1.08vw, 1.16rem);
  line-height: 1.62;
}

.home-lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: #dbe2e6;
  font-size: clamp(1.12rem, 1.35vw, 1.35rem);
  font-weight: 700;
}

.home-practices,
.home-secondary {
  padding: 76px 0;
  border-top: 1px solid rgba(247, 249, 251, 0.13);
}

.home .section-kicker {
  color: #8ee7ff;
}

.home .section-title {
  max-width: 720px;
  color: #ffffff;
}

.practice-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.practice-choice {
  min-width: 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(247, 249, 251, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.practice-choice h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.12;
}

.practice-choice p {
  margin: 16px 0 28px;
  color: #cfd6da;
}

.practice-choice .button {
  margin-top: auto;
}

.home .button.primary {
  color: #050607;
  background: #42c3f4;
}

.home .button.primary:hover,
.home .button.primary:focus-visible {
  background: #8ee7ff;
}

.home .button.secondary {
  color: #ffffff;
  border-color: rgba(247, 249, 251, 0.24);
}

.home .button.secondary:hover,
.home .button.secondary:focus-visible {
  border-color: #42c3f4;
  background: rgba(66, 195, 244, 0.08);
}

.home-explore {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.home-explore h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: 2.2rem;
  line-height: 1.08;
}

.home-explore p:not(.section-kicker) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #cfd6da;
  font-size: 1.08rem;
}

.limit-note {
  max-width: 840px;
  margin: 44px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 249, 251, 0.13);
  color: #aeb8bf;
  font-size: 0.96rem;
}

.explore-hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.explore-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
}

.explore-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 24px 50px;
  text-align: center;
}

.explore-hero.compact-hero {
  min-height: 52svh;
  place-items: end center;
}

.explore-hero.compact-hero .explore-hero-inner {
  padding-top: 92px;
  padding-bottom: 64px;
  text-align: left;
}

.compact-hero .eyebrow,
.compact-hero .hero-title,
.compact-hero .hero-lede,
.compact-hero .actions {
  margin-left: 0;
  margin-right: 0;
}

.hero-logo-large {
  --logo-size: clamp(4.85rem, 9.5vw, 8.55rem);
  position: relative;
  display: block;
  width: min(100%, calc(var(--logo-size) * 3.1));
  height: calc(var(--logo-size) * 1.71);
  margin-bottom: 46px;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--logo-size);
  font-weight: 900;
  line-height: 0.78;
  perspective: 700px;
}

.explore-hero .hero-logo-large {
  transform: translateX(12px);
}

.hero-logo-large .logo-one,
.hero-logo-large .logo-two,
.hero-logo-large .logo-three-motion {
  position: absolute;
}

.hero-logo-large .mark-blue {
  color: #42c3f4;
}

.hero-logo-large .mark-lilac,
.hero-logo-large .motion,
.hero-logo-large .three-motion {
  color: var(--lilac);
}

.hero-logo-large .motion {
  font-size: 0.68em;
  line-height: 0.78;
  margin-left: -0.02em;
}

.hero-logo-large .logo-one {
  top: 0.14em;
  left: 0.14em;
}

.hero-logo-large .logo-two {
  top: 0.46em;
  left: 0.65em;
}

.hero-logo-large .logo-three-motion {
  left: 0;
  bottom: 0;
  align-items: flex-end;
}

.explore-layout {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1fr;
}

.explore-content {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.content-area {
  min-width: 0;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.content-area h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.22;
  overflow-wrap: break-word;
}

.content-area p,
.content-area li {
  color: #d5d0df;
  overflow-wrap: break-word;
}

.content-area a {
  color: #8ee7ff;
  overflow-wrap: break-word;
  text-underline-offset: 3px;
}

.content-lede {
  font-size: 1.12rem;
}

.pull-line {
  margin: 26px 0;
  padding-left: 18px;
  border-left: 3px solid var(--lilac);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.28;
  font-weight: 780;
}

.table-wrap {
  margin-top: 26px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.example-table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #e7e2ee;
  font-size: 0.98rem;
  line-height: 1.45;
}

.example-table th,
.example-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
}

.example-table th {
  background: rgba(182, 134, 255, 0.18);
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-table td {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.example-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}

.example-table th:nth-child(1),
.example-table td:nth-child(1) {
  width: 30%;
}

.example-table th:nth-child(2),
.example-table td:nth-child(2) {
  width: 38%;
}

.example-table th:nth-child(3),
.example-table td:nth-child(3) {
  width: 32%;
}

.example-table th:nth-child(3),
.example-table td:nth-child(3) {
  border-left: 1px solid rgba(142, 231, 255, 0.18);
}

.example-table td:nth-child(1) {
  color: #ffffff;
  font-weight: 720;
}

.example-table td:nth-child(3) {
  background: rgba(66, 195, 244, 0.08);
  color: #f0fbff;
}

.example-table tbody tr:hover {
  background: rgba(182, 134, 255, 0.08);
}

.system-list strong,
.study-list strong {
  color: #ffffff;
}

.study-list li {
  margin-bottom: 18px;
}

.sequence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.sequence-grid > div {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.sequence-grid h3,
.sequence-grid h4 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.02rem;
}

.sequence-grid p {
  margin: 0;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawLine {
  to {
    transform: rotate(var(--line-rotate, 0deg)) scaleX(1);
  }
}

.motion-field::before {
  --line-rotate: -10deg;
}

.motion-field::after {
  --line-rotate: 8deg;
}

@keyframes spinThree {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

@media (max-width: 860px) {
  .nav-shell {
    padding: 0 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .explore-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 42px;
    gap: 30px;
  }

  .hero-title {
    font-size: 4.7rem;
  }

  .exploration .hero-title {
    font-size: 3rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .field-number.one {
    font-size: 5rem;
  }

  .field-number.two {
    font-size: 6.5rem;
  }

  .field-number.three {
    font-size: 8rem;
  }

  .step,
  .text-columns,
  .cta-band .page-section,
  .example-grid,
  .practice-choice-grid,
  .sequence-grid,
  .home-explore {
    grid-template-columns: 1fr;
  }

  .step {
    gap: 18px;
  }

  .practice-choice {
    min-height: auto;
  }

}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .nav-shell {
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    column-gap: 14px;
    row-gap: 4px;
  }

  .nav-link {
    flex: 0 1 auto;
    padding: 6px 0;
    font-size: 0.92rem;
  }

  .hero-inner,
  .page-section,
  .explore-layout,
  .explore-hero-inner,
  .home-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-shell {
    width: 100vw;
    max-width: 100vw;
  }

  .home-logo,
  .home-kicker,
  .home-intro,
  .home-lede,
  .home .section-title,
  .practice-choice-grid,
  .home-explore,
  .limit-note {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .home h1,
  .home h2,
  .home h3,
  .home p {
    overflow-wrap: break-word;
  }

  .explore-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-copy,
  .hero-lede,
  .actions,
  .responsible-note {
    max-width: 354px;
  }

  .explore-hero .eyebrow,
  .explore-hero .hero-title,
  .explore-hero .hero-lede,
  .explore-hero .actions {
    width: min(100%, 354px);
  }

  .hero-title {
    font-size: 3.4rem;
  }

  .home-hero {
    min-height: auto;
    padding: 54px 0 62px;
  }

  .home-logo {
    font-size: clamp(2.25rem, 9.5vw, 2.65rem);
  }

  .home-kicker {
    margin-top: 28px;
    font-size: 1.34rem;
    line-height: 1.16;
  }

  .home-intro {
    font-size: 1rem;
    line-height: 1.55;
  }

  .home-lede {
    margin-top: 20px;
    font-size: 1.03rem;
  }

  .home-kicker,
  .home-intro,
  .home-lede,
  .practice-choice p,
  .home-explore p:not(.section-kicker),
  .limit-note {
    width: auto !important;
    max-width: min(28ch, calc(100vw - 36px)) !important;
  }

  .home-practices,
  .home-secondary {
    padding: 56px 0;
  }

  .practice-choice-grid {
    gap: 14px;
    margin-top: 28px;
  }

  .home-explore h2 {
    font-size: 1.75rem;
  }

  .exploration .hero-title {
    max-width: 300px;
    font-size: 2rem;
  }

  .compact-hero .hero-title {
    max-width: 354px;
  }

  .explore-hero.compact-hero {
    min-height: auto;
  }

  .explore-hero.compact-hero .explore-hero-inner {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-logo-large {
    --logo-size: clamp(4.4rem, 19vw, 5rem);
    margin-bottom: 34px;
  }

  .hero-logo-large .motion {
    font-size: 0.68em;
  }

  .table-wrap {
    overflow-x: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .example-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 12px;
    font-size: 0.98rem;
  }

  .example-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .example-table,
  .example-table tbody,
  .example-table tr,
  .example-table td {
    display: block;
    width: 100%;
  }

  .example-table tr {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
  }

  .example-table tbody tr:nth-child(even),
  .example-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.045);
  }

  .example-table td {
    padding: 14px 16px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .example-table td:first-child {
    border-top: 0;
  }

  .example-table td::before {
    display: block;
    margin-bottom: 5px;
    color: #b686ff;
    font-size: 0.72rem;
    font-weight: 780;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .example-table td:nth-child(1)::before {
    content: "Observación";
  }

  .example-table td:nth-child(2)::before {
    content: "Proceso probable";
  }

  .example-table td:nth-child(3)::before {
    content: "Acción útil";
  }

  .section-title {
    font-size: 2rem;
  }

  .pill-list {
    columns: 1;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .related-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-visual,
  .motion-field {
    overflow: hidden;
  }
}

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

body.practice {
  min-height: 100vh;
  overflow-x: hidden;
  background: #050607;
  color: #f7f9fb;
}

.practice main {
  background: #050607;
}

.practice-shell {
  width: min(100vw, 920px);
  margin: 0 auto;
  padding: 0 24px;
}

.practice-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 64px 0;
}

.practice-logo-stack {
  display: inline-block;
}

.practice-logo {
  margin: 0;
  color: #42c3f4;
  font-size: 2.7rem;
  line-height: 0.88;
  font-weight: 900;
}

.practice-eyebrow {
  margin: 0 0 18px;
  color: #8ee7ff;
  font-size: 0.95rem;
  font-weight: 780;
}

.practice-title {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.7rem, 9vw, 7rem);
  line-height: 0.9;
  font-weight: 900;
}

.practice-sublogo {
  display: block;
  margin: 0.08em 0 0;
  color: #9b68e4;
  font-size: 4.6rem;
  line-height: 0.8;
  font-weight: 900;
  transform-origin: left top;
}

.practice-lede {
  max-width: 760px;
  margin: 36px 0 0;
  color: #f7f9fb;
  font-size: 1.32rem;
}

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

.practice .button.primary {
  color: #050607;
  background: #42c3f4;
}

.practice .button.primary:hover,
.practice .button.primary:focus-visible {
  background: #8ee7ff;
}

.practice .button.secondary {
  color: #f7f9fb;
  background: transparent;
  border-color: rgba(247, 249, 251, 0.24);
}

.practice .button.secondary:hover,
.practice .button.secondary:focus-visible {
  border-color: #42c3f4;
  background: rgba(66, 195, 244, 0.08);
}

.practice-responsible {
  max-width: 820px;
  margin-top: 34px;
  color: #c7d0d6;
  font-size: 0.98rem;
}

.inline-toggle {
  appearance: none;
  display: inline;
  margin: 0 0 0 0.35em;
  padding: 0;
  border: 0;
  background: transparent;
  color: #42c3f4;
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-toggle:hover,
.inline-toggle:focus-visible {
  color: #8ee7ff;
  outline: none;
}

.hide-toggle {
  display: inline-block;
  margin: 12px 0 0;
}

.collapsible-panel[hidden] {
  display: none;
}

.collapsible-panel {
  max-width: 820px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 249, 251, 0.16);
  color: #dbe2e6;
}

.collapsible-panel p:first-child {
  margin-top: 0;
}

.collapsible-panel section {
  margin-top: 30px;
}

.practice-section {
  border-top: 1px solid rgba(247, 249, 251, 0.13);
  padding: 76px 0;
}

.practice-section h1,
.practice-section h2 {
  max-width: 820px;
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 3.3rem;
  line-height: 1.02;
}

.practice-section p {
  max-width: 820px;
  color: #dbe2e6;
  font-size: 1.08rem;
}

.practice .example-title {
  margin-top: 0;
  color: #ffffff;
  font-weight: 780;
}

.practice details {
  max-width: 920px;
  margin-top: 24px;
  border-color: rgba(247, 249, 251, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.practice summary {
  color: #ffffff;
}

.practice details[open] summary {
  border-bottom-color: rgba(247, 249, 251, 0.16);
}

.practice .details-body {
  color: #dbe2e6;
}

.practice .pill-list,
.practice .flow-list {
  color: #dbe2e6;
}

.practice .pill-list {
  columns: 3;
}

.practice .flow-list {
  max-width: 820px;
}

.practice li {
  margin-bottom: 8px;
}

.signal-highlight {
  max-width: 820px;
  margin-top: 26px;
  padding: 18px 0 4px 18px;
  border-left: 3px solid #42c3f4;
}

.signal-highlight p {
  margin-top: 0;
  color: #ffffff;
  font-weight: 850;
}

.practice-section-small {
  padding: 48px 0;
}

.practice-section-small h2 {
  font-size: 1.7rem;
}

.practice-section-small p {
  max-width: 720px;
  font-size: 0.95rem;
}

.practice-explore-cta {
  display: grid;
  justify-items: center;
  gap: 20px;
  width: fit-content;
  max-width: 100%;
  margin: 34px auto 0;
}

.hero-logo-large.practice-explore-logo {
  --logo-size: clamp(2.2rem, 4.8vw, 2.55rem);
  width: 60%;
  min-width: 0;
  height: calc(var(--logo-size) * 1.71);
  margin: 0 0 0 -35px;
}

.explore-more-button {
  margin-top: 0;
}

.practice-footer {
  padding: 32px 24px;
  border-top: 1px solid rgba(247, 249, 251, 0.13);
  color: #c7d0d6;
  text-align: center;
}

@media (max-width: 720px) {
  .practice-shell {
    max-width: 390px;
    margin-left: 0;
    margin-right: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .practice-hero {
    min-height: auto;
    padding: 56px 0 68px;
  }

  .practice-logo {
    font-size: 5rem;
  }

  .practice-sublogo {
    font-size: 2.2rem;
  }

  .practice-lede {
    margin-top: 28px;
    font-size: 1.12rem;
  }

  .practice-actions {
    flex-direction: column;
  }

  .practice .button {
    width: 100%;
  }

  .practice-section {
    padding: 58px 0;
  }

  .practice-section h1,
  .practice-section h2 {
    font-size: 2.05rem;
  }

  .practice-section-small h2 {
    font-size: 1.45rem;
  }

  .practice .pill-list {
    columns: 1;
  }
}
