/* Shared styles for both landing variants */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #6B5FE8;
  --primary-dark: #5849d6;
  --primary-soft: #F1EFFF;
  --primary-tint: #FAF9FF;
  --ink: #0E0E14;
  --ink-2: #2D2D3A;
  --muted: #6B6B78;
  --muted-2: #9A9AA8;
  --line: #E6E5EE;
  --line-2: #EDEDF3;
  --bg: #ffffff;
  --bg-soft: #FAFAFC;
  --success: #16A34A;
  --warn: #F59E0B;
  --gold: #F5A623;
}

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }

a { color: inherit; }

/* Star helpers */
.stars-svg { display: inline-flex; gap: 2px; }
.stars-svg svg { width: 16px; height: 16px; }

/* Btn */
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(107, 95, 232, 0.28);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(107, 95, 232, 0.35); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
}

/* Trust pill */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  font-size: 12px;
  color: var(--muted);
}
.trust-pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(22,163,74,0.18); }
  50% { box-shadow: 0 0 0 6px rgba(22,163,74,0.04); }
}

/* Section heading */
.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

/* Logo cluster */
.logo-cluster {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.logo-cluster svg { width: 28px; height: 28px; }

/* Phone wrapper for desktop preview if standalone */
body.standalone {
  background: #f4f4f7;
  padding: 0;
}
body.standalone .page {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
}

/* Card */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

/* Inline icon */
.ic { width: 18px; height: 18px; flex-shrink: 0; }

/* Strikethrough price */
.price-strike {
  color: var(--muted-2);
  text-decoration: line-through;
  font-size: 0.7em;
  font-weight: 500;
  margin-right: 8px;
}

/* Hide scrollbar in screenshots */
::-webkit-scrollbar { width: 0; height: 0; }
