:root {
  --bg: #f7f8fc;
  --bg-dark: #0b1220;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --blue: #1a56db;
  --blue-dark: #1240a8;
  --gold: #c9a227;
  --gold-soft: #f5e7b2;
  --orange: #f97316;
  --border: #e2e8f0;
  --shadow: 0 12px 40px rgba(15, 23, 42, .08);
  --radius: 18px;
  --radius-sm: 12px;
  --font: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Trebuchet MS", "Segoe UI", sans-serif;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(226,232,240,.9);
  box-shadow: 0 4px 20px rgba(15,23,42,.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 0;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: inherit; }
.brand img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.nav-links {
  display: flex; align-items: center; gap: .2rem;
  background: #f1f5f9; border-radius: 999px; padding: .25rem;
}
.nav-link {
  color: #475569; font-weight: 700; font-size: .88rem; text-decoration: none;
  padding: .5rem .9rem; border-radius: 999px; transition: .15s ease;
}
.nav-link:hover { color: var(--blue); background: #fff; text-decoration: none; }
.nav-link.is-active {
  color: #fff; background: linear-gradient(135deg, var(--blue), #3b82f6);
  box-shadow: 0 4px 12px rgba(26,86,219,.28);
}
.nav-cta { display: flex; gap: .5rem; align-items: center; }
.menu-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--border);
  background: #fff; border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: #0f172a; border-radius: 2px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  border: 0; border-radius: 999px; padding: .75rem 1.25rem;
  font-weight: 700; cursor: pointer; text-decoration: none; transition: .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), #3b82f6); color: #fff; box-shadow: 0 8px 20px rgba(26,86,219,.28); }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-gold { background: linear-gradient(135deg, var(--gold), #e4c35a); color: #1a1300; }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: .45rem .9rem; font-size: .85rem; }

.hero {
  padding: 3.5rem 0 2.5rem;
  display: grid; gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.1fr .9fr; padding: 4.5rem 0 3rem; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff; border: 1px solid var(--border); color: var(--blue);
  border-radius: 999px; padding: .35rem .8rem; font-size: .8rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.hero h1 {
  font-family: var(--display); font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.08; margin: .9rem 0 .75rem; letter-spacing: -.02em;
}
.hero p.lead { font-size: 1.1rem; color: var(--muted); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.hero-visual {
  border-radius: 28px; overflow: hidden; min-height: 320px;
  box-shadow: var(--shadow); position: relative; background: #111;
}
.hero-slide {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  opacity: 0; transition: opacity .7s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(15,23,42,.1), rgba(15,23,42,.45));
  pointer-events: none;
}
.hero-visual .badge-float {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(255,255,255,.95); padding: .7rem 1rem; border-radius: 14px;
  font-weight: 700; font-size: .9rem; color: var(--text); text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.18); transition: .15s ease;
}
.hero-visual .badge-float:hover {
  transform: translateY(-2px); text-decoration: none; color: var(--blue);
}
.hero-dots {
  position: absolute; right: 1rem; bottom: 1rem; z-index: 2;
  display: flex; gap: .35rem;
}
.hero-dots button {
  width: 8px; height: 8px; border-radius: 99px; border: 0; padding: 0;
  background: rgba(255,255,255,.45); cursor: pointer;
}
.hero-dots button.is-active { background: #fff; width: 18px; }

.section { padding: 3.5rem 0; }
.section-dark {
  background: var(--bg-dark); color: #fff;
  background-image:
    radial-gradient(800px 300px at 20% 0%, rgba(26,86,219,.35), transparent 60%),
    radial-gradient(600px 280px at 90% 20%, rgba(201,162,39,.2), transparent 55%);
}
.section-dark .muted { color: #94a3b8; }
.section-head { text-align: center; margin-bottom: 2rem; }
.section-head h2 {
  font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: .5rem 0; letter-spacing: -.02em;
}
.section-head p { color: var(--muted); max-width: 40rem; margin: 0 auto; }
.section-dark .section-head p { color: #94a3b8; }
.pill-badge {
  display: inline-flex; gap: .35rem; align-items: center;
  border: 1px solid rgba(249,115,22,.5); color: #fdba74;
  border-radius: 999px; padding: .3rem .75rem; font-size: .78rem; font-weight: 700;
}

.top10-controls { display: flex; justify-content: flex-end; gap: .5rem; margin-bottom: 1rem; }
.chip {
  border: 0; border-radius: 999px; padding: .45rem .9rem; font-weight: 700;
  background: #1e293b; color: #cbd5e1; cursor: pointer;
}
.chip.is-active { background: var(--orange); color: #fff; }

.carousel {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: .5rem; -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: #334155; border-radius: 99px; }
.carousel.loop-track { animation: none; width: auto; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.media-card { flex: 0 0 160px; }
.media-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.poster-grid--compact {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .poster-grid--compact { grid-template-columns: repeat(4, 1fr); }
}
.section-soft { background: #fff7ed; }
.section-faq { padding-top: 1rem; }

/* Showcase cinematográfico */
.showcase-section {
  position: relative;
  overflow: hidden;
}
.showcase-section--cinema {
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(26,86,219,.18), transparent 60%),
    radial-gradient(700px 380px at 90% 30%, rgba(249,115,22,.14), transparent 55%),
    #0b1220;
  color: #fff;
}
.showcase-section--dorama {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(244,63,94,.22), transparent 55%),
    radial-gradient(700px 360px at 0% 40%, rgba(168,85,247,.18), transparent 50%),
    linear-gradient(180deg, #1a1024 0%, #120b1a 100%);
  color: #fff;
}
.showcase-section .section-head p,
.showcase-head p { color: #94a3b8; }
.showcase-kicker {
  display: inline-flex;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: .4rem;
}
.showcase-kicker--rose { color: #fda4af; }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}
.showcase-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  border: 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .35s ease;
  filter: saturate(1.05) contrast(1.05);
}
.showcase-card__glow {
  position: absolute; inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(59,130,246,.55), transparent 40%, rgba(249,115,22,.45), transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
  animation: showcaseSpin 8s linear infinite;
  pointer-events: none;
}
.showcase-card--dorama .showcase-card__glow {
  background: conic-gradient(from 90deg, transparent, rgba(244,63,94,.55), transparent 35%, rgba(168,85,247,.5), transparent 65%);
}
.showcase-card__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(2,6,23,.92) 100%);
  pointer-events: none;
}
.showcase-card__meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; gap: .2rem;
  padding: 1rem .9rem 1.05rem;
  text-align: left;
  color: #fff;
}
.showcase-card__meta strong {
  font-size: .95rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.showcase-card__meta em {
  font-style: normal;
  font-size: .78rem;
  color: #94a3b8;
}
.showcase-card__type {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fdba74;
}
.showcase-card--dorama .showcase-card__type { color: #fda4af; }
.showcase-card__vote {
  position: absolute;
  top: .7rem; right: .7rem;
  z-index: 2;
  background: rgba(15,23,42,.78);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .25rem .55rem;
  font-size: .75rem;
  font-weight: 800;
  color: #fff;
}
.showcase-card:hover,
.showcase-card:focus-visible {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.12);
  outline: none;
}
.showcase-card:hover img,
.showcase-card:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.08) brightness(1.05);
}
.showcase-card:hover .showcase-card__glow,
.showcase-card:focus-visible .showcase-card__glow { opacity: .55; }
@keyframes showcaseSpin {
  to { transform: rotate(360deg); }
}
.media-card--click { cursor: pointer; }
.media-card--click:focus-visible { outline: 2px solid #3b82f6; outline-offset: 2px; }

@media (max-width: 1100px) {
  .showcase-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
  .showcase-card { border-radius: 16px; }
}

.media-card {
  flex: 0 0 180px; scroll-snap-align: start;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; overflow: hidden; position: relative;
}
.media-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.media-card .rank {
  position: absolute; left: .35rem; bottom: 4.8rem;
  font-size: 3.2rem; font-weight: 900; color: #fff; text-shadow: 0 4px 12px rgba(0,0,0,.6);
  line-height: 1; pointer-events: none;
}
.media-card .tags { position: absolute; top: .5rem; left: .5rem; right: .5rem; display: flex; justify-content: flex-end; gap: .35rem; }
.tag {
  font-size: .68rem; font-weight: 800; padding: .2rem .4rem; border-radius: 6px;
  background: var(--orange); color: #fff;
}
.tag-rating { background: rgba(15,23,42,.75); display: inline-flex; gap: .2rem; align-items: center; }
.media-meta { padding: .7rem .75rem .9rem; }
.media-meta .source { color: #fb7185; font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.media-meta h3 { margin: .2rem 0; font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.media-meta .year { color: #94a3b8; font-size: .8rem; }

.poster-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 700px) { .poster-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .poster-grid { grid-template-columns: repeat(6, 1fr); } }
.poster-tile {
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
  background: #111; position: relative; aspect-ratio: 2/3;
}
.poster-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.poster-tile:hover img { transform: scale(1.05); }
.poster-tile figcaption {
  position: absolute; inset: auto 0 0 0; padding: .8rem;
  background: linear-gradient(transparent, rgba(0,0,0,.85)); color: #fff; font-weight: 700; font-size: .85rem;
}

.compare-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 900px) { .compare-grid { grid-template-columns: 1fr 1fr; } }
.compare-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 1.4rem;
}
.compare-card.highlight { border-color: rgba(249,115,22,.55); box-shadow: 0 0 0 1px rgba(249,115,22,.2); }
.compare-card h3 { margin-top: 0; }
.compare-list { list-style: none; padding: 0; margin: 1rem 0; }
.compare-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.06); color: #cbd5e1; font-size: .92rem;
}
.check-list { list-style: none; padding: 0; margin: 1rem 0; }
.check-list li { padding: .4rem 0 .4rem 1.5rem; position: relative; color: #e2e8f0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.account-card .check-list li,
.legal .check-list li { color: var(--text); }
.price-strike { text-decoration: line-through; opacity: .7; font-size: 1.6rem; font-weight: 800; }
.price-big { font-size: 1.8rem; font-weight: 900; }

.blog-carousel { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: .25rem; }
.blog-card {
  flex: 0 0 min(320px, 85vw); scroll-snap-align: start;
  background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--border); display: flex; flex-direction: column;
}
.blog-card .thumb {
  height: 150px; background: linear-gradient(135deg, #1a56db, #312e81);
  color: #fff; display: grid; place-items: center; font-weight: 800; padding: 1rem; text-align: center;
}
.blog-card .body { padding: 1rem 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .date { color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .04em; }
.blog-card h3 { margin: .4rem 0; font-size: 1.05rem; line-height: 1.3; color: var(--text); }
.blog-card p { color: var(--muted); font-size: .9rem; flex: 1; }
.blog-card .more { margin-top: .8rem; font-weight: 700; }

/* News premium (home) */
.news-section {
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(26,86,219,.08), transparent 60%),
    #f8fafc;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  width: 100%;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(226,232,240,.9);
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15,23,42,.12);
  text-decoration: none;
  color: inherit;
}
.news-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.news-card:hover .news-card__media img { transform: scale(1.06); }
.news-card__badge {
  position: absolute;
  left: .8rem;
  top: .8rem;
  background: rgba(255,255,255,.92);
  color: #0f172a;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .35rem .6rem;
  border-radius: 999px;
}
.news-card__body {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: 1.05rem 1.1rem 1.2rem;
  flex: 1;
}
.news-card__date {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.news-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.news-card__cta {
  margin-top: .35rem;
  font-weight: 800;
  color: var(--blue);
  font-size: .9rem;
}
@media (max-width: 1100px) {
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
}

.plans-section {
  background:
    radial-gradient(720px 360px at 8% -10%, rgba(249,115,22,.22), transparent 55%),
    radial-gradient(640px 320px at 92% 110%, rgba(201,162,39,.16), transparent 50%),
    linear-gradient(180deg, #0b1220 0%, #111827 100%);
  color: #fff;
}
.plans-section .section-head h2 { color: #fff; }
.plans-section .section-head p { color: #94a3b8; }
.plans-section--page {
  border-radius: 0;
  margin-top: 0;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.loja-page {
  background: #0b1220;
}
body:has(.loja-page) {
  background: #0b1220;
}
body:has(.loja-page) .site-footer {
  margin-top: 0;
}

.loja-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(320px, 48vw, 460px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #0b1220;
}
.loja-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    var(--loja-cover, linear-gradient(135deg, #1a56db, #0b1220)) center/cover no-repeat;
  transform: scale(1.04);
  animation: loja-hero-ken 18s ease-in-out infinite alternate;
}
.loja-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11,18,32,.92) 0%, rgba(11,18,32,.72) 42%, rgba(11,18,32,.35) 100%),
    linear-gradient(180deg, rgba(11,18,32,.2) 0%, rgba(11,18,32,.55) 55%, #0b1220 100%);
}
.loja-hero__inner {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 2.75rem;
  max-width: 40rem;
}
.loja-hero__kicker {
  display: inline-block;
  color: #fdba74;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.loja-hero__inner h1 {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.loja-hero__inner > p {
  margin: 0 0 1.25rem;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34rem;
}
.loja-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.35rem;
}
.loja-hero__meta span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  color: #e2e8f0;
  font-size: .78rem;
  font-weight: 700;
  padding: .4rem .7rem;
  border-radius: 999px;
}
@keyframes loja-hero-ken {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .loja-hero__media { animation: none; }
}


.plans-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}
@media (max-width: 800px) {
  .plans-grid { grid-template-columns: 1fr; }
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1.45rem 1.35rem 1.3rem;
  border-radius: 24px;
  text-decoration: none;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(255,255,255,.07), transparent 42%),
    #151b27;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  height: 100%;
  isolation: isolate;
}
.plan-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(249,115,22,.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.plan-card > * { position: relative; z-index: 1; }
.plan-card:hover {
  transform: translateY(-7px);
  border-color: rgba(249,115,22,.55);
  box-shadow: 0 28px 60px rgba(0,0,0,.42);
  text-decoration: none;
  color: #fff;
}
.plan-card--featured {
  border-color: rgba(201,162,39,.55);
  background:
    linear-gradient(160deg, rgba(201,162,39,.18), transparent 48%),
    #171d2a;
  box-shadow: 0 22px 52px rgba(201,162,39,.12), 0 18px 44px rgba(0,0,0,.35);
}
.plan-card--featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  z-index: 2;
}
.plan-card__ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: linear-gradient(135deg, var(--gold), #e4c35a);
  color: #1a1300;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .35rem .65rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(201,162,39,.35);
}
.plan-card__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .5rem;
  flex-wrap: wrap;
  padding-right: 6rem;
  min-height: 1.6rem;
}
.plan-card:not(:has(.plan-card__ribbon)) .plan-card__top { padding-right: 0; }
.plan-card__cycle {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.plan-card__screens {
  background: rgba(249,115,22,.16);
  color: #fdba74;
  border: 1px solid rgba(249,115,22,.35);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: .28rem .55rem;
  border-radius: 999px;
}
.plan-card__title {
  margin: .15rem 0 0;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.2;
  color: #fff;
}
.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin-top: .25rem;
}
.plan-card__price strong {
  font-size: clamp(2rem, 3.2vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
}
.plan-card__price small {
  font-size: .95rem;
  font-weight: 600;
  color: #94a3b8;
}
.plan-card__note {
  margin: 0;
  color: #94a3b8;
  font-size: .88rem;
  line-height: 1.4;
}
.plan-card__save {
  align-self: flex-start;
  margin-top: .15rem;
  background: rgba(34,197,94,.12);
  color: #86efac;
  border: 1px solid rgba(34,197,94,.28);
  font-size: .75rem;
  font-weight: 800;
  padding: .3rem .65rem;
  border-radius: 999px;
}
.plan-card__list {
  list-style: none;
  padding: 0;
  margin: .55rem 0 .35rem;
  display: grid;
  gap: .35rem;
  flex: 1;
}
.plan-card__list li {
  position: relative;
  padding: .15rem 0 .15rem 1.45rem;
  color: #e2e8f0;
  font-size: .92rem;
  line-height: 1.35;
}
.plan-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}
.plan-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: .55rem;
  padding: .9rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 12px 28px rgba(249,115,22,.28);
  transition: filter .2s ease, transform .2s ease;
}
.plan-card:hover .plan-card__cta {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.plan-card--featured .plan-card__cta {
  background: linear-gradient(135deg, var(--gold), #e4c35a);
  color: #1a1300;
  box-shadow: 0 12px 28px rgba(201,162,39,.28);
}
.plan-card__foot {
  display: block;
  color: #94a3b8;
  font-size: .76rem;
  text-align: center;
  margin-top: .15rem;
}

/* legacy aliases (checkout etc.) */
.plan-badge { display: none; }
.plan-price { font-size: 2.2rem; font-weight: 900; }
.plan-price small { font-size: 1rem; font-weight: 600; opacity: .8; }
.plan-note { color: #94a3b8; font-size: .88rem; margin: .35rem 0 1rem; }
.plan-foot { color: #94a3b8; font-size: .78rem; text-align: center; margin-top: .7rem; }

.filters-box {
  background: rgba(15,23,42,.92); color: #fff; border-radius: 20px; padding: 1.2rem;
  margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,.08);
}
.filters-box input[type="search"] {
  width: 100%; border: 0; border-radius: 12px; padding: .9rem 1rem; margin-bottom: 1rem;
  background: #0b1220; color: #fff; border: 1px solid #334155;
}
.filter-row { margin-bottom: .8rem; }
.filter-row label { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .08em; color: #94a3b8; margin-bottom: .45rem; }
.filter-pills { display: flex; flex-wrap: wrap; gap: .4rem; }
.filter-pills button {
  border: 0; border-radius: 999px; padding: .4rem .75rem; font-weight: 700; font-size: .82rem;
  background: #1e293b; color: #e2e8f0; cursor: pointer;
}
.filter-pills button.is-active { background: var(--orange); color: #fff; }

.catalog-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .catalog-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .catalog-grid { grid-template-columns: repeat(5, 1fr); } }

.platform-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 700px) {
  .platform-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .platform-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
button.platform-card,
.platform-card {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  margin: 0;
  padding: 0 !important;
  width: 100%;
  border-radius: 22px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background: #151b27;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  overflow: hidden;
  font: inherit;
  line-height: 1.25;
}
.platform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26,86,219,.45);
  box-shadow: 0 24px 48px rgba(0,0,0,.38);
}
.platform-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 100%;
  height: 118px;
  margin: 0;
  padding: 1rem 1.2rem;
  box-sizing: border-box;
  background: #fff;
  border: 0;
  border-radius: 0;
}
.platform-card__logo img {
  display: block;
  max-height: 54px;
  width: auto;
  max-width: 88%;
  height: auto;
  object-fit: contain;
  margin: 0;
}
.platform-card__logo--text {
  color: #0f172a;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .02em;
}
.platform-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: .95rem 1rem 1.1rem;
  background: #151b27;
}
.platform-card__name {
  display: block;
  font-weight: 800;
  font-size: .98rem;
  line-height: 1.25;
  color: #fff;
  padding: 0;
}
.platform-card__cta {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  color: #93c5fd;
  padding: 0;
}
.platform-card:hover .platform-card__cta { color: #fff; }

/* legacy */
.platform-logo {
  background: #fff; border-radius: 12px; height: 88px; display: grid; place-items: center;
  margin-bottom: .8rem; color: #0f172a; font-weight: 800; font-size: .95rem; padding: .5rem;
}
.platform-logo--img { padding: .85rem 1rem; overflow: hidden; }
.platform-logo--img img { max-height: 52px; width: auto; max-width: 100%; object-fit: contain; }
.platform-card h3 { margin: 0; font-size: 1rem; font-weight: 700; }

.downloads-page {
  background: #0b1220;
  color: #fff;
}
body:has(.downloads-page) {
  background: #0b1220;
}
body:has(.downloads-page) .site-footer {
  margin-top: 0;
}
.downloads-hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 2.2rem;
  background:
    radial-gradient(720px 340px at 12% -20%, rgba(26,86,219,.35), transparent 55%),
    radial-gradient(560px 280px at 90% 120%, rgba(249,115,22,.18), transparent 50%),
    linear-gradient(180deg, #0b1220, #111827);
}
.downloads-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}
.downloads-hero__kicker {
  display: inline-block;
  color: #93c5fd;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.downloads-hero__inner h1 {
  margin: 0 0 .7rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
}
.downloads-hero__inner > p {
  margin: 0 0 1.2rem;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.55;
}
.downloads-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.downloads-hero__meta span {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #e2e8f0;
  font-size: .78rem;
  font-weight: 700;
  padding: .4rem .7rem;
  border-radius: 999px;
}
.downloads-body {
  padding-top: 1.5rem;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, #111827 0%, #0b1220 100%);
}
.downloads-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem 1rem;
  margin-bottom: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(15,23,42,.85);
  border: 1px solid rgba(255,255,255,.08);
}
.downloads-filters__label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94a3b8;
}
.downloads-filters__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.downloads-filters__pills button {
  border: 0;
  border-radius: 999px;
  padding: .45rem .8rem;
  font-weight: 700;
  font-size: .82rem;
  background: #1e293b;
  color: #e2e8f0;
  cursor: pointer;
  transition: .15s ease;
}
.downloads-filters__pills button:hover {
  background: #334155;
}
.downloads-filters__pills button.is-active {
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: #fff;
  box-shadow: 0 8px 18px rgba(249,115,22,.28);
}
.downloads-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(249,115,22,.16), rgba(26,86,219,.14)),
    #151b27;
  border: 1px solid rgba(249,115,22,.28);
}
.downloads-cta strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: .25rem;
}
.downloads-cta p {
  margin: 0;
  color: #94a3b8;
  font-size: .92rem;
}
.downloads-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.guide-modal__head {
  position: relative;
  padding: 1.6rem 1.4rem 1.2rem;
  background:
    radial-gradient(500px 180px at 10% 0%, rgba(26,86,219,.35), transparent 60%),
    linear-gradient(180deg, #152038, #0b0e14);
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.guide-modal__logo {
  display: grid;
  place-items: center;
  width: min(100%, 220px);
  min-height: 72px;
  margin: 0 auto .9rem;
  padding: .75rem 1rem;
  border-radius: 16px;
  background: #fff;
}
.guide-modal__logo-img {
  max-height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.guide-modal__logo-fallback {
  color: #0f172a;
  font-weight: 800;
}
.guide-modal__badge {
  display: inline-block;
  margin-bottom: .55rem;
  color: #fdba74;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.guide-modal__head h2 {
  margin: 0 0 .45rem;
  font-size: 1.45rem;
  line-height: 1.2;
}
.guide-modal__head p {
  margin: 0 auto;
  max-width: 34rem;
  color: #94a3b8;
  font-size: .92rem;
  line-height: 1.5;
}
.guide-modal__body {
  padding: 1.2rem 1.3rem 1.5rem;
}
.guide-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}
.guide-step {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .85rem .9rem;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.guide-step__num {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}
.guide-step__text {
  color: #e2e8f0;
  line-height: 1.45;
  font-size: .94rem;
  padding-top: .15rem;
}
.guide-tips {
  margin-top: 1.1rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(26,86,219,.12);
  border: 1px solid rgba(147,197,253,.18);
}
.guide-tips h3 {
  margin: 0 0 .45rem;
  font-size: .95rem;
}
.guide-tips ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.devices-section {
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(26,86,219,.08), transparent 60%),
    #f8fafc;
  overflow: hidden;
}
.devices-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: .4rem 0 1rem;
}
.devices-marquee__track {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: max-content;
  animation: devices-marquee 42s linear infinite;
  will-change: transform;
}
.devices-marquee:hover .devices-marquee__track,
.devices-marquee:focus-within .devices-marquee__track {
  animation-play-state: paused;
}
.devices-marquee__item {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  min-width: 150px;
  height: 88px;
  padding: .85rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15,23,42,.05);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.devices-marquee__item:hover {
  transform: translateY(-4px);
  border-color: rgba(26,86,219,.35);
  box-shadow: 0 16px 36px rgba(15,23,42,.1);
  text-decoration: none;
}
.devices-marquee__item img {
  max-height: 46px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: .88;
  transition: filter .2s ease, opacity .2s ease;
  pointer-events: none;
}
.devices-marquee__item:hover img {
  filter: none;
  opacity: 1;
}
@keyframes devices-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .devices-marquee__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .devices-marquee { mask-image: none; -webkit-mask-image: none; }
}
@media (max-width: 600px) {
  .devices-marquee__item { min-width: 128px; height: 76px; padding: .7rem 1rem; }
  .devices-marquee__item img { max-height: 38px; max-width: 110px; }
  .devices-marquee__track { animation-duration: 32s; }
}

.mobile-app-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(700px 320px at 85% 20%, rgba(249,115,22,.16), transparent 55%),
    radial-gradient(640px 300px at 10% 90%, rgba(26,86,219,.22), transparent 50%),
    linear-gradient(160deg, #0b1220 0%, #151b27 55%, #0f172a 100%);
}
.mobile-app-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 70%);
  pointer-events: none;
  opacity: .5;
}
.mobile-app {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.5rem;
  align-items: center;
}
.mobile-app__kicker {
  display: inline-block;
  color: #fdba74;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.mobile-app__copy h2 {
  margin: 0 0 .85rem;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
}
.mobile-app__copy > p {
  margin: 0 0 1.4rem;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34rem;
}
.mobile-app__stores {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1rem;
}
.mobile-app__store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: .45rem .85rem;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mobile-app__store:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,.35);
  text-decoration: none;
}
.mobile-app__store img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.mobile-app__note {
  margin: 0 !important;
  color: #94a3b8 !important;
  font-size: .82rem !important;
}
.mobile-app__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.mobile-app__phone {
  width: min(280px, 70vw);
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.55));
  animation: mobile-phone-float 4.2s ease-in-out infinite;
  will-change: transform;
}
.mobile-app__phone img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes mobile-phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-app__phone { animation: none; }
}
@media (max-width: 900px) {
  .mobile-app {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .mobile-app__copy > p { margin-inline: auto; }
  .mobile-app__stores { justify-content: center; }
  .mobile-app__visual { min-height: 340px; order: -1; }
  .mobile-app__phone { width: min(230px, 58vw); }
}

.modal-backdrop {
  position: fixed; inset: 0; background: rgba(2,6,23,.72); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.modal-backdrop.is-open { display: flex; }
.modal {
  width: min(640px, 100%); max-height: min(92vh, 900px); overflow: auto;
  background: #0b0e14; color: #fff; border-radius: 24px; border: 1px solid #1f2937;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.modal-hero {
  position: relative; min-height: 220px; background: #111 center/cover no-repeat;
}
.modal-close {
  position: absolute; top: .8rem; right: .8rem; width: 36px; height: 36px;
  border-radius: 50%; border: 0; background: rgba(0,0,0,.7); color: #fff; cursor: pointer; font-size: 1.1rem;
}
.modal-body { padding: 1.2rem 1.3rem 1.5rem; }
.meta-row { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-bottom: .7rem; font-size: .88rem; }
.gold-border { border: 1px solid var(--gold); color: var(--gold); border-radius: 8px; padding: .2rem .5rem; font-size: .75rem; font-weight: 800; }
.genre-chips { display: flex; flex-wrap: wrap; gap: .35rem; margin: .7rem 0 1rem; }
.genre-chips span { background: #1f2937; border-radius: 999px; padding: .25rem .65rem; font-size: .78rem; }
.cta-box {
  margin-top: 1.2rem; border: 1px solid rgba(249,115,22,.55); border-radius: 16px;
  padding: 1rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  box-shadow: 0 0 24px rgba(249,115,22,.12);
}
.cta-box .eyebrow-orange { color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .06em; }

.page-hero { padding: 2.5rem 0 1rem; }
.page-hero h1 { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0 0 .5rem; }

.local-strip {
  margin: -0.5rem 0 0;
  padding: 1.35rem 0 1.6rem;
  background:
    linear-gradient(180deg, rgba(26,86,219,.06), transparent 70%),
    #fff;
  border-bottom: 1px solid rgba(226,232,240,.9);
}
.local-strip__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.25rem 1.75rem;
  align-items: center;
  padding: 1.25rem 1.4rem;
  border-radius: 22px;
  background: #0b1220;
  color: #fff;
  box-shadow: 0 18px 40px rgba(15,23,42,.14);
}
.local-strip__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: .55rem;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: rgba(26,86,219,.2);
  border: 1px solid rgba(147,197,253,.28);
  color: #93c5fd;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.local-strip__copy p {
  margin: 0;
  color: #cbd5e1;
  font-size: .95rem;
  line-height: 1.5;
}
.local-strip__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.local-strip__features li {
  position: relative;
  padding-left: 1.35rem;
  color: #e2e8f0;
  font-size: .88rem;
  line-height: 1.35;
}
.local-strip__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: 900;
}
.local-strip__actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  min-width: 160px;
}
.local-strip__ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
.local-strip__ghost:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}
@media (max-width: 980px) {
  .local-strip__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .local-strip__actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }
}

.local-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .55rem;
}
.local-city-link {
  display: block;
  padding: .75rem .9rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: .15s ease;
}
.local-city-link:hover {
  border-color: rgba(26,86,219,.35);
  color: var(--blue);
  text-decoration: none;
  transform: translateY(-2px);
}

.cobertura-hub .page-hero { padding-bottom: 1.5rem; }
.cobertura-search-label {
  display: block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}
.cobertura-search {
  width: min(100%, 420px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .85rem 1rem;
  background: #fff;
  color: var(--text);
}
.cobertura-states {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .75rem;
}
.cobertura-state-card {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1rem .9rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: .15s ease;
  box-shadow: 0 8px 22px rgba(15,23,42,.04);
}
.cobertura-state-card:hover {
  transform: translateY(-3px);
  border-color: rgba(26,86,219,.35);
  text-decoration: none;
  color: inherit;
}
.cobertura-state-card strong {
  font-size: 1.15rem;
  color: var(--blue);
}
.cobertura-state-card span {
  font-size: .82rem;
  color: var(--muted);
}

.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 1.5rem; box-shadow: var(--shadow); max-width: 520px; margin: 0 auto;
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: .35rem; font-size: .9rem; }
.form-group input, .form-group select {
  width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: .75rem .9rem; background: #fff;
}
.alert {
  padding: .85rem 1rem; border-radius: 12px; margin-bottom: 1rem; font-weight: 600;
}
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.alert-info { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }

.account-card, .admin-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 1.25rem; box-shadow: var(--shadow);
}
.stats { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); margin-bottom: 1.5rem; }
.stat { background: #fff; border-radius: 16px; padding: 1rem; border: 1px solid var(--border); }
.stat strong { display: block; font-size: 1.6rem; }
.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
table.data th, table.data td { padding: .75rem .85rem; border-bottom: 1px solid var(--border); text-align: left; font-size: .9rem; }
table.data th { background: #f8fafc; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }

.site-footer {
  background: #0b1220; color: #cbd5e1; padding: 3rem 0 2rem; margin-top: 3rem;
}
.footer-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 2rem;
}
.site-footer a { color: #e2e8f0; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer h4 { color: #fff; margin: 0 0 .8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .4rem; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 1rem; font-size: .85rem; color: #94a3b8; }

.whatsapp-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4); text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.05); text-decoration: none; color: #fff; }
.scroll-top {
  position: fixed; right: 1.25rem; bottom: 5.2rem; z-index: 80;
  width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: var(--blue); color: #fff; cursor: pointer; display: none;
  box-shadow: var(--shadow); font-size: 1.1rem;
}
.scroll-top.is-visible { display: grid; place-items: center; }

.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
  background: #0f172a; color: #e2e8f0; border-radius: 16px; padding: 1rem 1.1rem;
  display: none; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(0,0,0,.35); max-width: 900px; margin: 0 auto;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; font-size: .9rem; max-width: 560px; }
.sticky-cta {
  position: sticky; bottom: 0; z-index: 40;
  background: rgba(15,23,42,.94); color: #fff; border-top: 1px solid rgba(255,255,255,.08);
  padding: .85rem 0;
}
.sticky-cta .inner { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; justify-content: space-between; }
.sticky-cta p { margin: 0; font-size: .92rem; color: #cbd5e1; }

.legal { max-width: 820px; }
.legal h2 { margin-top: 1.8rem; }
.legal p, .legal li { color: #334155; }

.checkout-page {
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(249,115,22,.12), transparent 55%),
    radial-gradient(600px 260px at 90% 10%, rgba(26,86,219,.14), transparent 50%),
    #f4f6fb;
}
body:has(.checkout-page) .site-footer { margin-top: 0; }

.checkout-urgency {
  background: linear-gradient(90deg, #7c2d12, #c2410c 40%, #ea580c);
  color: #fff;
  padding: .7rem 0;
}
.checkout-urgency__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .55rem .9rem;
  font-size: .9rem;
}
.checkout-urgency__inner strong { font-weight: 800; }
.checkout-urgency__inner b {
  display: inline-block;
  min-width: 3.2rem;
  padding: .15rem .45rem;
  border-radius: 8px;
  background: rgba(0,0,0,.22);
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.checkout-urgency__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: checkout-pulse 1.6s infinite;
}
@keyframes checkout-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.55); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.checkout-hero {
  text-align: center;
  padding: 2rem 0 1rem;
}
.checkout-hero h1 {
  margin: .7rem 0 .4rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
}
.checkout-hero > p { margin: 0; color: var(--muted); }
.checkout-steps {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .35rem;
  padding: .3rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(15,23,42,.04);
}
.checkout-steps span {
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  color: #64748b;
}
.checkout-steps .is-done { color: #16a34a; }
.checkout-steps .is-active {
  background: linear-gradient(135deg, var(--blue), #3b82f6);
  color: #fff;
}

.checkout-body { padding-top: 1rem; padding-bottom: 3.5rem; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.25rem;
  align-items: start;
  max-width: 980px;
}

.checkout-summary,
.checkout-action__card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(15,23,42,.07);
  overflow: hidden;
}
.checkout-summary { padding: 1.45rem 1.4rem 1.35rem; }
.checkout-summary__ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold), #e4c35a);
  color: #1a1300;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .35rem .65rem;
  border-radius: 999px;
}
.checkout-summary__top {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  margin-bottom: .55rem;
  padding-right: 5.5rem;
}
.checkout-summary__cycle {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.checkout-summary__screens {
  background: rgba(249,115,22,.12);
  color: #c2410c;
  border: 1px solid rgba(249,115,22,.25);
  font-size: .68rem;
  font-weight: 800;
  padding: .28rem .55rem;
  border-radius: 999px;
}
.checkout-summary h2 {
  margin: 0 0 .55rem;
  font-size: 1.35rem;
  line-height: 1.2;
}
.checkout-summary__price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
}
.checkout-summary__price strong {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -.02em;
}
.checkout-summary__price small { color: var(--muted); font-weight: 600; }
.checkout-summary__save {
  display: inline-block;
  margin-top: .55rem;
  background: rgba(34,197,94,.12);
  color: #15803d;
  border: 1px solid rgba(34,197,94,.25);
  font-size: .75rem;
  font-weight: 800;
  padding: .3rem .65rem;
  border-radius: 999px;
}
.checkout-summary__list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: grid;
  gap: .4rem;
}
.checkout-summary__list li {
  position: relative;
  padding-left: 1.4rem;
  color: #334155;
  font-size: .92rem;
}
.checkout-summary__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.checkout-breakdown {
  display: grid;
  gap: .55rem;
  padding: 1rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
}
.checkout-breakdown > div,
.checkout-breakdown--compact > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #64748b;
  font-size: .9rem;
}
.checkout-breakdown__total {
  padding-top: .55rem;
  border-top: 1px dashed #cbd5e1;
  color: var(--text) !important;
  font-size: 1rem !important;
}
.checkout-breakdown__total strong {
  color: var(--orange);
  font-size: 1.2rem;
}

.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1rem;
}
.checkout-trust span {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  font-size: .72rem;
  font-weight: 800;
  padding: .35rem .6rem;
  border-radius: 999px;
}

.checkout-action__card { padding: 1.45rem 1.4rem 1.35rem; }
.checkout-action__head h3 {
  margin: 0 0 .35rem;
  font-size: 1.25rem;
}
.checkout-action__head p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.checkout-action__highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.1rem 0;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #0b1220, #1e293b);
  color: #fff;
}
.checkout-action__highlight span {
  font-size: .82rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.checkout-action__highlight strong {
  font-size: 1.7rem;
  font-weight: 900;
}
.checkout-action__bullets {
  margin: 0 0 1.1rem;
  padding-left: 1.1rem;
  color: #475569;
  font-size: .9rem;
  line-height: 1.55;
}
.checkout-action__cta {
  padding: 1rem 1.2rem;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(249,115,22,.28);
}
.checkout-action__note {
  margin: .85rem 0 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45;
  text-align: center;
}
.checkout-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin-top: 1rem;
  padding-top: .9rem;
  border-top: 1px solid var(--border);
  color: #64748b;
  font-size: .82rem;
  font-weight: 600;
}
.checkout-social__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: checkout-pulse 1.6s infinite;
}
.checkout-alt {
  text-align: center;
  margin-top: .9rem;
}
.checkout-alt a {
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}

.checkout-pix { text-align: center; }
.checkout-pix__ok {
  display: inline-block;
  margin-bottom: .5rem;
  background: rgba(34,197,94,.12);
  color: #15803d;
  border: 1px solid rgba(34,197,94,.28);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 999px;
}
.checkout-pix__qr {
  display: block;
  margin: 1rem auto;
  width: min(240px, 100%);
  height: auto;
  background: #fff;
  padding: .6rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.checkout-pix__code {
  word-break: break-all;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 12px;
  padding: .85rem;
  font-size: .75rem;
  text-align: left;
  margin: 1rem 0;
}
.checkout-pix__account {
  margin-top: .65rem;
}
.checkout-breakdown--compact { margin: 1rem 0; text-align: left; }

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary__top { padding-right: 0; }
}

.reseller-page {
  background: #f7f8fc;
}
body:has(.reseller-page) .site-footer { margin-top: 0; }

.reseller-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 3.4rem 0 2.8rem;
  background:
    radial-gradient(720px 340px at 8% -10%, rgba(249,115,22,.28), transparent 55%),
    radial-gradient(640px 300px at 92% 110%, rgba(26,86,219,.28), transparent 50%),
    linear-gradient(165deg, #0b1220, #151b27 55%, #0f172a);
}
.reseller-hero__inner { max-width: 44rem; }
.reseller-hero__kicker {
  display: inline-block;
  color: #fdba74;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.reseller-hero__inner h1 {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.reseller-hero__inner > p {
  margin: 0 0 1.35rem;
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 36rem;
}
.reseller-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 1.25rem;
}
.reseller-hero__ghost {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: transparent;
}
.reseller-hero__ghost:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.reseller-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.reseller-hero__meta span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #e2e8f0;
  font-size: .76rem;
  font-weight: 700;
  padding: .4rem .7rem;
  border-radius: 999px;
}

.reseller-section { padding-top: 3rem; padding-bottom: 3rem; }
.reseller-section--dark {
  background:
    radial-gradient(600px 260px at 80% 0%, rgba(201,162,39,.12), transparent 55%),
    #0b1220;
  color: #fff;
}
.reseller-section--dark .section-head p { color: #94a3b8; }
.reseller-section--dark .section-head h2 { color: #fff; }

.reseller-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.reseller-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.3rem 1.2rem;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}
.reseller-step__num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: #fff;
  font-weight: 900;
  font-size: .85rem;
  margin-bottom: .75rem;
}
.reseller-step h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.reseller-step p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.5; }

.reseller-example {
  margin-top: 1.2rem;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}
.reseller-example strong {
  display: block;
  color: #c2410c;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.reseller-example p { margin: 0; color: #9a3412; }
.reseller-example em { font-style: normal; font-weight: 900; }

.reseller-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.reseller-benefit {
  padding: 1.3rem 1.25rem;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
}
.reseller-benefit h3 { margin: 0 0 .45rem; color: #fff; font-size: 1.1rem; }
.reseller-benefit p { margin: 0; color: #94a3b8; font-size: .92rem; line-height: 1.5; }
.reseller-benefit strong { color: #fdba74; }

.reseller-apps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.reseller-apps-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.3rem 1.25rem;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}
.reseller-apps-card h3 { margin: 0 0 .9rem; font-size: 1.05rem; }
.reseller-apps-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem .7rem;
}
.reseller-apps-card li {
  position: relative;
  padding-left: 1.15rem;
  font-size: .9rem;
  color: #334155;
  font-weight: 600;
}
.reseller-apps-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}
.reseller-apps-card li.is-muted {
  color: var(--muted);
  font-weight: 500;
  grid-column: 1 / -1;
}

.reseller-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 860px;
  margin: 0 auto;
}
.reseller-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(15,23,42,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.reseller-plan:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,.4);
  box-shadow: 0 24px 48px rgba(15,23,42,.12);
  text-decoration: none;
  color: inherit;
}
.reseller-plan--featured {
  background:
    linear-gradient(165deg, rgba(201,162,39,.14), transparent 42%),
    #151b27;
  color: #fff;
  border-color: rgba(201,162,39,.45);
}
.reseller-plan--featured:hover { color: #fff; }
.reseller-plan__ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold), #e4c35a);
  color: #1a1300;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .35rem .65rem;
  border-radius: 999px;
}
.reseller-plan__label {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.reseller-plan--featured .reseller-plan__label { color: #fdba74; }
.reseller-plan__price {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
}
.reseller-plan__price span {
  font-size: 1.1rem;
  font-weight: 700;
  opacity: .75;
}
.reseller-plan__per {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.reseller-plan--featured .reseller-plan__per { color: #94a3b8; }
.reseller-plan__per strong { color: #16a34a; }
.reseller-plan--featured .reseller-plan__per strong { color: #86efac; }
.reseller-plan ul {
  list-style: none;
  margin: .4rem 0 .5rem;
  padding: 0;
  display: grid;
  gap: .35rem;
  flex: 1;
}
.reseller-plan li {
  position: relative;
  padding-left: 1.35rem;
  font-size: .9rem;
  color: #334155;
}
.reseller-plan--featured li { color: #e2e8f0; }
.reseller-plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}
.reseller-plan__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .4rem;
  padding: .85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(249,115,22,.25);
}
.reseller-plan--featured .reseller-plan__cta {
  background: linear-gradient(135deg, var(--gold), #e4c35a);
  color: #1a1300;
  box-shadow: 0 12px 28px rgba(201,162,39,.25);
}

.reseller-cta-band {
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.reseller-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem 1.5rem;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(249,115,22,.14), rgba(26,86,219,.12)),
    #0b1220;
  color: #fff;
  border: 1px solid rgba(249,115,22,.25);
}
.reseller-cta-band__inner h2 {
  margin: 0 0 .35rem;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
}
.reseller-cta-band__inner p {
  margin: 0;
  color: #94a3b8;
  max-width: 34rem;
  font-size: .95rem;
}

@media (max-width: 900px) {
  .reseller-steps,
  .reseller-benefits,
  .reseller-apps-grid,
  .reseller-plans {
    grid-template-columns: 1fr;
  }
  .reseller-apps-card ul { grid-template-columns: 1fr; }
}

.pix-box {
  background: #0b1220; color: #fff; border-radius: 18px; padding: 1.25rem; text-align: center;
}
.pix-box img { margin: 1rem auto; max-width: 240px; background: #fff; padding: .5rem; border-radius: 12px; }
.pix-code {
  word-break: break-all; background: #111827; border-radius: 10px; padding: .8rem;
  font-size: .78rem; text-align: left; margin: 1rem 0;
}

.admin-nav { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.admin-nav a { font-weight: 700; }

.muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }

@media (max-width: 800px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
  }
  .nav-links.is-open {
    display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; padding: .75rem; border-bottom: 1px solid var(--border); gap: .35rem;
    border-radius: 0; z-index: 60; box-shadow: 0 12px 30px rgba(15,23,42,.08);
  }
  .nav-links.is-open .nav-link { width: 100%; text-align: left; }
}

/* Painel (admin + conta) */
.dash-body {
  min-height: 100vh;
  background:
    radial-gradient(900px 400px at 0% 0%, rgba(26,86,219,.08), transparent 55%),
    var(--bg);
}
.dash-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
}
.dash-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .9rem 0; flex-wrap: wrap;
}
.dash-brand {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
}
.dash-logo { display: inline-flex; text-decoration: none; }
.dash-logo img { height: 32px; width: auto; }
.dash-badge {
  font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue), #3b82f6); color: #fff;
  border-radius: 999px; padding: .28rem .65rem;
}
.dash-welcome { color: var(--muted); font-size: .95rem; }
.dash-welcome strong { color: var(--text); }
.dash-nav {
  display: flex; align-items: center; gap: .35rem; flex-wrap: wrap;
}
.dash-nav-link {
  text-decoration: none; color: var(--text); font-weight: 700; font-size: .92rem;
  padding: .5rem .85rem; border-radius: 999px; transition: .15s ease;
}
.dash-nav-link:hover { background: #eef2ff; color: var(--blue); text-decoration: none; }
.dash-nav-link.is-active {
  background: #eff6ff; color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(26,86,219,.2);
}
.dash-logout {
  margin-left: .35rem;
  border-color: #fecaca !important;
  color: #b91c1c !important;
}
.dash-logout:hover {
  background: #fef2f2 !important;
  border-color: #f87171 !important;
}
.dash-main { padding-bottom: 2.5rem; }
.dash-body .page-hero { padding-top: 1.75rem; }
.dash-body .site-footer,
.dash-body .whatsapp-float,
.dash-body .cookie-banner,
.dash-body .scroll-top { display: none !important; }

@media (max-width: 700px) {
  .dash-header-inner { align-items: flex-start; }
  .dash-nav { width: 100%; }
}

