/* Fletair · landing v2 — minimalismo editorial sobre navy (brandbook 2026).
   Tokens espejo de libs/ui-tokens-fletair (la landing es estática y autocontenida). */

:root {
  --navy: #04003a;
  --navy-2: #0b0748;
  --navy-3: #110b55;
  --line: #1a1466;
  --blue: #157bf6;
  --blue-hover: #0f5fc4;
  --cyan: #6fd0ee;
  --ice: #e8eaf5;
  --mute: #98a0b0;
  --blue-dark: #8fc0fb;
  --success: #18a06e;
  --danger: #ff8f8f;
  --border-light: #e3e5f0;
  --display: 'Montserrat', sans-serif;
  --text: 'Inter', sans-serif;
  --pad: clamp(24px, 6vw, 72px);
  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--text);
  background: var(--navy);
  color: var(--ice);
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

main { position: relative; z-index: 2; }

/* ---- Tipografía base ---- */
.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.kicker--onnavy { color: var(--blue-dark); }

.h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.1;
  color: #fff;
  margin: 14px 0 16px;
}

.sub {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  color: var(--mute);
  max-width: 560px;
}

.fine {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(152, 160, 176, 0.75);
}

/* ---- Botones (radio 12, nunca pill) ---- */
.btn-primary {
  font-family: var(--text);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: 12px;
  padding: 16px 26px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(21, 123, 246, 0.35);
  transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--blue-hover); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary[disabled] { opacity: 0.6; cursor: wait; }

.btn-ghost {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ice);
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 18px;
  cursor: pointer;
  transition: border-color 200ms, color 200ms;
}

.btn-ghost:hover { border-color: var(--blue); color: #fff; }

.btn-quiet {
  font-size: 14px;
  font-weight: 600;
  color: var(--mute);
  text-decoration: none;
  padding: 16px 6px;
  transition: color 200ms;
}

.btn-quiet:hover { color: var(--ice); }

.btn-outline-navy {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ice);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 15px 26px;
  text-decoration: none;
  transition: border-color 200ms, color 200ms;
}

.btn-outline-navy:hover { border-color: var(--blue); color: #fff; }

.lang-toggle {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 40px;
  cursor: pointer;
  transition: border-color 200ms, color 200ms;
}

.lang-toggle:hover { border-color: var(--blue); color: #fff; }

/* ---- Header ---- */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px var(--pad);
  background: rgba(4, 0, 58, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 20, 102, 0.6);
}

.lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.lockup--sm { font-size: 15px; }

.topnav { display: flex; gap: clamp(14px, 2.5vw, 30px); }

.topnav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mute);
  text-decoration: none;
  transition: color 200ms;
}

.topnav a:hover { color: #fff; }

.top-actions { display: flex; gap: 10px; align-items: center; }

@media (max-width: 880px) {
  .topnav { display: none; }
}

/* ---- Hero ---- */
.hero { position: relative; min-height: 86svh; display: flex; align-items: center; }

.hero-media { position: absolute; inset: 0; overflow: hidden; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  animation: kenburns 24s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1) translateX(0); }
  to { transform: scale(1.08) translateX(-1.5%); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(4, 0, 58, 0.94) 30%, rgba(4, 0, 58, 0.55) 65%, rgba(4, 0, 58, 0.35)),
    linear-gradient(to top, var(--navy) 2%, transparent 30%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 8vh, 90px) var(--pad);
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}

.display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 22px 0 28px;
}

.display .line { display: block; }

.touch { font-style: normal; position: relative; display: inline-block; }

.check-underline { position: absolute; left: 2%; bottom: -0.18em; width: 100%; height: 0.32em; }

.check-underline path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawCheck 0.9s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
}

@keyframes drawCheck { to { stroke-dashoffset: 0; } }

.hero-cta { display: flex; align-items: center; gap: 26px; margin-top: 36px; flex-wrap: wrap; }

/* ---- Film ---- */
.film { padding: clamp(50px, 9vh, 100px) var(--pad) 0; max-width: var(--maxw); margin: 0 auto; }

.film-card {
  position: relative;
  height: clamp(300px, 48vw, 520px);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #04003a, #0b1f63 55%, #1b4fa8);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  box-shadow: 0 40px 90px rgba(4, 0, 58, 0.25);
}

.film-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}

.film-orb--1 { width: 380px; height: 380px; background: rgba(21, 123, 246, 0.5); top: -120px; right: -80px; animation: drift 14s ease-in-out infinite alternate; }
.film-orb--2 { width: 300px; height: 300px; background: rgba(111, 208, 238, 0.35); bottom: -110px; left: -60px; animation: drift 18s ease-in-out infinite alternate-reverse; }

@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-40px, 30px); }
}

.film-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 3.4vw, 36px);
  color: #fff;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.film-play {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  animation: pulse 2.4s infinite;
  transition: background 200ms;
}

.film-play:hover { background: var(--blue); animation: none; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(21, 123, 246, 0.45); }
  70% { box-shadow: 0 0 0 26px rgba(21, 123, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(21, 123, 246, 0); }
}

.film-bar {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(232, 234, 245, 0.8);
  font-variant-numeric: tabular-nums;
}

.film-track { flex: 1; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.18); overflow: hidden; }

.film-progress { height: 100%; width: 0%; background: var(--blue); border-radius: 2px; transition: width 300ms linear; }

.film-caption { text-align: center; margin-top: 14px; }

/* ---- Stats ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(44px, 8vh, 80px) var(--pad);
}

.stat { text-align: center; }

.stat-v {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 48px);
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.stat-l { font-size: 13px; color: var(--mute); }

/* ---- Precio ---- */
.precio {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 70px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(50px, 9vh, 100px) var(--pad);
  align-items: start;
}

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

.rutas { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }

.ruta {
  text-align: left;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: border-color 200ms, box-shadow 200ms;
}

.ruta strong { font-family: var(--display); font-weight: 700; font-size: 15.5px; color: #fff; }
.ruta span { font-size: 12.5px; color: var(--mute); }

.ruta.active {
  border: 1.5px solid var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 123, 246, 0.14), 0 10px 26px rgba(21, 123, 246, 0.12);
}

.card-dark {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 30px 70px rgba(4, 0, 58, 0.35);
}

.precio-card { position: sticky; top: 92px; }

.row-between { display: flex; justify-content: space-between; align-items: center; gap: 12px; }

.precio-ruta { font-family: var(--display); font-weight: 800; font-size: 17px; color: #fff; }

.badge-garantizado {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
}

.bk { margin: 18px 0 22px; }

.bk-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(26, 20, 102, 0.7);
}

.bk-row span:first-child { color: var(--mute); }
.bk-row span:last-child { color: var(--ice); font-weight: 500; font-variant-numeric: tabular-nums; }

.bk-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; }
.bk-total span:first-child { font-size: 12px; color: var(--mute); }

.bk-big {
  font-family: var(--display);
  font-weight: 800;
  font-size: 27px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.precio-card .btn-primary { width: 100%; text-align: center; }

/* ---- Cómo funciona ---- */
.como { max-width: var(--maxw); margin: 0 auto; padding: clamp(50px, 9vh, 100px) var(--pad); }

.como-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 80px);
  margin-top: 34px;
  align-items: center;
}

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

.como-col { display: flex; flex-direction: column; gap: 34px; }

.paso { border-left: 2px solid var(--line); padding-left: 22px; }

.paso .num { font-family: var(--display); font-weight: 800; font-size: 13px; color: var(--blue); letter-spacing: 0.12em; }

.paso h3 { font-family: var(--display); font-weight: 700; font-size: 20px; color: #fff; margin: 8px 0; }

.paso p { font-size: 14.5px; line-height: 1.65; color: var(--mute); }

.phone-demo { display: flex; flex-direction: column; gap: 14px; align-items: center; }

.phone {
  position: relative;
  width: min(300px, 74vw);
  aspect-ratio: 360 / 780;
  border-radius: 34px;
  border: 8px solid var(--navy-3);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(4, 0, 58, 0.5);
  background: var(--navy-2);
}

.phone-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-shot.active { opacity: 1; }

/* ---- Empty legs ---- */
.elegs {
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(50px, 9vh, 100px) 0 0;
}

.elegs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  align-items: center;
}

@media (max-width: 880px) { .elegs-inner { grid-template-columns: 1fr; } }

.elegs-copy .btn-primary { margin-top: 26px; }

.cabina { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); position: relative; }

.cabina img { width: 100%; height: 320px; object-fit: cover; display: block; }

.cabina figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 14px;
  background: linear-gradient(to top, rgba(4, 0, 58, 0.92), transparent);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cabina strong { font-family: var(--display); font-weight: 700; font-size: 15px; color: #fff; }

.el-ticker { overflow: hidden; border-top: 1px solid var(--line); margin-top: clamp(40px, 7vh, 70px); padding: 16px 0; }

.el-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.el-track span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ice);
  font-variant-numeric: tabular-nums;
}

.el-track i { font-style: normal; color: var(--cyan); margin: 0 6px; }
.el-track b { color: var(--blue); }

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

.el-legal { text-align: center; padding: 12px var(--pad) 26px; }

/* ---- Confianza ---- */
.conf {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 70px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(50px, 9vh, 100px) var(--pad);
  align-items: center;
}

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

.conf-list { list-style: none; display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }

.conf-list li { display: flex; gap: 16px; align-items: flex-start; }

.conf-ic {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(21, 123, 246, 0.14);
  color: var(--blue-dark);
  display: grid;
  place-items: center;
}

.conf-list strong { font-family: var(--display); font-weight: 700; font-size: 15.5px; color: #fff; }

.conf-list p { font-size: 13.5px; line-height: 1.6; color: var(--mute); margin-top: 3px; }

.card-light {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(4, 0, 58, 0.35);
}

.chat-mock { padding: 22px; max-width: 400px; justify-self: center; width: 100%; }

.chat-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }

.chat-head strong { display: block; font-size: 14.5px; color: #fff; }

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.online { position: relative; }

.online::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  border: 2px solid var(--navy-2);
}

.chat-body { display: flex; flex-direction: column; gap: 10px; padding: 16px 0; min-height: 190px; }

.cb {
  max-width: 82%;
  padding: 11px 14px;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms, transform 400ms;
}

.cb.shown { opacity: 1; transform: none; }

.cb--a { background: var(--navy-3); color: var(--ice); border-radius: 14px 14px 14px 4px; align-self: flex-start; }

.cb--u { background: var(--blue); color: #fff; border-radius: 14px 14px 4px 14px; align-self: flex-end; }

.chat-replay {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  color: var(--blue-dark);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
}

.chat-replay:hover { color: #fff; }

/* ---- Experiencia ---- */
.exp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(50px, 9vh, 100px);
}

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

.exp-item { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }

.exp-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-item:hover img { transform: scale(1.04); }

/* ---- Operadores ---- */
.ops {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(50px, 9vh, 100px) var(--pad);
  border-top: 1px solid var(--line);
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 34px 0;
}

.ops-card {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.ops-card strong { font-family: var(--display); font-weight: 700; font-size: 16px; color: #fff; }

.ops-card p { font-size: 13.5px; line-height: 1.6; color: var(--mute); margin-top: 8px; }

/* ---- Grupo ---- */
.grupo {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(50px, 9vh, 100px) var(--pad);
}

.grupo > div:first-child { max-width: var(--maxw); margin: 0 auto; }

.grupo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: var(--maxw);
  margin: 34px auto 0;
}

.grupo-card { border: 1px solid var(--line); border-radius: 16px; padding: 22px; background: var(--navy); }

.grupo-card strong { font-family: var(--display); font-weight: 800; font-size: 17px; color: #fff; }

.grupo-card p { font-size: 13.5px; line-height: 1.6; color: var(--mute); margin-top: 8px; }

/* ---- FAQ ---- */
.faq { max-width: 820px; margin: 0 auto; padding: clamp(50px, 9vh, 100px) var(--pad); }

.faq-list { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; }

.faq-list details {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 20px;
  transition: border-color 200ms;
}

.faq-list details[open] { border-color: var(--blue); }

.faq-list summary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  padding: 17px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

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

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 20px;
  font-weight: 400;
  transition: transform 200ms;
}

.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-list details p { font-size: 14px; line-height: 1.65; color: var(--mute); padding: 0 0 18px; }

/* ---- CTA final ---- */
.ctaf { position: relative; overflow: hidden; border-top: 1px solid var(--line); }

.ctaf-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.ctaf-veil { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(4, 0, 58, 0.96) 35%, rgba(4, 0, 58, 0.72)); }

.ctaf-mark {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 380px;
  height: 380px;
  opacity: 0.07;
  pointer-events: none;
}

.ctaf-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(64px, 12vh, 130px) var(--pad);
}

.display-2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 5.4vw, 60px);
  line-height: 1.06;
  color: #fff;
  margin-bottom: 16px;
}

/* ---- Formularios waitlist ---- */
.wl-form { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

.field {
  font-family: var(--text);
  font-size: 15px;
  color: #fff;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 16px;
  flex: 1 1 200px;
  min-width: 0;
  transition: border-color 200ms, box-shadow 200ms;
}

.field::placeholder { color: var(--mute); }

.field:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 123, 246, 0.14);
}

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

.form-msg { margin-top: 14px; font-size: 13.5px; min-height: 20px; color: var(--mute); }

.form-msg.ok { color: #5ad3a2; }
.form-msg.err { color: var(--danger); }

/* ---- Footer ---- */
.foot { position: relative; z-index: 2; border-top: 1px solid var(--line); padding: 34px var(--pad) 44px; }

.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.foot-nav { display: flex; gap: 22px; flex-wrap: wrap; }

.foot-nav a { font-size: 13px; font-weight: 600; color: var(--mute); text-decoration: none; }

.foot-nav a:hover { color: var(--ice); }

.foot .fine { max-width: 760px; }

.foot-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--mute);
}

.foot-meta a { color: var(--ice); text-decoration: none; }
.foot-meta a:hover { color: var(--blue-dark); }

.version {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mute);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 10px;
}

/* ---- Modal Próximamente ---- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(2, 0, 26, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 240ms cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-backdrop.show { opacity: 1; }

.modal {
  position: relative;
  width: min(460px, 100%);
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 20, 0.6);
  transform: translateY(14px) scale(0.98);
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-backdrop.show .modal { transform: none; }

.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--mute);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  transition: color 200ms, border-color 200ms;
}

.modal-x:hover { color: #fff; border-color: var(--blue); }

.modal-iso { margin-bottom: 16px; }

.modal-title { font-family: var(--display); font-weight: 800; font-size: 26px; color: #fff; margin: 10px 0 8px; }

.modal-sub { font-size: 14px; line-height: 1.6; color: var(--mute); }

.wl-form--modal { flex-direction: column; }

.wl-form--modal .field { flex: 0 0 auto; width: 100%; }

.wl-form--modal .btn-primary { width: 100%; }

.modal-success { text-align: center; padding: 18px 0 6px; }

.modal-success .draw-check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

/* ---- Reveals ---- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--d, 0s) forwards;
}

@keyframes reveal { to { opacity: 1; transform: none; } }

.reveal-io { opacity: 0; transform: translateY(26px); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }

.reveal-io.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-io, .check-underline path, .el-track, .modal-success .draw-check,
  .hero-media img, .film-orb, .film-play {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

@media (max-width: 560px) {
  .hero-cta .btn-primary, .wl-form .btn-primary { width: 100%; }
}
