@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

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

body { background: #F7F4EF !important; }

.lp-wrap {
  min-height: 100vh;
  display: flex;
  font-family: 'DM Sans', sans-serif;
}

/* ── Left panel ── */
.lp-side {
  width: 42%;
  background: #191917;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 3.5rem;
  overflow: hidden;
}

/* Blueprint grid */
.lp-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220,135,60,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,135,60,.07) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Decorative diamond */
.lp-diamond {
  position: absolute;
  bottom: -90px;
  right: -90px;
  width: 340px;
  height: 340px;
  background: #DC873C;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: .12;
}

/* Second smaller diamond */
.lp-diamond-sm {
  position: absolute;
  top: 40%;
  left: -60px;
  width: 140px;
  height: 140px;
  background: #DC873C;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: .08;
}

.lp-brand {
  position: relative;
  z-index: 1;
}

.lp-logomark {
  width: 44px;
  height: 44px;
  background: #DC873C;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  margin-bottom: 1.6rem;
  animation: spin-in .7s cubic-bezier(.22,1,.36,1) both;
}

@keyframes spin-in {
  from { opacity: 0; transform: rotate(-90deg) scale(.5); }
  to   { opacity: 1; transform: rotate(0deg) scale(1); }
}

.lp-brand h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.5px;
}

.lp-brand h1 em {
  font-style: normal;
  color: #DC873C;
}

.lp-brand p {
  margin-top: .7rem;
  color: rgba(255,255,255,.3);
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.lp-quote {
  position: relative;
  z-index: 1;
}

.lp-quote p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: rgba(255,255,255,.12);
  text-transform: uppercase;
  line-height: 1.35;
  letter-spacing: .5px;
}

.lp-quote p strong {
  color: rgba(255,255,255,.28);
}

/* ── Right panel ── */
.lp-form-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  background: #F7F4EF;
}

.lp-card {
  width: 100%;
  max-width: 390px;
}

.lp-card > * {
  animation: fade-up .55s ease both;
}
.lp-card > *:nth-child(1) { animation-delay: .08s; }
.lp-card > *:nth-child(2) { animation-delay: .16s; }
.lp-card > *:nth-child(3) { animation-delay: .22s; }
.lp-card > *:nth-child(4) { animation-delay: .28s; }
.lp-card > *:nth-child(5) { animation-delay: .34s; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lp-eyebrow {
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #DC873C;
  font-weight: 500;
  margin-bottom: .45rem;
}

.lp-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #191917;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: .5rem;
}

.lp-sub {
  color: #9A9690;
  font-size: .87rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.lp-field {
  margin-bottom: 1.1rem;
}

.lp-field label {
  display: block;
  font-size: .68rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #7A7670;
  font-weight: 500;
  margin-bottom: .45rem;
}

.lp-field input {
  width: 100%;
  padding: .8rem 1rem;
  background: #fff;
  border: 1.5px solid #E2DDD5;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: #191917;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.lp-field input::placeholder { color: #C4BFB8; }

.lp-field input:focus {
  border-color: #DC873C;
  box-shadow: 0 0 0 3px rgba(220,135,60,.13);
}

.lp-btn {
  width: 100%;
  padding: .88rem 1rem;
  margin-top: .6rem;
  background: #191917;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}

.lp-btn::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: #DC873C;
  transition: width .35s cubic-bezier(.22,1,.36,1);
}

.lp-btn:hover { background: #0e0e0d; }
.lp-btn:hover::before { width: 100%; opacity: .18; }
.lp-btn:active { transform: scale(.99); }

.lp-divider {
  height: 1px;
  background: #E2DDD5;
  margin: 1.6rem 0;
}

.lp-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-footer a {
  color: #9A9690;
  text-decoration: none;
  font-size: .8rem;
  transition: color .2s;
}

.lp-footer a:hover { color: #DC873C; }

.lp-version {
  font-size: .72rem;
  color: #C4BFB8;
  letter-spacing: 1px;
}

.lp-alert {
  border-radius: 7px;
  font-size: .83rem;
  padding: .65rem 1rem;
  margin-bottom: 1.2rem;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #B91C1C;
}

@media (max-width: 768px) {
  .lp-side { display: none; }
  .lp-form-side { padding: 2rem 1.25rem; }
}
