/* ============================================================
   inscripcion.ilutrare.cloud
   Estilo "poster" — negro grunge + verde neón
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --bg-deep: #050505;
  --bg-input: #141414;
  --fg: #F2F2F2;
  --fg-dim: #B5B5B5;
  --gray: #5A5A5A;
  --gray-line: #2A2A2A;
  --neon: #CFFF1A;
  --neon-dim: #9CB813;
  --postit: #EFEAD8;
  --postit-shadow: rgba(0,0,0,0.5);
  --err: #FF6B6B;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.03), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(207,255,26,0.04), transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' 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.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 0;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 40px 0 60px;
}

.eyebrow-pill {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-left: auto;
  margin-bottom: 40px;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.eyebrow-pill .neon {
  color: var(--neon);
  font-weight: 700;
}

.eyebrow-pill .scribble-circle {
  position: absolute;
  inset: -8px -10px;
  width: calc(100% + 20px);
  height: calc(100% + 16px);
  pointer-events: none;
}

@media (min-width: 700px) {
  .eyebrow-pill {
    position: absolute;
    top: 40px;
    right: 0;
    margin: 0;
  }
}

.hero-title {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(64px, 13vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
}

.hero-title .line {
  display: block;
}

.hero-title-gracias {
  font-size: clamp(56px, 10vw, 140px);
}

.white { color: var(--fg); }
.neon  { color: var(--neon); }

.brackets {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bracket {
  font-family: 'Caveat', cursive;
  font-size: 64px;
  line-height: 0.6;
  color: var(--neon);
  font-weight: 700;
}

.brackets p { margin: 0; }

/* ============================================================
   PAPER-TEAR DIVIDER
   ============================================================ */

.paper-tear {
  border: 0;
  height: 16px;
  margin: 24px 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 16' preserveAspectRatio='none'><path d='M0,8 L20,4 L40,10 L60,3 L90,9 L120,5 L150,11 L180,4 L220,9 L260,6 L300,10 L340,3 L380,8 L420,5 L460,11 L500,4 L540,9 L580,7 L620,10 L660,4 L700,8 L740,5 L780,11 L820,3 L860,9 L900,6 L940,10 L980,4 L1020,8 L1060,5 L1100,11 L1140,3 L1180,9 L1200,7 L1200,16 L0,16 Z' fill='%23F2F2F2'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.85;
}

/* ============================================================
   MANIFIESTO
   ============================================================ */

.manifiesto {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 0;
  position: relative;
}

@media (min-width: 800px) {
  .manifiesto {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.manifiesto-text {
  font-size: 17px;
  line-height: 1.6;
}

.manifiesto-text strong { color: var(--fg); font-weight: 700; }
.manifiesto-text .highlight {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 12px 0;
  text-transform: uppercase;
}

.postit {
  background: var(--postit);
  color: #1A1A1A;
  padding: 22px 24px;
  font-family: 'Permanent Marker', cursive;
  font-size: 17px;
  line-height: 1.35;
  text-transform: uppercase;
  box-shadow: 4px 6px 14px var(--postit-shadow);
  max-width: 320px;
}

.postit p { margin: 0; }

.postit-1 { transform: rotate(2deg); }
.postit-2 { transform: rotate(-3deg); }

.postit .underline { box-shadow: inset 0 -8px 0 var(--neon); }

.stamp {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  padding: 10px 16px;
  border: 1px solid var(--fg);
  background: rgba(255,255,255,0.04);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stamp-title { color: var(--fg); font-weight: 700; }
.stamp-sub   { color: var(--gray); font-weight: 600; }
.stamp-note  { color: var(--fg-dim); margin-top: 6px; font-weight: 500; }

/* ============================================================
   BUSCAMOS A ALGUIEN
   ============================================================ */

.buscamos { padding: 40px 0; }

.section-tag {
  display: inline-block;
  margin: 0 0 36px;
  padding: 8px 18px;
  background: var(--fg);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 24px;
}

@media (min-width: 900px) { .features { grid-template-columns: repeat(5, 1fr); } }

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.feature .icon { width: 48px; height: 48px; }

.feature p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.45;
  max-width: 180px;
}

/* dotted separators between features on desktop */
@media (min-width: 900px) {
  .feature { position: relative; }
  .feature + .feature::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 0;
    bottom: 0;
    border-left: 1px dashed var(--gray-line);
  }
}

/* ============================================================
   OFRECEMOS
   ============================================================ */

.ofrecemos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 0;
  align-items: start;
}

@media (min-width: 800px) { .ofrecemos { grid-template-columns: auto 1fr auto; } }

.handwritten {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.95;
  margin: 0;
  color: var(--fg);
  text-transform: lowercase;
}

.x-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.x-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.x-list .x {
  color: var(--neon);
  font-weight: 700;
  font-size: 18px;
}

.x-list strong { color: var(--fg); font-weight: 700; }

/* ============================================================
   FORM CTA
   ============================================================ */

.cta-form { padding: 60px 0; }

.cta-header {
  position: relative;
  border: 2px solid var(--fg);
  padding: 32px 28px 80px;
  margin-bottom: 48px;
}

.cta-header h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}

.neon-pill {
  display: inline-block;
  background: var(--neon);
  color: var(--bg);
  padding: 2px 14px 4px;
  line-height: 1;
}

.cta-sub {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
  color: var(--fg-dim);
}

.cta-sub strong { color: var(--fg); font-weight: 700; }
.cta-sub em { font-style: italic; color: var(--neon); }

.arrow-down {
  position: absolute;
  right: 24px;
  bottom: -40px;
  width: 60px;
  height: 120px;
  transform: rotate(-8deg);
}

/* form */

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field > span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--neon);
}

.field input,
.field textarea {
  background: var(--bg-input);
  border: 1px solid var(--gray-line);
  border-radius: 0;
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--gray);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 2px rgba(207,255,26,0.18);
}

.field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }

.field .err {
  color: var(--err);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-dim);
  cursor: pointer;
}

.checkbox input {
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--bg-input);
  border: 2px solid var(--gray);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.checkbox input:checked {
  background: var(--neon);
  border-color: var(--neon);
}

.checkbox input:checked::after {
  content: "✕";
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}

.checkbox .err {
  display: block;
  flex-basis: 100%;
  color: var(--err);
  font-size: 12px;
}

.cta-button {
  appearance: none;
  border: 0;
  background: var(--neon);
  color: var(--bg);
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 22px 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 6px 6px 0 var(--fg);
  margin-top: 12px;
  align-self: flex-start;
}

.cta-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--fg);
}

.cta-button:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--fg);
}

.cta-button .arrow { font-size: 28px; }

.form-error {
  background: rgba(255, 107, 107, 0.12);
  border-left: 4px solid var(--err);
  color: var(--err);
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* ============================================================
   TEAR-OFF FOOTER
   ============================================================ */

.tear-off {
  display: flex;
  flex-wrap: wrap;
  margin: 24px -24px 0;
  border-top: 1px dashed var(--gray-line);
  border-bottom: 0;
}

.strip {
  flex: 1 0 calc(100% / 11);
  min-width: 80px;
  padding: 16px 6px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fg-dim);
  border-right: 1px dashed var(--gray-line);
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.02) 100%);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

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

.strip-title { color: var(--fg); }
.strip-sub   { color: var(--neon); }

.legal {
  text-align: center;
  margin: 24px 0 32px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ============================================================
   PAGE GRACIAS
   ============================================================ */

.page-gracias .hero { padding-top: 80px; padding-bottom: 80px; text-align: left; }
.back-link a {
  color: var(--neon);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--neon);
  padding-bottom: 2px;
}
.back-link a:hover { color: var(--fg); border-color: var(--fg); }
