:root {
  --cream: #f8f6f2;
  --paper: #fffdf8;
  --raised: #f1eee8;
  --ink: #1f2833;
  --muted: #626b75;
  --line: #c5c6c7;
  --line-soft: rgba(197, 198, 199, 0.55);
  --coral: #ff6f61;
  --aqua: #94e1d9;
  --teal: #45a29e;
  --shadow: 0 18px 50px rgba(31, 40, 51, 0.08);
  --shadow-strong: 0 24px 70px rgba(31, 40, 51, 0.14);
  --r-sm: 16px;
  --r-md: 24px;
  --r-lg: 40px;
  --r-xl: 72px;
  --pill: 9999px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 48px;
  --max: 1160px;
  --fast: 180ms;
  --normal: 420ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 111, 97, 0.14), transparent 320px),
    var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
summary {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(940px, calc(100% - 28px));
  min-height: 64px;
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 16px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line-soft);
  border-radius: var(--pill);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: 52px;
}

.brand img {
  width: 52px;
  height: 52px;
}

.nav-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--ink);
  border: 0;
  border-radius: var(--pill);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--cream);
}

.site-nav {
  position: absolute;
  top: 70px;
  right: 0;
  left: 0;
  display: none;
  gap: 4px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: 12px 14px;
  color: var(--muted);
  border-radius: var(--pill);
  font-size: 0.9rem;
  font-weight: 850;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(148, 225, 217, 0.34);
  outline: none;
}

.section-pad {
  width: min(var(--max), calc(100% - 28px));
  margin-inline: auto;
  padding: 62px 0;
}

.hero {
  display: grid;
  gap: var(--space-6);
  min-height: auto;
  padding-top: 42px;
}

.hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  animation: fade-up var(--normal) ease both;
}

.hero-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: min(760px, 100%);
  margin: 0 0 var(--space-4);
  padding: 8px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--pill);
  box-shadow: var(--shadow);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.28;
  text-wrap: pretty;
}

.eyebrow {
  color: var(--teal);
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

h2 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
}

h3 {
  font-size: 1.24rem;
  line-height: 1.1;
}

.hero-text,
.section-heading p,
.community-card p,
.about-copy p,
.proof-main p,
.video-copy p,
.guide-card span,
.resource-card span,
.final-cta p,
.site-footer p {
  color: var(--muted);
  text-wrap: pretty;
}

.hero-text {
  max-width: 720px;
  margin: var(--space-5) 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  line-height: 1.38;
}

.hero-visual {
  position: relative;
  display: none;
  width: min(100%, 330px);
  min-height: 170px;
  margin: 0 auto var(--space-5);
}

.hero-visual-card {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-visual-card.main {
  inset: 18px 44px auto;
  min-height: 136px;
  gap: var(--space-2);
  padding: var(--space-4);
  background: var(--paper);
  color: var(--ink);
  font-weight: 950;
}

.hero-visual-card.main img {
  width: 82px;
  height: 82px;
}

.hero-visual-card.small {
  min-height: 46px;
  padding: 10px 14px;
  background: var(--aqua);
  color: var(--ink);
  border-radius: var(--pill);
  font-size: 0.85rem;
  font-weight: 950;
}

.hero-visual-card.one {
  left: 0;
  top: 84px;
  transform: rotate(-5deg);
}

.hero-visual-card.two {
  right: 0;
  top: 20px;
  background: var(--coral);
  color: #fff;
  transform: rotate(5deg);
}

.hero-actions {
  display: grid;
  gap: var(--space-3);
  width: min(430px, 100%);
  margin-top: var(--space-6);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  cursor: pointer;
  transition: transform var(--fast) ease, box-shadow var(--fast) ease, background var(--fast) ease;
}

.button::after {
  content: "→";
  margin-left: 10px;
}

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

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

.button.full {
  width: 100%;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  outline: none;
}

.button:active {
  transform: translateY(0);
}

.button:disabled,
.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.chip-row,
.community-pills,
.marquee-track,
.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.chip-row {
  justify-content: center;
  margin-top: var(--space-6);
}

.chip-row span,
.community-pills span,
.marquee-track span,
.value-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(148, 225, 217, 0.38);
  border: 1px solid rgba(69, 162, 158, 0.18);
  border-radius: var(--pill);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.route-panel {
  position: relative;
  width: min(980px, 100%);
  margin-inline: auto;
  padding: var(--space-4);
  background: var(--raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: float-in 520ms 100ms ease both;
}

.route-panel::before {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -76px;
  width: 210px;
  height: 160px;
  background: var(--aqua);
  border-radius: 55% 55% 0 0;
  opacity: 0.7;
}

.route-panel-head,
.route-list {
  position: relative;
  z-index: 1;
}

.route-panel-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  font-weight: 950;
}

.route-list {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-3) 0 0;
  margin: 0;
  list-style: none;
  counter-reset: route;
}

.route-list li {
  counter-increment: route;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: var(--space-3);
  align-content: start;
  padding: var(--space-4);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  min-width: 0;
}

.route-list li::before {
  content: counter(route);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--coral);
  border-radius: var(--r-sm);
  font-weight: 950;
}

.route-list strong {
  display: block;
  min-width: 0;
  line-height: 1.16;
}

.route-list li > strong,
.route-list li > span {
  grid-column: 2;
}

.route-list span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.38;
  margin-top: 4px;
  min-width: 0;
}

.route-list li > div {
  min-width: 0;
}

.section-heading {
  max-width: 900px;
}

.section-heading.compact {
  max-width: 840px;
}

.section-heading p {
  max-width: 760px;
  margin: var(--space-4) 0 0;
  font-size: 1.04rem;
}

.now-proof {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
}

.now-proof strong {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 0.92;
}

.now-proof span {
  max-width: 360px;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.28;
}

.stats-grid,
.topic-grid,
.mini-card-grid,
.guide-grid,
.resource-grid {
  display: grid;
  gap: var(--space-4);
}

.stat-card,
.chart-card,
.topic-grid article,
.community-card,
.about-card,
.video-feature,
.video-list a:not(.button),
.guide-card,
.resource-card,
.final-cta > div {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: none;
}

.stats-grid {
  margin-top: var(--space-7);
}

.stat-card {
  min-height: 250px;
  padding: var(--space-6);
  display: grid;
  align-content: start;
  gap: var(--space-4);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  background: rgba(148, 225, 217, 0.32);
  border-radius: 36px;
  transform: rotate(12deg);
}

.stat-card p,
.stat-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.12;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 950;
}

.stat-card strong {
  display: block;
  margin: 0 0 var(--space-1);
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 13vw, 6.2rem);
  font-weight: 500;
  line-height: 0.92;
}

.stat-card.accent strong {
  color: var(--coral);
}

.stat-card span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.42;
}

.stat-visual {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-top: auto;
}

.stat-rings {
  display: flex;
  align-items: end;
  min-height: 74px;
}

.stat-rings span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-right: -16px;
  color: var(--ink);
  background: rgba(148, 225, 217, 0.52);
  border: 1px solid rgba(69, 162, 158, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.stat-rings span:nth-child(2) {
  width: 72px;
  height: 72px;
  background: rgba(255, 111, 97, 0.18);
}

.stat-rings span:nth-child(3) {
  width: 62px;
  height: 62px;
  background: rgba(197, 198, 199, 0.26);
}

.stat-bar-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.stat-bar-row span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
}

.stat-bar-row i {
  display: block;
  height: 12px;
  background: rgba(197, 198, 199, 0.28);
  border-radius: var(--pill);
  overflow: hidden;
}

.stat-bar-row b {
  display: block;
  height: 100%;
  background: var(--coral);
  border-radius: inherit;
}

.stat-visual.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-visual.compare span {
  display: grid;
  min-height: 74px;
  align-items: center;
  padding: 12px;
  color: var(--ink);
  background: var(--raised);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.12;
}

.stat-visual.compare .after {
  color: #fff;
  background: var(--teal);
  border-color: rgba(69, 162, 158, 0.4);
}

.source-note {
  margin: var(--space-4) 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.chart-card {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding: var(--space-5);
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(118px, 0.9fr) minmax(0, 1.7fr) 58px;
  gap: var(--space-3);
  align-items: center;
}

.bar-row span,
.bar-row strong {
  font-size: 0.9rem;
  font-weight: 900;
}

.bar-row div {
  height: 16px;
  background: var(--raised);
  border-radius: var(--pill);
  overflow: hidden;
}

.bar-row i {
  display: block;
  width: calc(var(--value) * 2.5%);
  max-width: 100%;
  height: 100%;
  background: var(--line);
  border-radius: inherit;
}

.bar-row.highlight i {
  background: var(--coral);
}

.bar-row.highlight span,
.bar-row.highlight strong {
  color: var(--coral);
}

.use-section {
  background: var(--teal);
  color: #fff;
  border-radius: var(--r-xl) var(--r-xl) var(--r-lg) var(--r-lg);
  width: min(var(--max), calc(100% - 28px));
  margin: var(--space-7) auto;
  overflow: hidden;
}

.use-inner {
  width: 100%;
  padding-right: clamp(24px, 5vw, 64px);
  padding-left: clamp(24px, 5vw, 64px);
}

.use-section .section-heading {
  max-width: 860px;
}

.use-section h2,
.use-section p,
.use-section .eyebrow {
  color: #fff;
}

.use-section .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.2);
}

.marquee {
  margin-top: var(--space-7);
  margin-inline: calc(clamp(24px, 5vw, 64px) * -1);
  overflow: hidden;
}

.marquee-track {
  padding-inline: clamp(24px, 5vw, 64px);
}

.marquee-track {
  width: max-content;
  flex-wrap: nowrap;
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  background: rgba(255, 255, 255, 0.9);
  border-color: transparent;
}

.topic-grid article,
.guide-card,
.resource-card {
  min-height: 178px;
  padding: var(--space-5);
  transition: transform var(--fast) ease, border-color var(--fast) ease, box-shadow var(--fast) ease;
}

.topic-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  gap: var(--space-4);
}

.topic-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: rgba(148, 225, 217, 0.42);
  border: 1px solid rgba(69, 162, 158, 0.24);
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.topic-copy {
  display: grid;
  gap: var(--space-2);
}

.topic-grid article:hover,
.guide-card:hover,
.resource-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 111, 97, 0.45);
  box-shadow: var(--shadow);
}

.topic-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.38;
}

.community-card {
  display: grid;
  gap: var(--space-6);
  padding: var(--space-6);
  background:
    radial-gradient(circle at 100% 100%, rgba(148, 225, 217, 0.38), transparent 34%),
    var(--paper);
}

.community-visual {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background:
    radial-gradient(circle at 50% 38%, rgba(148, 225, 217, 0.38), transparent 35%),
    linear-gradient(135deg, rgba(255, 111, 97, 0.1), transparent 54%),
    #fff;
  overflow: hidden;
}

.community-core {
  display: grid;
  justify-items: center;
  gap: var(--space-2);
  width: min(76%, 310px);
  padding: var(--space-6);
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.community-core img {
  width: 82px;
  height: 82px;
}

.community-core strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.05;
}

.community-core span {
  color: var(--teal);
  font-weight: 950;
}

.community-orbit {
  position: absolute;
  z-index: 1;
  padding: 12px 18px;
  color: var(--ink);
  border-radius: 22px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(31, 40, 51, 0.12);
}

.community-orbit.one {
  left: 8%;
  top: 24%;
  background: var(--aqua);
  transform: rotate(-7deg);
}

.community-orbit.two {
  right: 9%;
  bottom: 22%;
  color: #fff;
  background: var(--coral);
  transform: rotate(6deg);
}

.community-card p {
  max-width: 760px;
  margin: var(--space-4) 0 0;
}

.mini-card-grid span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: var(--space-4);
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  font-weight: 900;
  line-height: 1.18;
}

.about-card {
  display: grid;
  gap: var(--space-6);
  padding: var(--space-6);
  overflow: hidden;
}

.about-copy p {
  max-width: 780px;
  margin: var(--space-4) 0 0;
}

.about-proof {
  display: grid;
  gap: var(--space-4);
  width: min(100%, 420px);
  margin-inline: auto;
}

.paco-photo {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  background: var(--raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.paco-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(31, 40, 51, 0.42), transparent);
  pointer-events: none;
}

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

.proof-main {
  padding: var(--space-6);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(148, 225, 217, 0.42), transparent 36%),
    var(--ink);
  border-radius: var(--r-md);
}

.proof-main span,
.credential-grid span {
  display: block;
  margin: 0 0 var(--space-2);
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-main strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  font-weight: 500;
  line-height: 0.9;
}

.proof-main p {
  margin: var(--space-3) 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.credential-grid {
  display: grid;
  gap: var(--space-3);
}

.credential-grid article {
  min-height: 118px;
  padding: var(--space-4);
  background: var(--raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
}

.credential-grid span {
  color: var(--teal);
}

.credential-grid strong {
  display: block;
  line-height: 1.18;
}

.video-layout {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.video-layout.single-video {
  max-width: 920px;
}

.video-feature {
  display: grid;
  overflow: hidden;
}

.video-placeholder,
.video-thumb-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  background: var(--paper);
  border: 0;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb-link {
  border-bottom: 1px solid var(--line-soft);
}

.video-thumb-link.is-empty {
  min-height: 280px;
  background:
    radial-gradient(circle at 20% 25%, rgba(148, 225, 217, 0.5), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(255, 111, 97, 0.32), transparent 30%),
    var(--paper);
}

.video-thumb-link.is-empty::before {
  content: "Video destacado de Mil Cerebros";
  position: absolute;
  inset: auto var(--space-5) 50%;
  z-index: 1;
  transform: translateY(50%);
  color: var(--ink);
  font-weight: 950;
  text-align: center;
}

.video-thumb-link picture,
.video-thumb-link img {
  width: 100%;
  height: 100%;
}

.video-thumb-link img {
  object-fit: cover;
  background:
    radial-gradient(circle at 20% 25%, rgba(148, 225, 217, 0.5), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(255, 111, 97, 0.32), transparent 30%),
    var(--paper);
}

.video-thumb-link.is-empty img {
  opacity: 0;
}

.video-cover {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 100%;
  height: 100%;
  padding: var(--space-6);
  text-align: center;
  background:
    radial-gradient(circle at 20% 25%, rgba(148, 225, 217, 0.5), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(255, 111, 97, 0.32), transparent 30%),
    var(--paper);
}

.video-cover::before,
.video-cover::after {
  content: "";
  position: absolute;
  border-radius: var(--r-lg);
  opacity: 0.92;
}

.video-cover::before {
  right: 12%;
  bottom: 14%;
  width: 34%;
  height: 28%;
  background: var(--aqua);
  transform: rotate(8deg);
}

.video-cover::after {
  left: 11%;
  bottom: 17%;
  width: 24%;
  height: 23%;
  background: var(--coral);
  transform: rotate(-10deg);
}

.video-logo-mark,
.video-kicker,
.video-cover strong,
.video-cover small,
.play-badge {
  position: relative;
  z-index: 1;
}

.video-logo-mark {
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  margin-bottom: var(--space-4);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line-soft);
  border-radius: var(--pill);
  box-shadow: var(--shadow);
}

.video-logo-mark img {
  width: 74px;
  height: 74px;
}

.video-kicker {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.video-cover strong {
  max-width: 620px;
  margin-top: var(--space-2);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 0.95;
  text-wrap: balance;
}

.video-cover small {
  max-width: 420px;
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.play-badge {
  position: absolute;
  right: var(--space-5);
  bottom: var(--space-5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  color: #fff;
  background: var(--coral);
  border-radius: var(--pill);
  font-weight: 950;
}

.video-placeholder:hover .video-cover,
.video-placeholder:focus-visible .video-cover {
  transform: scale(1.015);
}

.video-placeholder:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.video-embed {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border: 0;
}

.video-copy {
  padding: var(--space-5);
}

.video-copy p {
  margin: var(--space-2) 0 0;
}

.video-copy h3 {
  max-width: 640px;
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.video-list {
  display: grid;
  gap: var(--space-3);
}

.video-list a:not(.button) {
  min-height: 92px;
  display: grid;
  gap: var(--space-2);
  align-content: start;
  padding: var(--space-4);
  transition: transform var(--fast) ease, border-color var(--fast) ease;
}

.video-list span,
.guide-card p,
.resource-card p {
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.video-list strong {
  color: var(--ink);
}

.guide-card {
  display: grid;
  gap: var(--space-3);
  align-content: start;
}

.guide-art {
  display: grid;
  place-items: center;
  height: 118px;
  background: var(--aqua);
  border-radius: var(--r-md);
}

.guide-art.alt {
  background: var(--coral);
}

.guide-art.teal {
  background: var(--teal);
}

.guide-art span {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
}

.guide-card a,
.resource-card a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 111, 97, 0.12);
  border: 1px solid rgba(255, 111, 97, 0.28);
  border-radius: var(--pill);
  font-weight: 950;
  line-height: 1.1;
}

.resource-card {
  display: grid;
  gap: var(--space-3);
  align-content: start;
}

.resource-card span,
.guide-card span {
  line-height: 1.4;
}

.resource-card.featured {
  color: #fff;
  background: var(--teal);
}

.resource-card.featured h3,
.resource-card.featured p,
.resource-card.featured span,
.resource-card.featured a {
  color: #fff;
}

.resource-card.featured a {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.contact-card {
  display: grid;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-7);
  background:
    radial-gradient(circle at 100% 0%, rgba(148, 225, 217, 0.32), transparent 34%),
    var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: clamp(2.1rem, 5vw, 4.1rem);
}

.contact-card p:not(.eyebrow) {
  max-width: 620px;
  margin: var(--space-4) 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-email {
  display: inline-flex;
  min-height: 50px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  color: var(--ink);
  background: rgba(148, 225, 217, 0.38);
  border: 1px solid rgba(69, 162, 158, 0.32);
  border-radius: var(--pill);
  font-weight: 950;
  overflow-wrap: anywhere;
}

.contact-email:hover {
  background: var(--aqua);
}

.ghost-button {
  width: fit-content;
  min-height: 44px;
  padding: 11px 16px;
  color: var(--muted);
  background: var(--raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--pill);
  font-weight: 900;
}

.final-cta > div {
  display: grid;
  gap: var(--space-5);
  justify-items: start;
  padding: var(--space-7);
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 111, 97, 0.2), transparent 34%),
    var(--paper);
}

.final-cta p {
  max-width: 640px;
  margin: 0;
}

.site-footer {
  width: min(var(--max), calc(100% - 28px));
  margin: var(--space-6) auto 0;
  display: grid;
  gap: var(--space-6);
  padding: var(--space-7) var(--space-6);
  color: #fff;
  background: var(--teal);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.site-footer img {
  width: 76px;
  height: 76px;
}

.site-footer p {
  max-width: 360px;
  margin: var(--space-3) 0 0;
  color: #fff;
  font-weight: 850;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.site-footer a {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--pill);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer .small {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

@media (min-width: 620px) {
  .hero-actions {
    display: flex;
    justify-content: center;
    width: auto;
  }

  .button {
    min-width: 180px;
  }

  .stats-grid,
  .topic-grid,
  .mini-card-grid,
  .credential-grid,
  .guide-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 9px 12px;
  }

  .route-panel {
    padding: var(--space-6);
  }

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

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

  .about-card {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
    align-items: center;
  }

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

  .video-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  }

  .resource-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }

  .contact-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-footer {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}

@media (max-width: 520px) {
  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    min-height: 60px;
    padding: 7px 8px 7px 12px;
  }

  .brand,
  .brand img {
    width: 48px;
    height: 48px;
  }

  .section-pad {
    width: calc(100% - 28px);
    padding: 46px 0;
  }

  .hero {
    gap: var(--space-5);
    padding-top: 34px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 10.5vw, 3.25rem);
    line-height: 1.02;
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.15rem);
    line-height: 1.06;
  }

  .hero-pill,
  .eyebrow {
    max-width: 100%;
    padding: 7px 12px;
    font-size: 0.76rem;
    text-align: center;
  }

  .hero-text {
    max-width: 32ch;
    margin-top: var(--space-4);
    font-size: 1.02rem;
    line-height: 1.42;
  }

  .hero-actions {
    width: 100%;
    margin-top: var(--space-5);
  }

  .button,
  .contact-email,
  .guide-card a,
  .resource-card a,
  .ghost-button {
    width: 100%;
    min-height: 50px;
  }

  .chip-row {
    gap: 7px;
    margin-top: var(--space-5);
  }

  .chip-row span,
  .marquee-track span,
  .value-tags span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .route-panel,
  .community-card,
  .about-card,
  .contact-card,
  .final-cta > div {
    padding: var(--space-4);
    border-radius: var(--r-md);
  }

  .route-panel-head {
    grid-template-columns: 44px 1fr;
    padding: var(--space-3);
    font-size: 0.94rem;
  }

  .route-panel-head img {
    width: 44px;
    height: 44px;
  }

  .route-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: var(--space-3);
  }

  .route-list li::before {
    width: 32px;
    height: 32px;
  }

  .route-list span,
  .topic-grid p,
  .resource-card span,
  .guide-card span,
  .community-card p,
  .about-copy p,
  .contact-card p:not(.eyebrow),
  .final-cta p {
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .now-proof {
    align-items: flex-start;
    gap: var(--space-2);
    padding: 12px 14px;
  }

  .now-proof strong {
    font-size: clamp(2.8rem, 14vw, 3.8rem);
  }

  .stats-grid,
  .topic-grid,
  .mini-card-grid,
  .guide-grid,
  .resource-grid {
    gap: var(--space-3);
  }

  .stat-card,
  .topic-grid article,
  .guide-card,
  .resource-card {
    min-height: auto;
    padding: var(--space-4);
  }

  .use-section {
    width: calc(100% - 28px);
    border-radius: var(--r-lg);
  }

  .use-inner {
    padding: var(--space-6) var(--space-4);
  }

  .use-section h2 {
    font-size: clamp(2.25rem, 10vw, 3.15rem);
  }

  .use-section .section-heading p {
    max-width: 33ch;
  }

  .marquee {
    margin-inline: calc(var(--space-4) * -1);
  }

  .marquee-track {
    padding-inline: var(--space-4);
  }

  .community-card h2,
  .about-card h2,
  .final-cta h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }

  .mini-card-grid span {
    min-height: 54px;
    padding: 13px 14px;
  }

  .about-proof {
    width: min(100%, 320px);
  }

  .paco-photo {
    border-radius: var(--r-md);
  }

  .proof-main {
    padding: var(--space-4);
  }

  .proof-main strong {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .credential-grid article {
    min-height: auto;
  }

  .video-copy,
  .video-actions {
    display: grid;
  }

  .play-badge {
    right: var(--space-3);
    bottom: var(--space-3);
    min-height: 44px;
    padding: 11px 15px;
    font-size: 0.9rem;
  }

  .contact-email {
    justify-self: stretch;
  }

  .site-footer {
    width: calc(100% - 28px);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }

  .bar-row {
    grid-template-columns: 1fr 54px;
    gap: var(--space-2);
  }

  .bar-row span {
    grid-column: 1 / -1;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

/* Mobile cleanup layer: keeps iPhone visual, light, and readable. */
@media (max-width: 700px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    background: var(--cream) !important;
  }

  body::before,
  body::after,
  main::before,
  main::after {
    display: none !important;
    content: none !important;
  }

  .site-header {
    position: sticky;
    top: max(10px, env(safe-area-inset-top));
    width: calc(100% - 28px) !important;
    min-height: 62px !important;
    margin: 10px auto 0 !important;
    padding: 8px 10px 8px 12px !important;
    background: rgba(255, 253, 248, 0.94) !important;
    border-radius: var(--pill) !important;
  }

  .brand,
  .brand img,
  .site-header .brand img {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
  }

  .nav-toggle {
    width: 46px !important;
    height: 46px !important;
    background: var(--paper) !important;
    border: 1px solid var(--line-soft) !important;
    box-shadow: none !important;
  }

  .nav-toggle span:not(.sr-only) {
    background: var(--ink) !important;
  }

  .section-pad {
    width: min(100% - 32px, 420px) !important;
    padding: 42px 0 !important;
  }

  .hero {
    padding-top: 26px !important;
    gap: 18px !important;
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-pill {
    max-width: 30ch !important;
    margin-bottom: 18px !important;
    padding: 8px 13px !important;
    font-size: 0.78rem !important;
    line-height: 1.22 !important;
    box-shadow: none !important;
  }

  .hero-visual {
    display: block;
  }

  h1 {
    width: min(100%, 390px) !important;
    max-width: 390px !important;
    font-size: clamp(2.35rem, 9.7vw, 3.05rem) !important;
    line-height: 1.02 !important;
    text-align: center !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
    hyphens: none !important;
    white-space: normal !important;
  }

  h2 {
    font-size: clamp(2.15rem, 10.5vw, 3.3rem) !important;
    line-height: 1.02 !important;
  }

  h3 {
    font-size: 1.08rem !important;
    line-height: 1.14 !important;
  }

  .hero-text,
  .section-heading p,
  .community-card p,
  .about-copy p,
  .video-copy p,
  .guide-card span,
  .resource-card span,
  .final-cta p,
  .site-footer p {
    font-size: 0.98rem !important;
    line-height: 1.42 !important;
  }

  .hero-text {
    max-width: 31ch !important;
    margin-top: 16px !important;
  }

  .hero-actions {
    width: 100% !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }

  .button,
  .guide-card a,
  .resource-card a,
  .ghost-button,
  .contact-email {
    width: 100% !important;
    min-height: 52px !important;
    padding: 13px 16px !important;
    font-size: 0.98rem !important;
  }

  .chip-row {
    max-width: 320px;
    justify-content: center;
    gap: 8px !important;
    margin-top: 18px !important;
  }

  .chip-row span {
    min-height: 32px !important;
    padding: 7px 10px !important;
    font-size: 0.8rem !important;
  }

  .chip-row span:nth-child(n + 4) {
    display: none;
  }

  .route-panel {
    display: none !important;
  }

  .now-section,
  .learning-section,
  .community-section,
  .about-section,
  .youtube-section,
  .guides-section,
  .resources-section,
  .contact-section,
  .final-cta {
    background-image: none !important;
  }

  .section-heading,
  .section-heading.compact {
    max-width: 100% !important;
  }

  .eyebrow {
    margin-bottom: 12px !important;
    padding: 7px 11px !important;
    font-size: 0.72rem !important;
    box-shadow: none !important;
  }

  .now-proof {
    width: 100% !important;
    align-items: center !important;
    margin-top: 18px !important;
    padding: 14px !important;
    border-radius: 24px !important;
  }

  .now-proof strong {
    font-size: 3.2rem !important;
  }

  .now-proof span {
    font-size: 0.92rem !important;
    line-height: 1.25 !important;
  }

  .stats-grid,
  .topic-grid,
  .mini-card-grid,
  .guide-grid,
  .resource-grid {
    gap: 12px !important;
  }

  .stat-card,
  .topic-grid article,
  .guide-card,
  .resource-card,
  .community-card,
  .about-card,
  .contact-card,
  .final-cta > div {
    min-height: auto !important;
    padding: 18px !important;
    border-radius: 28px !important;
    box-shadow: none !important;
  }

  .stats-grid .stat-card:nth-child(n + 3),
  .topic-grid article:nth-child(n + 5),
  .guide-grid .guide-card:nth-child(n + 3),
  .resource-grid .resource-card:nth-child(n + 4) {
    display: none !important;
  }

  .use-section {
    width: min(100% - 32px, 420px) !important;
    margin: 24px auto !important;
    border-radius: 36px !important;
    background: var(--teal) !important;
  }

  .use-inner {
    width: 100% !important;
    padding: 26px 18px !important;
  }

  .use-section h2 {
    max-width: 10ch !important;
    font-size: clamp(2.35rem, 11vw, 3.35rem) !important;
  }

  .marquee {
    margin-top: 22px !important;
    margin-inline: -18px !important;
  }

  .marquee-track {
    padding-inline: 18px !important;
  }

  .marquee-track span {
    min-height: 34px !important;
    padding: 7px 12px !important;
    font-size: 0.82rem !important;
  }

  .community-card h2,
  .about-card h2,
  .final-cta h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem) !important;
  }

  .community-card p:nth-of-type(n + 3),
  .about-copy p:nth-of-type(n + 4) {
    display: none !important;
  }

  .mini-card-grid span {
    min-height: 48px !important;
    padding: 12px 14px !important;
    border-radius: 18px !important;
  }

  .about-proof {
    width: min(100%, 300px) !important;
    gap: 12px !important;
  }

  .paco-photo {
    width: min(100%, 280px) !important;
    max-height: 340px !important;
    aspect-ratio: 4 / 5 !important;
    margin: 0 auto !important;
    border-radius: 30px !important;
  }

  .paco-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 50% 38% !important;
  }

  .proof-main {
    padding: 18px !important;
    border-radius: 26px !important;
  }

  .proof-main strong {
    font-size: 3.4rem !important;
  }

  .credential-grid article:nth-child(n + 3) {
    display: none !important;
  }

  .video-feature {
    border-radius: 28px !important;
    overflow: hidden !important;
  }

  .video-copy,
  .video-actions {
    display: grid !important;
  }

  .play-badge {
    right: 12px !important;
    bottom: 12px !important;
    min-height: 42px !important;
    padding: 10px 14px !important;
    font-size: 0.86rem !important;
  }

  .guide-art {
    height: 86px !important;
    border-radius: 22px !important;
  }

  .guide-art span {
    font-size: 2.6rem !important;
  }

  .contact-card h2 {
    font-size: 2.5rem !important;
  }

  .site-footer {
    width: min(100% - 32px, 420px) !important;
    margin-top: 24px !important;
    padding: 24px 18px !important;
    border-radius: 36px 36px 0 0 !important;
    text-align: center !important;
  }

  .site-footer img {
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto !important;
  }

  .site-footer p {
    max-width: 26ch !important;
    margin-inline: auto !important;
  }

  .site-footer nav {
    justify-content: center !important;
    gap: 8px !important;
  }

  .site-footer a {
    max-width: 100% !important;
    padding: 8px 11px !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    line-height: 1.1 !important;
    overflow-wrap: anywhere !important;
  }
}

/* Final visual pass: cleaner hierarchy for mobile and less text-heavy sections. */
h1 > span {
  display: block;
}

.now-section h2,
.learning-section h2,
.community-card h2 {
  text-wrap: balance;
}

.now-section .section-heading {
  display: grid;
  gap: var(--space-4);
}

.now-section .section-heading > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
}

.now-proof {
  box-shadow: 0 18px 40px rgba(31, 40, 51, 0.08);
}

.stats-grid .stat-card:first-child {
  background:
    radial-gradient(circle at 100% 12%, rgba(255, 111, 97, 0.14), transparent 34%),
    var(--paper);
}

.learning-section .section-heading.compact {
  max-width: 760px;
}

.learning-section .eyebrow {
  max-width: 100%;
  white-space: normal;
}

.topic-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
    var(--paper);
}

.topic-grid article:nth-child(2n) .topic-icon {
  background: rgba(255, 111, 97, 0.14);
  border-color: rgba(255, 111, 97, 0.2);
}

@media (min-width: 900px) {
  .community-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
    align-items: center;
  }

  .community-card .mini-card-grid,
  .community-card > .button {
    grid-column: 1 / -1;
  }

  .community-card h2 {
    max-width: 8.5ch;
    font-size: clamp(3.2rem, 7vw, 5.2rem);
  }
}

@media (max-width: 700px) {
  .now-section .section-heading,
  .learning-section .section-heading,
  .community-card > div:first-child {
    text-align: left !important;
  }

  .now-section h2,
  .learning-section h2,
  .community-card h2 {
    max-width: 10ch !important;
    font-size: clamp(2.25rem, 10vw, 3rem) !important;
    line-height: 1.02 !important;
  }

  .now-section .section-heading > p:not(.eyebrow),
  .community-card p {
    max-width: 31ch !important;
  }

  .now-proof {
    grid-template-columns: auto minmax(0, 1fr) !important;
    text-align: left !important;
  }

  .stats-grid .stat-card:first-child {
    min-height: 168px !important;
  }

  .stats-grid .stat-card:nth-child(n + 3) {
    display: grid !important;
  }

  .stat-card {
    gap: 14px !important;
  }

  .stat-card strong {
    font-size: 3.6rem !important;
  }

  .stat-rings {
    min-height: 58px !important;
  }

  .stat-rings span {
    width: 68px !important;
    height: 68px !important;
    margin-right: -12px !important;
    font-size: 0.68rem !important;
  }

  .stat-rings span:nth-child(2) {
    width: 58px !important;
    height: 58px !important;
  }

  .stat-rings span:nth-child(3) {
    width: 50px !important;
    height: 50px !important;
  }

  .stat-bar-row {
    grid-template-columns: 72px minmax(0, 1fr) !important;
    gap: 8px !important;
    margin-top: 8px !important;
  }

  .stat-bar-row span {
    font-size: 0.72rem !important;
  }

  .stat-visual.compare {
    gap: 8px !important;
  }

  .stat-visual.compare span {
    min-height: 58px !important;
    padding: 10px !important;
    border-radius: 17px !important;
    font-size: 0.76rem !important;
  }

  .topic-grid article {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 18px !important;
  }

  .topic-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 14px !important;
    font-size: 0.72rem !important;
  }

  .topic-grid p {
    font-size: 0.95rem !important;
    line-height: 1.38 !important;
  }

  .community-card {
    gap: 18px !important;
  }

  .community-visual {
    min-height: 210px !important;
    border-radius: 28px !important;
  }

  .community-core {
    width: min(78%, 270px) !important;
    padding: 20px !important;
    border-radius: 28px !important;
  }

  .community-core img {
    width: 66px !important;
    height: 66px !important;
  }

  .community-core strong {
    font-size: 1.2rem !important;
  }

  .community-orbit {
    padding: 9px 13px !important;
    font-size: 0.82rem !important;
    border-radius: 18px !important;
  }

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

  .mini-card-grid span {
    justify-content: center !important;
    min-height: 50px !important;
    padding: 10px !important;
    text-align: center !important;
    font-size: 0.88rem !important;
  }
}
