﻿:root {
  --bg: #050505;
  --bg-soft: #0d0d10;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #ffffff;
  --muted: #b9bbc8;
  --line: rgba(255, 255, 255, 0.13);
  --red: #ef101b;
  --red-dark: #9d050d;
  --red-soft: rgba(239, 16, 27, 0.18);
  --gold: #ffd166;
  --green: #2be183;
  --blue: #8fb8ff;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 12%, rgba(239, 16, 27, 0.24), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(255, 209, 102, 0.10), transparent 26rem),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #050505;
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  font-family: "Aptos Display", "Segoe UI", Tahoma, sans-serif;
  overflow-x: hidden;
  padding-bottom: 84px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.62));
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: radial-gradient(rgba(255,255,255,.45) .7px, transparent .7px);
  background-size: 4px 4px;
  z-index: 60;
  mix-blend-mode: overlay;
}

a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }

.top-alert {
  background: linear-gradient(90deg, rgba(239,16,27,.22), rgba(255,209,102,.10), rgba(239,16,27,.18));
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.top-alert-inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: .88rem;
}
.top-alert-inner span:last-child { color: #e7e7ee; }
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(43,225,131,.65);
  animation: pulse 1.7s infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(20px);
}
.nav {
  width: min(var(--max), calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-weight: 950;
  background: linear-gradient(145deg, #ff2430, #8d050c);
  box-shadow: 0 0 34px rgba(239,16,27,.48);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: .98rem; }
.brand-copy small { color: var(--muted); font-size: .72rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: .94rem;
}
.nav-links a { text-decoration: none; transition: color .2s ease; }
.nav-links a:hover { color: #fff; }

.btn {
  position: relative;
  border: 0;
  border-radius: 14px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: -80% auto -80% -45%;
  width: 34%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transition: left .58s ease;
}
.btn:hover::after { left: 118%; }
.btn:hover { transform: translateY(-2px); }
.btn-primary, .btn-small {
  background: linear-gradient(135deg, var(--red), #ff3641 48%, var(--red-dark));
  box-shadow: 0 18px 48px rgba(239,16,27,.36);
}
.btn-primary:hover, .btn-small:hover { box-shadow: 0 24px 62px rgba(239,16,27,.48); }
.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-small { padding: 13px 19px; border-radius: 12px; }
.btn-large { width: min(100%, 360px); padding: 18px 26px; }
.btn.full { width: 100%; }

.hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 54px;
  align-items: center;
}
.hero-premium { min-height: calc(100vh - 110px); }
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: .88;
  letter-spacing: -.065em;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 4vw, 4.15rem);
  line-height: .95;
  letter-spacing: -.045em;
}
h3 { margin-bottom: 10px; }
.lead {
  max-width: 650px;
  color: #d6d7df;
  font-size: 1.13rem;
  line-height: 1.72;
}
.muted { color: var(--muted); line-height: 1.7; }

.offer-card {
  width: min(630px, 100%);
  margin-top: 26px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(239,16,27,.20), rgba(255,255,255,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 22px 70px rgba(0,0,0,.30);
}
.offer-label {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.offer-card strong { font-size: clamp(2rem, 4vw, 3.15rem); letter-spacing: -.05em; }
.timer { display: flex; gap: 8px; }
.timer span {
  min-width: 54px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 11px 9px;
  text-align: center;
  background: rgba(0,0,0,.34);
  font-weight: 950;
}
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.trust-item, .feature-card, .testimonial, .checkout-card, .auth-card, .panel-card, .glass-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
}
.trust-item { padding: 18px; backdrop-filter: blur(18px); }
.trust-item strong { display: block; font-size: 1.55rem; letter-spacing: -.04em; }
.trust-item span { color: var(--muted); font-size: .88rem; }

.hero-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: .75;
}
.orb-red { width: 260px; height: 260px; right: 12%; top: 5%; background: rgba(239,16,27,.28); }
.orb-gold { width: 160px; height: 160px; left: 5%; bottom: 18%; background: rgba(255,209,102,.13); }
.dashboard-card {
  position: relative;
  z-index: 3;
  width: min(430px, 100%);
  min-height: 500px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(239,16,27,.92), rgba(20,20,27,.96) 48%, rgba(255,255,255,.09)),
    repeating-linear-gradient(0deg, transparent 0, transparent 20px, rgba(255,255,255,.05) 21px);
  box-shadow: 0 40px 110px rgba(0,0,0,.65), 0 0 80px rgba(239,16,27,.18);
  transform: rotateY(-10deg) rotateX(4deg);
  animation: cardFloat 6s ease-in-out infinite;
}
.card-topline { display: flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.78); font-weight: 900; font-size: .82rem; }
.card-topline span, .card-topline small { border-radius: 999px; padding: 8px 11px; background: rgba(255,255,255,.13); }
.dashboard-card h2 { margin-top: 92px; font-size: clamp(2rem, 4vw, 3rem); }
.dashboard-card p { color: rgba(255,255,255,.78); line-height: 1.58; }
.mini-chart { height: 105px; margin-top: 34px; display: flex; align-items: end; gap: 12px; }
.mini-chart span { flex: 1; border-radius: 999px 999px 8px 8px; background: linear-gradient(180deg, #fff, rgba(255,255,255,.22)); animation: barRise 1.1s ease both; }
.floating-card {
  position: absolute;
  z-index: 4;
  width: 210px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  background: rgba(11,11,14,.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
  animation: floatSmall 5.5s ease-in-out infinite;
}
.floating-card strong { display: block; margin-bottom: 4px; }
.floating-card span { color: var(--muted); font-size: .88rem; line-height: 1.45; }
.card-one { left: 0; top: 92px; }
.card-two { right: 0; top: 230px; animation-delay: .8s; }
.card-three { left: 40px; bottom: 70px; animation-delay: 1.4s; }

.logo-strip { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.045); }
.ticker-track { width: max-content; display: flex; gap: 44px; padding: 18px 0; color: var(--muted); animation: ticker 30s linear infinite; }
.ticker-track span { white-space: nowrap; font-weight: 800; }

.section { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; padding: 92px 0; }
.section-tight { padding-top: 86px; }
.section-header { max-width: 780px; margin-bottom: 34px; }
.section-header.center { margin-inline: auto; text-align: center; }
.grid { display: grid; gap: 18px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature-card { position: relative; padding: 28px; overflow: hidden; min-height: 250px; }
.feature-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(239,16,27,.18), transparent 16rem); pointer-events: none; }
.feature-number { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 34px; border-radius: 14px; color: #fff; background: rgba(239,16,27,.22); border: 1px solid rgba(239,16,27,.38); font-weight: 950; }
.feature-card p, .testimonial p { color: var(--muted); line-height: 1.7; }

.content-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: center; }
.content-board {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.board-header { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 16px; color: var(--muted); }
.board-header strong { color: #fff; }
.pdf-list { display: grid; gap: 12px; }
.pdf-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(0,0,0,.22);
}
.pdf-list span { grid-row: span 2; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; background: var(--red-soft); color: #ff9ba1; font-weight: 950; }
.pdf-list strong { display: block; }
.pdf-list small { color: var(--muted); }

.proof-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 20%, rgba(239,16,27,.20), transparent 25rem),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.steps div { min-height: 170px; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(0,0,0,.25); }
.steps span { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 32px; border-radius: 999px; background: #fff; color: #111; font-weight: 950; }
.steps strong, .steps small { display: block; }
.steps small { margin-top: 6px; color: var(--muted); line-height: 1.45; }

.testimonial { padding: 26px; }
.testimonial strong { display: block; margin-top: 18px; }
.testimonial span { color: var(--muted); font-size: .9rem; }

.price-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(239,16,27,.34), transparent 30rem),
    radial-gradient(circle at 84% 20%, rgba(255,209,102,.13), transparent 26rem),
    linear-gradient(180deg, rgba(239,16,27,.13), rgba(0,0,0,.50)),
    #08080a;
}
.price-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 42px 42px; pointer-events: none; }
.checkout-wrap { position: relative; width: min(1120px, calc(100% - 36px)); margin: 0 auto; padding: 92px 0; display: grid; grid-template-columns: .92fr 1.08fr; gap: 24px; align-items: stretch; }
.checkout-card, .auth-card { padding: 30px; }
.price-card, .buy-card { min-height: 100%; }
.price-box { margin: 28px 0 24px; padding: 22px; border: 1px solid rgba(255,255,255,.15); border-radius: 24px; background: linear-gradient(145deg, rgba(239,16,27,.24), rgba(255,255,255,.07)); }
.price-label, .price-note { display: block; color: var(--muted); font-weight: 800; }
.price-label { color: var(--gold); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.price { margin: 8px 0; font-size: clamp(3.4rem, 6vw, 5rem); font-weight: 950; letter-spacing: -.07em; }
.price-note { font-size: .88rem; }
.secure-list { padding: 0; margin: 20px 0 0; list-style: none; }
.secure-list li { padding: 13px 0; color: #d8d9e2; border-bottom: 1px solid rgba(255,255,255,.10); }
.secure-list li::before { content: "✓"; margin-right: 10px; color: var(--green); font-weight: 950; }
.checkout-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.checkout-head span { flex: 0 0 auto; border-radius: 999px; padding: 9px 13px; color: #dfffe9; background: rgba(43,225,131,.13); border: 1px solid rgba(43,225,131,.35); font-weight: 950; font-size: .78rem; }
.checkout-cta-box { margin: 34px 0 18px; min-height: 300px; display: grid; place-items: center; align-content: center; gap: 14px; text-align: center; border: 1px solid rgba(255,255,255,.11); border-radius: 24px; background: radial-gradient(circle at 50% 0, rgba(239,16,27,.16), rgba(0,0,0,.22)); }
.checkout-cta-box p { max-width: 500px; color: var(--muted); line-height: 1.7; }
.seal { width: fit-content; margin: 0 auto; border-radius: 999px; padding: 8px 12px; color: #ffdede; background: rgba(239,16,27,.15); border: 1px solid rgba(239,16,27,.28); font-size: .8rem; font-weight: 900; }
.status-box { margin-top: 16px; padding: 15px; border: 1px solid var(--line); border-radius: 16px; color: var(--muted); background: rgba(255,255,255,.055); }
.status-box.success { color: #d5ffe8; border-color: rgba(43,225,131,.42); background: rgba(43,225,131,.10); }
.status-box.error { color: #ffd3d3; border-color: rgba(239,16,27,.45); background: rgba(239,16,27,.12); }

.buy-strip { position: fixed; left: 0; right: 0; bottom: 0; z-index: 39; background: rgba(5,5,5,.86); border-top: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(18px); padding: 12px 18px; }
.buy-strip-inner { width: min(var(--max), 100%); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.buy-strip strong, .buy-strip span { display: block; }
.buy-strip span { color: var(--muted); }

.auth-shell { width: min(1040px, calc(100% - 36px)); min-height: 100vh; margin: 0 auto; padding: 54px 0; display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: center; }
.auth-card form { display: grid; gap: 14px; }
.auth-page {
  background-size: auto, auto, 38px 38px, 38px 38px, auto;
}
.auth-page::after {
  content: "";
  position: fixed;
  inset: -20% -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 25%, rgba(239,16,27,.23), transparent 23rem),
    radial-gradient(circle at 75% 65%, rgba(255,209,102,.12), transparent 26rem),
    conic-gradient(from 0deg at 50% 50%, rgba(239,16,27,.05), rgba(255,209,102,.03), rgba(239,16,27,.05));
  animation: authBgMove 14s linear infinite;
}
.auth-shell-modern {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(350px, .95fr) minmax(410px, 1.05fr);
  gap: 30px;
}
.auth-side {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.03)),
    radial-gradient(circle at 18% 84%, rgba(255,209,102,.10), transparent 12rem);
  box-shadow: var(--shadow);
}
.auth-side h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: .88;
  max-width: 520px;
}
.auth-side .lead {
  max-width: 520px;
  font-size: 1.12rem;
}
.auth-badges {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.auth-badges span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  color: #ececf5;
  background: rgba(0,0,0,.26);
  font-size: .86rem;
  font-weight: 800;
}
.auth-card-modern {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  backdrop-filter: blur(20px);
  animation: authCardEnter .9s cubic-bezier(.16,1,.3,1) both;
}
.auth-card-modern h2 {
  margin-bottom: 8px;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
}
.auth-card-modern .status-box {
  margin-bottom: 8px;
}
.auth-card-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(239,16,27,.12), transparent 40%, rgba(255,209,102,.07));
}
.auth-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  animation: floatSmall 6s ease-in-out infinite;
}
.auth-glow-red {
  right: 4%;
  top: 20%;
  width: 210px;
  height: 210px;
  background: rgba(239,16,27,.26);
}
.auth-glow-gold {
  left: 6%;
  bottom: 12%;
  width: 150px;
  height: 150px;
  background: rgba(255,209,102,.16);
  animation-delay: .7s;
}
label { display: grid; gap: 8px; color: var(--muted); font-size: .92rem; font-weight: 800; }
input { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 15px; color: var(--text); background: rgba(255,255,255,.075); font: inherit; }
input:focus { outline: 2px solid rgba(239,16,27,.45); border-color: transparent; }
.panel-shell {
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(circle at 16% 12%, rgba(239, 16, 27, 0.24), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(255, 209, 102, 0.10), transparent 26rem),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #050505;
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
}
.panel-bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 25%, rgba(0,0,0,.85), transparent 80%);
  opacity: .35;
  z-index: 0;
}
.panel-layout { width: min(1220px, calc(100% - 36px)); margin: 0 auto; padding: 34px 0 70px; }
.panel-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.panel-card { padding: 24px; }
.panel-layout, .panel-top, .panel-card, .pdf-grid { position: relative; z-index: 2; }
.panel-quick-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.panel-quick-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: #e7e7ef;
  font-size: .84rem;
  font-weight: 800;
}
.pdf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pdf-card {
  min-height: 420px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(239,16,27,.18), transparent 13rem),
    linear-gradient(155deg, rgba(35,5,8,.95), rgba(12,12,16,.96));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 42px rgba(0,0,0,.32);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.pdf-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 30px 70px rgba(0,0,0,.45), 0 0 0 1px rgba(239,16,27,.18) inset;
}
.pdf-thumb-wrap {
  margin-bottom: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(0,0,0,.28);
}
.module-hero {
  height: 170px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 15% 18%, rgba(255,255,255,.12), transparent 8rem),
    linear-gradient(145deg, rgba(239,16,27,.30), rgba(10,10,14,.72));
}
.module-hero small {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #f1d9a3;
}
.module-hero strong {
  font-size: 4rem;
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.04em;
  color: #fff;
  text-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.module-hero span {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.module-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.26);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pdf-card-actions { display: grid; gap: 10px; }
.pdf-card .category { color: var(--gold); font-size: .76rem; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
.pdf-card h3 { margin: 18px 0 8px; font-size: 1.04rem; line-height: 1.25; }
.pdf-card small { color: var(--muted); }
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.tab { border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; color: var(--muted); background: rgba(255,255,255,.05); cursor: pointer; }
.tab.active { color: #fff; background: var(--red); border-color: var(--red); }
.hide { display: none !important; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.benefit-grid .reveal:nth-child(2), .grid .reveal:nth-child(2) { transition-delay: .08s; }
.benefit-grid .reveal:nth-child(3), .grid .reveal:nth-child(3) { transition-delay: .16s; }

@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(43,225,131,0); } 100% { box-shadow: 0 0 0 0 rgba(43,225,131,0); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes cardFloat { 0%,100% { transform: rotateY(-10deg) rotateX(4deg) translateY(0); } 50% { transform: rotateY(-7deg) rotateX(2deg) translateY(-16px); } }
@keyframes floatSmall { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes barRise { from { transform: scaleY(.35); opacity: .35; } to { transform: scaleY(1); opacity: 1; } }
@keyframes authCardEnter { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes authBgMove { 0% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(180deg) scale(1.08); } 100% { transform: rotate(360deg) scale(1); } }

.content-shell .panel-layout { padding-top: 44px; }
.content-hero {
  margin-bottom: 24px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
}
.content-chips {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.content-chips span {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(0,0,0,.28);
  color: #ececf5;
  font-weight: 800;
  font-size: .86rem;
}
.content-cover-wrap {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(239,16,27,.15), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}
.content-cover {
  width: 100%;
  border-radius: 16px;
  display: block;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.content-cta {
  margin-top: 20px;
  text-align: center;
}
.content-page-nav {
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.content-page-nav .tab {
  text-decoration: none;
}
.content-page-block {
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(239,16,27,.12), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
}
.content-page-head {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.content-page-head .eyebrow {
  margin: 0;
}
.content-page-head h3 {
  margin: 0;
  font-size: 1.45rem;
}
.content-rich-text {
  display: grid;
  gap: 12px;
}
.content-rich-text h4 {
  margin: 12px 0 0;
  font-size: 1.12rem;
  letter-spacing: .01em;
  color: #fff;
}
.content-rich-text p {
  margin: 0;
  line-height: 1.78;
  color: #d6d7e0;
  font-size: 1.02rem;
}

@media (max-width: 980px) {
  .hero, .content-section, .proof-panel, .checkout-wrap, .auth-shell { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-visual { min-height: 500px; }
  .grid.cols-3, .grid.cols-2, .pdf-grid, .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .checkout-wrap { padding: 68px 0; }
  .auth-side, .auth-card-modern { min-height: 0; }
  .content-hero, .content-grid { grid-template-columns: 1fr; }
  .content-page-head { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  body { padding-bottom: 116px; }
  .top-alert-inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .nav { width: min(100% - 24px, var(--max)); min-height: 66px; }
  .brand-copy small { display: none; }
  .nav .btn { display: none; }
  .hero, .section, .checkout-wrap { width: min(100% - 24px, var(--max)); }
  .hero { padding: 42px 0 52px; gap: 28px; }
  h1 { font-size: clamp(2.45rem, 15vw, 4.1rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .lead { font-size: 1rem; }
  .offer-card, .buy-strip-inner, .checkout-head { align-items: stretch; flex-direction: column; }
  .timer span { min-width: 0; flex: 1; }
  .trust-row { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; }
  .dashboard-card { min-height: 430px; padding: 22px; transform: none; }
  .dashboard-card h2 { margin-top: 70px; }
  .floating-card { width: 180px; }
  .card-one { left: -4px; top: 56px; }
  .card-two { right: -4px; top: 214px; }
  .card-three { left: 14px; bottom: 38px; }
  .section { padding: 64px 0; }
  .feature-card, .testimonial, .checkout-card, .auth-card, .proof-panel { padding: 22px; }
  .pdf-list div { grid-template-columns: 42px 1fr; padding: 14px; }
  .price { font-size: 3.3rem; }
  .buy-strip .btn { width: 100%; }
}

/* ─── Checkout v2 ─────────────────────────────────────────── */

.premium-checkout { gap: 28px; }

/* Badge centralizado acima dos dois cards */
.co-badge-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.co-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  font-size: .84rem;
  font-weight: 800;
  color: #dcdde8;
}

/* Texto gradiente no título */
.co-grad {
  background: linear-gradient(90deg, #ff3641, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* ── Card esquerdo (preço) ── */
.price-card {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse at 22% -8%, rgba(239,16,27,.30), transparent 52%),
    linear-gradient(160deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.03) 100%);
  border-color: rgba(239,16,27,.20);
}
.price-card h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  margin-bottom: 6px;
}

/* Bloco do preço */
.co-price-block {
  margin: 20px 0 22px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(239,16,27,.22), rgba(0,0,0,.44));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.11);
  position: relative;
  overflow: hidden;
}
.co-price-block::after {
  content: "";
  position: absolute;
  top: -70px; right: -50px;
  width: 190px; height: 190px;
  background: radial-gradient(circle, rgba(239,16,27,.22), transparent 65%);
  pointer-events: none;
}
.co-price-label {
  display: block;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.co-price-row {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 10px;
}
.co-price-curr {
  font-size: 1.6rem;
  font-weight: 950;
  color: rgba(255,255,255,.68);
  margin-top: 14px;
  letter-spacing: -.03em;
}
.co-price-num {
  font-size: clamp(4rem, 9vw, 5.6rem);
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.07em;
  background: linear-gradient(150deg, #fff 30%, rgba(255,255,255,.62));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.co-price-note {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

/* Lista de features com ícone */
.co-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  flex: 1;
}
.co-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.co-check-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.co-check-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}
.co-check-list strong {
  display: block;
  font-size: .93rem;
  margin-bottom: 2px;
  color: #fff;
}
.co-check-list span {
  color: var(--muted);
  font-size: .80rem;
}

/* ── Card direito (compra) ── */
.buy-card {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse at 82% 6%, rgba(255,209,102,.09), transparent 42%),
    linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
}

.co-buy-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}
.co-buy-head-copy strong {
  display: block;
  font-size: .98rem;
  margin-bottom: 5px;
  color: #fff;
}
.co-buy-head-copy p {
  margin: 0;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.6;
}
.co-secure-badge {
  flex: 0 0 auto;
  padding: 7px 14px;
  border-radius: 999px;
  color: #d5ffe9;
  background: rgba(43,225,131,.12);
  border: 1px solid rgba(43,225,131,.35);
  font-weight: 950;
  font-size: .76rem;
}

/* Zona de CTA */
.co-cta-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 22px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: radial-gradient(ellipse at 50% 0, rgba(239,16,27,.17), transparent 62%), rgba(0,0,0,.22);
  margin-bottom: 18px;
  position: relative;
}
.co-cta-zone::before {
  content: "";
  position: absolute;
  top: 0; left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239,16,27,.5), transparent);
}
.co-seal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(239,16,27,.13);
  border: 1px solid rgba(239,16,27,.28);
  color: #ffdede;
  font-size: .78rem;
  font-weight: 900;
}
.co-cta-zone h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -.045em;
  line-height: 1.1;
  margin: 0;
  color: #fff;
}
.co-cta-zone > p {
  max-width: 400px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
  margin: 0;
}

/* Botão CTA principal */
.co-cta-btn {
  width: min(100%, 390px);
  padding: 20px 28px;
  font-size: 1.05rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: coBtnGlow 2.8s ease-in-out infinite;
}
.co-cta-btn strong { font-size: 1.1rem; }
.co-cta-btn svg { flex-shrink: 0; transition: transform .2s ease; }
.co-cta-btn:hover svg { transform: translateX(4px); }

@keyframes coBtnGlow {
  0%, 100% { box-shadow: 0 18px 50px rgba(239,16,27,.42), 0 0 0 1px rgba(255,255,255,.08) inset; }
  50%       { box-shadow: 0 22px 66px rgba(239,16,27,.62), 0 0 0 1px rgba(255,255,255,.12) inset; }
}

/* Mini trust row */
.co-micro-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.co-micro-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

/* ── Responsivo checkout v2 ── */
@media (max-width: 980px) {
  .co-badge { font-size: .8rem; padding: 9px 16px; }
  .co-price-num { font-size: 4.4rem; }
}
@media (max-width: 620px) {
  .co-price-block { padding: 18px 16px; }
  .co-price-num { font-size: 3.8rem; }
  .co-cta-zone { padding: 24px 16px; gap: 14px; }
  .co-cta-btn { padding: 18px 20px; font-size: .98rem; }
  .co-buy-head { flex-direction: column; gap: 10px; }
  .co-secure-badge { align-self: flex-start; }
  .co-micro-trust { gap: 12px; }
  .co-micro-trust span { font-size: .75rem; }
}

/* ─── Buy card v2 ──────────────────────────────────────────── */

.buy-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background:
    radial-gradient(ellipse at 85% 5%, rgba(255,209,102,.08), transparent 44%),
    linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
}

/* Header */
.co2-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.co2-header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.co2-lock-ico {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.65);
  flex-shrink: 0;
}
.co2-header-brand strong {
  display: block;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 2px;
}
.co2-header-brand span { font-size: .79rem; color: var(--muted); }
.co2-secure-pill {
  padding: 6px 13px;
  border-radius: 999px;
  color: #d5ffe9;
  background: rgba(43,225,131,.12);
  border: 1px solid rgba(43,225,131,.35);
  font-weight: 950;
  font-size: .74rem;
  flex-shrink: 0;
}

/* Order summary */
.co2-order-summary {
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 20px;
}
.co2-order-label {
  font-size: .67rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin: 0 0 14px;
}
.co2-order-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.co2-order-product {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.co2-order-ico {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(239,16,27,.18);
  border: 1px solid rgba(239,16,27,.28);
  color: #ff9ba1;
  flex-shrink: 0;
}
.co2-order-product strong {
  display: block;
  font-size: .9rem;
  color: #fff;
  margin-bottom: 3px;
}
.co2-order-product span { color: var(--muted); font-size: .78rem; }
.co2-order-price {
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -.04em;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.co2-order-access {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .79rem;
  color: #a8f0c6;
}

/* CTA */
.co2-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.co2-cta-btn {
  width: 100%;
  padding: 18px 22px;
  font-size: 1rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  animation: coBtnGlow 2.8s ease-in-out infinite;
}
.co2-cta-btn > span:first-child { flex: 1; text-align: left; }
.co2-btn-price {
  font-size: 1.1rem;
  font-weight: 950;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.co2-cta-btn svg { flex-shrink: 0; transition: transform .2s ease; }
.co2-cta-btn:hover svg { transform: translateX(5px); }
.co2-cta-note {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
  margin: 0;
  max-width: 380px;
}

/* Trust grid */
.co2-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
}
.co2-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 14px 8px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
}
.co2-trust-item strong {
  display: block;
  font-size: .77rem;
  color: #e0e0ea;
  margin-bottom: 1px;
}
.co2-trust-item span { font-size: .70rem; color: var(--muted); }

/* Responsivo buy card v2 */
@media (max-width: 620px) {
  .co2-trust-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .co2-trust-item { padding: 12px 6px; }
  .co2-cta-btn { padding: 16px 18px; font-size: .95rem; }
  .co2-order-summary { padding: 14px; }
  .co2-header-brand span { display: none; }
}

/* ─── Nav v2 ──────────────────────────────────────────────── */

/* Linha de glow no rodapé do header */
.site-header { position: relative; }
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(239,16,27,.45) 35%,
    rgba(255,209,102,.28) 55%,
    transparent 100%
  );
  pointer-events: none;
}

/* Estado scrollado */
.site-header.is-scrolled {
  background: rgba(5,5,5,.92);
  box-shadow: 0 6px 28px rgba(0,0,0,.45);
}

/* Brand mark — anel rotativo */
.brand-mark {
  position: relative;
  isolation: isolate;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 15px;
  background: conic-gradient(
    from 0deg,
    rgba(239,16,27,.70) 0%,
    transparent 30%,
    rgba(255,209,102,.50) 60%,
    transparent 85%,
    rgba(239,16,27,.70) 100%
  );
  z-index: -1;
  animation: navBrandRing 5s linear infinite;
}

/* ── Login Page v2 ──────────────────────────────────────────── */
body.lp-body {
  background: #060608;
  background-image: none;
  padding-bottom: 0;
  min-height: 100vh;
  overflow: hidden;
}
body.lp-body::before { display: none; }

/* Animated background blobs */
body.lp-body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 18% 28%, rgba(239,16,27,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 82% 72%, rgba(255,209,102,.08) 0%, transparent 55%),
    radial-gradient(ellipse 35% 35% at 60% 15%, rgba(239,16,27,.07) 0%, transparent 55%);
  animation: lpBgDrift 18s ease-in-out infinite alternate;
}

@keyframes lpBgDrift {
  0%   { transform: translate(0%, 0%) scale(1); }
  33%  { transform: translate(3%, -4%) scale(1.04); }
  66%  { transform: translate(-4%, 3%) scale(.97); }
  100% { transform: translate(2%, -2%) scale(1.02); }
}

.lp-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Full-width top accent line */
.lp-shell::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 10;
  background: linear-gradient(90deg, transparent 2%, var(--red) 30%, var(--gold) 55%, rgba(239,16,27,.40) 78%, transparent 98%);
}

/* ── Left panel ── */
.lp-left {
  position: relative;
  background: rgba(239,16,27,.04);
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 56px;
  overflow: hidden;
}
.lp-left::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(239,16,27,.12) 0%, transparent 70%);
  pointer-events: none;
}

.lp-left-inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 52px;
}

.lp-eyebrow {
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin: 0 0 14px;
}

.lp-title {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 950;
  line-height: 1.0;
  letter-spacing: -.05em;
  margin: 0 0 20px;
}

.lp-desc {
  font-size: .98rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 360px;
}

.lp-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.lp-feat li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .93rem;
  color: rgba(255,255,255,.72);
  font-weight: 600;
}
.lp-feat-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(43,225,131,.10);
  border: 1px solid rgba(43,225,131,.28);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lp-left-deco {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lp-deco-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
}
.lp-deco-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
.lp-deco-card-alt { color: var(--gold); border-color: rgba(255,209,102,.18); background: rgba(255,209,102,.04); }

/* ── Right panel ── */
.lp-right {
  background: #060608;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 56px;
}

.lp-form-wrap {
  max-width: 390px;
  width: 100%;
}

.lp-form-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(239,16,27,.10);
  border: 1px solid rgba(239,16,27,.22);
  display: grid;
  place-items: center;
  color: var(--red);
  margin-bottom: 20px;
}

.lp-form-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 950;
  letter-spacing: -.04em;
  margin: 0 0 6px;
}

.lp-form-sub {
  font-size: .92rem;
  color: var(--muted);
  margin: 0 0 28px;
}

.lp-error-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(239,16,27,.10);
  border: 1px solid rgba(239,16,27,.30);
  color: #ffb3b6;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.lp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}

.lp-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lp-field label {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.lp-field input {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.lp-field input::placeholder { color: rgba(255,255,255,.22); }
.lp-field input:focus {
  border-color: rgba(239,16,27,.50);
  background: rgba(239,16,27,.04);
  box-shadow: 0 0 0 3px rgba(239,16,27,.08);
}

.lp-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 4px;
}

/* ── Painel v2 ──────────────────────────────────────────────── */
body.pn-body {
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    #060608;
  background-size: 44px 44px, 44px 44px, auto;
  padding-bottom: 60px;
}
body.pn-body::before { display: none; }

/* Header */
.pn-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6,6,8,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pn-nav {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pn-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.pn-nav-right { display: flex; align-items: center; gap: 10px; }

.pn-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.pn-user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #8b0000);
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 900;
  flex-shrink: 0;
}
.pn-user-name {
  font-size: .84rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pn-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--green);
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(43,225,131,.10);
  border: 1px solid rgba(43,225,131,.22);
}
.pn-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.60);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}
.pn-logout:hover {
  color: #fff;
  border-color: rgba(239,16,27,.40);
  background: rgba(239,16,27,.07);
}

/* Main layout */
.pn-main {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 48px;
}

/* Hero */
.pn-hero {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 44px;
}
.pn-eyebrow {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin: 0 0 12px;
}
.pn-title {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: 1.0;
  margin: 0 0 14px;
}
.pn-subtitle {
  font-size: .98rem;
  color: var(--muted);
  margin: 0 0 30px;
  line-height: 1.65;
}
.pn-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pn-stat { display: flex; flex-direction: column; gap: 2px; }
.pn-stat strong {
  font-size: 1.9rem;
  font-weight: 950;
  letter-spacing: -.06em;
  line-height: 1;
  background: linear-gradient(150deg, #fff 30%, rgba(255,255,255,.55));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pn-stat span { font-size: .78rem; color: var(--muted); font-weight: 600; }
.pn-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.10); }

/* Tip card */
.pn-tip-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 24px;
}
.pn-tip-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.pn-tip-ico {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255,209,102,.10);
  border: 1px solid rgba(255,209,102,.22);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.pn-tip-header strong { font-size: .96rem; font-weight: 800; }
.pn-tip-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 16px;
}
.pn-tip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pn-tip-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.04);
}

/* Filters */
.pn-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.pn-filter {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.55);
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: color .18s, border-color .18s, background .18s;
}
.pn-filter:hover { color: #fff; border-color: rgba(255,255,255,.22); }
.pn-filter.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 4px 18px rgba(239,16,27,.30);
}

/* PDF grid */
.pn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* PDF card */
.pn-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .22s ease, border-color .25s ease, box-shadow .25s ease;
}
.pn-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239,16,27,.28);
  box-shadow: 0 20px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(239,16,27,.10);
}

/* Card header stripe */
.pn-card-top {
  position: relative;
  padding: 20px 20px 16px;
  background: linear-gradient(135deg, rgba(239,16,27,.16) 0%, rgba(0,0,0,.30) 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 90px;
}
/* Big number watermark */
.pn-card-top::after {
  content: attr(data-num);
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  font-weight: 950;
  letter-spacing: -.1em;
  line-height: 1;
  color: rgba(255,255,255,.06);
  pointer-events: none;
  user-select: none;
}
.pn-card-cat {
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  opacity: .85;
}
.pn-card-num {
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: -.06em;
  line-height: 1;
  color: rgba(255,255,255,.90);
}

/* Card body */
.pn-card-body {
  flex: 1;
  padding: 16px 20px 14px;
}
.pn-card-title {
  font-size: .93rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 10px;
  color: rgba(255,255,255,.90);
}
.pn-card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .73rem;
  color: rgba(255,255,255,.35);
  margin: 0;
}

/* Card actions */
.pn-card-actions {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.pn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  font-size: .79rem;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  flex: 1;
  transition: background .18s, color .18s;
  border: none;
  background: none;
}
.pn-btn-ghost {
  color: rgba(255,255,255,.52);
  border-right: 1px solid rgba(255,255,255,.06);
}
.pn-btn-ghost:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.90); }

/* ── Content Reader (cr-) ───────────────────────────────────── */
body.cr-body {
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    #060608;
  background-size: 44px 44px, 44px 44px, auto;
  padding-bottom: 80px;
}
body.cr-body::before { display: none; }

.cr-main {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 44px;
}

/* Hero */
.cr-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.cr-eyebrow {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin: 0 0 16px;
}
.cr-module-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 14px;
}
.cr-module-num {
  font-size: 5rem;
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: .85;
  background: linear-gradient(150deg, var(--red) 30%, rgba(239,16,27,.35));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}
.cr-title {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin: 0;
}
.cr-subtitle {
  font-size: .96rem;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.6;
}
.cr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cr-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
}

/* Module card (right side of hero) */
.cr-module-card {
  width: 220px;
  background: linear-gradient(145deg, rgba(239,16,27,.18), rgba(0,0,0,.55));
  border: 1px solid rgba(239,16,27,.22);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.cr-module-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), transparent);
}
.cr-mc-num {
  font-size: 4.5rem;
  font-weight: 950;
  letter-spacing: -.1em;
  line-height: 1;
  color: rgba(255,255,255,.08);
  position: absolute;
  right: 10px; top: 8px;
}
.cr-mc-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  position: relative;
}
.cr-mc-title {
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
  position: relative;
}
.cr-mc-stats {
  display: flex;
  gap: 14px;
  position: relative;
}
.cr-mc-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.cr-mc-stats strong {
  font-size: 1.4rem;
  font-weight: 950;
  letter-spacing: -.06em;
  color: #fff;
}
.cr-mc-stats span {
  font-size: .66rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Page nav */
.cr-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
  position: sticky;
  top: 58px;
  z-index: 20;
  background: rgba(6,6,8,.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 10px 14px;
}
.cr-page-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 800;
  color: rgba(255,255,255,.42);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
  transition: color .15s, background .15s, border-color .15s;
}
.cr-page-tab:hover { color: rgba(255,255,255,.80); background: rgba(255,255,255,.07); }
.cr-page-tab.active { color: #fff; background: var(--red); border-color: var(--red); }

/* Page blocks */
.cr-page-block {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  scroll-margin-top: 120px;
}
.cr-page-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.cr-page-num-badge {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.cr-page-progress {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,.07);
  overflow: hidden;
}
.cr-page-progress-bar {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.cr-page-intro {
  padding: 20px 24px;
  display: grid;
  gap: 12px;
}
.cr-page-intro p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.80;
  color: rgba(255,255,255,.78);
}

/* Steps */
.cr-steps-wrap {
  padding: 0 24px 22px;
}
.cr-steps-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 16px;
}
.cr-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.cr-step-card {
  background: rgba(239,16,27,.07);
  border: 1px solid rgba(239,16,27,.15);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.cr-step-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.cr-step-num {
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: -.06em;
  color: rgba(239,16,27,.60);
  line-height: 1;
  margin-bottom: 10px;
}
.cr-step-text {
  font-size: .83rem;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  margin: 0;
}

/* Empty state */
.cr-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
}

/* CTA */
.cr-cta {
  margin-top: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(239,16,27,.12), rgba(0,0,0,.40));
  border: 1px solid rgba(239,16,27,.18);
  padding: 24px 28px;
}
.cr-cta-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cr-cta-ico {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: rgba(239,16,27,.14);
  border: 1px solid rgba(239,16,27,.25);
  display: grid;
  place-items: center;
  color: var(--red);
  flex-shrink: 0;
}
.cr-cta-inner > div:not(.cr-cta-ico) { flex: 1; }
.cr-cta-inner strong { display: block; font-size: 1rem; font-weight: 800; margin-bottom: 3px; }
.cr-cta-inner p { margin: 0; font-size: .85rem; color: var(--muted); }
.cr-cta-inner .btn { flex-shrink: 0; }

/* Responsive */
@media (max-width: 860px) {
  .cr-hero { grid-template-columns: 1fr; }
  .cr-hero-right { display: none; }
  .cr-module-num { font-size: 3.5rem; }
}
@media (max-width: 600px) {
  .cr-steps-grid { grid-template-columns: 1fr 1fr; }
  .cr-page-nav { top: 56px; }
}
.pn-btn-solid {
  color: var(--red);
}
.pn-btn-solid:hover { background: rgba(239,16,27,.10); color: #ff4d56; }

/* Responsive */
@media (max-width: 1100px) { .pn-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) {
  .pn-hero { grid-template-columns: 1fr; }
  .pn-hero-right { display: none; }
  .pn-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .pn-grid { grid-template-columns: 1fr; }
  .pn-user-name { display: none; }
}

.lp-bottom-note {
  text-align: center;
  font-size: .86rem;
  color: var(--muted);
  margin: 0;
}
.lp-bottom-note a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}
.lp-bottom-note a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 780px) {
  .lp-shell { grid-template-columns: 1fr; }
  .lp-left { display: none; }
  .lp-right { min-height: 100vh; padding: 40px 24px; }
  .lp-form-wrap { max-width: 100%; }
}
@keyframes navBrandRing { to { transform: rotate(360deg); } }

/* Nav links — underline deslizante */
.nav-links a {
  position: relative;
  font-weight: 600;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

/* Grupo direito (login + CTA) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Botão login ghost */
.nav-login-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.70);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}
.nav-login-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
}

@media (max-width: 620px) {
  .nav-right .nav-login-link { display: none; }
}
