:root {
  --bg: #05080f;
  --bg-2: #08101a;
  --panel: #0d1420;
  --line: #1d293a;
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #edf3fb;
  --muted: #98a4b7;
  --muted-2: #7d8ca1;
  --blue: #b8d5ff;
  --light: #ffffff;
  --dark-btn: #111a25;
  --warning: #f0b36a;
  --success: #88d1ae;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --container: 1280px;
  --ease: 0.28s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
}

.section-dark {
  background: linear-gradient(180deg, #08101a 0%, #05080f 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(5, 8, 15, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
}

.main-nav a,
.header-cta,
.brand {
  transition: opacity var(--ease), transform var(--ease), color var(--ease);
}

.main-nav a:hover,
.brand:hover {
  opacity: 0.92;
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(6, 10, 18, 0.48), rgba(6, 10, 18, 0.86)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1800&q=80")
    center/cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(184, 213, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 22%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: 72px 0 56px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 18px;
}

h1,
.section-heading h2,
.contact-copy h2 {
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.98;
  margin-bottom: 18px;
  max-width: 900px;
}

.hero-text {
  max-width: 700px;
  font-size: 1.18rem;
  color: #d9e4f1;
  line-height: 1.72;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-stat {
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(10, 15, 24, 0.46);
  backdrop-filter: blur(10px);
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.mini-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 213, 255, 0.2);
  background: rgba(10, 15, 24, 0.6);
}

.mini-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.96rem;
}

.mini-stat span,
.section-text,
.score-note,
.comp-left p,
.trust-inner p,
.contact-copy p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition:
    transform var(--ease),
    opacity var(--ease),
    background var(--ease),
    border-color var(--ease),
    box-shadow var(--ease);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: var(--light);
  color: #0f1720;
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.08);
}

.btn-light:hover {
  box-shadow: 0 20px 36px rgba(255, 255, 255, 0.12);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--dark-btn);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-dark:hover {
  background: #162130;
  border-color: rgba(255, 255, 255, 0.12);
}

.full-width {
  width: 100%;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 18, 28, 0.76);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.panel-topbar {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.panel-map {
  position: relative;
  height: 240px;
  background:
    linear-gradient(rgba(10, 16, 25, 0.22), rgba(10, 16, 25, 0.22)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
}

.map-badge {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f1720;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.badge-1 { top: 28px; left: 26px; }
.badge-2 { top: 72px; right: 34px; }
.badge-3 { bottom: 24px; left: 92px; }

.panel-cards {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.listing-card {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  transition:
    transform var(--ease),
    border-color var(--ease),
    background var(--ease),
    box-shadow var(--ease);
}

.listing-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.listing-card.active {
  border-color: rgba(136, 209, 174, 0.34);
}

.listing-card.you {
  border-color: rgba(240, 179, 106, 0.38);
}

.listing-thumb,
.comp-thumb {
  background-size: cover;
  background-position: center;
  border-radius: 14px;
}

.listing-thumb {
  height: 74px;
}

.thumb-1,
.comp-thumb-1 {
  background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=800&q=80");
}

.thumb-2,
.comp-thumb-2 {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=800&q=80");
}

.thumb-3,
.comp-thumb-3 {
  background-image: url("https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?auto=format&fit=crop&w=800&q=80");
}

.listing-row,
.score-top,
.comparison-header,
.comp-row,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.trust-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: #08101a;
}

.trust-inner {
  padding: 18px 0;
  text-align: center;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  margin-bottom: 14px;
}

.dashboard-grid,
.plans-grid {
  display: grid;
  gap: 24px;
}

.dashboard-grid {
  grid-template-columns: 1.05fr 1fr 1fr;
  align-items: stretch;
}

.score-card,
.metric-card,
.comparison-card,
.unlock-card,
.plan-card,
.contact-shell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.score-card,
.metric-card,
.comparison-card,
.unlock-card,
.plan-card {
  padding: 28px;
  transition:
    transform var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    background var(--ease);
}

.score-card:hover,
.metric-card:hover,
.comparison-card:hover,
.unlock-card:hover,
.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.score-bar {
  margin: 18px 0 16px;
  height: 12px;
  border-radius: 999px;
  background: #1b2736;
  overflow: hidden;
}

.score-bar-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #f0b36a, #dbe8fa);
}

.metric-label {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.metric-card h3,
.unlock-card h3 {
  font-size: 1.24rem;
  line-height: 1.35;
}

.metric-tag {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.metric-tag.warning { color: var(--warning); }
.metric-tag.success { color: var(--success); }
.metric-tag.neutral { color: #d6e2f3; }

.comparison-card {
  grid-column: span 2;
}

.comparison-header span {
  color: var(--muted-2);
  font-size: 0.92rem;
}

.comparison-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.comp-row {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform var(--ease),
    border-color var(--ease),
    background var(--ease);
}

.comp-row:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.1);
}

.comp-row.focus {
  border-color: rgba(240, 179, 106, 0.4);
}

.comp-left {
  display: flex;
  gap: 14px;
  align-items: center;
}

.comp-thumb {
  width: 72px;
  height: 58px;
  flex: 0 0 72px;
}

.unlock-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.unlock-card p {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin-bottom: 12px;
}

.plans-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.plan-card {
  display: flex;
  min-height: 100%;
}

.plan-card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.plan-top-spacer {
  height: 37px;
  margin-bottom: 8px;
}

.plan-title {
  color: var(--blue);
  font-weight: 800;
}

.plan-card h3 {
  font-size: 3.2rem;
  line-height: 1;
  margin: 10px 0 20px;
}

.plan-card h3 span {
  font-size: 1rem;
  color: var(--muted);
  margin-left: 4px;
}

.plan-features {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  flex: 1;
}

.plan-features li {
  color: #d4dfed;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.plan-bottom {
  margin-top: auto;
}

.featured-plan {
  border-color: rgba(184, 213, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(184, 213, 255, 0.06);
}

.featured-plan:hover {
  border-color: rgba(184, 213, 255, 0.5);
}

.plan-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(184, 213, 255, 0.12);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  padding: 34px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #d7e2ee;
  font-size: 0.95rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #243347;
  background: #0b121c;
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #728196;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(184, 213, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(184, 213, 255, 0.08);
  background: #101826;
}

.field textarea {
  resize: vertical;
  min-height: 160px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  background: #05080f;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .dashboard-grid,
  .plans-grid,
  .hero-mini-stats,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    grid-column: span 1;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  .nav-shell {
    min-height: auto;
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 48px 0 42px;
  }

  .form-row,
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .listing-card {
    grid-template-columns: 1fr;
  }

  .listing-thumb {
    height: 140px;
  }

  .comp-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .comp-left {
    width: 100%;
  }

  .plan-card h3 {
    font-size: 2.6rem;
  }
}