:root {
  --bg: #081225;
  --bg-soft: rgba(15, 23, 42, 0.76);
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #e5eefc;
  --muted: #9fb0cc;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #7c3aed;
  --secondary: #22c55e;
  --accent: #38bdf8;
  --surface: #ffffff;
  --dark-text: #0f172a;
  --shadow: 0 20px 60px rgba(2, 8, 23, 0.42);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.25), transparent 28%),
    radial-gradient(circle at right, rgba(34, 197, 94, 0.16), transparent 22%),
    linear-gradient(180deg, #07111f 0%, #0c162b 44%, #07111f 100%);
  color: var(--text);
}

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

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.65;
  pointer-events: none;
}

.orb-one {
  width: 22rem;
  height: 22rem;
  background: rgba(124, 58, 237, 0.28);
  top: -6rem;
  right: -4rem;
}

.orb-two {
  width: 20rem;
  height: 20rem;
  background: rgba(56, 189, 248, 0.16);
  left: -5rem;
  top: 30rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(5, 10, 20, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-logo-frame {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.fallback-logo {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand-tag {
  font-size: 0.76rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: #d7e3fb;
  font-size: 0.95rem;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

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

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255,255,255,0.14);
  color: #fff;
}

.btn-outline {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn-sm {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.hero {
  padding: 4.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #dbeafe;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  margin-bottom: 1rem;
}

.hero h1,
.section-heading h2,
.two-col h2,
.cta-band h2,
.legal-card h1 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  max-width: 14ch;
}

.hero-text,
.section-heading p,
.muted,
.legal-intro,
.legal-section p,
.faq-card p,
.footer-text,
.showcase-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  font-size: 1.06rem;
  max-width: 62ch;
  margin: 1.35rem 0 0;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.8rem;
}

.meta-card,
.glass-card,
.faq-card,
.showcase-card,
.legal-card,
.phone-card,
.floating-stat {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.meta-card {
  padding: 1rem;
  border-radius: var(--radius-md);
}

.meta-card strong,
.faq-card h3,
.glass-card h3,
.showcase-panel h3,
.legal-section h2,
.footer h3,
.listing-card h3,
.screen-header h2 {
  margin: 0 0 0.4rem;
}

.meta-card strong {
  display: block;
  font-size: 0.96rem;
}

.meta-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.phone-card {
  width: min(100%, 440px);
  min-height: 560px;
  border-radius: 36px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05)),
    rgba(8, 15, 30, 0.72);
  position: relative;
}

.phone-top {
  display: flex;
  gap: 0.4rem;
  padding-bottom: 1rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}

.screen-content {
  background: linear-gradient(180deg, rgba(9, 15, 26, 0.86), rgba(16, 24, 39, 0.9));
  border-radius: 28px;
  padding: 1.3rem;
  min-height: 500px;
  border: 1px solid rgba(255,255,255,0.08);
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.screen-kicker,
.panel-label,
.stat-label {
  font-size: 0.78rem;
  color: #c7d2fe;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.mini-badge {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.16);
  border: 1px solid rgba(124, 58, 237, 0.38);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ede9fe;
}

.category-grid {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 1.4rem;
}

.category-chip {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
  color: #eaf1ff;
}

.listing-card {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 1rem;
}

.listing-card.soft {
  background: rgba(255,255,255,0.04);
}

.listing-top {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.listing-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.listing-avatar {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  font-weight: 800;
}

.listing-avatar.alt {
  background: linear-gradient(135deg, #0ea5e9, #14b8a6);
}

.listing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.listing-tags span {
  font-size: 0.8rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #d8e5fb;
}

.floating-stat {
  position: absolute;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  max-width: 180px;
  backdrop-filter: blur(10px);
}

.floating-stat strong {
  display: block;
  margin-top: 0.3rem;
}

.stat-one {
  top: 6%;
  right: -2%;
}

.stat-two {
  bottom: 10%;
  left: -2%;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.trust-strip span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  color: #dbe7ff;
  font-size: 0.92rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.two-col h2,
.cta-band h2 {
  font-size: clamp(2rem, 3.3vw, 3.1rem);
}

.feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.glass-card,
.faq-card {
  padding: 1.35rem;
  border-radius: 22px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,0.24), rgba(34,197,94,0.18));
  font-weight: 800;
  margin-bottom: 1rem;
}

.alt-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #dbeafe;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.08rem;
  color: #38bdf8;
  font-size: 1.4rem;
}

.showcase-card {
  border-radius: 28px;
  padding: 1rem;
}

.showcase-panel {
  padding: 1.3rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
}

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 1rem;
}

.showcase-stats div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
}

.showcase-stats strong {
  display: block;
  margin-bottom: 0.35rem;
}

.showcase-stats span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-band {
  padding-top: 3rem;
  padding-bottom: 5.5rem;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
  padding: 1.6rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(124,58,237,0.14), rgba(56,189,248,0.08));
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(2, 6, 16, 0.48);
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 1.2rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo-frame {
  width: 48px;
  height: 48px;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: #dbeafe;
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-page .section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.legal-topbar {
  position: relative;
}

.legal-card {
  padding: 2rem;
  border-radius: 30px;
  max-width: 900px;
}

.legal-section {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hide-mobile {
  display: inline-flex;
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .feature-grid,
  .faq-grid,
  .footer-grid,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-grid,
  .hero-meta,
  .two-col,
  .feature-grid,
  .faq-grid,
  .trust-strip,
  .showcase-stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .phone-card {
    width: 100%;
  }

  .floating-stat {
    position: static;
    margin-top: 0.8rem;
    max-width: none;
  }

  .cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hide-mobile {
    display: none;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .brand-tag {
    display: none;
  }

  .nav {
    gap: 0.8rem;
  }

  .hero-actions,
  .cta-actions,
  .legal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .screen-content,
  .legal-card,
  .glass-card,
  .faq-card,
  .showcase-card,
  .cta-wrap {
    padding: 1.1rem;
  }
}
