:root {
  --black: #050505;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.62);
  --muted-strong: rgba(255,255,255,0.82);
  --line: rgba(255,255,255,0.12);
  --panel: rgba(255,255,255,0.045);
  --panel-strong: rgba(255,255,255,0.075);
  --accent-a: #ee9988;
  --accent-b: #99aaee;
  --max: 1120px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0,0,0,0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.lp-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.05rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lp-logo {
  display: flex;
  color: #fff;
  text-decoration: none;
}
.lp-logo svg { width: 210px; height: auto; display: block; }
.lp-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.lp-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(153,170,238,0.22), transparent 34%),
    radial-gradient(circle at 20% 16%, rgba(238,153,136,0.18), transparent 32%);
  pointer-events: none;
}
.lp-hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6.4rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.03; margin: 0; letter-spacing: -0.045em; }
h1 { font-size: clamp(3rem, 7vw, 5.7rem); max-width: 850px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.1rem; letter-spacing: -0.02em; }
p { color: var(--muted); margin: 0; }
.hero-sub {
  max-width: 700px;
  margin-top: 1.35rem;
  color: var(--muted-strong);
  font-size: 1.05rem;
}
.lp-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-primary { background: #fff; color: #000; }
.btn-outline { border: 1px solid var(--line); color: #fff; }
.lp-proof-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), rgba(255,255,255,0.025));
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
}
.lp-proof-card ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}
.lp-proof-card li {
  display: flex;
  gap: 0.7rem;
  border-top: 1px solid var(--line);
  padding: 0.88rem 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
}
.lp-proof-card li:first-child { border-top: none; }
.check { color: var(--accent-b); font-weight: 900; }
.lp-section {
  border-bottom: 1px solid var(--line);
  padding: 4.75rem 1.5rem;
}
.lp-section-inner { max-width: var(--max); margin: 0 auto; }
.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.card {
  min-height: 180px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}
.card p { margin-top: 0.85rem; font-size: 0.92rem; }
.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}
.spec-list div { padding: 1rem; border-top: 1px solid var(--line); }
.spec-list div:nth-child(-n+2) { border-top: none; }
.spec-list div:nth-child(odd) { border-right: 1px solid var(--line); }
.spec-list strong { display: block; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.35rem; }
.qualifier {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(238,153,136,0.3);
  border-radius: 10px;
  background: rgba(238,153,136,0.075);
  color: rgba(255,255,255,0.82);
  font-weight: 700;
}
.lp-cta {
  padding: 4.5rem 1.5rem;
  background: #fff;
  color: #000;
}
.lp-cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.lp-cta p { color: rgba(0,0,0,0.65); margin-top: 0.75rem; max-width: 620px; }
.lp-cta .btn-primary { background: #000; color: #fff; }
.lp-cta-content { max-width: 680px; }
.lp-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.lp-cta-points li {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  color: rgba(0,0,0,0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.lp-cta-actions {
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}
.lp-cta .btn-outline { border-color: rgba(0,0,0,0.22); color: #000; }
.lp-footer {
  padding: 2rem 1.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  text-align: center;
}
@media (max-width: 860px) {
  .lp-hero-inner, .two-col, .lp-cta-inner { grid-template-columns: 1fr; display: grid; }
  .card-grid, .spec-list { grid-template-columns: 1fr; }
  .spec-list div, .spec-list div:nth-child(odd) { border-right: none; }
  .spec-list div:nth-child(2) { border-top: 1px solid var(--line); }
  .lp-nav-inner { align-items: flex-start; flex-direction: column; }
  .lp-logo svg { width: 190px; }
  .lp-actions, .lp-cta-inner { align-items: stretch; }
  .lp-cta-actions { min-width: 0; }
  .btn { width: 100%; }
}
