:root {
  --brand-1: #e91e63;
  --brand-2: #2196f3;
  --accent: #ff9800;

  --txt: #333;
  --txt-inv: #fff;

  --bg: #f5f5f5;
  --bg-dark: #1a1a1a;
  --card: #fff;

  --grad: linear-gradient(135deg, #e91e63, #9c27b0);

  --wa: #25D366;
  --tg: #0088cc;

  --s1: 0 2px 5px rgba(0, 0, 0, .1);
  --s2: 0 4px 8px rgba(0, 0, 0, .12);
  --s3: 0 8px 16px rgba(0, 0, 0, .15);

  --r1: 8px;
  --r2: 12px;
  --r3: 20px;

  --x: .5rem;
  --s: 1rem;
  --m: 1.5rem;
  --l: 2rem;
  --xl: 3rem;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: var(--txt);
  background: var(--bg);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0 0 .75rem;
  line-height: 1.25;
}

a {
  color: inherit;
}

/* ===== Top Bar (same look, different structure) ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg-dark);
  color: var(--txt-inv);
  box-shadow: var(--s2);
}

.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .85rem var(--s);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s);
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 160px;
}

.brand__logo {
  width: 150px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: var(--m);
  align-items: center;
}

.nav__link {
  text-decoration: none;
  font-weight: 600;
  padding: .45rem .75rem;
  border-radius: var(--r1);
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--brand-1);
}

/* ===== Hero (same look, different markup) ===== */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--txt-inv);
  text-align: center;
  background: #000;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .65)),
    url("/assets/background.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.02);
}

.hero__wrap {
  position: relative;
  z-index: 1;
  min-height: 66vh;
  display: grid;
  place-items: center;
  padding: var(--xl) var(--s);
}

.hero__card {
  width: min(720px, 92vw);
  padding: var(--m);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

.hero__title {
  font-size: 2.55rem;
  margin-bottom: .35rem;
}

.hero__sub {
  font-size: 1.15rem;
  margin: 0 0 var(--m);
  opacity: .95;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: var(--s);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--s2);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  min-width: 180px;
  border: 0;
  cursor: pointer;
  user-select: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--s3);
}

.btn--grad {
  background: var(--grad);
  color: var(--txt-inv);
}

.btn--wa {
  background: var(--wa);
  color: var(--txt-inv);
}

.btn--tg {
  background: var(--tg);
  color: var(--txt-inv);
}

.btn__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
}

/* ===== Sections ===== */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--l) var(--s);
}

.title {
  font-size: 2rem;
  color: var(--brand-1);
  text-align: center;
  padding-bottom: .8rem;
  position: relative;
  margin-bottom: var(--m);
}

.title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 62px;
  height: 4px;
  border-radius: 3px;
  background: var(--grad);
}

.prose {
  margin: 0 0 var(--m);
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ===== Feature grid (same look, renamed) ===== */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--m);
  margin-top: var(--l);
}

.panel {
  background: var(--card);
  border-radius: var(--r2);
  padding: var(--m);
  box-shadow: var(--s2);
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
}

.panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--s3);
}

.panel__h {
  color: var(--brand-1);
  font-size: 1.3rem;
  margin-bottom: .6rem;
}

.panel__p {
  margin: 0;
}

/* ===== Download band ===== */
.band {
  background:
    linear-gradient(to bottom right, rgba(0, 0, 0, .9), rgba(0, 0, 0, .72)),
    url("/assets/background.gif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--txt-inv);
  text-align: center;
  padding: var(--xl) var(--s);
}

.band__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.band__lead {
  margin: .25rem auto 0;
  max-width: 70ch;
  opacity: .95;
}

.platform-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--m);
  margin-top: var(--l);
}

.glass {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.18),
    rgba(255,255,255,.08)
  );
  border-radius: var(--r2);
  padding: var(--m);
  flex: 1 1 200px;
  max-width: 250px;

  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);

  border: 1px solid rgba(255,255,255,.22);
  box-shadow:
    0 8px 24px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.25);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.glass:hover {
  transform: translateY(-6px);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.24),
    rgba(255,255,255,.12)
  );
  box-shadow:
    0 14px 32px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.35);
}

.glass__icon {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto .75rem;
  padding: .45rem;

  background: rgba(255,255,255,.22);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.35),
    0 4px 12px rgba(0,0,0,.35);
}

.glass__h {
  margin: 0 0 .75rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
}


/* ===== Simple fade in ===== */
@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel,
.glass {
  animation: liftIn .55s ease-out both;
}

.panel:nth-child(1) {
  animation-delay: .08s;
}

.panel:nth-child(2) {
  animation-delay: .18s;
}

.panel:nth-child(3) {
  animation-delay: .28s;
}

.glass:nth-child(1) {
  animation-delay: .08s;
}

.glass:nth-child(2) {
  animation-delay: .18s;
}

.glass:nth-child(3) {
  animation-delay: .28s;
}

/* ===== Responsive ===== */
@media (max-width:768px) {
  .topbar__inner {
    justify-content: center;
  }

  .nav {
    display: none;
  }

  .brand__logo {
    width: 180px;
  }

  .hero__wrap {
    min-height: 62vh;
    padding: var(--l) var(--s);
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .hero__sub {
    font-size: 1rem;
  }

  .cta-row {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .btn {
    flex: 0 0 calc(50% - 5px);
    min-width: 0;
    padding: .75rem .6rem;
    font-size: .92rem;
  }

  .btn__icon {
    width: 25px;
    height: 25px;
  }

  .title {
    font-size: 1.6rem;
  }

  .prose {
    text-align: left;
    padding: 0 var(--x);
    font-size: 1rem;
  }

  .panel {
    max-width: none;
    flex: 1 1 100%;
    margin: 0 var(--x) var(--s);
  }

  .glass {
    max-width: none;
    flex: 1 1 100%;
    margin: 0 var(--s) var(--s);
  }
}

@media (max-width:480px) {
  .hero__title {
    font-size: 1.55rem;
  }

  .hero__sub {
    font-size: .92rem;
  }

  .title {
    font-size: 1.42rem;
  }

  .prose {
    font-size: .96rem;
  }

  .btn {
    font-size: .86rem;
    padding: .65rem .55rem;
  }

  .btn__icon {
    width: 20px;
    height: 20px;
  }
}

/* ===== Table UI (same design language) ===== */
.table-card {
  background: var(--card);
  border-radius: var(--r2);
  box-shadow: var(--s2);
  overflow: hidden;
  position: relative;
}

.table-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
}

.table-scroll {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r2);
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: transparent;
}

.table thead th {
  text-align: left;
  font-size: .95rem;
  padding: 14px 16px;
  color: var(--txt-inv);
  background: var(--bg-dark);
  position: sticky;
  top: 0;
  z-index: 1;
  white-space: nowrap;
}

.table tbody td {
  padding: 14px 16px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  vertical-align: top;
  font-size: .98rem;
}

.table tbody tr:hover {
  background: rgba(233, 30, 99, .06);
}

.table tbody td:first-child {
  font-weight: 800;
  color: var(--brand-1);
  white-space: nowrap;
}

.table-note {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  color: var(--txt);
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, 1));
}

.table-note .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: .35rem;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 152, 0, .18);
  flex: 0 0 auto;
}

/* ===== Mobile: stack table rows nicely ===== */
@media (max-width: 768px) {
  .table {
    min-width: 0;
  }

  .table thead {
    display: none;
  }

  .table tbody tr {
    display: block;
    padding: 10px 12px;
    border-top: 1px solid rgba(0, 0, 0, .08);
  }

  .table tbody td {
    display: flex;
    gap: 10px;
    padding: 8px 4px;
    border: 0;
  }

  .table tbody td::before {
    content: attr(data-label);
    flex: 0 0 42%;
    max-width: 42%;
    font-weight: 800;
    color: rgba(0, 0, 0, .55);
  }

  .table tbody td:first-child {
    color: var(--brand-1);
  }

  .table tbody tr:hover {
    background: transparent;
  }
}

/* ===== Footer (matches existing variables & style) ===== */
.site-footer {
  background: var(--bg-dark);
  color: var(--txt-inv);
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--xl) var(--s) var(--l);
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: var(--l);
}

/* Brand area */
.site-footer__brand {
  position: relative;
  padding: var(--m);
  border-radius: var(--r2);
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--s2);
  overflow: hidden;
}

.site-footer__brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: .8rem;
}

.site-footer__logo img {
  width: 170px;
  height: auto;
  display: block;
}

.site-footer__desc {
  margin: 0 0 1rem;
  opacity: .92;
  line-height: 1.7;
  max-width: 55ch;
}

.site-footer__badges {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .85rem;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
}

.badge-chip--accent {
  background: rgba(255, 152, 0, .18);
  border-color: rgba(255, 152, 0, .30);
}

/* Link columns */
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--l);
}

.site-footer__title {
  margin: 0 0 .75rem;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .2px;
}

.site-footer__link {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, .88);
  padding: .35rem 0;
  transition: color .2s ease, transform .2s ease;
  width: fit-content;
}

.site-footer__link:hover {
  color: var(--brand-1);
  transform: translateX(2px);
}

/* CTA buttons inside footer */
.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: var(--s2);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  width: 100%;
  max-width: 260px;
  margin-bottom: .75rem;
}

.footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--s3);
}

.footer-btn__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
}

.footer-btn--wa {
  background: var(--wa);
  color: var(--txt-inv);
}

.footer-btn--tg {
  background: var(--tg);
  color: var(--txt-inv);
}

.site-footer__mini {
  margin: .2rem 0 0;
  opacity: .9;
  font-size: .92rem;
  line-height: 1.6;
}

/* Bottom bar */
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding: 1rem var(--s);
  text-align: center;
  background: rgba(0, 0, 0, .18);
}

.site-footer__copy,
.site-footer__legal {
  margin: .25rem 0;
  opacity: .92;
  font-size: .92rem;
}

/* Responsive */
@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .site-footer__logo img {
    width: 180px;
  }

  .footer-btn {
    max-width: none;
  }
}