@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #070a0f;
  --bg-card: rgba(17, 24, 39, 0.72);
  --bg-soft: #0d1117;
  --text: #f3f4f6;
  --muted: #9ca3af;
  --accent: #ffb800;
  --accent-glow: rgba(255, 184, 0, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 184, 0, 0.35);
  --link: #7cb8ff;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

/* ── Intro / entrada ── */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-ring {
  position: relative;
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
}

.intro-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-right-color: rgba(255, 184, 0, 0.25);
  animation: spin 1.1s linear infinite;
}

.intro-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 184, 0, 0.12);
  animation: spin 2.4s linear infinite reverse;
}

.intro-logo {
  width: 72px;
  height: 72px;
  animation: introPulse 1.6s ease-in-out infinite;
}

.intro-text {
  margin-top: 22px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Fundo animado ── */
.bg-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: floatOrb 18s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(255, 184, 0, 0.14);
  top: -120px;
  left: -80px;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: rgba(96, 165, 250, 0.08);
  bottom: 10%;
  right: -100px;
  animation-delay: -6s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: rgba(255, 184, 0, 0.08);
  top: 45%;
  left: 40%;
  animation-delay: -12s;
}

.page {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 15, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand-text strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
}

.nav a {
  color: var(--muted);
  transition: color 0.25s;
}

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

.nav-cta {
  background: linear-gradient(135deg, #ffb800, #ffcf4d);
  color: #111 !important;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.nav-cta:hover {
  transform: translateY(-1px);
  color: #111 !important;
}

.menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  padding: 48px 0 40px;
  position: relative;
}

.hero-spotlight {
  position: absolute;
  top: -10%;
  left: 0;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at 30% 40%, rgba(255, 184, 0, 0.08), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 90px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.hero .eyebrow {
  margin-top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 184, 0, 0.2);
  background: rgba(255, 184, 0, 0.06);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 2s ease infinite;
}

.hero h1 {
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #ffb800 0%, #ffe08a 50%, #ffb800 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}

.hero p.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.55;
  max-width: 500px;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ffb800, #ffcf4d);
  color: #111;
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--border-hover);
}

.btn-lg {
  padding: 14px 24px;
  font-size: 14px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding: 0;
  margin: 0;
}

.hero-image-wrap {
  position: relative;
  width: auto;
  max-width: 260px;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 8% -4% -4% -4%;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 184, 0, 0.12), transparent 70%);
  filter: blur(18px);
  z-index: 0;
  animation: heroGlowPulse 5s ease-in-out infinite;
}

.hero-feature-img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 260px;
  max-height: 190px;
  height: auto;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
  animation: heroImageFloat 6s ease-in-out infinite;
}

.accent-line {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
  margin: 20px 0 0;
}

/* ── Ticker rotativo ── */
.ticker-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.ticker-item span {
  color: var(--accent);
}

/* ── Sections ── */
section {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 40px;
}

.section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  max-width: 640px;
  font-size: 1.02rem;
}

/* ── Novidades ── */
.novidades-band {
  background: linear-gradient(180deg, rgba(255, 184, 0, 0.04), transparent);
  position: relative;
  overflow: hidden;
}

.section-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  object-fit: contain;
  filter: grayscale(0.15) brightness(0.75);
}

.section-deco-car {
  left: -8%;
  bottom: -12%;
  width: min(38vw, 340px);
  opacity: 0.1;
  animation: decoFloat 11s ease-in-out infinite reverse;
}

.novidades-band .container,
.tech-band .container {
  position: relative;
  z-index: 1;
}

.novidades-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 22px 22px 24px;
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  cursor: default;
}

.feature-card:hover,
.feature-card.is-active {
  transform: translateX(6px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.feature-card.is-active {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.08), rgba(255, 255, 255, 0.02));
}

.feature-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 184, 0, 0.12);
  font-size: 18px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

.badge-new {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  background: var(--accent);
  padding: 4px 8px;
  border-radius: 999px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

/* Mock app */
.app-mock {
  position: relative;
  border-radius: 28px;
  padding: 18px;
  background: linear-gradient(160deg, #121820, #0a0e14);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  min-height: 420px;
  overflow: hidden;
}

.app-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 184, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 184, 0, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}

.mock-status {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.mock-map {
  position: relative;
  z-index: 1;
  height: 260px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 184, 0, 0.12), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(96, 165, 250, 0.08), transparent 40%),
    #0d1219;
  border: 1px solid var(--border);
  overflow: hidden;
}

.mock-map::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  top: 48%;
  left: 52%;
  box-shadow: 0 0 0 8px rgba(255, 184, 0, 0.2), 0 0 30px var(--accent-glow);
  animation: pulseDot 2.5s ease infinite;
}

.mock-search {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.float-btn {
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: linear-gradient(135deg, #ffb800, #ffcf4d);
  color: #111;
  box-shadow: 0 8px 24px var(--accent-glow);
  animation: floatBtn 4s ease-in-out infinite;
}

.float-btn-1 { right: 22px; bottom: 110px; animation-delay: 0s; }
.float-btn-2 { right: 22px; bottom: 176px; width: 44px; height: 44px; font-size: 16px; background: rgba(17, 24, 39, 0.9); color: var(--accent); border: 1px solid var(--border-hover); animation-delay: -1.2s; }
.float-btn-3 { left: 22px; bottom: 110px; width: 44px; height: 44px; font-size: 16px; background: rgba(17, 24, 39, 0.9); color: #fff; border: 1px solid var(--border); animation-delay: -2.4s; }

.mock-caption {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ── Cards ── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.card-with-visual {
  padding: 0;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.card-visual {
  position: absolute;
  right: -18%;
  bottom: -22%;
  width: 72%;
  max-width: 220px;
  opacity: 0.22;
  object-fit: contain;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  filter: grayscale(0.2);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.card:hover .card-visual {
  opacity: 0.32;
  transform: translateY(-4px) scale(1.03);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 184, 0, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.about-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.about-box h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.about-box ul {
  margin: 14px 0 0 18px;
  color: var(--muted);
}

.about-box li {
  margin-bottom: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--accent);
}

/* ── Tech ── */
.tech-band {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.stat {
  text-align: center;
  padding: 24px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform 0.3s var(--ease);
}

.stat:hover {
  transform: translateY(-4px);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat span {
  font-size: 13px;
  color: var(--muted);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s;
}

.contact-item:hover {
  border-color: var(--border-hover);
}

.contact-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-item a {
  color: var(--link);
}

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

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 44px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

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

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

/* ── Animations ── */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes introPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.92); }
}

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

@keyframes heroImageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes floatBtn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes decoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cards-3,
  .novidades-grid {
    grid-template-columns: 1fr;
  }

  .section-deco-car {
    opacity: 0.08;
    width: 55vw;
  }

  .card-visual {
    opacity: 0.16;
    width: 60%;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7, 10, 15, 0.96);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
  }

  .nav.open { display: flex; }
  .menu-btn { display: block; }
  .header-inner { position: relative; }
  .hero {
    padding: 64px 0 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-visual {
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }

  .hero-image-wrap {
    max-width: 260px;
  }

  .hero-feature-img {
    max-width: 260px;
    max-height: 180px;
    object-position: left center;
  }

  .hero-copy {
    text-align: left;
    max-width: 100%;
    margin-top: 0;
    padding-top: 0;
  }

  .hero p.lead {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container { width: min(100% - 32px, var(--max)); }
  section { padding: 56px 0; }
  .hero { padding: 40px 0 32px; }
}

/* ── Páginas legais (privacidade) ── */
.legal-page {
  padding: 40px 0 64px;
}

.legal-head {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.legal-head h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.legal-meta {
  color: var(--muted);
  font-size: 14px;
}

.legal-highlight {
  margin-top: 18px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.legal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.legal-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--accent);
}

.legal-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
}

.legal-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.legal-section p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 15px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 8px 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.legal-section li {
  margin-bottom: 6px;
}

.legal-section a {
  color: var(--link);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.legal-back:hover {
  color: var(--accent);
}

.nav a.is-active {
  color: var(--accent);
}
