:root {
  --brand: #6d5efc;
  --brand-dark: #4f46e5;
  --violet: #8b5cf6;
  --accent: #22d3ee;
  --ink: #0d0f14;
  --ink-soft: #4b5563;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --border: #e5e7eb;
  --radius: 18px;
  --max-width: 1140px;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 24px 60px rgba(37, 30, 90, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand .logo { width: 34px; height: 34px; border-radius: 9px; }
.brand small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
}
.nav-links a.active,
.nav-links a:hover { color: var(--brand); text-decoration: none; }
.nav-links .btn { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--violet));
  color: #fff;
  box-shadow: 0 10px 24px rgba(109, 94, 252, 0.32);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
}
.store-badge:hover { text-decoration: none; opacity: 0.85; }
.store-badge small { display: block; font-weight: 400; font-size: 11px; opacity: 0.85; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(109, 94, 252, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(34, 211, 238, 0.16) 0%, transparent 40%),
    var(--bg);
  padding: 88px 0 64px;
}
.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: rgba(109, 94, 252, 0.1);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow .dot {
  position: relative;
  width: 8px; height: 8px; border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
  animation: dot-glow 2s ease-in-out infinite;
}
.eyebrow .dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #16a34a;
  animation: dot-ping 2s ease-out infinite;
}

@keyframes dot-ping {
  0%   { transform: scale(1); opacity: 0.55; }
  70%  { transform: scale(3); opacity: 0; }
  100% { transform: scale(3); opacity: 0; }
}
@keyframes dot-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.35); }
  50%      { box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12); }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow .dot { animation: none; box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18); }
  .eyebrow .dot::after { animation: none; opacity: 0; }
}
.hero h1 {
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--brand), var(--violet), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0 auto 32px;
  max-width: 60ch;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stats {
  display: flex;
  gap: 44px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
}
.hero-stats .stat strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--brand), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats .stat span {
  font-size: 14px;
  color: var(--ink-soft);
}

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-soft); }
.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-size: 36px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.section-head p { color: var(--ink-soft); margin: 0; font-size: 17px; }

/* App grid */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.app-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  text-decoration: none;
}
.app-card .app-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.16);
  flex-shrink: 0;
}
.app-card h3 {
  margin: 0 0 6px;
  font-size: 19px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
}
.app-card .cat {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 12px;
}
.app-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 15px;
  flex-grow: 1;
}
.app-card .app-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
}
.app-card .app-foot .go { transition: transform 0.18s ease; }
.app-card:hover .app-foot .go { transform: translateX(4px); }

.badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}
.badge-live { background: #e7f8ef; color: #16a34a; }
.badge-soon { background: #fef3e2; color: #d97706; }

/* Icon gradient fills */
.g-blue   { background: linear-gradient(135deg, #2563eb, #22d3ee); }
.g-violet { background: linear-gradient(135deg, #7c3aed, #c026d3); }
.g-red    { background: linear-gradient(135deg, #ef4444, #f97316); }
.g-green  { background: linear-gradient(135deg, #059669, #34d399); }
.g-amber  { background: linear-gradient(135deg, #f59e0b, #f43f5e); }
.g-indigo { background: linear-gradient(135deg, #4f46e5, #8b5cf6); }
.g-cyan   { background: linear-gradient(135deg, #0891b2, #22d3ee); }
.g-pink   { background: linear-gradient(135deg, #db2777, #f472b6); }
.g-slate  { background: linear-gradient(135deg, #334155, #64748b); }
.g-teal   { background: linear-gradient(135deg, #0d9488, #2dd4bf); }
.g-orange { background: linear-gradient(135deg, #ea580c, #fb923c); }

/* Values / why */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.value-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--brand), var(--violet));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 16px rgba(109, 94, 252, 0.28);
}
.value-card h3 { margin: 0 0 8px; font-size: 19px; }
.value-card p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* Stats band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-band .cell strong {
  display: block;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--brand), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-band .cell span { color: var(--ink-soft); font-size: 15px; }

/* About / prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: var(--ink-soft); font-size: 17px; }
.prose h2 { font-size: 28px; letter-spacing: -0.02em; margin: 40px 0 14px; }

.about-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: center;
}
.about-lead h1 { font-size: 42px; letter-spacing: -0.02em; margin: 0 0 18px; }
.about-lead p { color: var(--ink-soft); font-size: 17px; margin: 0 0 16px; }
.about-visual {
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.5), transparent 55%),
    linear-gradient(140deg, var(--brand), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-visual img { width: 46%; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.member-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.member-card .avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.18);
}
.member-card h3 {
  margin: 0 0 4px;
  font-size: 19px;
}
.member-card .role {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(109, 94, 252, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.member-card p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.member-card .socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.member-card .socials a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.member-card .socials a:hover { color: var(--brand); border-color: var(--brand); }

/* Contact / support cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-card .icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(135deg, var(--brand), var(--violet));
  color: #fff; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.contact-card h3 { margin: 0 0 8px; font-size: 19px; }
.contact-card p { margin: 0 0 12px; color: var(--ink-soft); font-size: 15px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item h3 { margin: 0 0 8px; font-size: 17px; }
.faq-item p { margin: 0; color: var(--ink-soft); }

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), var(--violet));
  color: #fff;
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.35);
  filter: blur(60px);
  top: -120px; right: -80px;
}
.cta-band h2 { margin: 0 0 14px; font-size: 34px; letter-spacing: -0.02em; position: relative; }
.cta-band p { margin: 0 0 28px; opacity: 0.92; position: relative; }
.cta-band .btn { position: relative; background: #fff; color: var(--brand-dark); box-shadow: none; }

/* Legal / content pages */
.legal-page { padding: 56px 0 80px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: 34px; margin-bottom: 4px; }
.legal-meta { color: var(--ink-soft); font-size: 14px; margin-bottom: 40px; }
.legal-page h2 { font-size: 21px; margin-top: 40px; margin-bottom: 12px; }
.legal-page h3 { font-size: 17px; margin-top: 24px; margin-bottom: 8px; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: 15.5px; }
.legal-page ul { padding-left: 22px; }
.toc {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 8px;
}
.toc p { margin: 0 0 10px; font-weight: 600; color: var(--ink); }
.toc ol { margin: 0; padding-left: 20px; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #d1d5db;
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 { color: #fff; font-size: 14px; margin: 0 0 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: #d1d5db; font-size: 14.5px; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: #9ca3af; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 13px;
  color: #9ca3af;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */
@media (max-width: 980px) {
  .app-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero h1 { font-size: 40px; }
  .about-lead { grid-template-columns: 1fr; }
  .about-visual { max-width: 360px; margin: 0 auto; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 32px; }
  .hero p.lead { font-size: 17px; }
  .section-head h2 { font-size: 28px; }
  .app-grid, .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
}
