/* ── LevelLandlord Marketing Site ── */
:root {
  --midnight:  #0F1F35;
  --navy:      #1A3A5C;
  --steel:     #2D5F8A;
  --gold:      #C8922A;
  --gold-lt:   #F0B84A;
  --gold-bg:   rgba(200,146,42,0.10);
  --cream:     #F8F6F1;
  --white:     #FFFFFF;
  --bg:        #F4F7FB;
  --text:      #0F1F35;
  --text-2:    #2D4460;
  --text-muted:#6B7D90;
  --border:    #D6E1EE;
  --radius:    14px;
  --font-display: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.ll-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,31,53,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(248,246,241,0.08);
  padding: 0 5vw;
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream); line-height: 1;
}

.nav-brand-text span { color: var(--gold-lt); }

.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}

.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(248,246,241,0.65);
  text-decoration: none; padding: 7px 14px; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--cream);
  background: rgba(248,246,241,0.08);
}

.nav-ctas { display: flex; align-items: center; gap: 8px; }

.btn-nav-ghost {
  font-size: 13px; font-weight: 600;
  color: rgba(248,246,241,0.65);
  border: 1px solid rgba(248,246,241,0.15);
  padding: 7px 16px; border-radius: 8px;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.btn-nav-ghost:hover { color: var(--cream); border-color: rgba(248,246,241,0.35); background: rgba(248,246,241,0.06); }

.btn-nav-gold {
  font-size: 13px; font-weight: 700;
  color: var(--midnight);
  background: var(--gold);
  padding: 7px 18px; border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.btn-nav-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ── Section Helpers ── */
.section-dark  { background: var(--midnight); color: var(--cream); }
.section-navy  { background: var(--navy);     color: var(--cream); }
.section-light { background: var(--white);    color: var(--text);  }
.section-bg    { background: var(--bg);       color: var(--text);  }
.section-cream { background: var(--cream);    color: var(--text);  }

.ll-container { max-width: 1080px; margin: 0 auto; padding: 0 5vw; }
.section-pad  { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-label.gold { color: var(--gold-lt); }
.section-label.steel { color: var(--steel); }
.section-label.muted { color: var(--text-muted); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem; line-height: 1.7;
  margin-top: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 11px;
  font-size: 15px; font-weight: 700; font-family: var(--font-body);
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--gold); color: var(--midnight); box-shadow: 0 2px 12px rgba(200,146,42,0.30); }
.btn-gold:hover { background: var(--gold-lt); box-shadow: 0 6px 20px rgba(200,146,42,0.40); }

.btn-cream { background: var(--cream); color: var(--midnight); box-shadow: 0 2px 12px rgba(0,0,0,0.12); }
.btn-cream:hover { background: white; box-shadow: 0 6px 20px rgba(0,0,0,0.18); }

.btn-outline-cream {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(248,246,241,0.35);
}
.btn-outline-cream:hover { border-color: rgba(248,246,241,0.7); background: rgba(248,246,241,0.06); }

.btn-navy { background: var(--navy); color: var(--cream); box-shadow: 0 2px 12px rgba(26,58,92,0.30); }
.btn-navy:hover { background: var(--steel); box-shadow: 0 6px 20px rgba(26,58,92,0.40); }

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 13px; }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 9px; }

/* ── Cards ── */
.card {
  background: var(--white); border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15,31,53,0.07);
  overflow: hidden;
}

.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(248,246,241,0.10);
  border-radius: 18px;
}

/* ── Feature grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(248,246,241,0.10);
  border-radius: 16px;
}

.feature-icon {
  width: 46px; height: 46px;
  background: var(--gold-bg); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt); margin-bottom: 16px;
}

.feature-title { font-size: 15px; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.feature-body  { font-size: 14px; color: rgba(248,246,241,0.60); line-height: 1.6; }

/* ── Steps (10 steps guide) ── */
.steps-list { display: flex; flex-direction: column; gap: 0; }

.step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step-item:last-child { border-bottom: none; }

.step-num-col {
  display: flex; flex-direction: column; align-items: center;
}

.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}

.step-line {
  width: 2px; flex: 1; background: var(--border);
  margin-top: 8px; min-height: 24px;
}
.step-item:last-child .step-line { display: none; }

.step-content { padding-top: 10px; }

.step-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-bg); padding: 3px 9px; border-radius: 20px;
  margin-bottom: 10px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700; color: var(--text);
  margin-bottom: 10px; line-height: 1.3;
}

.step-body {
  font-size: 15px; color: var(--text-2);
  line-height: 1.7;
}

.step-tip {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--bg); border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 12px 14px; margin-top: 14px;
  font-size: 13px; color: var(--text-muted); line-height: 1.55;
}

/* ── Pricing card ── */
.price-card {
  background: var(--white); border-radius: 22px;
  border: 2px solid var(--gold);
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(200,146,42,0.15);
  max-width: 480px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}

.price-per { font-size: 1rem; color: var(--text-muted); margin-left: 4px; }

.price-rule {
  font-size: 13px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.04em;
  text-transform: uppercase; margin-top: 6px;
}

.check-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 11px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-2); line-height: 1.5;
}
.check-list li::before {
  content: '';
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8922A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 11l3 3L22 4'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
  flex-shrink: 0; margin-top: 1px;
}

/* ── Footer ── */
.ll-footer {
  background: var(--midnight);
  border-top: 1px solid rgba(248,246,241,0.07);
  padding: 48px 5vw 32px;
}

.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}

.footer-brand { max-width: 260px; }
.footer-tagline { font-size: 13px; color: rgba(248,246,241,0.40); margin-top: 12px; line-height: 1.6; }

.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(248,246,241,0.35); margin-bottom: 14px; }
.footer-col a  { display: block; font-size: 14px; color: rgba(248,246,241,0.55); text-decoration: none; margin-bottom: 9px; transition: color 0.15s; }
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1080px; margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(248,246,241,0.07);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(248,246,241,0.25); }
.footer-price { font-size: 12px; color: rgba(200,146,42,0.60); }

/* ── Coming Soon ── */
.coming-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,146,42,0.12); border: 1px solid rgba(200,146,42,0.25);
  color: var(--gold-lt); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
}
.coming-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-lt); animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.35; } }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .section-pad { padding: 56px 0; }
  .step-item { grid-template-columns: 48px 1fr; gap: 0 16px; }
  .price-card { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
