:root {
  --bg: #0f0f0f;
  --bg-2: #131313;
  --card: #161616;
  --card-edge: #262626;
  --text: #f2f2f2;
  --muted: #9a9a9a;
  --green: #6ef04a;
  --yellow: #ede84c;
  --radius: 18px;
  --font: "Inter Tight", system-ui, -apple-system, sans-serif;
  --font-wide: "Lexend Zetta", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.green { color: var(--green); }
.muted { color: var(--muted); }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 500; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 44px;
  background: linear-gradient(rgba(15,15,15,.85), rgba(15,15,15,0));
}
.logo {
  font-family: var(--font-wide);
  font-weight: 700; font-size: 15px; letter-spacing: .35em;
  color: var(--text);
}
.nav-burger {
  background: none; border: 0; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 6px;
}
.nav-burger span { display: block; width: 26px; height: 3px; border-radius: 2px; background: #fff; }
.nav-burger span:nth-child(2) { width: 18px; align-self: flex-end; }
.nav-menu {
  position: fixed; inset: 0; background: rgba(10,10,10,.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  font-size: 28px; font-weight: 600;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
body.menu-open .nav-menu { opacity: 1; pointer-events: auto; }
.nav-menu a:hover { color: var(--green); }
.nav-cta { color: var(--green); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: radial-gradient(ellipse 70% 55% at 50% 42%, #171717 0%, var(--bg) 70%);
}
.stars { position: absolute; inset: 0; width: 100%; height: 100%; }
.house {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: min(920px, 96vw); height: auto; opacity: .9;
}
.hero-inner { position: relative; z-index: 2; padding: 120px 24px 60px; }
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #1a1a1acc; border: 1px solid #2c2c2c; border-radius: 999px;
  padding: 9px 18px; font-size: 15px; margin-bottom: 34px;
  box-shadow: 0 0 24px rgba(0,0,0,.5);
}
.live-badge .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #a8ff7e, #46c821);
  box-shadow: 0 0 10px #58e62d; margin-left: 4px;
}
h1 {
  font-size: clamp(44px, 6.4vw, 76px);
  font-weight: 700; line-height: 1.08; letter-spacing: -.02em;
}
h1 em { font-weight: 600; }
.hero .sub { margin-top: 26px; }
.sub { color: var(--muted); font-size: 18px; }
.btn-row { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.btn {
  background: #1d1d1d; border: 1px solid #2b2b2b; color: #fff;
  border-radius: 12px; padding: 13px 26px; font-weight: 600; font-size: 16px;
  transition: background .2s ease, transform .2s ease;
}
.btn:hover { background: #262626; transform: translateY(-1px); }
.btn-green { background: var(--green); border-color: var(--green); color: #0c0c0c; display: inline-block; margin-top: 26px; }
.btn-green:hover { background: #83ff61; }
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: #777; font-size: 26px; animation: bob 1.6s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 6px); } }

/* ---------- sections ---------- */
.section { padding: 130px 24px; max-width: 1240px; margin: 0 auto; border-top: 1px solid #1d1d1d; }
.section-head { text-align: center; margin-bottom: 64px; }
.pill {
  display: inline-block; background: #101710; color: var(--green);
  border: 1px solid #1f2c1c; border-radius: 999px;
  font-size: 13px; padding: 6px 14px; margin-bottom: 20px;
}
h2 { font-size: clamp(34px, 4.6vw, 52px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 16px; }

.card {
  background: linear-gradient(180deg, #171717 0%, #101010 100%);
  border: 1px solid var(--card-edge); border-radius: var(--radius);
  position: relative;
}

/* ---------- why us ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 1000px; margin: 0 auto; }
.compare-title { text-align: center; font-size: 24px; margin-bottom: 26px; font-weight: 600; }
.compare-title.brand { font-family: var(--font-wide); letter-spacing: .3em; font-size: 18px; color: var(--green); }
.compare-title.muted { color: #bdbdbd; }
.list-card { padding: 10px 28px; }
.x-list, .check-list { list-style: none; }
.x-list li, .check-list li {
  padding: 20px 0 20px 34px; position: relative;
  border-bottom: 1px solid #202020; color: #cfcfcf;
  display: flex; align-items: center; justify-content: space-between;
}
.x-list li:last-child, .check-list li:last-child { border-bottom: 0; }
.x-list li::before, .check-list li::before {
  position: absolute; left: 0; font-weight: 700;
}
.x-list li::before { content: "\2715"; color: #6a6a6a; }
.x-list li { color: #9d9d9d; }
.check-list li::before { content: "\2713"; color: var(--green); }
.pro-pill {
  border: 1px solid #3a4a34; color: var(--green); border-radius: 999px;
  font-size: 12px; padding: 3px 10px; white-space: nowrap;
}
.pro-pill.corner { position: absolute; top: 24px; right: 24px; }

/* ---------- features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { padding: 34px 30px; }
.f-icon svg { width: 26px; height: 26px; }
.f-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: #0d0d0d; border: 1px solid #2e2e2e;
  border-top-color: var(--green);
  box-shadow: 0 -8px 24px -12px rgba(110,240,74,.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 44px;
}
.feature h3 { font-size: 24px; margin-bottom: 12px; font-weight: 600; }
.feature p { color: var(--muted); font-size: 16px; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 940px; margin: 0 auto; }
.price { padding: 36px 34px; }
.price.basic { border-color: #2f4227; box-shadow: 0 0 40px -18px rgba(110,240,74,.35); }
.plan-name { color: #cfcfcf; font-size: 17px; }
.plan-price { font-size: clamp(38px, 4vw, 54px); font-weight: 700; margin: 10px 0 26px; letter-spacing: -.02em; }
.includes { color: var(--muted); margin-bottom: 6px; }
.check-list.slim li { padding: 11px 0 11px 32px; border-bottom: 0; color: #d6d6d6; }
.check-list.slim li::before { color: #bdbdbd; }
.check-list.slim.green-checks li::before { color: var(--green); }

/* ---------- faq ---------- */
.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #151515; border: 1px solid #232323; border-radius: 14px;
  padding: 0 26px;
}
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px;
  padding: 24px 0; font-weight: 600; font-size: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.q-num { color: var(--green); font-size: 13px; }
.q-toggle { margin-left: auto; position: relative; width: 34px; height: 34px; border-radius: 50%; background: #0e0e0e; flex: 0 0 34px; }
.q-toggle::before, .q-toggle::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 14px; height: 2px; background: var(--green); transition: transform .2s ease;
}
.q-toggle::after { transform: rotate(90deg); }
.faq-item[open] .q-toggle::after { transform: rotate(0); }
.faq-item[open] .q-toggle::before { transform: rotate(0); }
.faq-item > p { color: var(--muted); padding: 0 48px 24px 44px; }

/* ---------- cta ---------- */
.cta { text-align: center; }
.cta-title { font-size: clamp(48px, 7vw, 84px); line-height: 1.05; margin-bottom: 26px; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid #232323;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  padding: 70px 44px 90px; max-width: 1320px; margin: 0 auto;
}
.footer-left p { margin-top: 16px; font-size: 15px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: var(--muted); }
.footer-nav a:hover { color: var(--green); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .compare, .price-grid { grid-template-columns: 1fr; }
  .section { padding: 90px 20px; }
  .nav { padding: 18px 22px; }
  .footer { flex-direction: column; padding: 56px 24px; }
}
