@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

body {
  min-height: 100vh;
  display: flex;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #f4f6f9;
}

/* ── LEFT ── */
.lp-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px 64px;
  background: linear-gradient(150deg, #0b1f35 0%, #102d4a 55%, #0d3d28 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lp-left::after {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,100,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lp-left::before {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,120,220,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.lp-brand-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #00c97a, #00854f);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.lp-brand-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.9);
}

.lp-center {
  position: relative;
  z-index: 1;
}
.lp-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00c97a;
  margin-bottom: 20px;
}
.lp-headline {
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}
.lp-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 420px;
}

.lp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.lp-pill {
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.04);
}

.lp-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
}

/* ── RIGHT ── */
.lp-right {
  width: 460px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 52px;
  background: #fff;
  box-shadow: -2px 0 40px rgba(0,0,0,0.08);
}

.lp-right-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f1f2e;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.lp-right-sub {
  font-size: 0.88rem;
  color: #8a96a3;
  margin-bottom: 36px;
}

.lp-field { margin-bottom: 20px; }
.lp-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7480;
  margin-bottom: 8px;
}
.lp-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dde2e8;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #0f1f2e;
  background: #fafbfc;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.lp-input::placeholder { color: #bfc6ce; }
.lp-input:focus {
  border-color: #00c97a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,201,122,0.12);
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fafbfc inset !important;
  -webkit-text-fill-color: #0f1f2e !important;
}

.lp-btn {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  background: linear-gradient(135deg, #00c97a 0%, #00854f 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.12s;
}
.lp-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.lp-btn:active { transform: translateY(0); opacity: 1; }

.lp-error {
  background: #fff5f5;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.lp-footer {
  margin-top: 32px;
  font-size: 0.72rem;
  color: #bfc6ce;
  text-align: center;
}

@media (max-width: 860px) {
  .lp-left { display: none; }
  .lp-right { width: 100%; box-shadow: none; }
}
