@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --lime: #c6f355;
  --lime-strong: #b7ec3a;
  --lime-deep: #9ad41f;
  --ink: #0b0f0c;
  --ink-soft: #141a16;
  --glass: rgba(18, 24, 20, 0.55);
  --glass-border: rgba(255, 255, 255, 0.18);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --text: #1a221c;
  --text-soft: #5b675f;
  --surface: #f4f7f2;
  --surface-2: #e8eee4;
  --line: rgba(20, 30, 22, 0.1);
  --radius-pill: 999px;
  --radius-card: 28px;
  --shadow-nav: 0 10px 40px rgba(0, 0, 0, 0.28);
  --container: 1180px;
  --font-display: "Plus Jakarta Sans", "Manrope", sans-serif;
  --font-body: "Manrope", "Plus Jakarta Sans", sans-serif;
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: inset 0.35s ease;
}

.site-header.is-scrolled {
  inset: 10px 0 auto;
}

.nav-shell {
  pointer-events: auto;
  width: min(100% - 2rem, 1120px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0.75rem 0.7rem 1.25rem;
  background: rgba(12, 16, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-nav);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.logo-mark svg {
  width: 24px;
  height: 24px;
}

.nav-panel {
  display: flex;
  justify-content: center;
  gap: 1.55rem;
}

.nav-panel a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: var(--lime);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.55rem 0.55rem 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(183, 236, 58, 0.25);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--lime-strong);
  transform: translateY(-1px);
}

.nav-cta .icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--lime-deep);
  display: grid;
  place-items: center;
}

.nav-cta .icon-circle svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  background: #1a221c;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 14, 10, 0.52) 0%, rgba(8, 14, 10, 0.18) 48%, rgba(8, 14, 10, 0.32) 100%),
    linear-gradient(180deg, rgba(8, 14, 10, 0.22) 0%, rgba(8, 14, 10, 0.12) 42%, rgba(8, 14, 10, 0.42) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 1.15rem;
  text-wrap: balance;
}

.hero-copy .lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  padding-right: 0.55rem;
  box-shadow: 0 10px 28px rgba(183, 236, 58, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--lime-strong);
}

.btn-primary .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--lime-deep);
  display: grid;
  place-items: center;
}

.btn-primary .icon-circle svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  padding-inline: 1.5rem;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #1d2720;
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  opacity: 0.78;
}

.partner-row svg {
  height: 22px;
  width: auto;
}

.hero-card {
  justify-self: end;
  width: min(100%, 420px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
  padding: 1.1rem;
  border-radius: var(--radius-card);
  background: rgba(16, 22, 18, 0.42);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.hero-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
}

.hero-card-stat {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.hero-card-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 14rem;
}

.hero-card-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 160px;
  background: #1a221c;
}

.hero-card-media img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.hero-card-media.is-playing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(198, 243, 85, 0.18), transparent 70%);
  animation: sheen 1.8s linear infinite;
}

.hero-card-media button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-card-media button:hover,
.hero-card-media button:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--white);
}

.hero-card-media button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.section-head p {
  color: var(--text-soft);
  max-width: 34rem;
}

.eyebrow {
  display: inline-block;
  color: var(--lime-deep);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.article-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(20, 30, 22, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.article-card[hidden],
.article-card.is-filtered-out {
  display: none !important;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20, 30, 22, 0.12);
}

.article-card-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card:hover .article-card-media img {
  transform: scale(1.05);
}

.article-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.article-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.article-card h3 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.article-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  flex: 1;
}

.article-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}

.article-card .read-more svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.article-card:hover .read-more svg {
  transform: translateX(3px);
}

.feature-band-section {
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

.feature-band {
  background: var(--ink-soft);
  color: var(--white);
  border-radius: 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  box-shadow: 0 24px 60px rgba(11, 15, 12, 0.18);
}

.feature-band::before {
  content: "";
  position: absolute;
  inset: auto -8% -45% 45%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(198, 243, 85, 0.26), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.feature-band-copy {
  position: relative;
  z-index: 2;
  padding: clamp(1.8rem, 3.5vw, 3rem) clamp(1.6rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  letter-spacing: -0.035em;
  margin-bottom: 0.85rem;
  max-width: 14ch;
}

.feature-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.feature-band-media {
  position: relative;
  min-height: 100%;
  isolation: isolate;
}

.feature-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 26, 22, 0.35), transparent 42%);
  pointer-events: none;
  z-index: 1;
}

.feature-band-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}

.feature-band--studio {
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  background: #0b0f0c;
  box-shadow: 0 20px 48px rgba(11, 15, 12, 0.18);
}

.feature-band--studio::before {
  inset: auto auto -48% 12%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(198, 243, 85, 0.34), transparent 68%);
  z-index: 0;
}

.feature-band--studio .feature-band-copy {
  padding: clamp(2.4rem, 4.2vw, 3.4rem) clamp(2rem, 3.4vw, 3.2rem);
  justify-content: center;
  gap: 0;
  z-index: 2;
}

.feature-band--studio .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  line-height: 1.3;
  overflow: visible;
}

.feature-band--studio h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  line-height: 1.12;
  font-size: clamp(1.85rem, 3.1vw, 2.55rem);
}

.feature-band--studio p {
  margin-bottom: 1.75rem;
  max-width: 30rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.feature-band--studio .feature-band-media {
  background: #f2f4f1;
  display: grid;
  place-items: center;
  padding: 2rem 1.75rem;
}

.feature-band--studio .feature-band-media::after {
  display: none;
}

.feature-band--studio .feature-band-media img {
  width: min(100%, 300px);
  height: auto;
  min-height: 0;
  max-height: 280px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
}

.topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.topic {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.4rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.topic:hover {
  border-color: rgba(154, 212, 31, 0.55);
  transform: translateY(-3px);
}

.topic h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.topic p {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  background: #152019;
  color: var(--white);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 16, 12, 0.72), rgba(10, 16, 12, 0.55));
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
  max-width: 16ch;
}

.page-hero p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
}

.prose {
  max-width: 920px;
  margin: 0 auto;
  font-size: 1.125rem; /* ~18px */
  line-height: 1.7;
}

.prose h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  margin: 2.6rem 0 1rem;
  letter-spacing: -0.03em;
  padding-top: 0.35rem;
  border-top: 1px solid transparent;
}

.prose h2:not(:first-of-type) {
  border-top-color: var(--line);
  padding-top: 2rem;
}

.prose h3 {
  font-size: 1.18rem;
  margin: 1.7rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.prose p {
  margin-bottom: 1.05rem;
  color: var(--text-soft);
  font-size: 1em;
  line-height: 1.7;
}

.prose ul {
  margin: 0 0 1.2rem 1.1rem;
  list-style: disc;
  color: var(--text-soft);
}

.prose ol {
  margin: 0 0 1.2rem 1.25rem;
  color: var(--text-soft);
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose figure {
  margin: 1.8rem 0;
}

.prose figcaption {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.prose img {
  width: 100%;
  border-radius: 18px;
}

.prose > .article-toc,
.prose > .article-key,
.prose > .article-byline,
.prose > .share-bar,
.prose > .lee-tambien,
.prose > .kit-box,
.prose > .steps,
.prose > .callout,
.prose > .compare-grid,
.prose > .table-wrap,
.prose > .stat-band,
.prose > .checklist,
.prose > .meter-list,
.prose > .do-dont,
.prose > .quote-pull {
  margin: 1.6rem 0 1.8rem;
}

.article-toc {
  background: #f3f6f0;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.15rem 1.25rem 1.25rem;
}

.article-toc strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.article-toc ol {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.article-toc a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  border-bottom-color: var(--lime-deep);
  color: var(--lime-deep);
}

.article-key {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--ink-soft);
  color: var(--white);
  border-radius: 22px;
  padding: 1.25rem 1.35rem;
  position: relative;
  overflow: hidden;
}

.article-key::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(198, 243, 85, 0.28), transparent 70%);
  pointer-events: none;
}

.article-key-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--lime);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.article-key p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.kit-box {
  border: 1px dashed rgba(154, 212, 31, 0.65);
  background: rgba(198, 243, 85, 0.1);
  border-radius: 20px;
  padding: 1.2rem 1.3rem;
}

.kit-box h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.kit-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.kit-box li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.55rem;
  align-items: start;
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
}

.kit-box li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.35rem;
  border-radius: 2px;
  background: var(--lime-deep);
}

.steps {
  display: grid;
  gap: 0.85rem;
  counter-reset: guide-step;
}

.step {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  column-gap: 0.9rem;
  row-gap: 0.2rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.15rem;
}

.step::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  grid-column: 1;
  grid-row: 1 / span 8;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.step > * {
  grid-column: 2;
  min-width: 0;
}

.step strong {
  display: block;
  color: var(--ink);
  margin: 0.15rem 0 0.3rem;
  font-size: 1.02rem;
  line-height: 1.3;
}

.step p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.callout {
  border-radius: 18px;
  padding: 1.05rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.callout strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.callout p {
  margin: 0;
  font-size: 0.98rem;
}

.callout--tip {
  background: rgba(198, 243, 85, 0.12);
}

.callout--warn {
  background: rgba(212, 160, 23, 0.1);
}

.callout--note {
  background: rgba(74, 107, 138, 0.08);
}

.compare-grid,
.do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.compare-card,
.do-dont > div {
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
  background: var(--white);
}

.compare-card h3,
.do-dont h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.compare-card ul,
.do-dont ul {
  margin: 0;
  padding-left: 1.05rem;
}

.do-dont .do {
  background: rgba(198, 243, 85, 0.12);
  border-color: rgba(154, 212, 31, 0.45);
}

.do-dont .dont {
  background: rgba(180, 70, 70, 0.06);
  border-color: rgba(180, 70, 70, 0.22);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 0.94rem;
}

.data-table th,
.data-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  vertical-align: top;
}

.data-table th {
  background: #eef3ea;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table td:first-child {
  color: var(--ink);
  font-weight: 600;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat-band > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  text-align: left;
}

.stat-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-band span {
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.35;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  margin: 0;
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.65rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  font-size: 0.98rem;
}

.checklist li::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  border-radius: 4px;
  border: 2px solid var(--lime-deep);
  background:
    linear-gradient(var(--lime), var(--lime)) center/0.45rem 0.45rem no-repeat;
}

.meter-list {
  display: grid;
  gap: 0.85rem;
}

.meter {
  display: grid;
  gap: 0.35rem;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.meter-track {
  height: 10px;
  border-radius: 999px;
  background: #e4ebe0;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime-deep), var(--lime));
}

.quote-pull {
  margin: 2rem 0;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(198, 243, 85, 0.1);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.quote-pull span {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0;
}

.prose > .timeline-rail,
.prose > .fact-tiles,
.prose > .pair-list,
.prose > .recipe-card,
.prose > .alert-strip,
.prose > .flow-rail,
.prose > .score-grid,
.prose > .season-grid,
.prose > .layer-stack,
.prose > .insight-banner {
  margin: 1.7rem 0 1.9rem;
}

.timeline-rail {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 1.35rem;
}

.timeline-rail::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(180deg, var(--lime-deep), rgba(154, 212, 31, 0.15));
}

.timeline-item {
  position: relative;
  padding: 0 0 1.25rem 1.1rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.12rem;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 3px rgba(198, 243, 85, 0.35);
}

.timeline-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}

.timeline-item p {
  margin: 0;
  font-size: 0.96rem;
}

.timeline-item .when {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--lime-deep);
  letter-spacing: 0.02em;
}

.fact-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.fact-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  border-top: 3px solid var(--lime-deep);
}

.fact-tile.wide {
  grid-column: 1 / -1;
}

.fact-tile strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

.fact-tile p {
  margin: 0;
  font-size: 0.94rem;
}

.pair-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
}

.pair-list > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.35fr) 1fr;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.pair-list > div:last-child {
  border-bottom: 0;
}

.pair-list > div:nth-child(odd) {
  background: #f7faf5;
}

.pair-list dt,
.pair-list .term {
  font-weight: 800;
  color: var(--ink);
  font-size: 0.92rem;
}

.pair-list dd,
.pair-list .desc {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.recipe-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.recipe-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.2rem;
  background: var(--ink-soft);
  color: var(--white);
}

.recipe-card-head strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.recipe-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.recipe-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(198, 243, 85, 0.2);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
}

.recipe-card-body {
  padding: 1.1rem 1.2rem 1.25rem;
}

.recipe-card-body h3 {
  margin: 0 0 0.65rem;
  font-size: 0.98rem;
}

.recipe-card-body ul {
  margin: 0;
  padding-left: 1.1rem;
}

.alert-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1.15rem;
  border-radius: 14px;
  background: #fff8e8;
  border: 1px solid rgba(212, 160, 23, 0.35);
}

.alert-strip .mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: #8a6a0b;
  letter-spacing: 0.04em;
}

.alert-strip p {
  margin: 0;
  color: #5c4a1a;
  font-size: 0.96rem;
}

.flow-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.flow-rail > div {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 0.85rem;
  text-align: left;
}

.flow-rail > div:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -0.55rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: var(--lime-deep);
  font-weight: 800;
  background: var(--surface);
  padding: 0 0.1rem;
  font-size: 0.95rem;
}

.flow-rail strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.flow-rail p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.4;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.score-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.05rem;
}

.score-card .score-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  margin-bottom: 0.45rem;
}

.score-card .score-top strong {
  color: var(--ink);
  font-size: 1rem;
}

.score-card .score {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--lime-deep);
  font-size: 1.15rem;
}

.score-card p {
  margin: 0;
  font-size: 0.9rem;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.season-grid > div {
  border-radius: 16px;
  padding: 0.9rem 0.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 100%;
}

.season-grid > div:nth-child(1) { border-top: 3px solid #7eb6d9; }
.season-grid > div:nth-child(2) { border-top: 3px solid #c6f355; }
.season-grid > div:nth-child(3) { border-top: 3px solid #5f9d2e; }
.season-grid > div:nth-child(4) { border-top: 3px solid #c4a574; }

.season-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
}

.season-grid p,
.season-grid ul {
  margin: 0;
  font-size: 0.86rem;
  padding-left: 0.95rem;
}

.layer-stack {
  display: grid;
  gap: 0.4rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.layer-stack > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--ink);
  font-size: 0.94rem;
}

.layer-stack > div:nth-child(1) { background: #dcefd0; }
.layer-stack > div:nth-child(2) { background: #e8f4dc; }
.layer-stack > div:nth-child(3) { background: #f2f7ec; }
.layer-stack > div:nth-child(4) { background: #f7faf4; }

.layer-stack .layer-name {
  font-weight: 800;
  font-size: 0.82rem;
}

.insight-banner {
  background:
    linear-gradient(120deg, rgba(198, 243, 85, 0.22), transparent 55%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.25rem 1.35rem;
}

.insight-banner .kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--lime-deep);
  letter-spacing: 0.03em;
}

.insight-banner p {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .flow-rail,
  .season-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flow-rail > div:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .fact-tiles,
  .score-grid,
  .flow-rail,
  .season-grid,
  .pair-list > div {
    grid-template-columns: 1fr;
  }

  .layer-stack > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .compare-grid,
  .do-dont,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .article-key {
    grid-template-columns: 1fr;
  }
}

.article-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.article-top time,
.article-top [data-reading-time] {
  font-variant-numeric: tabular-nums;
}

.article-cat-link {
  color: var(--lime-deep);
  font-weight: 700;
}

.article-cat-link:hover,
.article-cat-link:focus-visible {
  text-decoration: underline;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(198, 243, 85, 0.12);
  border-radius: 14px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.article-byline strong {
  color: var(--ink);
  font-weight: 700;
}

.share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.share-bar-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.share-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.share-btn:hover,
.share-btn:focus-visible {
  background: rgba(198, 243, 85, 0.22);
  border-color: rgba(154, 212, 31, 0.55);
}

.lee-tambien {
  background: #f3f6f0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.15rem;
}

.lee-tambien strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.lee-tambien ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.lee-tambien a {
  color: var(--ink);
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: underline;
  text-decoration-color: rgba(154, 212, 31, 0.55);
  text-underline-offset: 0.18em;
}

.lee-tambien a:hover,
.lee-tambien a:focus-visible {
  color: var(--lime-deep);
}

.article-prev-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 2rem 0 1.5rem;
}

.article-prev-next a {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.05rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.article-prev-next a:hover,
.article-prev-next a:focus-visible {
  border-color: rgba(154, 212, 31, 0.65);
  background: rgba(198, 243, 85, 0.12);
}

.article-prev-next .pn-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.article-prev-next .pn-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  max-width: 28ch;
}

.article-prev-next .is-next .pn-label::after {
  content: " →";
  letter-spacing: 0;
}

.article-prev-next .is-prev .pn-label::before,
.article-prev-next a:not(.is-next) .pn-label::before {
  content: "← ";
  letter-spacing: 0;
}

.article-prev-next .is-next {
  text-align: left;
  justify-self: stretch;
}

.article-prev-next .is-next .pn-label {
  text-align: left;
}

.article-prev-next .is-empty {
  display: none;
}

.article-prev-next:has(.is-empty) {
  grid-template-columns: 1fr;
  max-width: 28rem;
}

.source-note {
  margin: 1.75rem 0 0.5rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
  background: none;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.source-note strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 800;
}

.source-note p {
  margin: 0;
  max-width: 62ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1200;
  background: transparent;
  pointer-events: none;
}

.reading-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--lime-deep), var(--lime));
  will-change: transform;
}

.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.25rem;
  z-index: 1100;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--ink-soft);
}

.back-to-top svg {
  display: block;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .article-prev-next {
    grid-template-columns: 1fr;
  }

  .article-prev-next .is-next {
    text-align: left;
  }

  .back-to-top {
    right: 0.85rem;
    bottom: 0.95rem;
  }
}

.breadcrumbs {
  margin-bottom: 1.1rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.84rem;
  font-weight: 600;
}

.breadcrumbs li {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
  opacity: 0.55;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--lime);
}

.page-hero .breadcrumbs li[aria-current="page"] {
  color: rgba(255, 255, 255, 0.95);
}

main > .breadcrumbs {
  width: min(100% - 2.5rem, var(--container));
  margin: 1rem auto 0;
}

main > .breadcrumbs li,
main > .breadcrumbs a {
  color: var(--text-soft);
}

main > .breadcrumbs a:hover {
  color: var(--lime-deep);
}

.hero-copy .breadcrumbs {
  margin-bottom: 1rem;
}

.context-box,
.page-context {
  background: rgba(198, 243, 85, 0.12);
  border: 1px solid rgba(154, 212, 31, 0.35);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  margin: 0 0 1.6rem;
}

.page-context {
  background: var(--white);
  border-color: var(--line);
  margin-bottom: 1.8rem;
}

.context-box p,
.page-context p {
  color: var(--text-soft);
  margin: 0 0 0.65rem;
  font-size: 0.98rem;
}

.context-box p:last-child,
.page-context p:last-child {
  margin-bottom: 0;
}

.page-context h2 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.context-box a,
.page-context a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-block {
  margin: 2.4rem 0 1.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.faq-block h2 {
  margin-top: 1.2rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--lime-deep);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
}

.related-section {
  padding: 1rem 0 4rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.related-card {
  display: grid;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(20, 30, 22, 0.1);
}

.related-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.related-card div {
  padding: 0 1rem 1.1rem;
}

.related-card span {
  display: block;
  color: var(--lime-deep);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.related-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.related-all {
  margin-top: 1.5rem;
  text-align: center;
}

@media (max-width: 980px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.info-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.6rem;
}

.info-card h2,
.form-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.info-list {
  display: grid;
  gap: 1rem;
}

.info-list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.info-list span,
.info-list a {
  color: var(--text-soft);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: #fbfcfb;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(154, 212, 31, 0.8);
  box-shadow: 0 0 0 4px rgba(198, 243, 85, 0.25);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
}

.form-status.is-ok {
  background: rgba(198, 243, 85, 0.25);
  color: #2f4a12;
}

.form-status.is-error {
  background: rgba(220, 80, 80, 0.12);
  color: #8a1f1f;
}

.legal-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.site-footer p {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0 1.5rem;
  padding-top: 1.4rem;
  display: grid;
  gap: 0.75rem;
  max-width: 72rem;
}

.footer-disclaimer p {
  margin: 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.55;
}

.footer-disclaimer strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 1100;
  width: min(100% - 2rem, 720px);
  margin-inline: auto;
  left: 0;
  right: 0;
  background: rgba(12, 16, 13, 0.92);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 1.2rem 1.3rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-actions .btn {
  min-height: 44px;
  font-size: 0.88rem;
}

[data-animate] {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms);
}

/* Never hide a full article body if JS animation fails to fire */
article.prose[data-animate],
article.container.prose {
  opacity: 1;
  transform: none;
  filter: none;
}

.anim-up {
  transform: translateY(32px);
  filter: blur(2px);
}

.anim-down {
  transform: translateY(-28px);
  filter: blur(2px);
}

.anim-left {
  transform: translateX(-36px);
  filter: blur(2px);
}

.anim-right {
  transform: translateX(36px);
  filter: blur(2px);
}

.anim-scale {
  transform: scale(0.92) translateY(18px);
  filter: blur(2px);
}

.anim-fade {
  transform: none;
  filter: blur(4px);
}

[data-animate].is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.site-header {
  animation: headerIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-bg {
  animation: heroZoom 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-overlay {
  animation: fadeSoft 1.1s ease both;
}

.articles-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(12, 16, 13, 0.28);
  backdrop-filter: blur(8px);
}

.article-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(154, 212, 31, 0.7);
}

.filter-chip.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.article-spotlight {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: stretch;
  margin-bottom: 2rem;
  background: var(--ink-soft);
  color: var(--white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-spotlight-media {
  min-height: 280px;
  overflow: hidden;
}

.article-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.article-spotlight:hover .article-spotlight-media img {
  transform: scale(1.04);
}

.article-spotlight-body {
  padding: 1.8rem 1.8rem 1.8rem 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.article-spotlight-body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: -0.03em;
}

.article-spotlight-body p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 36rem;
}

.master-guide-section {
  padding: 4.5rem 0 1.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 8% 0%, rgba(198, 243, 85, 0.14), transparent 55%),
    var(--surface);
}

.master-guide {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: 0 18px 48px rgba(20, 30, 22, 0.06);
}

.master-guide-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.28rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(20, 30, 22, 0.18);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.master-guide-header h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  letter-spacing: -0.035em;
  max-width: 18ch;
  margin-bottom: 0.85rem;
}

.master-guide-lead {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 46rem;
  margin-bottom: 1.5rem;
}

.master-guide-body > p {
  color: var(--text-soft);
  max-width: 52rem;
  margin-bottom: 1rem;
}

.master-guide-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.8rem 0 1.6rem;
}

.master-path {
  background: #f6f8f4;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.25rem 1.3rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.master-path-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.master-path-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--lime-deep);
  line-height: 1;
  padding-top: 0.15rem;
}

.master-path h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.master-path-top p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin: 0;
}

.master-path-start {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.master-path-start a,
.master-path-links a,
.master-guide-foot a:not(.btn) {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.master-path-start a:hover,
.master-path-links a:hover,
.master-guide-foot a:not(.btn):hover {
  color: var(--lime-deep);
}

.master-path-links {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.master-path-links li {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.master-path-links li::before {
  content: "→ ";
  color: var(--lime-deep);
  font-weight: 700;
}

.master-path-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none !important;
  width: fit-content;
  transition: background 0.25s ease, transform 0.25s ease;
}

.master-path-cta:hover,
.master-path-cta:focus-visible {
  background: #1c261f;
  color: var(--lime) !important;
  transform: translateY(-1px);
}

.master-guide-foot {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.master-guide-foot h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.master-guide-foot p {
  color: var(--text-soft);
  max-width: 48rem;
  margin-bottom: 1.2rem;
}

.master-guide-foot code {
  font-family: var(--font-body);
  font-size: 0.92em;
  background: rgba(198, 243, 85, 0.22);
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .master-guide-paths {
    grid-template-columns: 1fr;
  }

  .master-guide-header h2 {
    max-width: none;
  }
}

.solutions-section {
  background: #121512;
  color: var(--white);
  padding: 5.5rem 0;
  margin-top: 1rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.solutions-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.28rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.1rem;
}

.solutions-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.035em;
  margin-bottom: 1.6rem;
  max-width: 14ch;
}

.solutions-list {
  display: grid;
  gap: 0.35rem;
}

.solution-item {
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  width: 100%;
  border-radius: 16px;
  padding: 0.85rem 1rem 0.85rem 1.15rem;
  position: relative;
  cursor: pointer;
  transition: background 0.35s ease;
  font: inherit;
}

.solution-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 3px;
  border-radius: 99px;
  background: var(--lime);
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.solution-item.is-active {
  background: rgba(255, 255, 255, 0.06);
}

.solution-item.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.solution-item:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.03);
}

.solution-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.solution-desc {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  transition: grid-template-rows 0.4s ease, opacity 0.35s ease, margin-top 0.35s ease;
}

.solution-desc > span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.solution-item.is-active .solution-desc {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 0.55rem;
}

.solutions-visual {
  position: relative;
}

.solutions-visual-frame {
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  background: #1a221c;
}

.solutions-visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.7s ease;
}

.solutions-visual-frame img.is-swap {
  opacity: 0.35;
  transform: scale(1.03);
}

.solutions-stat {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  width: min(100% - 2rem, 250px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(16, 22, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.solutions-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.solutions-stat-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.solutions-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.solutions-stat p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

.insights-section {
  background: #fff;
  padding: 5.5rem 0 4.5rem;
}

.insights-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.28rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(20, 30, 22, 0.18);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.insights-section h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.035em;
  margin-bottom: 2.2rem;
  max-width: 16ch;
}

.insights-list {
  border-top: 1px solid var(--line);
}

.insight-row {
  display: grid;
  grid-template-columns: 7.5rem minmax(12rem, 0.95fr) minmax(14rem, 1.25fr) auto;
  gap: 1.25rem 1.75rem;
  align-items: start;
  padding: 1.55rem 0.35rem;
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: background 0.3s ease, padding 0.3s ease;
}

.insight-row:hover,
.insight-row:focus-visible {
  background: rgba(198, 243, 85, 0.08);
  outline: none;
}

.insight-date {
  color: #5f9d2e;
  font-weight: 700;
  font-size: 0.92rem;
  padding-top: 0.2rem;
}

.insight-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0;
}

.insight-cat {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.insight-desc {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
  max-width: 38rem;
}

.insight-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: transform 0.3s ease, background 0.3s ease;
  margin-top: 0.1rem;
}

.insight-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insight-row:hover .insight-arrow,
.insight-row:focus-visible .insight-arrow {
  transform: translate(3px, -3px);
  background: var(--lime);
}

.home-faq-section {
  background: #f3f6f1;
  padding: 5.5rem 0;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

.home-faq-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.28rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(20, 30, 22, 0.22);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  background: transparent;
}

.home-faq-intro h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  max-width: 10ch;
}

.home-faq-intro p {
  color: var(--text-soft);
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

.home-faq-list {
  display: grid;
  gap: 0.85rem;
}

.home-faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(20, 30, 22, 0.06);
  box-shadow: 0 8px 24px rgba(20, 30, 22, 0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.home-faq-item[open] {
  box-shadow: 0 12px 28px rgba(20, 30, 22, 0.08);
}

.home-faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
}

.home-faq-icon {
  width: 28px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
}

.home-faq-icon::before,
.home-faq-icon::after {
  content: "";
  position: absolute;
  background: var(--lime-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.home-faq-icon::before {
  width: 14px;
  height: 2px;
  left: 7px;
  top: 13px;
}

.home-faq-icon::after {
  width: 2px;
  height: 14px;
  left: 13px;
  top: 7px;
}

.home-faq-item[open] .home-faq-icon::after {
  opacity: 0;
  transform: scaleY(0);
}

.home-faq-answer {
  padding: 0 1.25rem 1.2rem;
}

.home-faq-answer p {
  color: var(--text-soft);
  margin: 0 0 0.7rem;
  font-size: 0.98rem;
}

.home-faq-answer p:last-child {
  margin-bottom: 0;
}

.home-faq-answer a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-faq-answer a:hover,
.home-faq-answer a:focus-visible {
  color: var(--lime-deep);
}

@media (max-width: 980px) {
  .home-faq-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .home-faq-intro h2 {
    max-width: none;
  }
}

.home-close {
  position: relative;
  isolation: isolate;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: end;
  padding: 6.5rem 0 5.5rem;
  overflow: hidden;
  color: var(--white);
}

.home-close-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.04);
  animation: closeDrift 18s ease-in-out infinite alternate;
}

.home-close-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 15, 12, 0.18) 0%, rgba(11, 15, 12, 0.72) 48%, rgba(11, 15, 12, 0.94) 100%),
    radial-gradient(ellipse 70% 55% at 18% 78%, rgba(198, 243, 85, 0.22), transparent 62%);
}

.home-close-inner {
  width: min(100% - 2.5rem, var(--container));
}

.home-close-copy {
  max-width: 40rem;
}

.home-close-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.28rem 0.9rem;
  margin-bottom: 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-close-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--lime);
  margin-bottom: 0.85rem;
}

.home-close-copy h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  letter-spacing: -0.03em;
  font-weight: 650;
  max-width: 18ch;
  margin-bottom: 0.9rem;
  color: var(--white);
}

.home-close-copy > p:not(.home-close-brand) {
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.home-close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.home-close + .site-footer,
main:has(.home-close) + .site-footer {
  margin-top: 0;
}

@keyframes closeDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (max-width: 720px) {
  .home-close {
    min-height: 560px;
    padding: 4.5rem 0 4rem;
    align-items: end;
  }

  .home-close-copy h2 {
    max-width: none;
  }
}

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  from {
    opacity: 0.35;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeSoft {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sheen {
  from {
    transform: translateX(-40%);
  }
  to {
    transform: translateX(40%);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .footer-grid,
  .article-grid,
  .topics,
  .article-spotlight,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .feature-band {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-band-media {
    order: -1;
  }

  .feature-band-media::after {
    background: linear-gradient(180deg, transparent 45%, rgba(20, 26, 22, 0.55));
  }

  .feature-band-media img {
    min-height: 240px;
    max-height: 280px;
  }

  .feature-band-copy {
    padding: 1.6rem 1.4rem 1.8rem;
  }

  .feature-band h2 {
    max-width: none;
  }

  .feature-band--studio {
    min-height: 0;
  }

  .feature-band--studio .feature-band-media {
    order: 0;
    padding: 1.6rem 1.3rem 1.8rem;
    min-height: 220px;
  }

  .feature-band--studio .feature-band-media img {
    max-height: 210px;
    width: min(100%, 240px);
    min-height: 0;
  }

  .feature-band--studio .feature-band-copy {
    padding: 1.8rem 1.5rem 2rem;
  }

  .feature-band--studio h2 {
    max-width: none;
  }

  .article-spotlight-body {
    padding: 1.4rem;
  }

  .solutions-copy h2 {
    max-width: none;
  }

  .solutions-visual-frame,
  .solutions-visual-frame img {
    min-height: 320px;
  }

  .insight-row {
    grid-template-columns: 1fr auto;
    gap: 0.55rem 1rem;
  }

  .insight-date {
    grid-column: 1 / -1;
  }

  .insight-title {
    grid-column: 1 / 2;
  }

  .insight-desc {
    grid-column: 1 / 2;
  }

  .insight-arrow {
    grid-column: 2;
    grid-row: 2 / 4;
    align-self: center;
  }

  .hero-card {
    justify-self: stretch;
    width: 100%;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    inset: 90px 1rem auto;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    background: rgba(12, 16, 13, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    backdrop-filter: blur(18px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-panel a {
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
  }

  .nav-panel a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  body.nav-open .nav-panel {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-grid {
    width: min(100% - 1.5rem, var(--container));
  }

  .hero {
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-card-media {
    min-height: 180px;
  }

  .partner-row {
    gap: 1rem 1.25rem;
  }

  .partner-row svg {
    height: 18px;
  }

  .legal-content,
  .info-card,
  .form-card {
    padding: 1.2rem;
  }
}

/* ——— Article interactives ——— */
.prose > .ix-block,
.prose > .article-rating,
.prose > .ix-poll,
.prose > .ix-quiz,
.prose > .ix-calc,
.prose > .ix-glossary {
  margin: 1.75rem 0;
}

.ix-block,
.article-rating,
.ix-poll,
.ix-quiz,
.ix-calc,
.ix-glossary {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  background: var(--white);
}

.ix-block-label,
.article-rating-label,
.ix-poll-label,
.ix-quiz-label,
.ix-calc-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.45rem;
}

.ix-block h3,
.article-rating strong,
.ix-poll strong,
.ix-quiz strong,
.ix-calc strong {
  display: block;
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.ix-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ix-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: #f4f6f2;
  color: var(--ink);
  border-radius: 999px;
  min-height: 40px;
  padding: 0.35rem 0.95rem;
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.ix-btn:hover,
.ix-btn:focus-visible {
  border-color: var(--lime-deep);
  outline: none;
}

.ix-btn.is-active {
  background: var(--lime);
  border-color: var(--lime-deep);
  font-weight: 600;
}

.ix-btn.is-correct {
  background: rgba(95, 157, 46, 0.18);
  border-color: #5f9d2e;
}

.ix-btn.is-wrong {
  background: rgba(180, 60, 50, 0.12);
  border-color: #b43c32;
}

.ix-btn:disabled {
  cursor: default;
  opacity: 0.92;
}

.ix-status {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.ix-quiz-q {
  margin: 0.85rem 0;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
}

.ix-quiz-q:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.ix-quiz-q p {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-weight: 600;
}

.ix-calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.ix-calc label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.ix-calc input,
.ix-calc select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.35rem 0.65rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.ix-calc-out {
  margin: 0.35rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(198, 243, 85, 0.14);
  color: var(--ink);
  font-size: 0.98rem;
}

.checklist-live {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.checklist-live li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 0.45rem 0;
  font-size: 0.98rem;
}

.checklist-live input {
  margin-top: 0.3rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--lime-deep);
}

.term-tip {
  border-bottom: 1px dotted var(--lime-deep);
  cursor: help;
  position: relative;
}

.term-tip::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  min-width: 12rem;
  max-width: 18rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 5;
}

.term-tip:hover::after,
.term-tip:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.ix-glossary details {
  border-top: 1px solid var(--line);
  padding: 0.55rem 0;
}

.ix-glossary details:first-of-type {
  border-top: 0;
}

.ix-glossary summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

.ix-glossary details p {
  margin: 0.4rem 0 0.2rem;
  font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-animate],
  .site-header,
  .hero-bg,
  .hero-overlay,
  .home-close-bg {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }

  .term-tip::after {
    transition: none !important;
  }
}
