/* ============================================================
 * auth.css — telas de auth · REDESIGN v3 "Sala do Professor"
 * Direção: painel editorial premium (headline grande, óculos 3D
 * em pedestal holográfico, chips de recursos) + card de form em
 * vidro. Sem tabs — navegação por "Já tem conta? / Ainda não…".
 * Faixa de feature-cards abaixo do fold + ticker de rodadas.
 * Paleta OFICIAL do app: ciano #13C2D6 / #46E6F2, azul #1E5C8C,
 * fundo #05070D, velas #5DB2F9 / #8743EF / #B02DAF.
 * Tipografia: Chakra Petch (display) + Sora (corpo).
 * Integração JS preservada: mesmos IDs/classes funcionais.
 * ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600;700&family=Sora:wght@300;400;500;600&display=swap');

:root{
  --cyan:        #13C2D6;
  --cyan-hi:     #46E6F2;
  --blue-deep:   #1E5C8C;

  --cndl-blue:   #5DB2F9;
  --cndl-purple: #8743EF;
  --cndl-pink:   #B02DAF;

  --bg:          #05070D;
  --bg-2:        #0C131F;
  --white:       #FFFFFF;
  --text:        #D7E2F0;
  --muted:       #A9BACE;
  --dim:         #8193A9;

  --line:        rgba(19,194,214,0.15);
  --line-2:      rgba(19,194,214,0.32);

  --danger:      #FF6B63;
  --danger-ink:  #FFC9C5;

  --grad-cta:    linear-gradient(135deg, #46E6F2 0%, #17C6DA 52%, #0FA6DC 100%);
  --cta-ink:     #032430;

  --r-card: 22px;
  --r-field: 13px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html{ height: 100%; }

body{
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a{ color: var(--cyan); text-decoration: none; transition: color .14s var(--ease); }
a:hover{ color: var(--cyan-hi); }
button,a,input{ font: inherit; }

/* ============================================================
 * CENA DE FUNDO
 * ============================================================ */
.scene{
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.scene::before{
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 22% 30%, rgba(30,92,140,0.30), transparent 62%),
    radial-gradient(circle at 78% 12%, rgba(19,194,214,0.10), transparent 40%),
    radial-gradient(circle at 86% 88%, rgba(135,67,239,0.09), transparent 42%);
}
.scene::after{
  content:""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(19,194,214,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,194,214,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 65% at 32% 42%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 32% 42%, #000 0%, transparent 78%);
}

/* ============================================================
 * TICKER de rodadas — rodapé (regra de cor oficial)
 * ============================================================ */
.ticker{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 5;
  border-top: 1px solid var(--line);
  background: rgba(5,7,13,0.82);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 9px 0;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track{
  display: flex; gap: 26px; width: max-content;
  animation: ticker 38s linear infinite;
  font-family: 'Chakra Petch', sans-serif; font-weight: 600;
  font-size: .76rem; letter-spacing: .06em;
}
.ticker-track span{ white-space: nowrap; }
.tk-b{ color: var(--cndl-blue); }
.tk-p{ color: var(--cndl-purple); }
.tk-k{ color: var(--cndl-pink); }
@keyframes ticker{ to{ transform: translateX(-50%); } }

/* ============================================================
 * HEADER — marca horizontal
 * ============================================================ */
.top{
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 6px;
  max-width: 1240px; margin: 0 auto; width: 100%;
}
.brand{
  display: inline-flex; align-items: center; gap: 12px;
  opacity: 0; animation: rise .7s var(--ease) .05s forwards;
}
.brand img{
  width: 74px; height: auto; display: block;
  filter: drop-shadow(0 4px 14px rgba(19,194,214,0.45));
}
.brand .bname{
  font-family: 'Chakra Petch', sans-serif; line-height: 1.12;
  display: flex; flex-direction: column;
}
.brand .bname small{
  font-size: .62rem; font-weight: 600; letter-spacing: .34em;
  color: var(--muted); text-transform: uppercase;
}
.brand .bname strong{
  font-size: 1.06rem; font-weight: 700; letter-spacing: .14em;
  color: var(--white); text-transform: uppercase;
}

/* ============================================================
 * HERO — editorial + card
 * ============================================================ */
.hero{
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; width: 100%;
  padding: 18px 24px 12px;
  display: flex; flex-direction: column; gap: 26px;
}

/* ---------------- editorial ---------------- */
.editorial{ position: relative; }

.chip-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cyan-hi);
  padding: 8px 14px; border-radius: 999px;
  background: rgba(19,194,214,0.08);
  border: 1px solid var(--line-2);
  box-shadow: 0 0 24px -8px rgba(19,194,214,0.55);
  margin-bottom: 18px;
  opacity: 0; animation: rise .7s var(--ease) .12s forwards;
}
.chip-eyebrow::before{
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan-hi);
  box-shadow: 0 0 10px 2px rgba(70,230,242,0.8);
}

.headline{
  font-family: 'Chakra Petch', sans-serif; font-weight: 700;
  font-size: clamp(1.9rem, 5.8vw, 3.3rem);
  line-height: 1.06; letter-spacing: -.015em;
  color: var(--white);
  margin-bottom: 14px;
  text-wrap: balance;
  opacity: 0; animation: rise .7s var(--ease) .18s forwards;
}
.headline em{
  font-style: normal; color: var(--cyan-hi);
  text-shadow: 0 0 28px rgba(70,230,242,0.45);
}
.lede{
  font-size: .96rem; line-height: 1.6; color: var(--muted); font-weight: 400;
  max-width: 52ch;
  margin-bottom: 20px;
  opacity: 0; animation: rise .7s var(--ease) .24s forwards;
}

/* no mobile: só headline no editorial, tudo centralizado;
 * chips ficam DEPOIS do card; óculos/pedestal só no desktop */
@media (max-width: 979px){
  .top{ justify-content: center; }
  .hero{
    min-height: calc(100dvh - 170px);
    justify-content: center;
  }
  .editorial{ text-align: center; }
  .editorial .lede{ display: none; }
  .hide-on-mobile{ display: none !important; }
  .editorial .mini-chips{ display: none; }
  .editorial .hero-stage{ display: none; }
  .headline{ margin-bottom: 8px; }

  /* mobile: textos centralizados também dentro do card e nos feature-cards */
  .card-head{ text-align: center; }
  .field-row{ justify-content: center; }
  .feat.feat-cta{ text-align: center; align-items: center; }
  .feat-cta .btn{ align-self: center; }
}
.mobile-extras{ padding-top: 2px; }
.mobile-extras .mini-chips{ justify-content: center; }
@media (min-width: 980px){
  .mobile-extras{ display: none; }
}

/* mini-chips de recursos */
.mini-chips{
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 9px;
  margin-bottom: 8px;
  opacity: 0; animation: rise .7s var(--ease) .30s forwards;
}
.mini-chips li{
  display: flex; align-items: center; gap: 8px;
  font-size: .76rem; color: var(--text); font-weight: 400;
  padding: 9px 13px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}
.mini-chips svg{ width: 15px; height: 15px; color: var(--cyan); flex: none; }

/* ---------------- óculos em pedestal holográfico ---------------- */
.hero-stage{
  position: relative;
  width: min(430px, 82%);
  margin: 26px auto 0;
  opacity: 0; animation: rise .8s var(--ease) .38s forwards;
}
.hero-stage .oculos{
  position: relative; z-index: 3;
  width: 84%; height: auto; display: block; margin: 0 auto;
  filter: drop-shadow(0 18px 34px rgba(3,10,18,0.85)) drop-shadow(0 0 26px rgba(19,194,214,0.35));
  animation: float 5.2s ease-in-out 1.2s infinite;
}
@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-9px); }
}
/* plataforma */
.hero-stage .disc{
  position: relative; z-index: 1;
  margin: -26px auto 0;
  width: 100%; height: 74px;
}
.disc::before{ /* tampo da plataforma */
  content:""; position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(70,230,242,0.30) 0%, rgba(19,194,214,0.12) 42%, rgba(12,19,31,0.85) 68%, rgba(5,7,13,0) 72%);
  border: 1px solid rgba(19,194,214,0.35);
  box-shadow:
    inset 0 0 34px rgba(19,194,214,0.35),
    0 0 44px -6px rgba(19,194,214,0.5);
}
.disc::after{ /* anel externo */
  content:""; position: absolute; inset: -12px -20px;
  border-radius: 50%;
  border: 1px solid rgba(19,194,214,0.16);
}
.hero-stage .beam{ /* feixe de luz sob os óculos */
  content:""; position: absolute; z-index: 2;
  left: 50%; bottom: 34px; transform: translateX(-50%);
  width: 58%; height: 120px;
  background: radial-gradient(ellipse at bottom, rgba(70,230,242,0.35), transparent 66%);
  filter: blur(10px);
  pointer-events: none;
}

/* ---------------- CARD de formulário ---------------- */
.form-side{ display: flex; justify-content: center; }
.card{
  width: 100%; max-width: 440px;
  background: linear-gradient(170deg, rgba(19,194,214,0.075), rgba(255,255,255,0.014) 40%, rgba(30,92,140,0.09));
  border: 1px solid var(--line-2);
  border-radius: var(--r-card);
  padding: 28px 26px 24px;
  backdrop-filter: blur(18px);
  box-shadow:
    0 42px 110px -38px rgba(19,194,214,0.38),
    0 2px 26px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.07);
  position: relative;
  opacity: 0; animation: rise .7s var(--ease) .26s forwards;
}
.card::before{
  content:""; position: absolute; top: -1px; left: 16%; right: 16%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-hi), transparent);
  opacity: .85;
}

.card-eyebrow{
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  font-size: .68rem; color: var(--cyan-hi); margin-bottom: 8px;
}
.card-head{ margin-bottom: 20px; }
.card-title{
  font-family: 'Chakra Petch', sans-serif; font-weight: 700;
  font-size: 1.6rem; line-height: 1.1; color: var(--white);
  letter-spacing: -.01em; margin-bottom: 6px;
}
.card-sub{ font-size: .87rem; color: var(--muted); font-weight: 400; line-height: 1.5; }
.card-id-note{ font-size: .78rem; color: var(--dim); line-height: 1.5; margin-top: 8px;
  padding: 8px 12px; border-radius: 10px; background: rgba(19,194,214,0.06);
  border: 1px solid rgba(19,194,214,0.14); }

/* ---------------- campos ---------------- */
.field{ margin-bottom: 14px; }
.field label{
  display: block; font-size: .67rem; font-weight: 600; letter-spacing: .09em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 7px;
  font-family: 'Chakra Petch', sans-serif;
}
.input-wrap{ position: relative; }
.input-wrap > svg.ico{
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--dim); pointer-events: none;
  transition: color .15s var(--ease);
}
.field input{
  width: 100%;
  background: rgba(5,7,13,0.55);
  border: 1px solid var(--line);
  border-radius: var(--r-field);
  padding: 13px 15px 13px 42px;
  color: var(--white); font-size: .95rem; font-weight: 400;
  outline: none;
  transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
}
.field input::placeholder{ color: var(--dim); }
.field input:focus{
  border-color: var(--cyan);
  background: rgba(19,194,214,0.07);
  box-shadow: 0 0 0 3px rgba(19,194,214,0.20);
}
.input-wrap:focus-within > svg.ico{ color: var(--cyan); }

.pw-toggle{
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: var(--dim); cursor: pointer;
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px;
}
.pw-toggle:hover{ color: var(--cyan); }
.pw-toggle svg{ width: 18px; height: 18px; }

.field-row{ display: flex; justify-content: flex-end; margin: -4px 0 14px; }
.field-row a{ font-size: .8rem; font-weight: 500; }

/* ---------------- CTA ---------------- */
.btn{
  width: 100%; margin-top: 6px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 20px; border-radius: var(--r-field); border: 0;
  background: var(--grad-cta); color: var(--cta-ink);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700; font-size: .98rem; letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 34px -12px rgba(19,194,214,0.65), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform .08s var(--ease), box-shadow .16s var(--ease), filter .16s var(--ease);
}
.btn svg{ width: 18px; height: 18px; }
.btn:hover{ transform: translateY(-1px); box-shadow: 0 18px 44px -12px rgba(19,194,214,0.8); filter: brightness(1.05); }
.btn:active{ transform: translateY(0); }
.btn:disabled{ opacity: .55; cursor: not-allowed; box-shadow: none; filter: none; transform: none; }

.btn-secondary{
  background: rgba(255,255,255,0.04); color: var(--text);
  border: 1px solid var(--line-2); box-shadow: none;
  text-decoration: none; text-align: center;
  display: flex; align-items: center; justify-content: center;
}
.btn-secondary:hover{ background: rgba(19,194,214,0.10); border-color: var(--cyan); box-shadow: none; filter: none; transform: none; color: var(--text); }

/* microcopy de segurança */
.secure{
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 14px; font-size: .75rem; color: var(--dim); font-weight: 400;
}
.secure svg{ width: 14px; height: 14px; color: var(--cyan); }

/* divisor OU + link cruzado */
.or{
  display: flex; align-items: center; gap: 14px;
  margin: 18px 0 14px; color: var(--dim);
  font-size: .70rem; letter-spacing: .20em; text-transform: uppercase;
}
.or::before, .or::after{ content:""; flex: 1; height: 1px; background: var(--line-2); }
.cross{
  text-align: center; font-size: .9rem; color: var(--muted); font-weight: 400;
}
.cross a{ font-weight: 600; }

/* ---------------- ALERTAS (ícone via ::before — JS usa textContent) ---- */
.alert{
  display: none;
  margin-top: 14px; padding: 12px 14px; border-radius: 12px;
  font-size: .85rem; line-height: 1.45; font-weight: 400;
  align-items: flex-start; gap: 9px;
}
.alert.show{ display: flex; }
.alert.error{
  background: rgba(255,107,99,0.09);
  border: 1px solid rgba(255,107,99,0.34);
  color: var(--danger-ink);
}
.alert.ok{
  background: rgba(19,194,214,0.10);
  border: 1px solid rgba(19,194,214,0.34);
  color: #B7ECF4;
}
.alert.error::before{
  content: ""; flex: none; width: 17px; height: 17px; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 8v4'/%3E%3Cpath d='M12 16h.01'/%3E%3C/svg%3E") center/contain no-repeat;
}
.alert.ok::before{
  content: ""; flex: none; width: 17px; height: 17px; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2313C2D6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* link de redefinição (register: conta duplicada) */
.reset-action{
  display: none; margin-top: 10px; text-align: center;
  font-size: .875rem; font-weight: 600; color: var(--cyan);
}

/* bloco de status grande (pending) */
.icon-big{
  width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 20px;
  background: rgba(19,194,214,0.10); border: 1px solid var(--line-2);
  display: grid; place-items: center;
  box-shadow: 0 0 42px -12px rgba(19,194,214,0.55);
}
.icon-big svg{ width: 34px; height: 34px; color: var(--cyan); }

/* ============================================================
 * PÁGINAS AUXILIARES (forgot / reset / pending) — card centrado
 * ============================================================ */
.aux-wrap{
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; width: 100%;
  padding: 26px 24px 96px;
  display: flex; flex-direction: column; align-items: center;
  min-height: calc(100vh - 130px);
  min-height: calc(100dvh - 130px);
  justify-content: flex-start;
}
@media (min-width: 980px){
  .aux-wrap{ justify-content: center; padding-top: 0; }
}

/* ============================================================
 * FEATURES — cards abaixo do fold
 * ============================================================ */
.features{
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; width: 100%;
  padding: 26px 24px 78px;
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
.feat{
  padding: 22px 20px;
  border-radius: 18px;
  background: linear-gradient(168deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008));
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  text-align: center;
}
.feat .fi{
  width: 58px; height: 58px; margin: 0 auto 14px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 38%, rgba(19,194,214,0.16), rgba(19,194,214,0.05));
  border: 1px solid var(--line-2);
  box-shadow: 0 0 30px -8px rgba(19,194,214,0.55);
}
.feat .fi svg{ width: 25px; height: 25px; color: var(--cyan-hi); }
.feat h3{
  font-family: 'Chakra Petch', sans-serif; font-weight: 600;
  font-size: 1.0rem; color: var(--white); margin-bottom: 6px;
  letter-spacing: -.005em;
}
.feat p{ font-size: .82rem; color: var(--muted); line-height: 1.5; font-weight: 400; max-width: 30ch; margin: 0 auto; }

/* card de CTA cruzado (destacado) */
.feat.feat-cta{
  text-align: left;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  background: linear-gradient(160deg, rgba(19,194,214,0.12), rgba(30,92,140,0.10));
  border: 1px solid var(--line-2);
  box-shadow: 0 24px 60px -28px rgba(19,194,214,0.5);
}
.feat-cta .fc-eyebrow{
  font-family: 'Chakra Petch', sans-serif; font-weight: 600;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan-hi);
}
.feat-cta h3{ margin-bottom: 2px; }
.feat-cta p{ margin: 0 0 12px; max-width: none; }
.feat-cta .btn{ margin-top: 0; width: auto; align-self: flex-start; padding: 12px 22px; font-size: .84rem; }

/* ============================================================
 * DESKTOP
 * ============================================================ */
@media (min-width: 980px){
  .top{ padding: 26px 32px 4px; }
  .brand img{ width: 86px; }
  .brand .bname small{ font-size: .68rem; }
  .brand .bname strong{ font-size: 1.18rem; }

  .hero{
    flex-direction: row; align-items: center; gap: 5%;
    padding: 30px 32px 30px;
    min-height: calc(100vh - 250px);
  }
  .editorial{ flex: 1.12; }
  .form-side{ flex: .88; justify-content: flex-end; }
  .card{ padding: 34px 34px 28px; max-width: 470px; }
  .card-title{ font-size: 1.8rem; }

  .lede{ font-size: 1.03rem; }
  .hero-stage{ margin: 40px 0 0; }

  .features{
    grid-template-columns: repeat(3, 1fr);
    padding: 12px 32px 86px;
  }
  .feat{ text-align: left; }
  .feat .fi{ margin: 0 0 14px; }
  .feat p{ margin: 0; }
}

/* tablets */
@media (min-width: 640px) and (max-width: 979px){
  .features{ grid-template-columns: repeat(3, 1fr); }
}

/* telas muito estreitas */
@media (max-width: 400px){
  .card{ padding: 24px 18px 20px; border-radius: 18px; }
  .headline{ font-size: 1.75rem; }
}

/* ============================================================
 * SELO DE COMPLIANCE NATIVO (C-111.a1 → polimento C-111.a2)
 * ============================================================ */

/* Wrapper que empilha o card + o selo ancorado (login/register) */
.form-stack{
  display: flex; flex-direction: column; align-items: stretch;
  width: 100%; max-width: 440px;
}

.selo-compliance{
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  gap: 20px; flex-wrap: wrap;
  padding: 20px 24px 80px;
  color: rgba(255,255,255,.85);
  border-top: 1px solid rgba(0,212,192,.15);
}

/* Login/Register: selo ancorado logo abaixo do card */
/* C-111.a3: card (~440px úteis) nunca comporta row lado a lado; forçar column+centro em todas as larguras */
.form-stack .selo-compliance{
  margin-top: 12px;
  padding: 14px 18px;
  background: rgba(0,212,192,.04);
  border: 1px solid rgba(0,212,192,.18);
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.form-stack .selo-div{ display: none; }

.selo-grupo{
  display: flex; align-items: center; gap: 12px; min-width: 0;
}
.selo-circulo{
  width: 56px; height: 56px; flex-shrink: 0; color: #00D4C0;
}
.selo-texto{
  display: flex; flex-direction: column; gap: 3px;
}
.selo-l1{
  font-size: 13px; font-weight: 700; line-height: 1.3;
  letter-spacing: .03em; font-family: Arial, sans-serif;
}
.selo-l2{
  font-size: 11px; font-weight: 400; line-height: 1.3;
  letter-spacing: .01em; opacity: .78; font-family: Arial, sans-serif;
}
.selo-div{
  width: 1px; height: 50px; background: rgba(0,212,192,.3); flex-shrink: 0;
}
@media (max-width: 480px){
  .selo-div{ display: none; }
  .selo-compliance{ flex-direction: column; gap: 14px; padding-left: 16px; padding-right: 16px; }
  .form-stack .selo-compliance{ padding-left: 14px; padding-right: 14px; }
}
@media (min-width: 980px){
  .form-stack{ max-width: 470px; }
  .selo-compliance{ padding-bottom: 32px; }
}

/* ============================================================
 * MOTION
 * ============================================================ */
@keyframes rise{ from{ opacity: 0; transform: translateY(16px); } to{ opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce){
  .brand,.chip-eyebrow,.headline,.lede,.mini-chips,.hero-stage,.card{ animation: none; opacity: 1; }
  .hero-stage .oculos{ animation: none; }
  .ticker-track{ animation: none; }
  .btn,.field input,a{ transition: none; }
}
