/* Wixi marketing site — shared styles. Small, self-contained (no web fonts,
   no external requests) for fast Core Web Vitals. */
:root {
  --bg: #0a0714;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f4f2fa;
  --muted: #a6a2b8;
  --cyan: #00e5ff;
  --purple: #9d4edd;
  --pink: #ff007f;
  --radius: 18px;
  --maxw: 1080px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Aurora backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60vw 50vw at 15% 8%, rgba(157, 78, 221, 0.28), transparent 60%),
    radial-gradient(55vw 45vw at 85% 20%, rgba(255, 0, 127, 0.16), transparent 60%),
    radial-gradient(60vw 55vw at 50% 100%, rgba(0, 229, 255, 0.14), transparent 60%);
  filter: blur(10px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(10, 7, 20, 0.72);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
}
.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
}
.nav a:hover {
  color: var(--text);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  padding: 11px 22px;
  border: 0;
  cursor: pointer;
  transition:
    filter 0.15s,
    transform 0.05s;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: var(--cyan);
  color: #06202a;
}
.btn-primary:hover {
  filter: brightness(1.08);
}
.btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
}
.nav .btn {
  padding: 9px 18px;
  font-size: 15px;
}

/* Hero */
.hero {
  padding: 72px 0 48px;
  text-align: center;
}
.hero .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
}
h1 {
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.08;
  font-weight: 900;
  margin: 20px auto 0;
  max-width: 15ch;
  letter-spacing: -0.02em;
}
.grad {
  background: linear-gradient(100deg, var(--pink), var(--purple) 45%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: clamp(16px, 2.4vw, 20px);
  color: var(--muted);
  max-width: 62ch;
  margin: 20px auto 0;
}
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.cta-row .btn {
  padding: 14px 28px;
  font-size: 16px;
}
.subtle {
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
}

/* Sections */
section {
  padding: 44px 0;
}
h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.section-lede {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 0 28px;
}
.center {
  text-align: center;
}
.center .section-lede {
  margin-inline: auto;
}

/* Cards / grids */
.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 {
  margin: 14px 0 6px;
  font-size: 19px;
}
.card p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}
.ic {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 24px;
}

/* Steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.step .num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--cyan);
  color: #06202a;
  font-weight: 900;
  display: grid;
  place-items: center;
}
.step h3 {
  margin: 14px 0 6px;
}
.step p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

/* Prose (legal, articles) */
.prose {
  max-width: 72ch;
}
.prose h2 {
  font-size: 22px;
  margin-top: 32px;
}
.prose p,
.prose li {
  color: #cfcbdd;
}
.prose a {
  color: var(--cyan);
  text-decoration: underline;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin-inline: auto;
}
.faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 6px 20px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-weight: 900;
}
.faq details[open] summary::after {
  content: "–";
}
.faq p {
  color: var(--muted);
  margin: 0 0 16px;
}

/* Final CTA band */
.cta-band {
  text-align: center;
  background: linear-gradient(120deg, rgba(157, 78, 221, 0.18), rgba(0, 229, 255, 0.12));
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 48px 24px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 32px 0;
  color: var(--muted);
  font-size: 14px;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
}
.site-footer a {
  color: var(--muted);
}
.site-footer a:hover {
  color: var(--text);
}
.site-footer .spacer {
  margin-left: auto;
}

.breadcrumb {
  color: var(--muted);
  font-size: 14px;
  padding-top: 20px;
}
.breadcrumb a {
  color: var(--cyan);
}

/* Responsive: collapse the text nav on small screens, keep the CTA */
@media (max-width: 720px) {
  .nav {
    gap: 12px;
  }
  .nav a:not(.btn) {
    display: none;
  }
  .brand {
    font-size: 20px;
  }
}

