/* Landing page (no Tailwind utilities) */

:root {
  --bg: #0b0b0f;
  --panel: #111827;
  --panel2: rgba(17, 24, 39, 0.65);
  --border: rgba(148, 163, 184, 0.2);
  --text: #e5e7eb;
  --muted: rgba(229, 231, 235, 0.72);
  --brand: #fe2c55;
  --brand2: #ff4d6d;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

html {
  background: var(--bg); /* prevents gray fallback below body in some browsers */
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  position: relative;
}

/* Fixed backdrop avoids bottom seams on small viewports */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(254, 44, 85, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(147, 51, 234, 0.12), transparent 55%),
    radial-gradient(1200px 700px at 20% 115%, rgba(254, 44, 85, 0.10), transparent 65%),
    radial-gradient(900px 650px at 100% 120%, rgba(147, 51, 234, 0.08), transparent 70%);
}

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

.lp-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 56px;
  position: relative;
  z-index: 1;
}

.lp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-brand__name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-brand__tagline {
  font-size: 12px;
  color: var(--muted);
}

.lp-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.lp-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 231, 235, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.lp-btn--primary {
  border-color: rgba(254, 44, 85, 0.6);
  background: linear-gradient(135deg, rgba(254, 44, 85, 0.92), rgba(255, 77, 109, 0.92));
  color: #0b0b0f;
}

.lp-btn--primary:hover {
  border-color: rgba(254, 44, 85, 0.75);
}

.lp-hero {
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.55));
  box-shadow: var(--shadow);
  padding: 22px;
}

.lp-hero__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.lp-hero__sub {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.lp-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.lp-badge {
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: rgba(229, 231, 235, 0.9);
}

.lp-section {
  margin-top: 18px;
}

.lp-tabs {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
}

.lp-tab {
  border: 0;
  background: transparent;
  color: rgba(229, 231, 235, 0.75);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.lp-tab[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
}

.lp-tab--primary {
  border: 1px solid rgba(254, 44, 85, 0.6);
  background: linear-gradient(135deg, rgba(254, 44, 85, 0.92), rgba(255, 77, 109, 0.92));
  color: #0b0b0f;
}

.lp-tab--primary:hover {
  border-color: rgba(254, 44, 85, 0.75);
}

.lp-panel {
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.55));
  box-shadow: var(--shadow);
  padding: 18px;
}

.lp-panel[hidden] { display: none; }

.lp-h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.lp-p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.lp-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(229, 231, 235, 0.9);
}

.lp-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lp-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.16);
  padding: 14px;
}

.lp-card__title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
}

.lp-card__items {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(229, 231, 235, 0.86);
  line-height: 1.45;
  font-size: 13px;
}

.lp-form {
  margin-top: 12px;
}

.lp-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.lp-form__row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.lp-input {
  flex: 1;
  min-width: 220px;
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.lp-input:focus {
  outline: none;
  border-color: rgba(254, 44, 85, 0.55);
  box-shadow: 0 0 0 4px rgba(254, 44, 85, 0.14);
}

.lp-alert {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 700;
}

.lp-alert--ok {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.10);
  color: rgba(220, 252, 231, 0.92);
}

.lp-alert--err {
  border-color: rgba(244, 63, 94, 0.35);
  background: rgba(244, 63, 94, 0.10);
  color: rgba(255, 228, 230, 0.92);
}

.lp-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lp-footer {
  margin-top: 18px;
  color: rgba(229, 231, 235, 0.55);
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-footer a {
  color: rgba(229, 231, 235, 0.65);
}

.lp-footer a:hover {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 720px) {
  .lp-hero__title { font-size: 24px; }
  .lp-grid { grid-template-columns: 1fr; }
}

