﻿:root {
  --ink: #23211c;
  --muted: #6e675c;
  --line: #ddd5c4;
  --hairline: #2a271f;
  --paper: #f4eedf;
  --card: #fdfaf1;
  --white: #fdfaf1;
  --teal: #1f6f64;
  --blue: #31476b;
  --coral: #c63d22;
  --accent: #c63d22;
  --gold: #9a7a2c;
  --violet: #31476b;
  --magenta: #c63d22;
  --mint: #1f6f64;
  --ink-deep: #1c1a15;
  --soft-teal: #e7e9dd;
  --soft-blue: #e6e6da;
  --soft-coral: #f3e0d4;
  --shadow: 0 14px 40px rgba(35, 33, 28, 0.10);
  --hard-shadow: 4px 4px 0 rgba(35, 33, 28, 0.92);
  --font-display: Fraunces, Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --grain: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="240" height="240"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/></filter><rect width="240" height="240" filter="url(%23n)"/></svg>');
}

@font-face {
  font-family: "UgeeOfficial";
  src: url("/assets/img/brands/ugee-iconfont.woff2") format("woff2");
  font-display: block;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image: var(--grain);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

p,
ul,
ol {
  margin: 0;
}

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

button,
select,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1.5px solid var(--hairline);
  background: rgba(244, 238, 223, 0.96);
  backdrop-filter: blur(10px);
}

.notice {
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
}

.notice .wrap {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}

.notice a {
  color: #f7d77f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
}

.brand img {
  width: 72px;
  height: auto;
}

.brand span {
  max-width: 130px;
  line-height: 1.05;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.nav-toggle,
.nav-toggle-cb {
  display: none;
}

.has-drop {
  position: relative;
}

.has-drop > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.has-drop::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

.caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
}

.drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  display: grid;
  gap: 0.1rem;
  background: var(--card);
  border: 1.5px solid var(--hairline);
  border-radius: 4px;
  box-shadow: var(--hard-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  z-index: 40;
}

.has-drop:hover .drop,
.has-drop:focus-within .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drop li a {
  display: block;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.drop li a:hover,
.drop li a:focus-visible {
  background: var(--paper);
}

.nav-cta {
  margin-left: 0.3rem;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 640px;
  color: var(--ink);
  background: transparent;
}

.hero .wrap {
  min-height: 640px;
  display: grid;
  align-content: center;
  gap: 2rem;
  padding: 4rem 0;
}

.kicker {
  margin-bottom: 0.9rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.kicker::before {
  content: "— ";
  color: var(--accent);
  font-weight: 900;
}

.home-hero .kicker {
  display: inline-block;
  padding: 0.45rem 0;
  border-top: 1.5px solid var(--hairline);
  border-bottom: 1.5px solid var(--hairline);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 780px;
  font-size: 3.7rem;
  line-height: 1.04;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.22rem;
}

.lead {
  max-width: 680px;
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.68rem 1.1rem;
  border: 1.5px solid var(--hairline);
  border-radius: 3px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: var(--hard-shadow);
}

.btn.primary {
  background: var(--ink);
  color: var(--paper);
}

.btn.secondary {
  border-color: var(--hairline);
  background: transparent;
  color: var(--ink);
}

.btn.light {
  border-color: var(--hairline);
  background: var(--card);
  color: var(--ink);
}

.btn.light:hover,
.btn.light:focus-visible {
  color: var(--accent);
}

.btn.coral {
  border-color: #8f2b16;
  background: var(--accent);
  color: #fdf6ec;
}

.quick-finder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: end;
  max-width: 980px;
  margin-top: 1.5rem;
  padding: 1.1rem;
  border: 1.5px solid var(--hairline);
  border-radius: 4px;
  background: var(--card);
  box-shadow: var(--hard-shadow);
}

.home-hero .quick-finder {
  position: relative;
  max-width: 910px;
  border-width: 2px;
  border-radius: 17px 11px 15px 12px / 12px 18px 11px 17px;
  background-color: rgba(253, 250, 241, 0.94);
  background-image:
    var(--grain),
    repeating-linear-gradient(0deg, rgba(31, 111, 100, 0.07) 0 1px, transparent 1px 31px);
  box-shadow: 5px 5px 0 rgba(35, 33, 28, 0.9);
  transform: rotate(-0.16deg);
}

.home-hero .quick-finder::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: -9px;
  height: 18px;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 760 24" preserveAspectRatio="none"><path d="M5 15 C 86 7, 165 18, 244 11 C 323 4, 404 18, 480 10 C 582 -1, 660 15, 756 8" fill="none" stroke="%232a271f" stroke-width="3.2" stroke-linecap="round" opacity="0.82"/><path d="M52 19 C 190 13, 332 17, 480 15 C 592 13, 674 17, 726 14" fill="none" stroke="%23c63d22" stroke-width="2.3" stroke-linecap="round" opacity="0.55"/></svg>') no-repeat center / 100% 100%;
}

.home-hero .quick-finder::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 54px;
  height: 48px;
  border-left: 1.5px solid rgba(42, 39, 31, 0.65);
  border-top: 1.5px solid rgba(42, 39, 31, 0.65);
  border-radius: 4px 0 14px 0;
  background: linear-gradient(135deg, rgba(244, 238, 223, 0.1), rgba(198, 61, 34, 0.14));
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.comparison-filters {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: end;
  margin: 1rem 0;
  padding: 1rem;
  border: 1.5px solid var(--hairline);
  border-radius: 4px;
  background: var(--card);
}

.finder-field {
  display: grid;
  gap: 0.35rem;
}

.finder-field label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-hero .finder-field label {
  color: var(--ink);
}

.finder-field select,
.comparison-filters input,
.comparison-filters select {
  width: 100%;
  min-height: 46px;
  border: 1.5px solid var(--hairline);
  border-radius: 3px;
  color: var(--ink);
  background: var(--card);
  padding: 0 0.8rem;
}

.home-hero .finder-field select {
  border-width: 1.7px;
  border-radius: 11px 8px 12px 7px / 8px 12px 7px 11px;
  background-color: #fff8e7;
  box-shadow: inset 0 -3px 0 rgba(198, 61, 34, 0.08);
}

.home-hero .finder-field select:focus-visible {
  outline: 3px solid rgba(31, 111, 100, 0.25);
  outline-offset: 2px;
}

.finder-result {
  margin-top: 1rem;
  max-width: 760px;
  color: var(--ink);
  font-weight: 700;
}

.home-hero .finder-result {
  display: inline-block;
  padding: 0.12rem 0.35rem 0.18rem 0;
  background: linear-gradient(transparent 58%, rgba(242, 193, 20, 0.38) 58%);
}

.finder-result a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.band {
  padding: 4.5rem 0;
}

.band.tight {
  padding: 2rem 0 4rem;
}

.band.soft {
  background: var(--paper);
}

.band.blue {
  background: var(--soft-blue);
}

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

.section-head p {
  max-width: 620px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  border: 1.5px solid var(--hairline);
  border-radius: 4px;
  background: var(--card);
  box-shadow: none;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--hard-shadow);
}

.product-card {
  display: grid;
  grid-template-rows: 190px auto;
  overflow: hidden;
}

.product-card .media {
  display: grid;
  place-items: center;
  background: #ffffff;
  border-bottom: 0.5px solid var(--line);
  padding: 1rem;
}

.product-card img {
  width: 170px;
  height: 170px;
  object-fit: contain;
}

/* Imagen y titulo de la tarjeta clicables (mas superficie de clic hacia la ficha) */
.product-card a.media {
  text-decoration: none;
  cursor: pointer;
}

.product-card a.media img {
  transition: transform 180ms ease;
}

.product-card a.media:hover img {
  transform: scale(1.03);
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 3px;
}

/* Acciones en filas de tablas de ranking: "Ver analisis" + boton Amazon */
.row-actions {
  white-space: nowrap;
}

.row-actions .btn {
  margin: 0 0.3rem 0.3rem 0;
}

.product-card .body,
.path-card,
.method-card,
.quote-card {
  padding: 1rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.65rem 0;
}

.tag {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  background: var(--soft-teal);
  color: #07534d;
  padding: 0.2rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.tag.blue {
  background: var(--soft-blue);
  color: #1c4482;
}

.tag.coral {
  background: var(--soft-coral);
  color: #914131;
}

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

.price {
  margin-top: 0.85rem;
  font-weight: 900;
}

.home-hero,
.home-hero .wrap {
  min-height: 620px;
}

.home-hero {
  overflow: hidden;
  border-bottom: 1.5px solid var(--hairline);
  background-color: #f4eedf;
  background-image:
    var(--grain),
    linear-gradient(90deg, rgba(31, 111, 100, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(198, 61, 34, 0.055) 1px, transparent 1px),
    linear-gradient(110deg, rgba(253, 250, 241, 0.65), rgba(244, 238, 223, 0.1) 62%);
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -8vw;
  width: min(72vw, 860px);
  pointer-events: none;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 680 720" fill="none"><path d="M42 137 C 192 92, 358 106, 566 56" stroke="%23c63d22" stroke-width="7" stroke-linecap="round" opacity="0.18"/><path d="M24 484 C 165 434, 292 474, 472 423 C 545 402, 602 384, 651 356" stroke="%232a271f" stroke-width="4" stroke-linecap="round" stroke-dasharray="2 14" opacity="0.18"/><path d="M95 627 C 234 563, 408 621, 588 532" stroke="%231f6f64" stroke-width="5" stroke-linecap="round" opacity="0.15"/></svg>') no-repeat left center / contain;
  opacity: 0.95;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 22px;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 32" preserveAspectRatio="none"><path d="M0 18 C 82 10, 159 26, 242 17 C 356 5, 444 25, 557 14 C 671 4, 751 27, 867 17 C 1008 5, 1113 23, 1244 14 C 1325 8, 1381 12, 1440 18 L1440 32 L0 32 Z" fill="%23f4eedf"/><path d="M0 18 C 82 10, 159 26, 242 17 C 356 5, 444 25, 557 14 C 671 4, 751 27, 867 17 C 1008 5, 1113 23, 1244 14 C 1325 8, 1381 12, 1440 18" fill="none" stroke="%232a271f" stroke-width="2" opacity="0.9"/></svg>') no-repeat bottom / 100% 100%;
}

.home-hero .wrap {
  position: relative;
  z-index: 2;
  align-content: center;
}

.hero-copy {
  max-width: 720px;
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -34px;
  top: -28px;
  width: 126px;
  height: 78px;
  z-index: -1;
  opacity: 0.34;
  transform: rotate(-8deg);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 92" fill="none"><path d="M21 49 C 36 18, 91 10, 124 34 C 143 48, 136 72, 106 76 C 70 82, 30 71, 21 49 Z" fill="%23f3e0d4"/><path d="M19 49 C 36 18, 91 10, 124 34 C 143 48, 136 72, 106 76 C 70 82, 30 71, 19 49 Z" stroke="%23c63d22" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / contain;
}

.hero-art {
  position: absolute;
  top: 49%;
  right: -110px;
  width: min(56vw, 720px);
  height: auto;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.98;
  filter: drop-shadow(12px 18px 0 rgba(35, 33, 28, 0.05));
}

.artist-drawing-art {
  top: 52%;
  right: -160px;
  width: min(59vw, 780px);
  transform: translateY(-50%) rotate(-1.5deg);
  filter: drop-shadow(14px 18px 0 rgba(35, 33, 28, 0.10));
}

.artist-drawing-art::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 8%;
  bottom: 2%;
  height: 12%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(35, 33, 28, 0.18), rgba(35, 33, 28, 0) 72%);
  transform: rotate(-2deg);
  z-index: -2;
}

.artist-drawing-art img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  transform-origin: 62% 58%;
}

.creative-stroke {
  position: absolute;
  z-index: 1;
  height: 10px;
  border-top: 3px solid var(--hairline);
  border-bottom: 1.5px solid rgba(35, 33, 28, 0.30);
  border-radius: 50%;
  opacity: 0.62;
  transform-origin: 50% 50%;
}

.stroke-one {
  --stroke-rotate: -14deg;
  top: 17%;
  left: 4%;
  right: 47%;
  transform: rotate(-14deg);
}

.stroke-two {
  --stroke-rotate: 9deg;
  top: 39%;
  left: 0;
  right: 62%;
  border-top-color: var(--coral);
  border-bottom-color: rgba(198, 61, 34, 0.28);
  transform: rotate(9deg);
}

.stroke-three {
  --stroke-rotate: -8deg;
  bottom: 22%;
  left: 8%;
  right: 52%;
  border-top-color: var(--mint);
  border-bottom-color: rgba(31, 111, 100, 0.24);
  transform: rotate(-8deg);
}

.hero-art .stroke {
  stroke-dasharray: 1100;
  stroke-dashoffset: 0;
}

.hero-art .spark,
.hero-art .ink-dot,
.hero-art .earth-outline {
  opacity: 1;
  transform-origin: center;
}

.ink-anim .hero-art .stroke {
  animation: ink-draw 2.2s cubic-bezier(0.6, 0, 0.2, 1) both;
}

.ink-anim .hero-art .s2 { animation-delay: 0.35s; animation-duration: 2.4s; }
.ink-anim .hero-art .s3 { animation-delay: 0.65s; animation-duration: 2s; }

@keyframes ink-draw {
  from { stroke-dashoffset: 1100; }
  to { stroke-dashoffset: 0; }
}

.ink-anim .hero-art .ocean-fill,
.ink-anim .hero-art .land,
.ink-anim .hero-art .cloud,
.ink-anim .hero-art .earth-shade {
  animation: wash-in 0.8s ease-out 0.2s both;
}

.ink-anim .hero-art .ink-dot,
.ink-anim .hero-art .earth-outline {
  animation: spark-pop 0.5s ease-out 2.1s both;
}

.ink-anim .hero-art .spark {
  animation: spark-pop 0.6s ease-out both;
}

.ink-anim .hero-art .k1 { animation-delay: 1.2s; }
.ink-anim .hero-art .k2 { animation-delay: 1.6s; }
.ink-anim .hero-art .k3 { animation-delay: 2s; }

.ink-anim .artist-drawing-art img {
  animation:
    artist-pop 0.9s cubic-bezier(0.18, 0.9, 0.24, 1.14) both,
    artist-float 7s ease-in-out 1s infinite;
}

.ink-anim .creative-stroke {
  animation: creative-stroke-in 0.95s cubic-bezier(0.18, 0.9, 0.2, 1) both;
}

.ink-anim .stroke-two {
  animation-delay: 0.12s;
}

.ink-anim .stroke-three {
  animation-delay: 0.24s;
}

@keyframes spark-pop {
  0% { opacity: 0; transform: scale(0.2); }
  70% { opacity: 1; transform: scale(1.25); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes wash-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes artist-pop {
  0% { opacity: 0; transform: translateY(18px) scale(0.84) rotate(-5deg); }
  72% { opacity: 1; transform: translateY(-4px) scale(1.035) rotate(1.4deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes artist-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes creative-stroke-in {
  0% { opacity: 0; transform: translateX(32px) scaleX(0.3) rotate(var(--stroke-rotate, 0deg)); }
  100% { opacity: 0.62; transform: translateX(0) scaleX(1) rotate(var(--stroke-rotate, 0deg)); }
}

.brush {
  position: relative;
  z-index: 0;
  display: inline-block;
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}

.brush::after {
  content: "";
  position: absolute;
  left: -1%;
  right: -1%;
  bottom: -0.06em;
  height: 0.3em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 12" preserveAspectRatio="none"><path d="M3 7 C 20 4.5, 38 8.5, 58 6 C 78 3.5, 98 8, 117 5.5" fill="none" stroke="%23c63d22" stroke-width="3.4" stroke-linecap="round" opacity="0.9"/><path d="M6 9.5 C 30 7.5, 60 10, 114 7.8" fill="none" stroke="%23c63d22" stroke-width="1.6" stroke-linecap="round" opacity="0.55"/></svg>') no-repeat center / 100% 100%;
  z-index: -1;
}

.studio-picks {
  position: relative;
  overflow: hidden;
  background-color: #f7efdc;
  background-image:
    var(--grain),
    linear-gradient(90deg, rgba(31, 111, 100, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(198, 61, 34, 0.045) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.studio-picks::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 34px;
  width: 430px;
  height: 210px;
  opacity: 0.36;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 520 260" fill="none"><path d="M24 158 C 104 77, 236 69, 314 139 C 372 191, 278 229, 228 178 C 173 122, 279 56, 421 93" stroke="%23c63d22" stroke-width="8" stroke-linecap="round"/><path d="M339 155 C 389 132, 448 136, 492 163" stroke="%232a271f" stroke-width="5" stroke-linecap="round" stroke-dasharray="2 16"/><path d="M80 209 C 181 178, 298 213, 414 183" stroke="%231f6f64" stroke-width="6" stroke-linecap="round"/></svg>') no-repeat center / contain;
}

.studio-picks .wrap {
  position: relative;
  z-index: 1;
}

.studio-picks .section-head {
  align-items: flex-start;
}

.studio-picks .section-head p {
  max-width: 670px;
}

.grid.top-picks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
  padding-top: 0.8rem;
}

.pick-card {
  --tilt: -1deg;
  position: relative;
  display: grid;
  grid-template-rows: auto 238px auto;
  overflow: visible;
  border: 2px solid var(--hairline);
  border-radius: 18px 12px 20px 11px / 11px 20px 12px 18px;
  background-color: #fff8e7;
  background-image:
    var(--grain),
    repeating-linear-gradient(0deg, rgba(31, 111, 100, 0.055) 0 1px, transparent 1px 29px);
  box-shadow: 5px 5px 0 rgba(35, 33, 28, 0.9);
  transform: rotate(var(--tilt));
  transform-origin: 50% 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pick-screen {
  --tilt: 0.75deg;
}

.pick-pro {
  --tilt: -0.35deg;
}

.pick-card:hover {
  transform: translate(-3px, -4px) rotate(var(--tilt));
  box-shadow: 8px 9px 0 rgba(35, 33, 28, 0.9);
}

.pick-card::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  width: 128px;
  height: 34px;
  z-index: 4;
  transform: translateX(-50%) rotate(-2deg);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(35, 33, 28, 0.12) 0 1px, transparent 1px 9px),
    rgba(242, 193, 20, 0.58);
  border: 1px solid rgba(42, 39, 31, 0.34);
  box-shadow: 1px 2px 0 rgba(35, 33, 28, 0.18);
  pointer-events: none;
}

.pick-screen::before {
  transform: translateX(-50%) rotate(2.2deg);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(35, 33, 28, 0.10) 0 1px, transparent 1px 9px),
    rgba(31, 111, 100, 0.28);
}

.pick-pro::before {
  transform: translateX(-50%) rotate(-3deg);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(35, 33, 28, 0.10) 0 1px, transparent 1px 9px),
    rgba(198, 61, 34, 0.24);
}

.pick-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 70px;
  height: 24px;
  opacity: 0.38;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90 36" fill="none"><path d="M4 22 C 24 6, 45 30, 65 15 C 73 9, 80 10, 86 15" stroke="%23c63d22" stroke-width="4" stroke-linecap="round"/><path d="M58 27 l25 -10 l-11 18" stroke="%232a271f" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / contain;
}

.pick-card .media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 188px;
  margin: 0 1rem;
  padding: 1.2rem;
  overflow: visible;
  border: 1.7px solid var(--hairline);
  border-radius: 15px 11px 17px 12px / 12px 17px 11px 15px;
  background: #ffffff;
  box-shadow: inset 0 -5px 0 rgba(198, 61, 34, 0.05), 3px 3px 0 rgba(35, 33, 28, 0.8);
}

.media-doodle {
  position: absolute;
  inset: 13px 10px auto auto;
  width: 82px;
  height: 36px;
  opacity: 0.42;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 110 48" fill="none"><path d="M8 31 C 26 8, 57 6, 68 24 C 78 40, 45 42, 47 27 C 49 10, 84 12, 102 23" stroke="%231f6f64" stroke-width="4" stroke-linecap="round"/><circle cx="27" cy="14" r="4" fill="%23c63d22"/></svg>') no-repeat center / contain;
}

.pick-card .media img {
  position: relative;
  z-index: 1;
  width: min(78%, 210px);
  height: 155px;
  object-fit: contain;
  filter: drop-shadow(0 10px 0 rgba(35, 33, 28, 0.12));
  transform: rotate(-1.2deg);
  transition: transform 220ms ease;
}

.pick-card:hover .media img {
  transform: scale(1.04) rotate(-2deg);
}

.pick-card .body {
  margin-top: 0.75rem;
  padding: 1rem 1.05rem 1.15rem;
}

.pick-card h3 {
  font-size: 1.18rem;
}

.badge {
  position: absolute;
  top: 12px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  max-width: calc(100% - 28px);
  margin: 0;
  padding: 0.18rem 0.62rem;
  border: 1.5px solid var(--hairline);
  border-radius: 11px 7px 10px 8px / 8px 11px 7px 10px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.69rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transform: rotate(-1.5deg);
  box-shadow: 2px 2px 0 rgba(35, 33, 28, 0.85);
  z-index: 5;
}

.badge.gold {
  background: var(--accent);
  border-color: #8f2b16;
  color: #fdf6ec;
}

.badge.blue {
  background: var(--blue);
}

.pick-use-label {
  position: relative;
  justify-self: end;
  max-width: calc(100% - 2rem);
  margin: 3.15rem 1rem -0.25rem;
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
  text-align: right;
  transform: rotate(2deg);
  z-index: 4;
}

.pick-note {
  position: relative;
  margin: 0.58rem 0 0.7rem;
  padding-left: 0.85rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.pick-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  bottom: 0.2rem;
  width: 3px;
  border-radius: 99px;
  background: var(--coral);
}

.pick-score {
  margin: 0.45rem 0 0.2rem;
  font-size: 1rem;
}

.pick-score strong {
  font-size: 1.65rem;
  font-weight: 900;
}

.pick-scribble {
  display: inline-block;
  margin: 0.2rem 0 0.7rem;
  padding: 0.06rem 0.35rem 0.12rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-style: italic;
  background: linear-gradient(transparent 56%, rgba(242, 193, 20, 0.52) 56%);
  transform: rotate(-1deg);
}

.pick-points {
  display: grid;
  gap: 0.42rem;
  margin: 0 0 0.55rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.91rem;
  list-style: none;
}

.pick-points li {
  position: relative;
  padding-left: 1.05rem;
}

.pick-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.55rem;
  height: 2px;
  border-radius: 99px;
  background: var(--coral);
  transform: rotate(-8deg);
}

.price-note {
  position: relative;
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.65rem 0.85rem 0.65rem 2.2rem;
  border: 1.5px solid var(--hairline);
  border-radius: 14px 9px 13px 10px / 10px 14px 9px 13px;
  background: rgba(253, 250, 241, 0.78);
  color: var(--muted);
  font-size: 0.85rem;
  box-shadow: 3px 3px 0 rgba(35, 33, 28, 0.12);
}

.price-note::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0.7rem;
  width: 22px;
  height: 22px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" fill="none"><path d="M6 22 L17 11 L21 15 L10 26 L5 27 Z" fill="%23f2c114" stroke="%232a271f" stroke-width="2" stroke-linejoin="round"/><path d="M6 22 L5 27 L10 26 Z" fill="%2323211c"/></svg>') no-repeat center / contain;
}

.home .section-head h2::after,
.home .content > h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 9px;
  margin-top: 0.55rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 12" preserveAspectRatio="none"><path d="M3 7 C 20 4.5, 38 8.5, 58 6 C 78 3.5, 98 8, 117 5.5" fill="none" stroke="%23c63d22" stroke-width="4.4" stroke-linecap="round" opacity="0.9"/></svg>') no-repeat center / 100% 100%;
}

.rank-cell {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.medal,
.rank {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.9rem;
}

.medal {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
}

.medal.m1 {
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 47% 53% 49% 51% / 52% 48% 52% 48%;
  transform: rotate(-4deg);
}

.medal.m2,
.medal.m3 {
  color: var(--ink);
  border: 1.5px solid var(--hairline);
  border-radius: 52% 48% 53% 47% / 48% 52% 47% 53%;
  transform: rotate(2deg);
}

.rank {
  color: var(--muted);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
}

thead th {
  background: var(--ink);
  color: rgba(244, 238, 223, 0.92);
  border-bottom: 0;
}

tbody tr {
  transition: background 140ms ease;
}

tbody tr:hover {
  background: #efe8d6;
}

.pick-card .media {
  border-bottom: 1.5px solid var(--hairline);
}

.use-card,
.brand-card {
  position: relative;
}

.brand-card {
  overflow: hidden;
}

.use-card {
  overflow: visible;
  transform-origin: 50% 20px;
}

.brand-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--coral);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms ease;
}

.brand-card:hover::after {
  transform: scaleY(1);
}

.use-card.brand-card::after {
  display: none;
}

.use-card.brand-card {
  overflow: visible;
}

.use-card::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  width: 44px;
  height: 46px;
  transform: translateX(-50%);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 50"><ellipse cx="28" cy="45" rx="8.5" ry="2" fill="rgba(35,33,28,0.20)"/><g transform="rotate(7 24 44)"><line x1="24" y1="35" x2="24" y2="44" stroke="%234a463e" stroke-width="2.4" stroke-linecap="round"/><path d="M21 20.5 L17.5 25.5 C16 30.5 18.5 33.5 24 33.5 C29.5 33.5 32 30.5 30.5 25.5 L27 20.5 Z" fill="%23f2c114" stroke="%232a271f" stroke-width="1.6" stroke-linejoin="round"/><path d="M27.2 21 L30 25.8 C31 29.3 29.8 32 26.3 33.1 C28.6 30 28.7 24.8 27.2 21 Z" fill="%23d9a90d"/><path d="M20.8 21.5 L18.4 26 C17.7 28.8 18.7 31.4 20.9 32.6 C19.6 29.4 19.8 24.6 20.8 21.5 Z" fill="%23ffe066" opacity="0.9"/><path d="M21.4 16 L21 20.5 L27 20.5 L26.6 16 Z" fill="%23e4b310" stroke="%232a271f" stroke-width="1.5" stroke-linejoin="round"/><path d="M12 11 L12 12.6 C12 19 36 19 36 12.6 L36 11 Z" fill="%23d9a90d" stroke="%232a271f" stroke-width="1.6" stroke-linejoin="round"/><ellipse cx="24" cy="11" rx="12" ry="5" fill="%23f2c114" stroke="%232a271f" stroke-width="1.6"/><ellipse cx="20.2" cy="9.4" rx="5.5" ry="2.2" fill="%23ffe066" opacity="0.95"/><ellipse cx="17.6" cy="8.7" rx="2" ry="1" fill="rgba(255,255,255,0.85)"/></g></svg>') no-repeat center / contain;
  z-index: 3;
  pointer-events: none;
}

@keyframes pin-wiggle {
  0% { transform: rotate(0deg); }
  22% { transform: rotate(2.1deg); }
  48% { transform: rotate(-1.7deg); }
  74% { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

.use-card:hover {
  transform: none;
  animation: pin-wiggle 0.7s ease-in-out;
}

.use-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 0.8rem;
  border-radius: 49% 51% 48% 52% / 52% 47% 53% 48%;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--hairline);
  transition: transform 220ms ease, color 180ms ease, border-color 180ms ease;
}

.use-card:hover .use-icon {
  transform: rotate(-6deg) scale(1.06);
  color: var(--coral);
  border-color: var(--coral);
}

.use-icon svg {
  width: 28px;
  height: 28px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 2px solid transparent;
}

.card-link span {
  color: var(--coral);
  transition: transform 180ms ease;
}

.use-card:hover .card-link,
.brand-card:hover .card-link {
  color: var(--coral);
}

.use-card:hover .card-link span,
.brand-card:hover .card-link span {
  transform: translateX(4px);
}

.brand-mono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0.8rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2.5px var(--card), inset 0 0 0 4px var(--ink);
  color: var(--ink);
  background: transparent;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  transform: rotate(-5deg);
  transition: transform 200ms ease, color 200ms ease, border-color 200ms ease;
}

.brand-card:hover .brand-mono {
  transform: rotate(3deg);
  color: var(--coral);
  border-color: var(--coral);
  box-shadow: inset 0 0 0 2.5px var(--card), inset 0 0 0 4px var(--coral);
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 210px);
  min-height: 68px;
  margin-bottom: 0.85rem;
  padding: 0.68rem 0.82rem;
  border: 1.5px solid var(--hairline);
  border-radius: 14px 10px 16px 11px / 11px 16px 10px 14px;
  background:
    linear-gradient(180deg, rgba(253, 250, 241, 0.95), rgba(244, 238, 223, 0.95)),
    var(--card);
  box-shadow: 2px 2px 0 rgba(35, 33, 28, 0.82);
}

.brand-logo-count-2 {
  align-items: flex-start;
  justify-content: center;
  min-height: 98px;
  flex-direction: column;
  gap: 0.42rem;
}

.brand-logo {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo-wacom {
  width: min(72px, 100%);
  max-height: 68px;
}

.brand-logo-huion {
  width: min(126px, 100%);
}

.brand-logo-xp-pen {
  width: min(152px, 100%);
  max-height: 54px;
}

.brand-logo-gaomon {
  width: min(164px, 100%);
}

.brand-logo-ugee {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--ink);
  font-family: "UgeeOfficial";
  font-size: 2rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.brand-logo-ugee::before {
  content: "\e612";
}

.use-card:hover .brand-logo-wrap {
  border-color: var(--coral);
}

.steps .decision-grid > div {
  position: relative;
  counter-increment: step;
  padding: 2.9rem 0.4rem 0.6rem;
  background: transparent;
  border: 0;
  border-top: 2px solid var(--hairline);
  border-radius: 0;
}

.steps .decision-grid {
  counter-reset: step;
  gap: 1.6rem;
}

.steps .decision-grid > div::before {
  content: "0" counter(step) ".";
  position: absolute;
  top: 0.55rem;
  left: 0.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--coral);
}

.price-ranges {
  display: grid;
  gap: 0;
  margin: 1.2rem 0 1.8rem;
  border-top: 2px solid var(--hairline);
}

.price-range {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 1.1rem 0.2rem;
  transition: background 160ms ease;
}

.price-range:hover {
  background: rgba(253, 250, 241, 0.7);
}

.range-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}

.range-bar {
  height: 12px;
  max-width: 560px;
  margin: 0.45rem 0 0.7rem;
}

.range-bar i {
  display: block;
  width: var(--bar, 50%);
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 12" preserveAspectRatio="none"><path d="M2 6.5 C 20 4, 40 9, 60 6 C 80 3.5, 100 8.5, 118 5.5" fill="none" stroke="%23c63d22" stroke-width="6.5" stroke-linecap="round" opacity="0.92"/></svg>') no-repeat left center / 100% 100%;
}

.price-range a {
  color: var(--coral);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.editor-note {
  position: relative;
  margin: 1.4rem 0;
  border: 0;
  border-left: 3px solid var(--coral);
  background: transparent;
  padding: 0.2rem 0 0.2rem 1.4rem;
}

.editor-note::before {
  content: "Nota del editor";
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
}

.editor-note p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.6;
}

.editor-note a {
  color: var(--coral);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-cell {
  white-space: nowrap;
}

.btn.mini-cta {
  min-height: 36px;
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
}

.cta-cell .mini-cta + .mini-cta {
  margin-left: 0.35rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof {
  padding: 1.2rem;
  border-right: 1px solid var(--line);
}

.proof:last-child {
  border-right: 0;
}

.proof-strip.dark {
  border-top: 1.5px solid var(--hairline);
  border-bottom: 1.5px solid var(--hairline);
  background: var(--ink);
}

.proof-strip.dark .proof {
  padding: 1.7rem 1.2rem;
  border-right: 1px solid rgba(244, 238, 223, 0.25);
  text-align: center;
}

.proof-strip.dark .proof:last-child {
  border-right: 0;
}

.proof-strip.dark .proof span {
  color: rgba(244, 238, 223, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-strip.dark .proof strong {
  font-size: 2.3rem;
  font-style: italic;
  color: var(--paper);
}

.proof strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1.5px solid var(--hairline);
  border-radius: 4px;
  background: var(--card);
}

.editorial-compare {
  position: relative;
  overflow: hidden;
  background:
    var(--grain),
    linear-gradient(90deg, rgba(31, 111, 100, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(35, 33, 28, 0.035) 1px, transparent 1px),
    #f3ecdd;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.editorial-compare::before {
  content: "";
  position: absolute;
  right: max(2vw, 18px);
  top: 34px;
  width: min(360px, 38vw);
  height: 140px;
  opacity: 0.28;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 420 160" fill="none"><path d="M22 112 C 88 46, 181 39, 246 83 C 298 119, 244 142, 197 105 C 153 70, 211 37, 322 55" stroke="%232a271f" stroke-width="3.2" stroke-linecap="round"/><path d="M46 132 H 373" stroke="%231f6f64" stroke-width="2" stroke-linecap="round" stroke-dasharray="1 10"/><path d="M322 55 L 370 36 M322 55 L356 92" stroke="%23c63d22" stroke-width="2.4" stroke-linecap="round"/></svg>') no-repeat center / contain;
}

.editorial-compare .wrap {
  position: relative;
  z-index: 1;
}

.home-compare-table {
  position: relative;
  overflow-x: auto;
  border: 2px solid var(--hairline);
  border-radius: 12px 8px 14px 9px / 9px 13px 8px 14px;
  background:
    linear-gradient(180deg, rgba(253, 250, 241, 0.98), rgba(248, 242, 229, 0.98)),
    var(--card);
  box-shadow: 5px 5px 0 rgba(35, 33, 28, 0.9);
}

.home-compare-table::before {
  content: "";
  position: absolute;
  inset: 12px 12px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(35, 33, 28, 0.32), transparent);
  pointer-events: none;
}

.table-studio-note {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-width: 900px;
  padding: 0.8rem 1rem 0.55rem;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  border-bottom: 1px solid rgba(42, 39, 31, 0.18);
}

.table-studio-note span:first-child {
  color: var(--ink);
  font-weight: 700;
}

.home-compare-table table {
  min-width: 920px;
}

.home-compare-table th,
.home-compare-table td {
  border-bottom-color: rgba(42, 39, 31, 0.16);
}

.home-compare-table th {
  background: #efe6d5;
  color: var(--ink);
  border-bottom: 2px solid var(--hairline);
  font-size: 0.73rem;
  letter-spacing: 0.16em;
}

.home-compare-table tbody tr {
  background: rgba(253, 250, 241, 0.72);
}

.home-compare-table tbody tr:nth-child(even) {
  background: rgba(245, 238, 222, 0.64);
}

.home-compare-table tbody tr:hover {
  background: #fff6de;
}

.home-compare-table tbody tr.is-priority {
  box-shadow: inset 4px 0 0 var(--teal);
}

.home-compare-table .model-cell {
  width: 44%;
}

.home-compare-table .rank-cell {
  gap: 0.8rem;
  align-items: flex-start;
}

.rank-mark {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  border: 1.5px solid rgba(42, 39, 31, 0.82);
  border-radius: 6px 3px 7px 4px / 4px 7px 3px 6px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 800;
  background: rgba(253, 250, 241, 0.82);
  box-shadow: 2px 2px 0 rgba(35, 33, 28, 0.18);
}

.rank-mark.rank-top {
  color: #fffaf0;
  background: var(--ink);
  border-color: var(--ink);
}

.rank-mark.r1 {
  background: var(--coral);
  border-color: #8f2b16;
}

.model-title {
  display: block;
  margin-bottom: 0.16rem;
  font-size: 1rem;
  line-height: 1.22;
}

.model-summary {
  display: block;
  max-width: 520px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.type-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.22rem 0.58rem;
  border: 1px solid rgba(42, 39, 31, 0.28);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.type-chip.with-screen {
  background: rgba(31, 111, 100, 0.12);
}

.type-chip.without-screen {
  background: rgba(198, 61, 34, 0.09);
}

.score-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.16rem;
  min-width: 68px;
  padding: 0.18rem 0.42rem 0.24rem;
  border-bottom: 2px solid var(--coral);
  color: var(--ink);
  font-family: var(--font-display);
}

.score-mark strong {
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1;
}

.score-mark span {
  color: var(--muted);
  font-size: 0.82rem;
}

.price-cell {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  font-weight: 800;
  white-space: nowrap;
}

.home-compare-table .cta-cell {
  width: 190px;
}

.home-compare-table .mini-cta {
  border-radius: 7px 4px 8px 5px / 5px 8px 4px 7px;
}

/* === Tabla "mesa de estudio" de la pagina de principiantes ===
   Reutiliza .home-compare-table, .table-studio-note, .rank-mark, .type-chip,
   .score-mark, .price-cell, .mini-cta y .is-priority. Solo anade lo siguiente. */
.beginner-studio-table {
  margin: 0.4rem 0 1.6rem;
}

/* Encaja dentro de la columna de lectura (.content, max 880px): sin scroll horizontal en
   desktop. Anula el min-width de 920/900px que hereda de la tabla de la home, que vive en
   un wrap mas ancho. En movil (<=680px) recupera un min-width para que scrollee con gracia. */
.beginner-studio-table table,
.beginner-studio-table .table-studio-note {
  min-width: 0;
}

@media (max-width: 680px) {
  .beginner-studio-table table {
    min-width: 560px;
  }
}

.beginner-studio-table .model-cell {
  width: 50%;
}

/* Titulo del modelo como enlace, manteniendo el look de .model-title */
.home-compare-table .model-title {
  color: var(--ink);
  text-decoration: none;
}

.home-compare-table a.model-title:hover {
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 3px;
}

/* Marca pequena bajo el titulo */
.model-brand {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Sello discreto en la fila #1 (honesto, sin urgencia) */
.start-here {
  display: inline-block;
  margin: 0.1rem 0 0.55rem;
  padding: 0.12rem 0.5rem;
  border: 1.5px solid #8f2b16;
  border-radius: 6px 3px 7px 4px / 4px 7px 3px 6px;
  background: var(--coral);
  color: #fffaf0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  box-shadow: 2px 2px 0 rgba(35, 33, 28, 0.18);
}

/* Cada linea de guia: micro-etiqueta + frase */
.model-guide {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  max-width: 560px;
  margin-top: 0.35rem;
}

.model-guide .guide-text {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.42;
}

/* Micro-etiqueta tipo sello dibujado (mismo idioma que .type-chip, compacta) */
.micro-tag {
  flex: none;
  display: inline-flex;
  align-items: center;
  min-width: 74px;
  justify-content: center;
  padding: 0.08rem 0.4rem;
  border: 1px solid rgba(42, 39, 31, 0.28);
  border-radius: 5px 3px 6px 4px / 4px 6px 3px 5px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.micro-tag.mt-for {
  color: var(--teal);
  background: rgba(31, 111, 100, 0.12);
}

.micro-tag.mt-watch {
  color: var(--coral);
  background: rgba(198, 61, 34, 0.09);
}

/* Celda de precio + acciones apiladas */
.home-compare-table .price-action-cell {
  white-space: nowrap;
}

.home-compare-table .price-action-cell .price-cell {
  display: block;
  margin-bottom: 0.45rem;
}

.beginner-studio-table .price-action-cell .mini-cta {
  display: block;
  width: fit-content;
  margin: 0 0 0.4rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

th,
td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #ece4d2;
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.score {
  display: inline-flex;
  min-width: 48px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
}

.proof strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
}

.pick-score strong {
  font-family: var(--font-display);
  font-style: italic;
}

.filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.filters label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.filters select,
.filters input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 0 0.75rem;
}

.article-hero {
  padding: 3.3rem 0 2.4rem;
  position: relative;
  border-bottom: 1.5px solid var(--hairline);
  background:
    radial-gradient(circle at 14% 24%, rgba(31, 111, 100, 0.11), transparent 34%),
    linear-gradient(90deg, rgba(42, 39, 31, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(42, 39, 31, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 58px 58px, 58px 58px, auto;
}

.article-hero .kicker {
  display: inline-block;
  padding: 0.4rem 0;
  border-top: 1.5px solid var(--hairline);
  border-bottom: 1.5px solid var(--hairline);
}

.article-hero h1 {
  font-size: 3rem;
}

.breadcrumb {
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb span[aria-hidden] {
  margin: 0 0.2rem;
  opacity: 0.5;
}

.breadcrumb [aria-current="page"] {
  color: var(--ink);
}

.lead-intro {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
}

.article-hero.compact {
  padding: 2rem 0;
}

.article-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.article-hero.compact .wrap {
  grid-template-columns: 1fr;
}

.article-hero.compact .lead {
  max-width: 860px;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.verdict {
  border-left: 5px solid var(--teal);
  background: var(--soft-teal);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
}

.content {
  max-width: 880px;
}

.content h2 {
  margin: 2.3rem 0 0.8rem;
  font-size: 1.8rem;
}

.content h3 {
  margin: 1.7rem 0 0.6rem;
}

.content p + p {
  margin-top: 0.9rem;
}

.callout {
  margin: 1.2rem 0;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: #fffaf0;
  padding: 1rem;
}

.toc {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.toc a {
  color: var(--blue);
  font-weight: 700;
}

.author-box,
.experience-note,
.score-method,
.source-box,
.update-history,
.evidence-box {
  margin: 1.4rem 0;
  border: 1.5px solid var(--hairline);
  border-radius: 8px 5px 7px 6px / 5px 8px 6px 7px;
  background: #fdfaf1;
  padding: 1rem;
  box-shadow: 4px 4px 0 rgba(35, 33, 28, 0.08);
}

.author-box {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.author-box h2,
.experience-note h2,
.score-method h2,
.source-box h2,
.update-history h2,
.evidence-box h2 {
  margin-top: 0;
}

.author-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--ink);
  border-radius: 48% 52% 45% 55% / 52% 45% 55% 48%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  transform: rotate(-4deg);
}

.author-links,
.source-box ul,
.mini-product-stack {
  display: grid;
  gap: 0.55rem;
}

.author-links {
  grid-template-columns: repeat(3, fit-content(180px));
  align-items: center;
}

.author-links a,
.source-box a,
.mini-product-stack a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.evidence-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1.5px solid var(--hairline);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background: #fff;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.evidence-badge.tested {
  background: var(--soft-teal);
}

.evidence-badge.documented {
  background: #fff6d8;
}

.source-box ul {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.source-box li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 0.55rem;
}

.update-history ol {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.2rem;
}

.update-history li {
  padding-left: 0.15rem;
}

.update-history time {
  display: inline-block;
  min-width: 6.6rem;
  color: var(--muted);
  font-weight: 900;
}

.screen-verdict {
  position: relative;
  border-left-color: var(--coral);
  background:
    linear-gradient(135deg, rgba(255, 224, 102, 0.2), transparent 38%),
    var(--soft-teal);
}

.screen-intent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem 0 1.6rem;
}

.screen-intent-card {
  display: grid;
  gap: 0.6rem;
  align-content: start;
  border: 1.5px solid var(--hairline);
  border-radius: 8px 5px 7px 6px / 5px 8px 6px 7px;
  background: #fdfaf1;
  padding: 1rem;
  box-shadow: 4px 4px 0 rgba(35, 33, 28, 0.1);
}

.screen-intent-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.screen-intent-card p {
  margin: 0;
}

.mini-label {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 0.18rem 0.5rem;
  border: 1.5px solid var(--hairline);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.screen-intent-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.screen-intent-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0.18rem 0.48rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.screen-choice-table td {
  vertical-align: top;
}

.screen-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.buyer-warning {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.buyer-warning > div,
.screen-criteria-grid article,
.method-note {
  border: 1.5px solid var(--hairline);
  border-radius: 8px;
  background: #fdfaf1;
  padding: 1rem;
}

.buyer-warning h3,
.screen-criteria-grid h3,
.method-note h2 {
  margin-top: 0;
}

.anti-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.15rem;
}

.mini-product-stack {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.mini-product-stack a {
  display: grid;
  gap: 0.18rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 0.72rem;
  color: var(--ink);
}

.mini-product-stack span {
  color: var(--muted);
  font-size: 0.88rem;
}

.screen-criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem 0 1.6rem;
}

.screen-criteria-grid article {
  box-shadow: 3px 3px 0 rgba(35, 33, 28, 0.08);
}

.screen-criteria-grid p {
  margin: 0;
  color: var(--muted);
}

.screen-size-note,
.screen-callout,
.method-note {
  margin: 1.4rem 0;
}

.screen-callout h2 {
  margin-top: 0;
}

.model-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 1rem;
}

.model-review {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.model-media {
  display: grid;
  min-height: 220px;
  place-items: center;
  border-radius: 8px;
  border: 0.5px solid var(--line);
  background: #ffffff;
}

.model-media img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  padding: 0.75rem;
}

.model-body h3 {
  margin-top: 0.15rem;
}

.decision-grid,
.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.decision-grid > div,
.pros-cons > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9f5ea;
  padding: 1rem;
}

.pros-cons h4 {
  margin: 0 0 0.5rem;
}

.pros-cons ul,
.spec-list {
  margin: 0;
  padding-left: 1.1rem;
}

.spec-list {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0;
}

.faq-block {
  margin-top: 2rem;
}

.faq-block {
  border-top: 2px solid var(--hairline);
}

.faq-block h2 {
  margin-top: 1.4rem;
}

.faq-block details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 1rem 0.2rem;
  transition: background 160ms ease;
}

.faq-block details[open] {
  background: rgba(253, 250, 241, 0.7);
}

.faq-block details + details {
  margin-top: 0;
}

.faq-block summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

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

.faq-block summary::after {
  content: "+";
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  transition: transform 180ms ease;
}

.faq-block details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-block summary + p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.faq-illustrated {
  position: relative;
  scroll-margin-top: 140px;
  margin-top: 3rem;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  border: 2px solid var(--hairline);
  border-radius: 23px 17px 25px 15px / 18px 25px 16px 23px;
  background-color: #fff8e7;
  background-image:
    var(--grain),
    repeating-linear-gradient(0deg, rgba(31, 111, 100, 0.08) 0 1px, transparent 1px 35px),
    linear-gradient(94deg, rgba(198, 61, 34, 0.08), transparent 42%);
  box-shadow: var(--hard-shadow);
  overflow: visible;
  isolation: isolate;
  transform: rotate(-0.25deg);
}

.faq-illustrated::before {
  content: "";
  position: absolute;
  top: -29px;
  left: 42px;
  width: 48px;
  height: 52px;
  z-index: 2;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 56"><ellipse cx="31" cy="51" rx="9" ry="2.2" fill="rgba(35,33,28,0.18)"/><g transform="rotate(-8 26 31)"><line x1="26" y1="38" x2="26" y2="50" stroke="%232a271f" stroke-width="2.4" stroke-linecap="round"/><path d="M21 21 L18 29 C17.3 34 20.3 37 26 37 C31.7 37 34.7 34 34 29 L31 21 Z" fill="%23f2c114" stroke="%232a271f" stroke-width="1.7" stroke-linejoin="round"/><path d="M31 21.8 L33.2 29.3 C33.6 32.8 31.4 35.8 28.4 36.6 C30.2 32.3 30.3 26.6 31 21.8 Z" fill="%23d9a90d"/><path d="M20.5 14.5 L20.5 17 C20.5 22.5 31.5 22.5 31.5 17 L31.5 14.5 Z" fill="%23d9a90d" stroke="%232a271f" stroke-width="1.6"/><ellipse cx="26" cy="14" rx="12.5" ry="5.2" fill="%23f7c92a" stroke="%232a271f" stroke-width="1.7"/><ellipse cx="22" cy="12.3" rx="5.2" ry="1.9" fill="%23ffe98a" opacity="0.95"/></g></svg>') no-repeat center / contain;
}

.faq-illustrated::after {
  content: "";
  position: absolute;
  inset: 12px 14px auto auto;
  width: 130px;
  height: 78px;
  z-index: -1;
  opacity: 0.42;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 96" fill="none"><path d="M11 54 C 34 18, 67 15, 78 42 C 88 66, 55 75, 44 55 C 33 34, 64 20, 102 26 C 124 30, 139 43, 151 63" stroke="%231f6f64" stroke-width="4" stroke-linecap="round" stroke-dasharray="2 9"/><path d="M109 68 c 9 -6, 17 -6, 25 0" stroke="%23c63d22" stroke-width="5" stroke-linecap="round"/></svg>') no-repeat center / contain;
}

.faq-doodle {
  position: absolute;
  display: block;
  pointer-events: none;
}

.faq-doodle-pencil {
  right: clamp(1rem, 4vw, 2rem);
  top: -19px;
  width: 108px;
  height: 34px;
  z-index: 3;
  transform: rotate(7deg);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140 44"><g transform="rotate(-2 70 22)"><path d="M18 20 C 47 15, 83 15, 116 22" fill="none" stroke="%232a271f" stroke-width="3" stroke-linecap="round" opacity="0.4"/><path d="M26 11 L103 11 L120 22 L103 33 L26 33 Z" fill="%23f4eedf" stroke="%232a271f" stroke-width="2.2" stroke-linejoin="round"/><path d="M26 11 L12 22 L26 33 Z" fill="%23f0c8a0" stroke="%232a271f" stroke-width="2.2" stroke-linejoin="round"/><path d="M13 22 L7 24 L12 19 Z" fill="%2323211c"/><path d="M37 12 L37 32" stroke="%23c63d22" stroke-width="4" stroke-linecap="round"/><path d="M102 12 L119 22 L102 32 Z" fill="%23f2c114" opacity="0.92"/><path d="M48 18 C 61 16, 78 17, 94 18" stroke="%231f6f64" stroke-width="2.2" stroke-linecap="round" opacity="0.75"/></g></svg>') no-repeat center / contain;
}

.faq-doodle-loop {
  left: clamp(0.7rem, 3vw, 1.4rem);
  bottom: -24px;
  width: 145px;
  height: 55px;
  transform: rotate(-4deg);
  opacity: 0.68;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 70" fill="none"><path d="M13 37 C 41 12, 76 17, 72 39 C 69 56, 39 57, 42 40 C 46 19, 91 20, 121 34 C 139 42, 145 49, 158 44" stroke="%23c63d22" stroke-width="4.2" stroke-linecap="round"/><path d="M128 52 l31 -9 l-16 26" stroke="%232a271f" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / contain;
}

.faq-illustrated h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 1.35rem;
  padding-right: 5.4rem;
  transform: rotate(0.45deg);
}

.faq-illustrated h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 4.9rem;
  bottom: -0.25rem;
  height: 10px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 220 16" preserveAspectRatio="none"><path d="M4 10 C 37 3, 66 13, 100 8 C 133 3, 166 11, 216 6" fill="none" stroke="%23c63d22" stroke-width="5" stroke-linecap="round"/></svg>') no-repeat center / 100% 100%;
}

.faq-illustrated details {
  --faq-angle: -0.35deg;
  position: relative;
  border: 1.7px solid var(--hairline);
  border-radius: 15px 12px 18px 11px / 11px 17px 12px 16px;
  background: rgba(253, 250, 241, 0.92);
  padding: 0.95rem 1rem;
  box-shadow: 3px 3px 0 rgba(35, 33, 28, 0.88);
  transform: rotate(var(--faq-angle));
  transform-origin: 24px 12px;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.faq-illustrated details:nth-of-type(2n) {
  --faq-angle: 0.28deg;
  border-radius: 12px 16px 11px 18px / 16px 12px 17px 11px;
}

.faq-illustrated details:nth-of-type(3n) {
  --faq-angle: -0.12deg;
}

.faq-illustrated details::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  width: 42px;
  height: 8px;
  border-top: 2px solid rgba(198, 61, 34, 0.45);
  border-radius: 50%;
  transform: rotate(-3deg);
  opacity: 0.55;
}

.faq-illustrated details + details {
  margin-top: 0.9rem;
}

.faq-illustrated details[open] {
  background: #fff3cf;
  box-shadow: 4px 5px 0 rgba(35, 33, 28, 0.9);
}

.faq-illustrated details:hover {
  animation: faq-note-swing 0.62s ease-in-out;
}

.faq-illustrated summary {
  gap: 1rem;
  padding-left: 0.35rem;
}

.faq-illustrated summary::after {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--hairline);
  border-radius: 52% 48% 46% 54% / 48% 54% 46% 52%;
  background: #f8d765;
  color: var(--ink);
  box-shadow: 2px 2px 0 rgba(35, 33, 28, 0.86);
}

.faq-illustrated summary + p {
  padding-left: 0.35rem;
}

@keyframes faq-note-swing {
  0% { transform: rotate(var(--faq-angle)); }
  28% { transform: translateY(-2px) rotate(calc(var(--faq-angle) + 0.9deg)); }
  63% { transform: translateY(1px) rotate(calc(var(--faq-angle) - 0.55deg)); }
  100% { transform: rotate(var(--faq-angle)); }
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.media-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0.8rem;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.route-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0.85rem 1rem;
  font-weight: 800;
}

.mini {
  font-size: 0.88rem;
}

.site-footer {
  position: relative;
  border-top: 4px double var(--coral);
  background: var(--ink);
  color: var(--paper);
  padding: 2.4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Pie inferior: mencion obligatoria de Amazon + enlaces legales */
.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(244, 238, 223, 0.18);
}

.footer-affiliate {
  margin: 0 0 0.7rem;
  max-width: 78ch;
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  font-size: 0.86rem;
}

/* Aviso de cookies (solo informativo: no bloquea, recuerda con localStorage) */
.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 60;
  width: min(720px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.05rem;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 11px 7px 12px 8px / 8px 12px 7px 11px;
  box-shadow: 4px 4px 0 rgba(35, 33, 28, 0.4);
  font-size: 0.85rem;
  line-height: 1.45;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
}

.cookie-notice a {
  color: #ffe066;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-notice .btn {
  flex: none;
}

@media (max-width: 560px) {
  .cookie-notice {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
}

.site-footer a,
.site-footer p {
  color: rgba(244, 238, 223, 0.78);
}

.site-footer a:hover {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer h3 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
}

/* Home mature studio pass: scoped so the pinned use-ranking section keeps its own character. */
.home .site-header {
  border-bottom-color: rgba(42, 39, 31, 0.72);
  background:
    linear-gradient(180deg, rgba(244, 238, 223, 0.98), rgba(239, 230, 213, 0.96)),
    var(--grain);
}

.home .notice {
  border-bottom: 1px solid rgba(244, 238, 223, 0.18);
  background: #1f211e;
}

.home .nav {
  min-height: 72px;
}

.home .nav-links a:not(.btn) {
  position: relative;
}

.home .nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.28rem;
  height: 1.5px;
  background: var(--coral);
  transition: right 160ms ease;
}

.home .nav-links a:not(.btn):hover::after {
  right: 0;
}

.home-hero {
  background:
    radial-gradient(circle at 16% 20%, rgba(31, 111, 100, 0.13), transparent 32%),
    linear-gradient(90deg, rgba(42, 39, 31, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(42, 39, 31, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 58px 58px, 58px 58px, auto;
}

.home-hero .hero-copy {
  position: relative;
}

.home-hero .hero-copy::after {
  content: "";
  display: block;
  width: min(420px, 64vw);
  height: 1px;
  margin-top: 1.4rem;
  background: linear-gradient(90deg, var(--hairline), transparent);
  opacity: 0.38;
}

.home-hero .quick-finder {
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(253, 250, 241, 0.98), rgba(246, 239, 223, 0.98)),
    var(--card);
  box-shadow: 5px 5px 0 rgba(35, 33, 28, 0.85);
  transform: none;
}

.home-hero .quick-finder::before {
  height: 3px;
  opacity: 0.62;
}

.studio-proof {
  position: relative;
  border: 0;
  background:
    linear-gradient(90deg, rgba(253, 250, 241, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(253, 250, 241, 0.055) 1px, transparent 1px),
    #1d1f1c;
  background-size: 52px 52px;
}

.studio-proof::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--teal), rgba(244, 238, 223, 0.4));
}

.studio-proof .proof {
  padding: 1.45rem 1.2rem;
  border-right-color: rgba(244, 238, 223, 0.16);
}

.studio-proof .proof strong {
  font-size: 2rem;
  font-style: normal;
}

.studio-proof .proof span {
  color: rgba(244, 238, 223, 0.72);
}

.guide-studio {
  scroll-margin-top: 220px;
  background:
    linear-gradient(90deg, rgba(42, 39, 31, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(42, 39, 31, 0.035) 1px, transparent 1px),
    #f1ead9;
  background-size: 60px 60px;
}

.guide-board {
  position: relative;
  max-width: 1120px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.guide-board::before {
  display: none;
}

.guide-board > h2:first-child {
  max-width: 780px;
  margin-top: 0;
}

.guide-board > h2:first-child + p {
  max-width: 820px;
}

.guide-studio .steps {
  margin: clamp(1.4rem, 3vw, 2rem) 0 clamp(2rem, 4vw, 3rem);
}

.cork-board {
  position: relative;
  display: block;
  width: min(100%, 1120px);
  aspect-ratio: 3 / 2;
  margin-inline: auto;
  padding: 0;
  border-radius: 10px;
  background: url("/assets/img/illustrations/cork-postits-desktop.webp") center / 100% 100% no-repeat;
  box-shadow: 6px 6px 0 rgba(35, 33, 28, 0.78);
}

.cork-board::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1.5px rgba(42, 39, 31, 0.22);
  pointer-events: none;
}

.cork-board::after {
  display: none;
}

.cork-note {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 26.5%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.cork-note::before {
  display: none;
}

.cork-note h3,
.cork-note p {
  position: static;
}

.cork-note h3 {
  margin: 0 0 0.45rem;
  max-width: 12ch;
  color: #27231c;
  font-size: clamp(1.12rem, 1.75vw, 1.48rem);
  line-height: 1.08;
}

.cork-note p:not(.note-number) {
  max-width: 30ch;
  color: #4d493f;
  font-size: clamp(0.9rem, 1.18vw, 1rem);
  line-height: 1.42;
}

.note-number {
  position: absolute;
  top: -1.45rem;
  left: 0;
  margin: 0;
  color: rgba(159, 30, 30, 0.76);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.3vw, 1.12rem);
  line-height: 1;
}

.note-screen,
.note-level,
.note-software,
.note-price {
  margin-top: 0;
}

.note-screen {
  left: 16.7%;
  top: 24.4%;
}

.note-level {
  left: 59.6%;
  top: 25.2%;
}

.note-software {
  left: 16.7%;
  top: 65.2%;
}

.note-price {
  left: 59.6%;
  top: 67.4%;
}

.guide-studio .steps .decision-grid {
  gap: 1rem;
  margin: 1.25rem 0 1.7rem;
}

.guide-studio .steps .decision-grid > div {
  min-height: 158px;
  padding: 3.15rem 1rem 1rem;
  border: 1px solid rgba(42, 39, 31, 0.24);
  border-top: 3px solid var(--hairline);
  border-radius: 8px;
  background: rgba(244, 238, 223, 0.66);
}

.guide-studio .steps .decision-grid > div::before {
  left: 1rem;
  top: 0.72rem;
  color: var(--teal);
  font-size: 1.55rem;
}

.guide-studio .price-ranges {
  gap: 0.8rem;
  border-top: 0;
}

.guide-studio .price-range {
  display: grid;
  grid-template-columns: minmax(120px, 0.26fr) minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(42, 39, 31, 0.18);
  border-radius: 8px;
  background: rgba(253, 250, 241, 0.72);
  padding: 0.95rem 1rem;
}

.guide-studio .range-label {
  font-size: 1.1rem;
}

.guide-studio .range-bar {
  width: 100%;
  margin: 0;
}

.guide-studio .range-bar i {
  background: linear-gradient(90deg, var(--teal), var(--coral));
  border-radius: 99px;
}

.guide-studio .editor-note {
  border: 1px solid rgba(42, 39, 31, 0.24);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(244, 238, 223, 0.72);
  padding: 1rem 1.1rem;
}

.guide-studio .editor-note p {
  font-size: 1rem;
}

.home .site-footer {
  overflow: hidden;
  border-top: 0;
  background:
    linear-gradient(90deg, rgba(244, 238, 223, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(244, 238, 223, 0.04) 1px, transparent 1px),
    #1d1f1c;
  background-size: 56px 56px;
}

.home .site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--teal), rgba(244, 238, 223, 0.6));
}

.home .site-footer::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: 18px;
  width: 360px;
  height: 150px;
  opacity: 0.12;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 420 180" fill="none"><path d="M23 112 C 92 47, 181 45, 242 88 C 301 129, 235 156, 184 112 C 142 75, 203 43, 312 58" stroke="%23f4eedf" stroke-width="3" stroke-linecap="round"/><path d="M57 143 H 365" stroke="%23f4eedf" stroke-width="2" stroke-linecap="round" stroke-dasharray="1 12"/><path d="M315 58 L377 34 M315 58 L363 102" stroke="%23f4eedf" stroke-width="2.4" stroke-linecap="round"/></svg>') no-repeat center / contain;
}

.home .footer-grid {
  position: relative;
  z-index: 1;
  gap: 2rem;
}

.home .site-footer h3 {
  color: var(--paper);
  letter-spacing: 0.02em;
}

.home .site-footer h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 0.42rem;
  background: var(--teal);
}

.home .site-footer li + li {
  margin-top: 0.15rem;
}

@media (prefers-reduced-motion: reduce) {
  .ink-anim .hero-art .stroke,
  .ink-anim .hero-art .ink-dot,
  .ink-anim .hero-art .earth-outline,
  .ink-anim .hero-art .spark,
  .ink-anim .hero-art .ocean-fill,
  .ink-anim .hero-art .land,
  .ink-anim .hero-art .cloud,
  .ink-anim .hero-art .earth-shade {
    animation: none;
  }

  .ink-anim .artist-drawing-art img,
  .ink-anim .creative-stroke {
    animation: none;
  }

  .use-card:hover {
    animation: none;
  }

  .faq-illustrated details:hover {
    animation: none;
  }

  .card,
  .card:hover,
  .btn,
  .btn:hover,
  .pick-card .media img {
    transition: none;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-art {
    right: -32%;
    width: min(86vw, 680px);
    opacity: 0.24;
  }

  .artist-drawing-art {
    right: -32%;
    width: min(92vw, 760px);
    opacity: 0.28;
  }

  h1 {
    font-size: 2.55rem;
  }

  .quick-finder,
  .comparison-filters,
  .filters,
  .grid.cards-4,
  .grid.cards-3,
  .screen-criteria-grid,
  .proof-strip,
  .split,
  .article-hero .wrap,
  .model-review,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid.top-picks {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .finder-field.action {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 260px;
  }

  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .notice .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.55rem 0;
  }

  .hero,
  .hero .wrap {
    min-height: 640px;
  }

  .hero .wrap {
    padding: 2.4rem 0;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .quick-finder,
  .comparison-filters,
  .filters,
  .grid.cards-4,
  .grid.cards-3,
  .grid.top-picks,
  .proof-strip,
  .split,
  .article-hero .wrap,
  .model-review,
  .decision-grid,
  .pros-cons,
  .author-box,
  .screen-intent-grid,
  .buyer-warning,
  .screen-criteria-grid,
  .media-grid,
  .route-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .author-links {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .home-hero .wrap {
    min-height: 0;
  }

  .hero-art {
    display: block;
    top: 250px;
    right: -270px;
    width: 560px;
    opacity: 0.13;
    transform: none;
    filter: none;
  }

  .artist-drawing-art {
    top: 455px;
    right: -240px;
    width: 620px;
    opacity: 0.2;
    transform: rotate(-4deg);
  }

  .creative-stroke {
    opacity: 0.32;
  }

  .hero-copy::before {
    left: -16px;
    top: -20px;
    width: 92px;
  }

  .home-hero .quick-finder {
    transform: none;
    box-shadow: 3px 3px 0 rgba(35, 33, 28, 0.9);
  }

  .home-hero .quick-finder::before {
    left: 12px;
    right: 12px;
  }

  .finder-field.action {
    grid-column: auto;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-card {
    grid-template-rows: 170px auto;
  }

  .model-media {
    min-height: 180px;
  }

  .model-media img {
    max-height: 180px;
  }

  .proof {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof:last-child {
    border-bottom: 0;
  }

  .faq-illustrated {
    padding: 1.25rem 1rem 1.35rem;
    transform: none;
  }

  .faq-illustrated h2 {
    padding-right: 0;
  }

  .faq-illustrated h2::after {
    right: 0;
  }

  .faq-doodle-pencil,
  .faq-illustrated::after {
    display: none;
  }

  .faq-illustrated::before {
    left: 24px;
  }

  .guide-board {
    padding: 0;
  }

  .guide-studio {
    scroll-margin-top: 400px;
  }

  .guide-board::before {
    display: none;
  }

  .cork-board {
    aspect-ratio: 864 / 1821;
    padding: 0;
    border-radius: 10px;
    background-image: url("/assets/img/illustrations/cork-postits-muted-mobile.webp");
    box-shadow: 4px 4px 0 rgba(35, 33, 28, 0.78);
  }

  .cork-note {
    width: 50.5%;
    min-height: 0;
    padding: 0;
  }

  .cork-note h3 {
    max-width: 11ch;
    margin-bottom: 0.28rem;
    font-size: 1rem;
  }

  .cork-note p:not(.note-number) {
    max-width: 28ch;
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .note-number {
    top: -1rem;
    left: 0;
    font-size: 0.78rem;
  }

  .note-screen {
    left: 25.2%;
    top: 9.6%;
  }

  .note-level {
    left: 25.2%;
    top: 33.5%;
  }

  .note-software {
    left: 25.2%;
    top: 57.4%;
  }

  .note-price {
    left: 25.2%;
    top: 80.6%;
  }

  .guide-studio .price-range {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .guide-studio .range-bar {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    min-height: 60px;
    gap: 0.6rem;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--ink);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .nav-toggle-cb:checked ~ .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle-cb:checked ~ .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-cb:checked ~ .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    flex-basis: 100%;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    padding: 0.4rem 0 0.6rem;
    font-size: 1rem;
  }

  .nav-toggle-cb:checked ~ .nav-links {
    display: flex;
  }

  .nav-links > a,
  .has-drop > a {
    padding: 0.7rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .has-drop {
    position: static;
  }

  .has-drop::after {
    content: none;
  }

  .caret {
    display: none;
  }

  .drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    display: grid;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: 0 0 0.4rem 0.5rem;
    padding: 0.1rem 0 0.1rem 0.4rem;
  }

  .drop li a {
    padding: 0.55rem 0.5rem;
  }

  .nav-cta {
    width: max-content;
    margin: 0.6rem 0 0;
  }
}
