:root {
  --p1: #5b6be8;
  --p2: #8b5cf6;
  --grad: linear-gradient(135deg, #5b6be8, #8b5cf6);
  --green: #10b981;
  --bg: #06070f;
  --surface: #0e1018;
  --card: #12151f;
  --card2: #181c2a;
  --border: #ffffff12;
  --border-p: #5b6be840;
  --text: #f4f6ff;
  --muted: #8892a4;
  --muted2: #6b7280;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, to { opacity: 1; }
  50% { opacity: .3; }
}

@keyframes float1 {
  0%, to { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes float2 {
  0%, to { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.grad-text {
  -webkit-text-fill-color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}

.s-eye {
  color: var(--p1);
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.s-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.s-sub {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.7;
}

.container {
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 24px;
}

.navbar {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: #06070fcc;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.nav-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 24px;
}

.logo {
  align-items: center;
  display: flex;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  border-radius: 20px;
  display: flex;
  height: 60px;
  width: 60px;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  -webkit-text-fill-color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.5px;
}

.logo-sub {
  color: var(--muted);
  display: block;
  font-size: .68rem;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--grad);
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 20px #5b6be866;
  color: #fff;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 700;
  padding: 10px 22px;
  text-decoration: none;
  transition: all .25s;
}

.nav-cta:hover {
  box-shadow: 0 8px 28px #5b6be880;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
}

.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 130px 0 80px;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  align-items: center;
  animation: fadeUp .5s ease both;
  background: #5b6be81a;
  border: 1px solid #5b6be84d;
  border-radius: 100px;
  color: var(--p1);
  display: inline-flex;
  font-size: .72rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: .8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  text-transform: uppercase;
}

.badge-dot {
  animation: blink 2s infinite;
  background: var(--p1);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--p1);
  height: 6px;
  width: 6px;
}

.hero-content h1 {
  animation: fadeUp .6s ease .08s both;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-desc {
  animation: fadeUp .6s ease .16s both;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-stores {
  animation: fadeUp .6s ease .24s both;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-store {
  align-items: center;
  background: var(--card2);
  border: 1px solid var(--border-p);
  border-radius: 12px;
  color: var(--text);
  display: flex;
  gap: 11px;
  padding: 12px 20px;
  text-decoration: none;
  transition: all .25s;
}

.btn-store:hover {
  background: #5b6be81a;
  border-color: #5b6be880;
  box-shadow: 0 8px 24px #5b6be833;
  transform: translateY(-2px);
}

.btn-store i {
  font-size: 1.5rem;
}

.bsl small {
  color: var(--muted);
  display: block;
  font-size: .62rem;
}

.bsl strong {
  font-size: .95rem;
  font-weight: 700;
}

.hero-phone {
  animation: fadeUp .7s ease .2s both;
  display: flex;
  justify-content: center;
  position: relative;
}

.glow-ring {
  background: radial-gradient(ellipse, #5b6be814, transparent 70%);
  border-radius: 50%;
  inset: -30px;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.phone-wrap {
  position: relative;
  width: 260px;
}

.phone-outer {
  background: linear-gradient(145deg, #1c1f2e, #12151f);
  border: 1.5px solid #ffffff1a;
  border-radius: 40px;
  box-shadow: 0 50px 100px #000000b3, 0 0 50px #5b6be81f, inset 0 1px 0 #ffffff0a;
  padding: 11px;
}

.phone-screen {
  background: #f4f5f9;
  border-radius: 30px;
  height: 520px;
  overflow: hidden;
  position: relative;
}

.ps-status {
  align-items: center;
  background: var(--p1);
  display: flex;
  justify-content: space-between;
  padding: 10px 16px 6px;
}

.ps-time {
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
}

.ps-icons {
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
}

.ps-header {
  background: var(--p1);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px 22px;
}

.ps-title {
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
}

.ps-subtitle {
  color: #ffffffbf;
  font-size: .58rem;
  font-weight: 500;
}

.ps-body {
  background: #f4f5f9;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: calc(100% - 88px);
  overflow: hidden;
  padding: 14px 12px;
}

.ps-sec {
  color: #4b5563;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.ps-grid {
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr 1fr;
}

.pgc {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px #0000000f;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 10px 8px;
}

.pgc-ico {
  align-items: center;
  background: #5b6be81a;
  border-radius: 8px;
  color: var(--p1);
  display: flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.pgc strong {
  color: #1f2937;
  font-size: .63rem;
  font-weight: 700;
  line-height: 1.2;
}

.pgc span {
  color: #9ca3af;
  font-size: .54rem;
}

.pp {
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px #0000000f;
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
}

.pp-l {
  align-items: center;
  display: flex;
  gap: 8px;
}

.pp-av {
  align-items: center;
  background: var(--grad);
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: .7rem;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.pp-n {
  color: #1f2937;
  font-size: .65rem;
  font-weight: 700;
}

.pp-s {
  color: #9ca3af;
  font-size: .56rem;
}

.pp-v {
  color: #10b981;
  font-size: .7rem;
  font-weight: 800;
}

.pp-p {
  align-items: center;
  color: #9ca3af;
  display: flex;
  font-size: .54rem;
  gap: 3px;
  justify-content: flex-end;
  text-align: right;
}

.pnotif {
  align-items: center;
  background: #fff;
  border-left: 3px solid var(--green);
  border-radius: 10px;
  box-shadow: 0 1px 6px #00000014;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
}

.pnotif-t strong {
  color: #1f2937;
  display: block;
  font-size: .58rem;
  font-weight: 700;
}

.pnotif-t span {
  color: #10b981;
  font-size: .54rem;
  font-weight: 600;
}

.ps-nav {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  bottom: 0;
  display: flex;
  left: 0;
  padding: 8px 0 12px;
  position: absolute;
  right: 0;
}

.pni {
  align-items: center;
  color: #9ca3af;
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: .5rem;
  font-weight: 600;
  gap: 3px;
}

.pni.active {
  color: var(--p1);
}

.float-card {
  align-items: center;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #12151fe6;
  border: 1px solid var(--border-p);
  border-radius: 14px;
  box-shadow: 0 12px 40px #0006;
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  position: absolute;
}

.fc1 {
  animation: float1 4s ease-in-out infinite;
  right: -50px;
  top: 80px;
}

.fc2 {
  animation: float2 5s ease-in-out infinite;
  bottom: 110px;
  left: -55px;
}

.fc-ico {
  font-size: 1.1rem;
}

.fc-t strong {
  color: var(--text);
  display: block;
  font-size: .7rem;
}

.fc-t span {
  color: var(--green);
  font-size: .62rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-phone { display: none; }
}

.stats {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.stats-bar {
  background: var(--card2);
  border: 1px solid var(--border-p);
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.stat {
  padding: 32px 24px;
  position: relative;
  text-align: center;
  transition: background .3s;
}

.stat + .stat::before {
  background: var(--border);
  content: "";
  height: 60%;
  left: 0;
  position: absolute;
  top: 20%;
  width: 1px;
}

.stat:hover {
  background: #5b6be80d;
}

.stat-n {
  -webkit-text-fill-color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-l {
  color: var(--muted);
  font-size: .8rem;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat + .stat::before { display: none; }
}

.how {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.how-head {
  margin-bottom: 60px;
  text-align: center;
}

.how-head .s-sub {
  margin: 0 auto;
  max-width: 500px;
}

.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  padding: 36px 28px;
  position: relative;
  transition: all .3s;
}

.step:hover {
  border-color: var(--border-p);
  box-shadow: 0 20px 50px #5b6be81f;
  transform: translateY(-6px);
}

.step::after {
  background: var(--grad);
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .3s;
}

.step:hover::after {
  opacity: 1;
}

.step-n {
  color: #ffffff0a;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}

.step-ico {
  align-items: center;
  background: #5b6be81a;
  border-radius: 14px;
  color: var(--p1);
  display: flex;
  height: 50px;
  justify-content: center;
  margin-bottom: 18px;
  width: 50px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.65;
}

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

.screens {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.screens-grid {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
}

.screens-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feat-row {
  align-items: flex-start;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: default;
  display: flex;
  gap: 16px;
  padding: 18px;
  transition: all .3s;
}

.feat-row:hover {
  background: #5b6be80d;
  border-color: var(--border-p);
}

.feat-ico {
  align-items: center;
  background: #5b6be81a;
  border-radius: 13px;
  color: var(--p1);
  display: flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.feat-txt h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feat-txt p {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.6;
}

.dash-card {
  background: var(--card);
  border: 1px solid var(--border-p);
  border-radius: 24px;
  box-shadow: 0 30px 70px #00000080;
  overflow: hidden;
}

.dash-top {
  align-items: flex-start;
  background: var(--grad);
  display: flex;
  justify-content: space-between;
  padding: 20px 22px;
}

.dt-lbl {
  color: #ffffffb3;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.dt-val {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 6px;
}

.dt-badge {
  background: #fff3;
  border: 1px solid #ffffff59;
  border-radius: 8px;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
}

.dash-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.dlbl {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.dbids {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dbid {
  align-items: center;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  padding: 11px 14px;
  transition: all .2s;
}

.dbid:hover {
  border-color: var(--border-p);
}

.dbid-l {
  align-items: center;
  display: flex;
  gap: 10px;
}

.dbid-av {
  align-items: center;
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: .8rem;
  font-weight: 700;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.dbid-name {
  font-size: .73rem;
  font-weight: 600;
}

.dbid-sub {
  color: var(--muted);
  font-size: .6rem;
}

.dbid-price {
  color: var(--green);
  font-size: .8rem;
  font-weight: 800;
}

.dbid-prazo {
  color: var(--muted);
  font-size: .58rem;
  text-align: right;
}

.winner {
  background: #10b98126;
  border-radius: 5px;
  color: var(--green);
  display: inline-block;
  font-size: .55rem;
  font-weight: 700;
  margin-top: 3px;
  padding: 2px 7px;
}

.dash-btn {
  background: var(--grad);
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
  margin-top: 4px;
  padding: 12px;
  text-align: center;
  transition: opacity .2s;
}

.dash-btn:hover {
  opacity: .9;
}

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

.ia {
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.ia-inner {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1.1fr 1fr;
}

.ia-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ia-card {
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  transition: all .3s;
}

.ia-card:hover {
  border-color: var(--border-p);
  box-shadow: 0 8px 24px #5b6be814;
  transform: translateX(6px);
}

.ia-ico {
  align-items: center;
  background: #5b6be81a;
  border-radius: 12px;
  color: var(--p1);
  display: flex;
  flex-shrink: 0;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.ia-card h4 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.ia-card p {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}

.score-visual {
  background: var(--card);
  border: 1px solid var(--border-p);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
}

.score-ring {
  align-items: center;
  background: conic-gradient(var(--p1) 0 88%, #ffffff0d 88% 100%);
  border-radius: 50%;
  display: flex;
  height: 130px;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  width: 130px;
}

.score-ring::before {
  background: var(--card);
  border-radius: 50%;
  content: "";
  inset: 12px;
  position: absolute;
}

.score-num {
  -webkit-text-fill-color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.score-label {
  color: var(--muted);
  font-size: .72rem;
  margin-bottom: 20px;
}

.score-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.score-item {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.score-item-l {
  color: var(--muted);
  font-size: .75rem;
  min-width: 90px;
  text-align: left;
}

.sbar {
  background: #ffffff12;
  border-radius: 3px;
  flex: 1;
  height: 5px;
  margin: 0 10px;
}

.sbar-fill {
  background: var(--grad);
  border-radius: 3px;
  height: 100%;
  transition: width 1s ease;
}

.spct {
  color: var(--p1);
  font-size: .7rem;
  font-weight: 700;
  min-width: 30px;
  text-align: right;
}

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

.email-sec {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.email-inner {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
}

.email-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 70px #0006;
  overflow: hidden;
}

.email-hdr {
  border-bottom: 2px solid #10b981;
  padding: 24px;
  text-align: center;
}

.elt {
  -webkit-text-fill-color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 800;
}

.els {
  color: #9ca3af;
  font-size: .72rem;
}

.email-body {
  padding: 24px;
}

.email-title {
  color: #10b981;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}

.email-p {
  color: #4b5563;
  font-size: .78rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.email-box {
  background: #f0fdf4;
  border-left: 3px solid #10b981;
  border-radius: 0 10px 10px 0;
  margin-bottom: 10px;
  padding: 14px 16px;
}

.ebt {
  color: #1f2937;
  font-size: .7rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.er {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.ek {
  color: #10b981;
  font-size: .67rem;
  font-weight: 600;
}

.ev {
  color: #1f2937;
  font-size: .67rem;
}

.ebig {
  color: #10b981;
  font-size: 1rem;
  font-weight: 800;
}

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

.cta-sec {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.cta-box {
  background: var(--card2);
  border: 1px solid var(--border-p);
  border-radius: 32px;
  overflow: hidden;
  padding: 72px 60px;
  position: relative;
  text-align: center;
}

.cta-box::before {
  background: radial-gradient(ellipse, #5b6be81a, transparent 70%);
  content: "";
  height: 400px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: -40%;
  transform: translateX(-50%);
  width: 600px;
}

.cta-box h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.cta-box .s-sub {
  margin: 0 auto 40px;
  max-width: 480px;
}

.cta-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 900px) {
  .cta-box { padding: 48px 24px; }
}

.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 24px;
}

.flt {
  -webkit-text-fill-color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.3rem;
  font-weight: 800;
}

.footer-sub {
  color: var(--muted2);
  font-size: .7rem;
  margin-top: 2px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: var(--muted);
  font-size: .82rem;
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  color: var(--muted2);
  font-size: .78rem;
}

.footer-socials {
  align-items: center;
  display: flex;
  gap: 16px;
}

.social-btn {
  align-items: center;
  color: var(--muted);
  display: flex;
  text-decoration: none;
  transition: color .2s, transform .2s;
}

.social-btn:hover {
  color: var(--social-color);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

canvas#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .6;
}

.privacy-page, .terms-page {
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.legal-header {
  margin-bottom: 40px;
}

.legal-header h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--muted);
  font-size: .85rem;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.legal-section p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}

.legal-section ul li {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
  padding-left: 16px;
  position: relative;
}

.legal-section ul li::before {
  content: "•";
  color: var(--p1);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.legal-contact {
  background: var(--card);
  border: 1px solid var(--border-p);
  border-radius: 16px;
  padding: 24px;
  margin-top: 40px;
}

.legal-contact h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-contact p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
}

.legal-contact a {
  color: var(--p1);
  text-decoration: none;
}

.legal-contact a:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--p1);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 24px;
  transition: gap .2s;
}

.back-link:hover {
  gap: 10px;
}
