:root {
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --bg-elevated: #ffffff;
  --border-subtle: rgba(148, 163, 184, 0.3);
  --text-main: #111827;
  --text-muted: #6b7280;
  --accent: #8b5cf6;
  --accent-soft: rgba(139, 92, 246, 0.12);
  --accent-strong: #7c3aed;
  --danger: #ef4444;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'SF Pro Text',
    'Inter', sans-serif;
  background: #ffffff;
  color: var(--text-main);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

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

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

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0b1120;
  font-size: 18px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 11px;
  color: var(--text-muted);
}

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

.nav-link {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.15s ease;
}

.nav-link:hover {
  color: var(--text-main);
  background: var(--accent-soft);
}

.nav-link-muted {
  opacity: 0.9;
}

.nav-link-pill {
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text-main);
}

.nav-link-pill:hover {
  border-color: rgba(148, 163, 184, 0.7);
  background: var(--accent-soft);
}

.hero {
  padding: 64px 0 40px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  flex: 1;
}

.hero-bg-layer {
  position: absolute;
  inset: -120px 0 -120px 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(139, 92, 246, 0.32), transparent 60%),
    radial-gradient(circle at 0% 100%, rgba(139, 92, 246, 0.16), transparent 65%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  padding-left: 18px;
}

.hero-copy::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 40px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-strong));
  opacity: 0.8;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: conic-gradient(from 160deg, #6366f1, #22d3ee, #f97316, #ec4899, #6366f1);
  position: relative;
}

.hero-brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #ffffff;
}

.hero-brand-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-brand-pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-muted);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.typewriter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
}

.typewriter-word {
  min-width: 5.5ch;
  font-weight: 600;
  color: var(--accent-strong);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(248, 250, 252, 0.9);
  color: var(--text-muted);
  font-size: 11px;
  margin-bottom: 14px;
}

.pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.hero-subtitle {
  margin-top: 14px;
  margin-bottom: 22px;
  color: var(--text-muted);
  max-width: 520px;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.45);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(243, 244, 246, 0.9);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.hero-footnote {
  margin: 0;
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-muted);
}

.store-row {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.store-label {
  font-size: 11px;
  color: var(--text-muted);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  cursor: pointer;
  font-size: 11px;
}

.store-badge:hover {
  border-color: rgba(148, 163, 184, 0.8);
}

.store-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: radial-gradient(circle at top left, var(--accent), var(--accent-strong));
}

.store-icon.ios {
  mask-image: radial-gradient(circle at 30% 30%, #000 65%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 30% 30%, #000 65%, transparent 70%);
}

.store-icon.android {
  mask-image: linear-gradient(#000, #000);
  -webkit-mask-image: linear-gradient(#000, #000);
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-kicker {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.store-name {
  font-size: 12px;
  font-weight: 500;
}

.hero-card {
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(148, 163, 184, 0.12);
  padding: 20px 20px 18px;
}

.hero-card-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero-card-heading {
  margin: 0 0 6px;
  font-size: 18px;
}

.hero-card-body {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-card-list li::before {
  content: '•';
  margin-right: 6px;
  color: var(--accent);
}

.section {
  padding: 32px 0 32px;
}

.section-alt {
  background: #f9fafb;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section-header h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.section-header p {
  margin: 0;
  max-width: 560px;
  color: var(--text-muted);
  font-size: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: var(--bg-elevated);
  padding: 14px 14px 12px;
}

.feature-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.feature-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-meta {
  padding-top: 18px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-meta-brand {
  font-weight: 500;
  color: var(--text-main);
}

.hero-meta-copy {
  font-size: 11px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-item {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 11px;
  color: var(--text-muted);
}

.logos-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #ffffff;
  font-size: 12px;
  color: var(--text-main);
  white-space: nowrap;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.contact-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: var(--bg-elevated);
  padding: 18px 18px 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #ffffff;
  color: var(--text-main);
  padding: 7px 9px;
  font-size: 13px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.25);
}

.contact-footnote {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--text-muted);
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: #ffffff;
  padding: 14px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-logo {
  font-weight: 600;
  color: var(--text-main);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

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

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

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 32px;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


