/* Standalone landing page styles — kept minimal for Core Web Vitals */
:root {
  --bg: #ffffff;
  --fg: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --border: #e2e8f0;
  --primary: #f97316; /* orange CTA */
  --primary-fg: #ffffff;
  --primary-hover: #ea580c;
  --accent: #0ea5e9; /* sky blue */
  --accent-soft: #e0f2fe;
  --card: #ffffff;
  --shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.15);
  --radius: 16px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.lp-header-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.lp-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--fg); font-size: 18px;
}
.lp-logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #38bdf8);
  color: white; font-weight: 800; font-size: 14px;
}
.lp-nav { display: flex; gap: 22px; font-size: 14px; }
.lp-nav a { color: var(--muted); }
.lp-nav a:hover { color: var(--fg); text-decoration: none; }
@media (max-width: 640px) { .lp-nav { display: none; } }

/* Hero */
.lp-hero {
  position: relative;
  padding: 64px 24px 40px;
  overflow: hidden;
}
.lp-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 30% 20%, rgba(14,165,233,0.08), transparent 60%),
    radial-gradient(500px 300px at 80% 40%, rgba(249,115,22,0.06), transparent 60%);
  pointer-events: none;
}
.lp-hero-grid {
  position: relative;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start;
}
@media (max-width: 900px) {
  .lp-hero { padding: 40px 20px 24px; }
  .lp-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.lp-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--accent-soft); color: #0369a1;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase;
}

.lp-h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15; font-weight: 800;
  letter-spacing: -0.02em;
  margin: 20px 0 16px;
}
.lp-sub {
  font-size: 17px; color: var(--muted); margin: 0 0 24px;
  max-width: 56ch;
}
.lp-bullets { list-style: none; padding: 0; margin: 0 0 20px; }
.lp-bullets li {
  display: flex; gap: 10px; padding: 6px 0;
  font-size: 15px;
}
.lp-bullets svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }

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

/* Card / form */
.lp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky; top: 88px;
}
@media (max-width: 900px) { .lp-card { position: static; } }

.lp-card-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700; margin: 0 0 18px;
}
.lp-lock {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(249, 115, 22, 0.1); color: var(--primary);
}

.lp-field { margin-bottom: 14px; }
.lp-label {
  display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px;
  color: var(--fg);
}
.lp-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit; font-size: 15px;
  background: #fff; color: var(--fg);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lp-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}

.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font: inherit; font-size: 16px; font-weight: 700;
  background: var(--primary); color: var(--primary-fg);
  border: none; cursor: pointer;
  transition: background 0.15s, transform 0.05s;
}
.lp-btn:hover:not(:disabled) { background: var(--primary-hover); }
.lp-btn:active { transform: translateY(1px); }
.lp-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.lp-disclaimer {
  margin: 12px 0 0; font-size: 11px; color: var(--muted-2); text-align: center;
}

.lp-error {
  display: none;
  margin-top: 10px;
  padding: 10px 12px;
  background: #fef2f2; color: #b91c1c;
  border: 1px solid #fecaca; border-radius: 10px;
  font-size: 13px;
}
.lp-error.is-visible { display: block; }

/* Spinner */
.lp-spin {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lp-spin 0.7s linear infinite;
}
@keyframes lp-spin { to { transform: rotate(360deg); } }

/* Success state */
.lp-success {
  text-align: center;
}
.lp-success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(34,197,94,0.12); color: #16a34a;
  margin-bottom: 14px;
}
.lp-success h2 { margin: 0 0 8px; font-size: 20px; font-weight: 700; }
.lp-success p { margin: 0 0 20px; font-size: 14px; color: var(--muted); }

/* Trust strip */
.lp-trust {
  border-top: 1px solid var(--border);
  background: #f8fafc;
  padding: 28px 24px;
}
.lp-trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
  font-size: 13px; color: var(--muted);
}
.lp-trust-item { display: inline-flex; align-items: center; gap: 8px; }
.lp-trust-item svg { color: var(--accent); }

/* CTA section */
.lp-cta-section {
  padding: 64px 24px;
  text-align: center;
}
.lp-cta-card {
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(135deg, #0c4a6e, #0e7490);
  color: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 20px 60px -20px rgba(8, 47, 73, 0.4);
}
.lp-cta-card h3 { margin: 0 0 10px; font-size: 24px; font-weight: 700; }
.lp-cta-card p { margin: 0 0 22px; opacity: 0.85; }
.lp-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: var(--primary); color: #fff;
  border-radius: 10px; font-weight: 700; font-size: 15px;
}
.lp-cta-btn:hover { background: var(--primary-hover); text-decoration: none; }

/* Footer */
.lp-footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  font-size: 13px; color: var(--muted-2);
}
.lp-footer a { color: var(--muted); }
