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

:root {
  --bg: #0f1117;
  --card: #1a1e2a;
  --card-edge: #262c3d;
  --text: #e8eaf0;
  --dim: #8a91a5;
  --orange: #ff9900;
  --green: #34d27b;
  --red: #ff5c6c;
  --blue: #6fb3ff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---- nav ---- */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15,17,23,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-edge);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.logo { font-weight: 800; font-size: 17px; letter-spacing: -.2px; }
.logo b { color: var(--orange); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--dim); font-size: 14px; font-weight: 600; text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--orange); color: #1a1200; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { background: none; border: 1px solid var(--card-edge); color: var(--text); }
.btn-ghost:hover { border-color: var(--dim); }
.btn-disabled { background: var(--card); color: var(--dim); border: 1px solid var(--card-edge); cursor: default; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ---- hero ---- */
.hero {
  padding: 72px 0 40px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
}
.hero h1 .accent { color: var(--orange); }
.hero p.lead {
  margin-top: 18px;
  font-size: 18px;
  color: var(--dim);
  max-width: 46ch;
}
.hero-ctas { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 14px; font-size: 13px; color: var(--dim); }

/* ---- phone mockup (pure CSS, real card content, no image assets) ---- */
.phone {
  justify-self: center;
  width: 260px;
  background: linear-gradient(160deg, var(--card) 0%, #151824 100%);
  border: 1px solid var(--card-edge);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  transform: rotate(-2deg);
}
.phone .badge {
  display: inline-block;
  background: rgba(255,153,0,.14);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.phone .q { font-size: 13px; font-weight: 650; line-height: 1.4; white-space: pre-line; }
.phone .section { margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--card-edge); }
.phone .sec-label { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.phone .sec-body { font-size: 12px; color: var(--text); font-weight: 550; }
.phone .hint { text-align: center; font-size: 10px; color: var(--dim); margin-top: 14px; }
.phone .term { text-decoration: underline dotted var(--dim); }

/* ---- stat bar ---- */
.stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--card-edge);
  border-bottom: 1px solid var(--card-edge);
  padding: 26px 0;
  margin: 20px 0 60px;
}
.stats .stat { flex: 1; text-align: center; }
.stats .stat b { display: block; font-size: 28px; font-weight: 800; color: var(--text); }
.stats .stat span { font-size: 13px; color: var(--dim); }

/* ---- section headers ---- */
section { padding: 60px 0; }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 44px; }
.section-head .kicker { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.section-head h2 { font-size: 32px; font-weight: 800; letter-spacing: -.5px; margin-top: 8px; }
.section-head p { color: var(--dim); font-size: 16px; margin-top: 10px; }

/* ---- feature rows (alternating) ---- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
}
.feature-row:nth-child(even) .feature-copy { order: 2; }
.feature-copy h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.feature-copy p { color: var(--dim); font-size: 16px; }
.feature-visual {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: 16px;
  padding: 24px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.feature-visual .mini-card { white-space: pre-line; }
.feature-visual .mini-term { text-decoration: underline dotted var(--dim); color: var(--blue); }

/* ---- grid of small features ---- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid .item {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: 14px;
  padding: 20px;
}
.grid .item .ico { font-size: 20px; margin-bottom: 10px; }
.grid .item h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.grid .item p { font-size: 13.5px; color: var(--dim); }

/* ---- pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.plan.featured { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.plan .plan-name { font-weight: 700; font-size: 15px; color: var(--dim); }
.plan.featured .plan-name { color: var(--orange); }
.plan .plan-price { font-size: 32px; font-weight: 800; margin: 10px 0 2px; }
.plan .plan-sub { font-size: 13px; color: var(--dim); margin-bottom: 20px; }
.plan ul { list-style: none; margin-bottom: 24px; flex: 1; }
.plan li { font-size: 14px; color: var(--text); padding: 6px 0; padding-left: 22px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ---- faq ---- */
.faq-item { border-bottom: 1px solid var(--card-edge); padding: 20px 0; }
.faq-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { color: var(--dim); font-size: 14.5px; }

/* ---- final CTA ---- */
.cta-band {
  text-align: center;
  background: linear-gradient(160deg, var(--card) 0%, #151824 100%);
  border: 1px solid var(--card-edge);
  border-radius: 24px;
  padding: 56px 24px;
}
.cta-band h2 { font-size: 30px; font-weight: 800; margin-bottom: 10px; }
.cta-band p { color: var(--dim); margin-bottom: 26px; }

/* ---- footer ---- */
footer { border-top: 1px solid var(--card-edge); padding: 32px 0 48px; margin-top: 20px; }
footer .foot-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
footer .foot-links { display: flex; gap: 20px; }
footer .foot-links a { color: var(--dim); font-size: 13px; text-decoration: none; }
footer .foot-links a:hover { color: var(--text); }
footer .copyright { color: #565d72; font-size: 12px; }

/* ---- responsive ---- */
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding-top: 44px; }
  .hero h1 { font-size: 34px; }
  .phone { order: -1; width: 220px; transform: none; }
  .nav-links { display: none; }
  .stats { flex-wrap: wrap; }
  .stats .stat { flex: 1 1 33%; }
  .feature-row, .feature-row:nth-child(even) .feature-copy { grid-template-columns: 1fr; order: 0; }
  .feature-row { grid-template-columns: 1fr; }
  .grid, .pricing-grid { grid-template-columns: 1fr; }
}
