/* ==========================================================================
   CLICKO — Landing page
   Implementación del prototipo "CLICKO Landing.dc.html" (Claude Design).
   Mobile-first: el layout resuelve de forma fluida con clamp() y auto-fit;
   la única media query real es el breakpoint de navegación en 900px.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Color */
  --clk-bg:            #0A0A0A;
  --clk-bg-2:          #111111;
  --clk-text:          #F5F3EE;
  --clk-text-2:        #A6A6A6;
  --clk-text-3:        #8F8F8F;
  --clk-accent:        #5B8CFF;
  --clk-on-accent:     #0A0A0A;
  --clk-accent-soft:   #8FB0FF;              /* errores y foco de campos */
  --clk-border:        rgba(255, 255, 255, 0.12);
  --clk-border-strong: rgba(255, 255, 255, 0.3);
  --clk-grid:          rgba(255, 255, 255, 0.06);

  /* Tipografía */
  --clk-font-display: Manrope, system-ui, sans-serif;
  --clk-font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Movimiento */
  --clk-ticker: 28s;
  --clk-ease:   cubic-bezier(.2, .7, .2, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--clk-bg);
  color: var(--clk-text);
  font-family: var(--clk-font-display);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

section { scroll-margin-top: 76px; }

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

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

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

::placeholder { color: var(--clk-text-3); }

:focus-visible {
  outline: 2px solid var(--clk-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Enlace de salto: fuera de pantalla hasta recibir foco */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--clk-accent);
  color: var(--clk-on-accent);
  padding: 10px 16px;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --------------------------------------------------------------------------
   3. Motor de animación
   Primitivas reutilizables, sin conocimiento de componentes: los keyframes,
   el reveal on scroll, las palabras partidas y las máscaras de imagen.
   La sección 14 conecta estas piezas con cada bloque de la página.
   -------------------------------------------------------------------------- */
@keyframes clk-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@keyframes clk-ping {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

@keyframes clk-scan {
  0%   { top: -110px; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* El glow del hero respira en lugar de quedarse quieto */
@keyframes clk-breathe {
  0%, 100% { opacity: .7; }
  50%      { opacity: 1; }
}

@keyframes clk-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

@keyframes clk-spin { to { transform: rotate(360deg); } }

/* Anillo hueco que se expande: el ping del logo aplicado a otras piezas */
@keyframes clk-ring {
  0%   { transform: scale(1); opacity: .75; }
  70%  { transform: scale(2.1); opacity: 0; }
  100% { transform: scale(2.1); opacity: 0; }
}

/* Entrada del check de éxito: aterriza con un rebote corto */
@keyframes clk-pop {
  0%   { transform: scale(.4); opacity: 0; }
  62%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Un campo inválido se sacude una sola vez: el error se ve antes de leerse */
@keyframes clk-shake {
  10%, 90% { transform: translateX(-2px); }
  30%, 70% { transform: translateX(3px); }
  50%      { transform: translateX(-4px); }
}

/* ---- Reveal on scroll: el observer de script.js marca [data-seen] --------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .8s var(--clk-ease) var(--clk-d, 0s),
    transform .8s var(--clk-ease) var(--clk-d, 0s);
}
[data-reveal][data-seen] {
  opacity: 1;
  transform: none;
}
[data-delay="1"] { --clk-d: .09s; }
[data-delay="2"] { --clk-d: .18s; }
[data-delay="3"] { --clk-d: .27s; }

/* ---- Palabras partidas: cada palabra sube desde su propia línea ----------
   script.js envuelve cada palabra de un [data-split] en .clk-word > .clk-word-i.
   El padding inferior deja respirar a las colas de las "g" y las "y". */
.clk-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding: 0 .06em .18em;
  margin: 0 -.06em -.18em;
}
.clk-word-i {
  display: inline-block;
  transform: translateY(115%);
  transition: transform .95s var(--clk-ease);
  transition-delay: calc(var(--i, 0) * 42ms + var(--clk-d, 0s));
}
[data-split][data-seen] .clk-word-i { transform: none; }

/* ---- Máscara de imagen: la foto se descubre de arriba hacia abajo --------
   script.js saca el atributo cuando termina, para no pisar los hover de zoom. */
[data-mask] {
  /* El radio va en la máscara: si no, la esquina redonda se pierde al recortar */
  clip-path: inset(0 0 101% 0 round var(--clk-r, 6px));
  transition: clip-path 1.1s var(--clk-ease) var(--clk-d, 0s);
}
[data-mask][data-seen] { clip-path: inset(0 0 0 0 round var(--clk-r, 6px)); }
.project-shot,
.shot-frame-card { --clk-r: 4px; }

[data-mask="zoom"] img {
  transform: scale(1.12);
  transition: transform 1.5s var(--clk-ease) var(--clk-d, 0s);
}
[data-mask="zoom"][data-seen] img { transform: scale(1); }

/* ---- Stagger genérico: los hijos entran en cascada ----------------------- */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity .55s var(--clk-ease) calc(var(--i, 0) * 55ms + .12s),
    transform .55s var(--clk-ease) calc(var(--i, 0) * 55ms + .12s);
}
[data-stagger][data-seen] > *,
[data-seen] [data-stagger] > * {
  opacity: 1;
  transform: none;
}

/* ---- Intro: la coreografía de carga del hero ---------------------------- */
[data-intro] {
  opacity: 0;
  transform: translateY(18px);
}
body.is-ready [data-intro] {
  opacity: 1;
  transform: none;
  transition:
    opacity .9s var(--clk-ease) calc(var(--i, 0) * 90ms + .12s),
    transform .9s var(--clk-ease) calc(var(--i, 0) * 90ms + .12s);
}

/* --------------------------------------------------------------------------
   4. Utilidades
   -------------------------------------------------------------------------- */
.container {
  width: min(1360px, 100% - clamp(28px, 7vw, 88px));
  margin: 0 auto;
}
.container-wide { width: min(1440px, 100% - clamp(28px, 7vw, 88px)); }

.text-accent { color: var(--clk-accent); }

.dot-accent {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clk-accent);
  flex: none;
}

.eyebrow {
  margin: 0 0 18px;
  font-family: var(--clk-font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--clk-text-2);
  text-transform: uppercase;
}
.eyebrow-dot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(20px, 3vw, 28px);
}

.lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--clk-text-2);
  text-wrap: pretty;
}

.caption {
  font-family: var(--clk-font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--clk-text-3);
}

.section-header {
  max-width: 820px;
  margin-bottom: clamp(44px, 5vw, 68px);
}
.section-title {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.032em;
  font-weight: 800;
  text-wrap: balance;
}
.section-lead {
  margin: 20px 0 0;
  max-width: 56ch;
  font-size: clamp(15px, 1.4vw, 18px);
}

/* Chips */
.chip-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  border: 1px solid var(--clk-border);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12.5px;
  color: var(--clk-text-2);
}
.chip-light {
  padding: 8px 15px;
  font-size: 13px;
  color: var(--clk-text);
}

/* Botones — todos pill */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  transition: transform .2s ease, filter .2s ease, background .2s ease, border-color .2s ease;
}
.btn-accent {
  background: var(--clk-accent);
  color: var(--clk-on-accent);
}
.btn-accent:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}
.btn-sm {
  font-size: 14px;
  padding: 11px 20px;
}
.btn-sm:hover { transform: translateY(-1px); }
.btn-md {
  font-size: 15px;
  padding: 14px 22px;
}
.btn-outline {
  color: var(--clk-text);
  font-weight: 600;
  border: 1px solid var(--clk-border);
}
.btn-outline:hover {
  border-color: var(--clk-text);
  background: var(--clk-bg-2);
}
.btn-dark {
  background: var(--clk-bg);
  color: var(--clk-text);
  padding: 17px 30px;
}
.btn-dark:hover {
  transform: translateY(-2px);
  background: #1c1c1c;
}
.btn-outline-dark {
  color: var(--clk-bg);
  padding: 17px 30px;
  border: 1.5px solid rgba(10, 10, 10, .72);
}
.btn-outline-dark:hover {
  border-color: var(--clk-bg);
  background: rgba(10, 10, 10, .08);
}

/* Link con flecha: el gap crece en hover */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--clk-text);
  transition: gap .2s ease, color .2s ease;
}
.link-arrow:hover {
  gap: 16px;
  color: var(--clk-accent);
}
.link-arrow-accent {
  color: var(--clk-accent);
  border-bottom: 1px solid rgba(91, 140, 255, .45);
  padding-bottom: 4px;
}
.link-arrow-accent:hover { color: var(--clk-accent); }

/* --------------------------------------------------------------------------
   5. Navbar
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, .86);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--clk-border);
}

.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--clk-text);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.02em;
}
.logo-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clk-accent);
  flex: none;
}
.logo-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--clk-accent);
  animation: clk-ping 2.8s ease-out infinite;
}

.nav-desktop { display: none; }

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--clk-text-2);
  transition: color .2s ease;
}
.nav-link:hover { color: var(--clk-text); }

.nav-toggle {
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--clk-border);
  border-radius: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--clk-text);
}

.nav-mobile {
  background: var(--clk-bg-2);
  border-top: 1px solid var(--clk-border);
  padding: 8px 0 20px;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile-inner {
  display: flex;
  flex-direction: column;
}
.nav-mobile a {
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--clk-text);
  border-bottom: 1px solid var(--clk-border);
}
.nav-mobile-cta {
  margin-top: 20px;
  justify-content: center;
  padding: 16px;
  border-bottom: none;
  color: var(--clk-on-accent);
}

/* Desktop: nav completa, sin hamburguesa ni panel */
@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.4vw, 34px);
  }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(112px, 14vh, 168px) 0 clamp(56px, 7vw, 88px);
  overflow: hidden;
}

/* Grilla decorativa de 6 columnas */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, var(--clk-grid) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -18%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 820px;
  max-height: 820px;
  background: radial-gradient(circle, rgba(91, 140, 255, .18) 0%, rgba(91, 140, 255, 0) 62%);
  pointer-events: none;
}

.hero-inner { position: relative; }

.hero-copy {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.hero-title {
  margin: 0;
  font-size: clamp(40px, 7vw, 92px);
  line-height: .95;
  letter-spacing: -.04em;
  font-weight: 800;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 600;
}
.hero-lead {
  margin: 24px auto 0;
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

/* Ventana de producto */
.product-window {
  margin-top: clamp(40px, 5vw, 72px);
  background: var(--clk-bg-2);
  border: 1px solid var(--clk-border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .5s var(--clk-ease);
  will-change: transform;
}
.product-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--clk-border);
}
.chrome-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  flex: none;
}
.chrome-dot-accent { background: var(--clk-accent); }
.chrome-url {
  margin-left: 12px;
  flex: 1;
  min-width: 0;
  background: var(--clk-bg);
  border: 1px solid var(--clk-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--clk-font-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  color: var(--clk-text-3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Captura con scroll on hover: el marco recorta, script.js traslada la imagen */
.shot-frame {
  position: relative;
  overflow: hidden;
  background: var(--clk-bg);
  cursor: ns-resize;
}
.shot-frame-hero { aspect-ratio: 16 / 8; }
.shot-frame-card {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--clk-border);
  border-radius: 4px;
}
.shot-frame img {
  width: 100%;
  height: auto;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.shot-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 10, .72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--clk-border);
  border-radius: 999px;
  padding: 7px 13px;
  font-family: var(--clk-font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--clk-text);
  text-transform: uppercase;
  pointer-events: none;
}
.shot-badge .dot-accent { width: 5px; height: 5px; }
.shot-badge-sm {
  right: 10px;
  bottom: 10px;
  gap: 7px;
  padding: 6px 11px;
  font-size: 9.5px;
}

.hero-caption {
  margin: 24px 0 0;
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. Franja de capacidades (ticker)
   -------------------------------------------------------------------------- */
.ticker {
  border-top: 1px solid var(--clk-border);
  border-bottom: 1px solid var(--clk-border);
  background: var(--clk-bg-2);
  overflow: hidden;
  padding: 20px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: clk-marquee var(--clk-ticker) linear infinite;
}
.ticker-group {
  list-style: none;
  margin: 0;
  padding: 0 44px 0 0;
  display: flex;
  align-items: center;
  gap: 44px;
}
.ticker-group li {
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: clamp(16px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -.02em;
  white-space: nowrap;
  color: var(--clk-text);
}
/* Punto de acento entre capacidades */
.ticker-group li::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clk-accent);
  flex: none;
}
.ticker-group li:nth-child(even) { color: var(--clk-text-2); }

/* --------------------------------------------------------------------------
   8. Proyectos
   -------------------------------------------------------------------------- */
.projects { padding: clamp(80px, 10vw, 144px) 0; }

.featured-project {
  border: 1px solid var(--clk-border);
  border-radius: 6px;
  background: var(--clk-bg-2);
  overflow: hidden;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
}
.featured-copy {
  min-width: 0;
  padding: clamp(28px, 3.4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--clk-border);
}
.featured-cats {
  margin: 0 0 22px;
  font-family: var(--clk-font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--clk-accent);
  text-transform: uppercase;
}
.featured-title {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 800;
}
.featured-desc {
  margin: 20px 0 0;
  max-width: 50ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--clk-text-2);
  text-wrap: pretty;
}
.featured-note {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--clk-text);
  border-left: 2px solid var(--clk-accent);
  padding-left: 14px;
}
.featured-media {
  min-width: 0;
  padding: clamp(24px, 3vw, 44px);
  background: var(--clk-bg);
  border-left: 1px solid var(--clk-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* Cards secundarias */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(20px, 2.4vw, 32px);
  margin-top: clamp(20px, 2.4vw, 32px);
}
.project-card {
  border: 1px solid var(--clk-border);
  border-radius: 6px;
  background: var(--clk-bg-2);
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.project-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--clk-bg);
  border: 1px solid var(--clk-border);
  border-radius: 4px;
}
.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  transform: scale(1);
  transition: transform .8s var(--clk-ease);
}
.project-shot:hover img { transform: scale(1.05); }
.project-domain {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(10, 10, 10, .7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 5px 11px;
  font-family: var(--clk-font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--clk-text);
  text-transform: uppercase;
  pointer-events: none;
}
.project-cats {
  margin: 0 0 12px;
  font-family: var(--clk-font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--clk-text-3);
  text-transform: uppercase;
}
.project-title {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.05;
  letter-spacing: -.028em;
  font-weight: 800;
}
.project-desc {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--clk-text-2);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   9. Servicios
   -------------------------------------------------------------------------- */
.services {
  border-top: 1px solid var(--clk-border);
  background: var(--clk-bg-2);
  padding: clamp(80px, 10vw, 144px) 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(20px, 2.2vw, 28px);
  align-items: stretch;
}
.service-card {
  border: 1px solid var(--clk-border);
  border-radius: 6px;
  background: var(--clk-bg);
  padding: clamp(26px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.service-index {
  margin: 0;
  font-family: var(--clk-font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--clk-text-3);
}
.service-title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 700;
}
.service-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--clk-text-2);
  text-wrap: pretty;
}
/* margin-top:auto alinea el hairline entre cards de distinta altura */
.service-list {
  list-style: none;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--clk-border);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.service-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--clk-text-2);
}
.service-list li span { color: var(--clk-accent); }

/* Card diferencial */
.service-card-featured {
  position: relative;
  border-color: var(--clk-accent);
  background: linear-gradient(180deg, rgba(91, 140, 255, .16) 0%, rgba(91, 140, 255, 0) 46%), var(--clk-bg);
}
.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.service-card-featured .service-index { color: var(--clk-accent); }
.service-card-featured .service-title {
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.08;
  letter-spacing: -.024em;
  font-weight: 800;
}
.service-card-featured .service-desc {
  font-size: 15.5px;
  color: var(--clk-text);
}
.service-card-featured .service-list li { color: var(--clk-text); }

.badge {
  font-family: var(--clk-font-mono);
  font-size: 9px;
  letter-spacing: .16em;
  background: var(--clk-accent);
  color: var(--clk-on-accent);
  padding: 5px 9px;
  border-radius: 3px;
  font-weight: 500;
}

.services-footer {
  margin-top: clamp(28px, 3vw, 40px);
  border: 1px solid var(--clk-border);
  border-radius: 6px;
  padding: clamp(24px, 2.6vw, 34px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.services-footer p {
  margin: 0;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -.015em;
  max-width: 52ch;
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   10. Proceso / Diferencial
   -------------------------------------------------------------------------- */
.process {
  border-top: 1px solid var(--clk-border);
  padding: clamp(80px, 10vw, 144px) 0;
}
.process-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.process-title {
  margin: 0;
  font-size: clamp(34px, 5.6vw, 72px);
  line-height: .99;
  letter-spacing: -.035em;
  font-weight: 800;
  text-wrap: balance;
}
.process-header .lead {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
}

/* El punto montado sobre el borde superior arma el recorrido sin conector */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
.process-steps li {
  position: relative;
  border-top: 1px solid var(--clk-border);
  padding-top: 28px;
}
.step-dot {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clk-border-strong);
}
.step-dot-accent { background: var(--clk-accent); }
.step-index {
  margin: 0 0 12px;
  font-family: var(--clk-font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--clk-text-3);
}
.step-title {
  margin: 0;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -.02em;
  font-weight: 700;
}
.step-desc {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--clk-text-2);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   11. Sobre CLICKO
   -------------------------------------------------------------------------- */
.about {
  border-top: 1px solid var(--clk-border);
  background: var(--clk-bg-2);
  padding: clamp(80px, 10vw, 144px) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

/* Retrato: capas img → duotono → grilla → escaneo → degradado */
.portrait-wrap {
  position: relative;
  max-width: 460px;
}
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--clk-border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--clk-bg);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1);
  transition: filter .6s ease, transform .9s var(--clk-ease);
}
.portrait:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.045);
}
.portrait-tint {
  position: absolute;
  inset: 0;
  background: var(--clk-accent);
  mix-blend-mode: color;
  opacity: .62;
  transition: opacity .6s ease;
}
.portrait:hover .portrait-tint { opacity: 0; }
.portrait-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.portrait-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(91, 140, 255, 0) 0%, rgba(91, 140, 255, .22) 55%, rgba(255, 255, 255, .5) 100%);
  animation: clk-scan 5.5s cubic-bezier(.5, 0, .5, 1) infinite;
  pointer-events: none;
}
.portrait-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 52%, rgba(10, 10, 10, .7) 100%);
  pointer-events: none;
}
.portrait-plate {
  position: absolute;
  right: -1px;
  bottom: -1px;
  background: var(--clk-bg);
  border: 1px solid var(--clk-border);
  border-radius: 4px;
  padding: 12px 16px;
}
.portrait-name {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.portrait-role {
  margin: 3px 0 0;
  font-family: var(--clk-font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--clk-accent);
}

.about-text {
  margin: 24px 0 0;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
}
.about-text + .about-text { margin-top: 18px; }
.about-chips { margin: 30px 0 0; }

/* --------------------------------------------------------------------------
   12. Contacto: bloque de acento + formulario
   -------------------------------------------------------------------------- */
.contact {
  border-top: 1px solid var(--clk-border);
  position: relative;
  overflow: hidden;
}

.cta-block {
  position: relative;
  background: var(--clk-accent);
  padding: clamp(72px, 9vw, 132px) 0;
}
.cta-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(10, 10, 10, .12) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  pointer-events: none;
}
.cta-block .container { position: relative; }
.cta-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.cta-title {
  margin: 0;
  font-size: clamp(38px, 7.4vw, 104px);
  line-height: .94;
  letter-spacing: -.045em;
  font-weight: 800;
  color: var(--clk-bg);
  text-wrap: balance;
}
/* box-shadow y no border-bottom: el subrayado escala con el tipo */
.cta-title em {
  font-style: italic;
  font-weight: 700;
  box-shadow: inset 0 -0.09em 0 var(--clk-bg);
}
.cta-lead {
  margin: 26px auto 0;
  max-width: 56ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(10, 10, 10, .78);
  text-wrap: pretty;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}
.cta-caption {
  margin: 24px 0 0;
  font-family: var(--clk-font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--clk-bg);
}

.form-area {
  position: relative;
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--clk-bg);
}
.form-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--clk-bg-2);
  border: 1px solid var(--clk-border);
  border-radius: 6px;
  padding: clamp(26px, 3.4vw, 52px);
}
.form-eyebrow {
  margin: 0 0 28px;
  letter-spacing: .16em;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.field-full { margin-top: 20px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--clk-text);
}
.req { color: var(--clk-accent); }
.optional {
  color: var(--clk-text-3);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--clk-bg);
  border: 1px solid var(--clk-border);
  border-radius: 4px;
  padding: 14px 15px;
  font-size: 15px;
  transition: border-color .2s ease;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.field option { background: var(--clk-bg-2); }
.field textarea {
  resize: vertical;
  font-family: inherit;
  line-height: 1.6;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--clk-accent-soft);
  outline: none;
}
.field-error {
  margin: 0;
  font-size: 12.5px;
  color: var(--clk-accent-soft);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
.form-submit {
  border: none;
  cursor: pointer;
}
.form-submit[disabled] { cursor: default; }

/* Honeypot: se saca de la vista sin display:none, que muchos bots detectan */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-status {
  margin: 0;
  font-family: var(--clk-font-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--clk-text-3);
}

/* Estado enviado */
.form-success {
  text-align: center;
  padding: clamp(20px, 4vw, 48px) 0;
}
.success-check {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--clk-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clk-on-accent);
  font-size: 26px;
  font-weight: 800;
}
.success-title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -.02em;
  font-weight: 700;
  text-wrap: balance;
}
.btn-reset {
  margin-top: 26px;
  background: transparent;
  border: 1px solid var(--clk-border);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s ease;
}
.btn-reset:hover { border-color: var(--clk-text); }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--clk-border);
  background: var(--clk-bg-2);
  padding: clamp(56px, 6vw, 80px) 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(32px, 4vw, 56px);
}
.footer-logo {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.02em;
}
.footer-logo .dot-accent { width: 9px; height: 9px; }
.footer-tagline {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--clk-text-2);
  max-width: 30ch;
}
.footer-place {
  margin: 18px 0 0;
  font-family: var(--clk-font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--clk-text-3);
}
.footer-label {
  margin: 0 0 16px;
  font-family: var(--clk-font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--clk-text-3);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 14px;
  color: var(--clk-text-2);
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--clk-text); }
.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--clk-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 12.5px;
  color: var(--clk-text-3);
}

/* --------------------------------------------------------------------------
   14. Movimiento por componente
   Acá se conectan las primitivas de la sección 3 con cada bloque concreto.
   Todo lo de esta sección se apaga o se simplifica en la sección 15.
   -------------------------------------------------------------------------- */

/* ---- Barra de progreso de lectura, pegada al borde del header ------------ */
.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  pointer-events: none;
  overflow: hidden;
}
.scroll-progress i {
  display: block;
  height: 100%;
  background: var(--clk-accent);
  transform: scaleX(var(--p, 0));
  transform-origin: left;
}

/* ---- Header: entra al cargar, se achica al bajar, se esconde al scrollear */
.site-header {
  transform: translateY(-101%);
  transition:
    transform .7s var(--clk-ease),
    background .3s ease,
    border-color .3s ease;
}
body.is-ready .site-header { transform: none; }
.site-header.is-scrolled { background: rgba(10, 10, 10, .94); }
.site-header.is-scrolled .header-inner { height: 58px; }
/* Va después de .is-ready a propósito: esconderse tiene que poder ganar */
body.is-ready .site-header.is-hidden { transform: translateY(-101%); }

.header-inner { transition: height .35s var(--clk-ease); }

/* Subrayado de nav: entra por la izquierda, sale por la derecha */
.nav-link {
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--clk-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--clk-ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburguesa a cruz */
.nav-toggle span { transition: transform .35s var(--clk-ease), opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* El panel móvil no puede transicionar desde [hidden]: entra por animación */
.nav-mobile:not([hidden]) .nav-mobile-inner > * {
  animation: clk-fade-up .5s var(--clk-ease) both;
  animation-delay: calc(var(--i, 0) * 55ms + .04s);
}

/* ---- Hero: la trama de 44px se enciende bajo el cursor ------------------- */
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .45s ease;
  /* Apenas por encima del token de grilla: la máscara la vuelve a bajar */
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(240px 240px at var(--mx, 50%) var(--my, 50%), #000 0%, rgba(0, 0, 0, .4) 46%, transparent 72%);
  mask-image: radial-gradient(240px 240px at var(--mx, 50%) var(--my, 50%), #000 0%, rgba(0, 0, 0, .4) 46%, transparent 72%);
}
.hero.is-pointing .hero-mesh { opacity: 1; }

/* El glow deriva detrás del cursor y respira cuando no pasa nada */
.hero-glow {
  transform: translate3d(var(--gx, 0px), var(--gy, 0px), 0);
  transition: transform .9s cubic-bezier(.16, 1, .3, 1);
  animation: clk-breathe 9s ease-in-out infinite;
}

/* Flecha de los botones: acompaña el hover */
.btn span[aria-hidden] { transition: transform .3s var(--clk-ease); }
.btn:hover span[aria-hidden] { transform: translateX(4px); }

/* Botones magnéticos: script.js escribe el transform inline */
[data-magnetic] { will-change: transform; }

/* ---- Ticker: script.js lo mueve para mezclarle la velocidad de scroll ---- */
.ticker-track { will-change: transform; }
.ticker.is-js .ticker-track { animation: none; }

/* ---- Cards: hairline de acento que se dibuja y elevación mínima ---------- */
.project-card,
.service-card {
  position: relative;
  overflow: hidden;
  transition:
    opacity .8s var(--clk-ease) var(--clk-d, 0s),
    transform .55s var(--clk-ease) var(--clk-d, 0s),
    border-color .45s ease;
}
.project-card::after,
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--clk-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--clk-ease);
}
.project-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--clk-border-strong);
}
.service-card-featured:hover { border-color: var(--clk-accent); }
.project-card:hover::after,
.service-card:hover::after { transform: scaleX(1); }

/* ---- Proceso: la línea del paso se dibuja y el punto aparece después -----
   El trazo de acento recorre el borde y se apaga: lo que queda es el hairline
   de siempre. El acento marca el recorrido, no se queda a vivir ahí. */
.process-steps li::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--clk-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform 1s var(--clk-ease) var(--clk-d, 0s),
    opacity .7s ease calc(var(--clk-d, 0s) + 1s);
}
.process-steps li[data-seen]::after {
  transform: scaleX(1);
  opacity: 0;
}
/* El paso bajo el cursor recupera su línea */
.process-steps li:hover::after {
  transform: scaleX(1);
  opacity: 1;
  transition: transform .5s var(--clk-ease), opacity .3s ease;
}

.step-dot {
  transform: scale(0);
  transition:
    transform .5s var(--clk-ease) calc(var(--clk-d, 0s) + .3s),
    background .3s ease;
}
.process-steps li[data-seen] .step-dot { transform: scale(1); }
.process-steps li:hover .step-dot {
  transform: scale(1.7);
  background: var(--clk-accent);
}
.process-steps li .step-title { transition: transform .4s var(--clk-ease); }
.process-steps li:hover .step-title { transform: translateX(5px); }

/* ---- Retrato: el plate se despega al pasar por encima -------------------- */
.portrait-plate { transition: transform .5s var(--clk-ease); }
.portrait-wrap:hover .portrait-plate { transform: translate(-6px, -6px); }

/* ---- Formulario: foco que se pinta, error que se sacude ------------------ */
.field label { transition: color .25s ease; }
.field:focus-within label { color: var(--clk-accent); }
.field input,
.field select,
.field textarea {
  transition: border-color .25s ease, background .25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--clk-accent);
  background: #0C0F16;
}
.field [aria-invalid="true"] {
  border-color: var(--clk-accent-soft);
  animation: clk-shake .45s ease;
}
.field-error:not([hidden]) { animation: clk-fade-up .35s var(--clk-ease) both; }

/* Enviando: el botón se queda con un spinner en lugar de sólo apagarse */
.form-submit[disabled]::after {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid rgba(10, 10, 10, .28);
  border-top-color: var(--clk-on-accent);
  animation: clk-spin .7s linear infinite;
}

.form-success:not([hidden]) .success-title,
.form-success:not([hidden]) .btn-reset {
  animation: clk-fade-up .6s var(--clk-ease) both;
}
.form-success:not([hidden]) .success-title { animation-delay: .18s; }
.form-success:not([hidden]) .btn-reset { animation-delay: .3s; }

.success-check {
  position: relative;
  animation: clk-pop .7s var(--clk-ease) both;
}
/* El anillo repite el ping del logo, pero hueco: el ✓ nunca queda tapado */
.success-check::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--clk-accent);
  animation: clk-ring 2.4s ease-out .5s infinite;
}

/* ---- Links del footer: mismo subrayado que la nav ------------------------ */
.footer-links a {
  position: relative;
  display: inline-block;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--clk-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--clk-ease);
}
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---- Etiquetas mono que se decodifican al entrar en pantalla ------------- */
[data-scramble] { transition: color .5s ease; }
[data-scramble].is-decoding { color: var(--clk-accent); }

/* --------------------------------------------------------------------------
   15. prefers-reduced-motion — requisito, no opcional
   Se apaga todo lo que se mueve solo; se conservan los cambios de color y
   los estados (foco, error, éxito), que son información y no decoración.
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  [data-anim] { animation: none !important; }

  [data-reveal],
  [data-intro],
  [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Las palabras partidas se quedan en su lugar, sin subir */
  .clk-word-i {
    transform: none !important;
    transition: none !important;
  }

  /* Sin cortina: la imagen ya está completa desde el principio */
  [data-mask] {
    clip-path: none !important;
    transition: none !important;
  }
  [data-mask="zoom"] img {
    transform: none !important;
    transition: none !important;
  }

  .site-header,
  .site-header.is-hidden {
    transform: none !important;
    transition: none !important;
  }
  .header-inner { transition: none; }
  .nav-toggle span { transition: none; }
  .nav-mobile:not([hidden]) .nav-mobile-inner > * { animation: none; }

  .hero-mesh { display: none; }
  .hero-glow {
    animation: none;
    transform: none !important;
    transition: none;
  }

  .product-window { transition: none; }
  .portrait img { transition: filter .6s ease; }
  .portrait:hover img { transform: none; }
  .project-shot img { transition: none; }
  .project-shot:hover img { transform: none; }
  .portrait-plate,
  .portrait-wrap:hover .portrait-plate { transform: none; transition: none; }

  .ticker-track { animation: none !important; transform: none !important; }

  .project-card,
  .service-card { transition: border-color .2s ease; }
  .project-card:hover,
  .service-card:hover { transform: none; }
  .project-card::after,
  .service-card::after { transition: none; }

  /* La línea del paso se muestra dibujada, sin recorrido */
  .process-steps li::after,
  .process-steps li[data-seen]::after { transform: scaleX(1); transition: none; }
  .step-dot { transform: scale(1) !important; transition: background .3s ease; }
  .process-steps li:hover .step-dot { transform: scale(1) !important; }
  .process-steps li .step-title,
  .process-steps li:hover .step-title { transform: none; transition: none; }

  .btn span[aria-hidden],
  .btn:hover span[aria-hidden] { transform: none; transition: none; }
  .nav-link::after,
  .footer-links a::after { transition: none; }

  .field [aria-invalid="true"] { animation: none; }
  .field-error:not([hidden]) { animation: none; }
  .form-submit[disabled]::after { animation: none; opacity: .5; }
  .success-check { animation: none; }
  .success-check::after { display: none; }
  .form-success:not([hidden]) .success-title,
  .form-success:not([hidden]) .btn-reset { animation: none; }
}
