:root {
  --gold: #d8ae3d;
  --gold-light: #f8e8af;
  --ink: #090a0f;
  --muted: #a7a9b3;
  --line: rgba(216, 174, 61, .22);
}

* { box-sizing: border-box; }

html, body { width: 100%; height: 100%; margin: 0; }

body {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 8% 10%, rgba(216, 174, 61, .14), transparent 34%),
    radial-gradient(circle at 92% 90%, rgba(89, 45, 117, .16), transparent 35%),
    var(--ink);
  font-family: Poppins, Inter, Arial, sans-serif;
}

.lp-shell {
  width: 100%;
  height: 100svh;
  min-height: 520px;
  padding: clamp(14px, 3vw, 32px);
  display: grid;
  place-items: center;
}

.lp-card {
  position: relative;
  width: min(1120px, 100%);
  height: min(760px, 100%);
  min-height: 490px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(22, 23, 32, .96), rgba(12, 13, 19, .94));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
}

.lp-header, .lp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.lp-brand { display: flex; align-items: center; gap: 9px; color: #fff; text-decoration: none; font-weight: 700; }
.lp-brand img { width: 34px; height: 34px; object-fit: contain; }

.lp-content { flex: 1; min-height: 0; display: grid; place-items: center; }

.lp-eyebrow, .lp-panel-label { margin: 0 0 12px; color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1 { margin: 0 0 22px; font-size: clamp(2.3rem, 5.2vw, 4.5rem); line-height: .98; letter-spacing: -.055em; }
h1 em { color: var(--gold-light); font-style: normal; }
.lp-services { display: grid; grid-template-columns: repeat(2, minmax(230px, 1fr)); gap: 10px; max-width: 700px; }
.lp-service-card { min-height: 92px; display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 10px; padding: 17px 18px; border: 1px solid rgba(216, 174, 61, .2); border-radius: 13px; color: #fff; background: rgba(255,255,255,.035); }
.lp-service-card > strong { color: var(--gold); font-size: .75rem; letter-spacing: .1em; }
.lp-service-card span { display: grid; gap: 4px; }
.lp-service-card b { color: #f4f0df; font-size: .98rem; }
.lp-service-card small { color: var(--muted); font-size: .76rem; line-height: 1.4; }
.lp-button { width: 100%; min-height: 43px; display: flex; align-items: center; justify-content: space-between; border-radius: 8px; padding: 11px 14px; font: inherit; font-size: .8rem; font-weight: 700; text-decoration: none; cursor: pointer; }
.lp-button--primary {
  min-height: 72px;
  margin: 24px 0;
  justify-content: center;
  gap: 18px;
  font-size: 1.2rem;
  letter-spacing: .02em;
  border: 1px solid var(--gold);
  color: #16130a;
  background: linear-gradient(135deg, #f0ce6b, #b78520);
  animation: lpCtaPulse 1.8s ease-in-out infinite;
}
.lp-button--outline { margin-top: 9px; border: 1px solid rgba(255,255,255,.2); color: #fff; background: transparent; }
.lp-button:disabled { opacity: .6; cursor: wait; }
.lp-footer { justify-content: flex-start; gap: 12px; color: #777985; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.lp-footer i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@keyframes lpCtaPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(216, 174, 61, 0); }
  50% { transform: scale(1.045); box-shadow: 0 0 24px rgba(216, 174, 61, .42); }
}

@media (max-width: 700px) {
  .lp-shell { padding: 0; }
  .lp-card { width: 100%; height: 100%; min-height: 0; border: 0; border-radius: 0; padding: 17px 18px 15px; }
  .lp-content { display: flex; flex-direction: column; align-items: stretch; justify-content: center; padding: 2vh 0; }
  .lp-copy { flex-shrink: 1; }
  h1 { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  h1 { margin-bottom: 16px; }
  .lp-services { grid-template-columns: 1fr; gap: 7px; }
  .lp-service-card { min-height: 66px; grid-template-columns: 28px 1fr; padding: 11px 12px; }
  .lp-service-card > strong { font-size: .68rem; }
  .lp-service-card b { font-size: .82rem; }
  .lp-service-card small { font-size: .66rem; }
  .lp-button { min-height: 44px; padding: 9px 12px; font-size: .78rem; }
  .lp-button--primary { min-height: 68px; margin: 18px 0; font-size: 1.08rem; }
  .lp-footer { font-size: .58rem; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-button--primary { animation: none; }
}

@media (max-height: 650px) and (min-width: 701px) {
  .lp-card { padding-top: 18px; padding-bottom: 18px; }
  h1 { margin-bottom: 14px; }
}
