:root {
  --bg: #06070c;
  --bg-alt: #0b0e17;
  --card: #111827;
  --border: #1f2937;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent: #ffb84d;
  --accent-2: #4ade80;
  --link: #93c5fd;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--link); text-decoration: none; }
a:hover { color: #fff; }
h1, h2, h3 { color: #fff; letter-spacing: -0.02em; }
h1 { font-size: clamp(36px, 5vw, 68px); line-height: 1.1; margin: 0 0 18px; }
h2 { font-size: clamp(26px, 3vw, 40px); margin: 0 0 18px; }
h3 { font-size: 22px; margin: 0 0 10px; }
.meta { color: var(--muted); font-size: 14px; }

.topnav {
  position: sticky; top: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 40px;
  background: rgba(6, 7, 12, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 22px; letter-spacing: 1px; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.navlinks a { margin-left: 24px; color: var(--muted); font-size: 14px; }
.navlinks a:hover { color: #fff; }
.nav-cta { background: var(--accent); color: #0b1220 !important; padding: 8px 16px; border-radius: 6px; font-weight: 700; }
.nav-cta:hover { background: #ffd27f; }

.hero {
  padding: 120px 40px 100px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,184,77,0.12), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(74,222,128,0.10), transparent 55%),
    linear-gradient(180deg, #0b0912 0%, #06070c 100%);
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 1100px; margin: 0 auto; }
.kicker {
  color: var(--accent); text-transform: uppercase; letter-spacing: 4px;
  font-size: 12px; font-weight: 700; margin-bottom: 20px;
}
.lede { font-size: 20px; color: var(--muted); max-width: 760px; margin: 0 0 30px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-block; padding: 13px 24px; border-radius: 8px; font-weight: 700;
  text-decoration: none; font-size: 15px; transition: transform 0.1s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #0b1220 !important; }
.btn-primary:hover { background: #ffd27f; }
.btn-ghost { background: transparent; color: #fff !important; border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--card); }
.btn-large { padding: 16px 32px; font-size: 17px; }

.section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.section.alt { background: var(--bg-alt); max-width: none; padding-left: 40px; padding-right: 40px; }
.section.alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.card p { color: var(--muted); margin-bottom: 0; }

.pricing { display: flex; justify-content: center; margin-top: 30px; }
.price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 40px; max-width: 560px; width: 100%;
  box-shadow: 0 20px 60px rgba(255, 184, 77, 0.08);
}
.price-tag {
  display: flex; align-items: baseline; gap: 8px;
  border-bottom: 1px solid var(--border); padding-bottom: 22px; margin-bottom: 22px;
}
.price-tag .currency { color: var(--muted); font-size: 18px; }
.price-tag .amount { color: var(--accent); font-size: 64px; font-weight: 800; letter-spacing: -2px; }
.price-tag .per { color: var(--muted); font-size: 16px; }
.price-features { list-style: none; padding: 0; margin: 0 0 28px; }
.price-features li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  color: var(--text); padding-left: 28px; position: relative;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent-2); font-weight: 700;
}

.code-block {
  background: #020409; border: 1px solid var(--border); border-radius: 8px;
  padding: 20px; margin: 20px 0; overflow-x: auto;
}
.code-block pre { margin: 0; color: #c5d0e0; font-family: "Consolas", "Monaco", monospace; font-size: 13px; line-height: 1.6; }

.video-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden;
}
.video-card video, .video-card img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; background: #000; }
.video-card .vc-meta { padding: 14px 18px; }
.video-card h3 { margin: 0 0 4px; }

.contact-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 26px; max-width: 540px;
}
.contact-row { display: flex; padding: 10px 0; border-top: 1px solid var(--border); }
.contact-row:first-child { border-top: none; padding-top: 0; }
.contact-label { color: var(--muted); width: 120px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

footer {
  background: #020409;
  border-top: 1px solid var(--border);
  padding: 50px 40px 20px;
  color: var(--muted);
}
.foot-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px;
}
.foot-logo { width: 52px; height: 52px; object-fit: contain; margin-bottom: 10px; }
.foot-name { color: #fff; font-weight: 800; font-size: 20px; letter-spacing: 1px; }
.foot-head { color: #fff; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }
.foot-bottom { max-width: 1200px; margin: 30px auto 0; padding-top: 20px; border-top: 1px solid var(--border); font-size: 13px; text-align: center; }

@media (max-width: 720px) {
  .topnav { padding: 12px 18px; }
  .navlinks a { margin-left: 14px; font-size: 13px; }
  .section { padding: 60px 22px; }
  .hero { padding: 80px 22px 70px; }
}
