:root {
  --cream: #f4f1ea;
  --cream-deep: #e9e3d5;
  --ink: #2b2d42;
  --ink-deep: #202236;
  --red: #b73239;
  --red-bright: #c5363e;
  --steel: #7a8b99;
  --green: #567d62;
  --white: #fffdf7;
  --shadow: 5px 5px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  background-image: radial-gradient(rgba(43, 45, 66, 0.055) 1px, transparent 1.2px);
  background-size: 7px 7px;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 74px;
  padding: 12px clamp(22px, 7vw, 100px);
  border-bottom: 2px solid var(--ink);
  background: rgba(244, 241, 234, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.brand strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.03em;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: block;
  width: 39px;
  height: 43px;
  border: 3px solid var(--ink);
  clip-path: polygon(50% 0, 100% 27%, 100% 100%, 0 100%, 0 27%);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px 7px 7px;
  border: 2px solid var(--ink);
  border-radius: 4px;
}

.robot-eye {
  position: absolute;
  z-index: 1;
  top: 18px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink);
}

.robot-eye.left {
  left: 13px;
}

.robot-eye.right {
  right: 13px;
}

.robot-mouth {
  position: absolute;
  z-index: 1;
  left: 14px;
  top: 27px;
  width: 7px;
  border-top: 2px solid var(--ink);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
}

.site-header nav a {
  position: relative;
  padding: 8px 0;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1px;
  height: 2px;
  background: var(--red);
  transition: right 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a.active::after {
  right: 0;
}

.site-header nav a.active {
  color: var(--red);
}

.hero {
  min-height: 720px;
  padding: clamp(70px, 9vw, 130px) clamp(22px, 7vw, 100px);
  background: var(--ink);
  color: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.86fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "— ";
  color: currentColor;
  /* rhs.css (cargado antes, siempre presente vía base.html) define su propio
     .eyebrow::before con width/height/background/display pero sin content —
     misma especificidad, así que esas propiedades sin re-declarar acá seguían
     activas y aplastaban el "— " en una cajita de color. Se resetean
     explícitamente para que esta regla sea un override completo. */
  width: auto;
  height: auto;
  background: none;
  display: inline;
}

.eyebrow.light {
  color: #e9b8b9;
}

.hero h1,
.section h2,
.final-cta h2 {
  font-family: "Space Mono", "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(52px, 7.3vw, 106px);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--red-bright);
  font-style: normal;
}

.hero-lede {
  max-width: 620px;
  margin: 34px 0 0;
  color: #d5d5de;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid var(--ink);
  align-items: center;
  justify-content: center;
  box-shadow: 5px 5px 0 #121321;
  cursor: pointer;
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 80ms ease, box-shadow 80ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 7px 7px 0 #121321;
}

.button:active {
  transform: translate(5px, 5px);
  box-shadow: none;
}

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

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

.button-secondary {
  background: var(--cream);
  color: var(--ink);
}

.microcopy {
  margin: 23px 0 0;
  color: #9ba0b2;
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-workbench {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 390px;
  border: 2px solid var(--cream);
  background: #b8b5aa;
  background-image: linear-gradient(rgba(43, 45, 66, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 45, 66, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  box-shadow: 8px 8px 0 #111220;
  color: var(--ink);
  overflow: hidden;
}

.workbench-label,
.workbench-data {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  padding: 11px 15px;
  background: var(--cream);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workbench-label {
  top: 0;
  border-bottom: 2px solid var(--ink);
}

.workbench-data {
  bottom: 0;
  border-top: 2px solid var(--ink);
}

.promise-strip {
  min-height: 62px;
  padding: 15px clamp(22px, 7vw, 100px);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--red);
  color: var(--cream);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.promise-strip span:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.section {
  padding: clamp(80px, 10vw, 140px) clamp(22px, 7vw, 100px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  gap: 50px;
  align-items: end;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.02;
}

.section-heading > p:last-child {
  margin: 0;
  color: #5d6172;
  font-size: 16px;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.type-card {
  border: 2px solid var(--ink);
  background: var(--cream);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.type-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

.type-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-bottom: 2px solid var(--ink);
  background: var(--steel);
  overflow: hidden;
}

.type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
  transition: transform 300ms ease;
}

.type-card:hover img {
  transform: scale(1.035);
}

/* Carrusel de fotos en las 3 tarjetas de tipo de encargo + en el
   hero-workbench. Cada uno usa un efecto de transición distinto (fundido /
   deslizamiento / zoom / cortina) y una duración de ciclo que no comparte
   múltiplo común con las otras — así nunca cambian las 4 fotos a la vez.

   Los tiempos de cada @keyframes están calculados para que la foto saliente y
   la entrante SIEMPRE se solapen: si la saliente termina justo cuando arranca
   la entrante, entre las dos asoma el fondo del contenedor y el cambio se ve
   como un parpadeo gris. Con las fotos apiladas, la entrante queda encima de
   la saliente por orden del DOM — salvo en la vuelta del ciclo (última →
   primera), donde queda debajo — así que el solape tiene que funcionar en los
   dos sentidos. Siendo `S` el tramo por foto (100% / nº de fotos) y `f` la
   duración de la transición:
     · fundidos → entrada [0, f], sostén [f, S+f], salida [S+f, S+2f]. La
       saliente aguanta opaca hasta que la entrante terminó de aparecer, y
       recién ahí se desvanece: en un sentido la entrante aparece sobre base
       opaca, en el otro la saliente se desvanece sobre una entrante ya opaca.
     · desplazamientos → la salida arranca exactamente en S, en simultáneo con
       la entrada de la siguiente. Al moverse a la misma velocidad y con el
       mismo easing, el borde entre ambas es una sola línea que avanza.
   Al tocar estos números, mantener esa relación. */
.type-image--carousel-2 img,
.type-image--carousel-3 img,
.type-image--carousel-4 img {
  position: absolute;
  inset: 0;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: backwards;
}

/* 01 · Retrato en relieve — fundido cruzado. 4 fotos × ~4.3s = 17.2s. */
.type-image--carousel-4 img {
  opacity: 0;
  animation-duration: 17.2s;
  animation-name: type-carousel-fade-4;
}

@keyframes type-carousel-fade-4 {
  0%              { opacity: 0; }
  2.5%, 27.5%     { opacity: 1; }
  30%, 100%       { opacity: 0; }
}

/* 02 · Figura 3D — deslizamiento horizontal. 3 fotos × 3.7s = 11.1s.
   Anima `translate` (la propiedad individual) y no `transform`, porque las dos
   se componen: así el scale(1.035) de .type-card:hover sigue funcionando sobre
   una foto que se está deslizando. Con `transform` en ambos lados, la
   animación le gana a la regla del hover y el zoom no se ve nunca. */
.type-image--carousel-3 img {
  animation-duration: 11.1s;
  animation-name: type-carousel-slide-3;
}

@keyframes type-carousel-slide-3 {
  0%               { translate: 100% 0; }
  3%, 33.33%       { translate: 0 0; }
  36.33%, 100%     { translate: -100% 0; }
}

/* 03 · Tengo otra idea — zoom + fundido (Ken Burns). 2 fotos × 5.1s = 10.2s.
   Misma razón que el 02 para usar `scale` en vez de `transform`. Los keyframes
   intermedios declaran solo `opacity`: la escala interpola de punta a punta
   (1.12 → 1) a lo largo de toda la ventana visible, así el zoom no se congela
   a mitad de camino. Nunca bajar de 1 — con menos, la foto se encoge dentro
   del recuadro y descubre el fondo en los bordes. */
.type-image--carousel-2 img {
  opacity: 0;
  scale: 1.12;
  animation-duration: 10.2s;
  animation-name: type-carousel-zoom-2;
}

@keyframes type-carousel-zoom-2 {
  0%            { opacity: 0; scale: 1.12; }
  5%, 55%       { opacity: 1; }
  60%, 100%     { opacity: 0; scale: 1; }
}

/* Hero workbench — cortina/wipe. 3 fotos × 4.8s = 14.4s. */
.workbench-carousel {
  position: absolute;
  inset: 72px 40px 68px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--steel);
}

.workbench-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
  clip-path: inset(0 100% 0 0);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: backwards;
  animation-duration: 14.4s;
  animation-name: workbench-wipe;
}

/* La entrante se descubre de izquierda a derecha mientras la saliente se tapa
   de izquierda a derecha al mismo ritmo: las dos comparten un único borde
   vertical que barre el recuadro, sin fondo asomando por detrás. */
@keyframes workbench-wipe {
  0%             { clip-path: inset(0 100% 0 0); }
  3%, 33.33%     { clip-path: inset(0 0 0 0); }
  36.33%, 100%   { clip-path: inset(0 0 0 100%); }
}

@media (prefers-reduced-motion: reduce) {
  .type-image--carousel-2 img,
  .type-image--carousel-3 img,
  .type-image--carousel-4 img,
  .workbench-carousel img {
    animation: none;
    opacity: 0;
    transform: none;
    translate: none;
    scale: none;
    clip-path: none;
  }
  .type-image--carousel-2 img:first-child,
  .type-image--carousel-3 img:first-child,
  .type-image--carousel-4 img:first-child,
  .workbench-carousel img:first-child {
    opacity: 1;
  }
}

.type-image > span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 9px;
  border: 2px solid var(--ink);
  background: var(--red);
  color: var(--cream);
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 10px;
  font-weight: 800;
}

.type-content {
  padding: 25px;
}

.type-content h3,
.process-grid h3,
.confirmation h3 {
  margin: 0;
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 20px;
}

.type-content p {
  min-height: 78px;
  color: #5d6172;
  font-size: 14px;
}

.type-content button {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-section {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.process-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-grid li {
  min-height: 230px;
  padding: 28px;
  border: 2px solid var(--cream);
  border-right: 0;
}

.process-grid li:last-child {
  border-right: 2px solid var(--cream);
}

.process-grid li > span {
  display: block;
  margin-bottom: 55px;
  color: #e9b8b9;
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.process-grid p {
  color: #bfc1cb;
  font-size: 13px;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(520px, 1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 115px;
}

.form-intro > p:not(.eyebrow) {
  color: #5d6172;
  font-size: 17px;
}

.form-note {
  margin-top: 38px;
  padding: 23px;
  border: 2px solid var(--ink);
  background: var(--cream-deep);
  box-shadow: var(--shadow);
}

.form-note strong {
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.form-note ul {
  margin: 15px 0 0;
  padding-left: 18px;
  color: #5d6172;
  font-size: 13px;
}

.form-panel {
  min-height: 700px;
  padding: clamp(25px, 4vw, 48px);
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

fieldset {
  margin: 0 0 34px;
  padding: 0;
  border: 0;
}

legend,
.field label {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.choice-grid label {
  position: relative;
  min-height: 54px;
  padding: 14px;
  border: 2px solid var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 140ms ease, color 140ms ease;
}

.choice-grid label.selected {
  background: var(--ink);
  color: var(--cream);
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid span {
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
}

.choice-grid label:focus-within {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  margin-bottom: 25px;
}

.field input:not(.file-input),
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--cream);
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 135px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow: 4px 4px 0 var(--red);
}

.upload-zone {
  min-height: 130px;
  border: 2px dashed var(--steel);
  background: var(--cream);
  cursor: pointer;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
}

.upload-zone:hover {
  border-color: var(--red);
}

.upload-zone strong {
  font-size: 12px;
}

.upload-zone small {
  color: var(--steel);
  font-size: 10px;
  text-transform: none;
}

.upload-icon {
  display: grid;
  width: 31px;
  height: 31px;
  margin-bottom: 5px;
  border: 2px solid var(--ink);
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
}

/* Selector reforzado (no solo .file-input): rhs.css tiene
   `form input[type=file]` con especificidad 0-1-2, que le ganaba la
   propiedad `width` a `.file-input` sola (0-1-0) — el input "oculto" quedaba
   invisible pero con width:100%, un área clickeable fantasma de ancho
   completo. `form input.file-input[type=file]` (0-2-2) gana sin ambigüedad. */
form input.file-input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  margin: 4px 0 24px;
  color: #5d6172;
  font-size: 12px;
}

.consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.submit {
  width: 100%;
}

.prototype-note {
  margin: 15px 0 0;
  color: var(--steel);
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.form-errors,
.field-errors {
  margin: 8px 0 16px;
  color: var(--red);
  font-size: 12px;
}

.form-errors {
  padding: 14px;
  border: 2px solid var(--red);
  background: #fff0ef;
}

.form-errors ul,
.field-errors ul {
  margin: 0;
  padding-left: 18px;
}

.confirmation {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.confirmation-mark {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 28px;
  border: 3px solid var(--ink);
  background: var(--green);
  box-shadow: var(--shadow);
  color: white;
  place-items: center;
  font-family: "Space Mono", monospace;
  font-size: 38px;
  font-weight: 800;
}

.confirmation h3 {
  font-size: clamp(28px, 4vw, 45px);
}

.confirmation > p:not(.eyebrow) {
  max-width: 530px;
  color: #5d6172;
}

.ticket {
  width: 100%;
  margin: 25px 0 34px;
  border: 2px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ticket > * {
  padding: 13px;
  border-bottom: 1px dashed var(--steel);
}

.ticket span {
  color: var(--steel);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.ticket strong {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  text-align: right;
}

.faq-section {
  border-top: 2px solid var(--ink);
  background: var(--cream-deep);
}

.faq-grid {
  border-top: 2px solid var(--ink);
}

.faq-grid details {
  border-bottom: 2px solid var(--ink);
}

.faq-grid summary {
  position: relative;
  padding: 24px 60px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Space Mono", "Space Mono", monospace;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}

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

.faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 18px;
  font-size: 30px;
  font-weight: 400;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid details p {
  max-width: 750px;
  margin: -5px 0 26px;
  color: #5d6172;
}

.final-cta {
  padding: clamp(80px, 10vw, 145px) clamp(22px, 7vw, 100px);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.final-cta h2 {
  max-width: 970px;
  margin: 0 auto 42px;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-workbench {
    min-height: 480px;
  }

  .type-grid {
    grid-template-columns: 1fr 1fr;
  }

  .type-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .type-card:last-child .type-image {
    aspect-ratio: 4 / 3;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid li:nth-child(2) {
    border-right: 2px solid var(--cream);
  }

  .process-grid li:nth-child(n + 3) {
    border-top: 0;
  }

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

  .form-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 65px;
    padding: 9px 18px;
  }

  .site-header nav a:not(.active):not(:last-child) {
    display: none;
  }

  .site-header nav {
    gap: 14px;
    font-size: 10px;
  }

  .brand strong {
    font-size: 12px;
  }

  .brand-mark {
    width: 34px;
    height: 38px;
  }

  .robot-eye {
    top: 16px;
  }

  .robot-eye.left {
    left: 11px;
  }

  .robot-eye.right {
    right: 11px;
  }

  .robot-mouth {
    left: 12px;
    top: 24px;
  }

  .hero {
    min-height: auto;
    padding: 70px 20px 55px;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(45px, 16vw, 68px);
  }

  .hero-lede {
    font-size: 16px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-workbench {
    min-height: 390px;
  }

  .workbench-carousel {
    inset: 70px 23px 62px;
  }

  .workbench-label,
  .workbench-data {
    flex-direction: column;
    gap: 2px;
  }

  .promise-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .promise-strip span {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .promise-strip span:nth-child(2) {
    border-right: 0;
  }

  .section {
    padding: 76px 20px;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .type-grid {
    grid-template-columns: 1fr;
  }

  .type-card:last-child {
    grid-column: auto;
    display: block;
  }

  .type-card:last-child .type-image {
    aspect-ratio: 4 / 3;
  }

  .type-content p {
    min-height: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    min-height: auto;
    border-right: 2px solid var(--cream);
    border-bottom: 0;
  }

  .process-grid li:nth-child(n + 2) {
    border-top: 0;
  }

  .process-grid li:last-child {
    border-bottom: 2px solid var(--cream);
  }

  .process-grid li > span {
    margin-bottom: 27px;
  }

  .form-panel {
    min-height: auto;
    padding: 24px 17px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .field-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .confirmation {
    min-height: 520px;
  }

  .final-cta {
    padding: 80px 20px;
  }

}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Extensiones — brief completo de Studio Robot House (personalizados/)
   No forman parte del paquete de diseño original: se agregan acá para el
   set de campos más amplio (contacto/región/comuna) y las páginas de
   seguimiento de estado (ver_solicitud, pago_simulado) que el paquete de
   referencia no cubre. Reutilizan los mismos tokens/clases de arriba.
   ========================================================================== */

/* rhs.css (cargado antes que este archivo) trae una regla global
   `h1,h2,h3,h4,h5 { color: var(--ink) }` que le gana por especificidad a los
   selectores de este archivo que solo heredaban el color cream de `.hero`/
   `.process-section`/`.final-cta` — el texto quedaba ink-sobre-ink,
   invisible. Se fija explícitamente acá. */
.hero h1,
.process-section h2,
.process-section h3,
.process-grid h3,
.final-cta h2 {
  color: var(--cream);
}

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

@media (max-width: 720px) {
  .choice-grid--3 {
    grid-template-columns: 1fr;
  }
}

.process-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1050px) {
  .process-grid--5 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .process-grid--5 {
    grid-template-columns: 1fr;
  }
}

.eyebrow.subhead {
  margin: 34px 0 14px;
}

.status-page {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 110px) clamp(22px, 7vw, 100px);
}

.status-panel {
  padding: clamp(25px, 4vw, 48px);
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 2px solid var(--ink);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-badge--info { background: var(--cream-deep); color: var(--ink); }
.status-badge--warn { background: #f3d9a1; color: var(--ink); }
.status-badge--ok { background: var(--green); color: var(--white); border-color: var(--ink); }
.status-badge--muted { background: var(--cream); color: var(--steel); }

.status-steps {
  display: flex;
  gap: 0;
  margin: 30px 0;
  padding: 0 0 6px;
  list-style: none;
  /* Con 8 pasos, algunos textos largos ("Falta información", "En
     producción") no caben en una fila angosta — mejor un scroll horizontal
     que dejarlos amontonarse/superponerse. */
  overflow-x: auto;
}

.status-step {
  position: relative;
  /* flex: 1 (sin mínimo) dejaba que cada columna se angostara hasta romper
     el texto contra la del vecino — flex-basis + min-width fuerzan un ancho
     mínimo legible; crecen parejo si sobra espacio, si no, se activa el
     scroll de arriba en vez de superponerse. */
  flex: 1 0 92px;
  min-width: 92px;
  padding: 0 8px;
  text-align: center;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--steel);
}

.status-step::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  position: relative;
  z-index: 1;
}

.status-step::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--cream-deep);
  z-index: 0;
}

.status-step:first-child::after {
  display: none;
}

.status-step.done {
  color: var(--ink);
}

.status-step.done::before {
  background: var(--red);
  border-color: var(--red);
}

.status-step.done::after {
  background: var(--red);
}

.quote-box {
  margin-top: 25px;
  padding: 23px;
  border: 2px solid var(--ink);
  background: var(--cream-deep);
  box-shadow: var(--shadow);
}

.quote-box h3 {
  margin: 0 0 12px;
  font-family: "Space Mono", monospace;
  font-size: 16px;
}

.quote-box p {
  margin: 4px 0;
  font-size: 14px;
}

.pay-prompt {
  margin-top: 25px;
  padding: 23px;
  border: 2px solid var(--ink);
  background: var(--cream);
}

.pay-prompt p {
  margin: 0 0 16px;
  font-size: 14px;
  color: #5d6172;
}

.retracto-notice {
  margin-top: 25px;
  padding: 18px 20px;
  border: 2px solid var(--ink);
  border-left-width: 6px;
  border-left-color: var(--warn);
  background: #fbf1de;
}

.retracto-notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.retracto-notice a {
  color: var(--ink);
  text-decoration: underline;
}
