:root {
  --bg: #070b0a;
  --bg-soft: #0c1210;
  --accent: #5ed29c;
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.7);
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: "Plus Jakarta Sans", "Inter", sans-serif; font-weight: 800; line-height: 1.15; }
h1 em, .h2 em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; }

/* ==== Header ==== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 10, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), #2d8f63);
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 5px;
  background: var(--bg);
}

.logo-text { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.3px; }
.logo-text span { color: var(--accent); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; color: var(--text-dim); font-weight: 500; font-size: 14px; transition: color 0.2s; }
.site-nav a:hover { color: var(--accent); }

.cta-nav {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
}

.hamburger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==== Hero grid lines ==== */
.hero-grid-lines {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-grid-lines i {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(94, 210, 156, 0.14) 20%, rgba(94, 210, 156, 0.14) 80%, transparent);
}

/* ==== Hero ==== */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: 90px 0 110px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 210, 156, 0.16), transparent 65%);
  filter: blur(25px);
  z-index: 0;
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(94, 210, 156, 0.07), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255, 255, 255, 0.04), transparent 60%),
    linear-gradient(180deg, rgba(7, 11, 10, 0.4) 0%, var(--bg) 85%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
}
.eyebrow.center { text-align: center; }

.hero-left h1 {
  font-size: 72px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 26px;
}
.hero-left h1 .accent { color: var(--accent); }

.hero-desc {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 512px;
  margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.25s;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(94, 210, 156, 0.3); }
.cta-primary.big { font-size: 17px; padding: 19px 36px; }
.cta-primary.small { padding: 12px 22px; font-size: 13px; }
.arrow { font-size: 18px; line-height: 1; }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 26px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.25s;
}
.cta-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ==== Glass card ==== */
.hero-right { display: flex; justify-content: center; }

.glass-card {
  width: 200px;
  height: 200px;
  border-radius: 22px;
  position: relative;
  transform: translateY(-50px);
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(94, 210, 156, 0.9), rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0.05) 60%, rgba(94, 210, 156, 0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.glass-card-inner {
  position: absolute;
  inset: 1px;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 10px;
}

.gc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.gc-title { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 13px; }
.gc-line { height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.12); width: 70%; }
.gc-l1 { width: 90%; background: rgba(255, 255, 255, 0.22); }
.gc-l3 { width: 55%; }
.gc-badge {
  margin-top: auto;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 7px 12px;
  border-radius: 999px;
  align-self: flex-start;
}

/* ==== Sections ==== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-cta { padding: 90px 0 110px; }

.h2 { font-size: 40px; text-align: center; letter-spacing: -1px; margin-bottom: 14px; }
.section-sub { text-align: center; color: var(--text-dim); max-width: 620px; margin: 0 auto 50px; }

/* ==== Cards ==== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }

.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  transition: transform 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(94, 210, 156, 0.5); }

.card-icon { font-size: 22px; color: var(--accent); margin-bottom: 18px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 14px; }

/* ==== Steps ==== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }

.step { padding: 30px; border-left: 2px solid var(--accent); background: var(--glass); border-radius: 0 20px 20px 0; }
.step-num { color: var(--accent); font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 28px; display: block; margin-bottom: 14px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 14px; }

/* ==== Pricing ==== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }

.price-box {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s;
}
.price-box:hover { transform: translateY(-6px); }
.price-box.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(94, 210, 156, 0.08), rgba(94, 210, 156, 0.02));
}

.price-box h3 { font-size: 17px; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.price { margin-bottom: 20px; }
.price strong { font-family: "Plus Jakarta Sans", sans-serif; font-size: 34px; letter-spacing: -1px; display: block; }
.price span { font-size: 12px; color: var(--text-dim); }

.price-box ul { list-style: none; margin-bottom: 26px; flex-grow: 1; }
.price-box li { padding: 7px 0 7px 24px; position: relative; font-size: 14px; color: var(--text-dim); }
.price-box li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.pricing-note { text-align: center; margin-top: 30px; color: var(--text-dim); font-size: 13px; }
.pricing-note strong { color: var(--accent); }

.center { text-align: center; }
.center-cta { justify-content: center; }

/* ==== Footer ==== */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 40px;
}
.footer-note { color: var(--text-dim); font-size: 13px; margin-top: 12px; max-width: 360px; }
.footer-head { color: var(--text); font-weight: 700; margin-bottom: 10px; font-size: 14px; }
.footer-grid a { text-decoration: none; color: var(--text-dim); font-size: 14px; }
.footer-grid a:hover { color: var(--accent); }
.footer-grid p { color: var(--text-dim); font-size: 14px; margin-bottom: 4px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; font-size: 12px; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--accent); }

/* ==== Responsive ==== */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-left h1 { font-size: 48px; }
  .cards, .steps, .pricing { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .glass-card { transform: none; }
}

@media (max-width: 640px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px 24px 30px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .hamburger { display: flex; }
  .hero-left h1 { font-size: 34px; letter-spacing: -1px; }
  .hero { padding: 60px 0 80px; }
  .section { padding: 70px 0; }
  .h2 { font-size: 30px; }
}

/* ==== SEO text ==== */
.seo-text { border-bottom: 1px solid var(--border); }
.seo-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 30px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.seo-columns p { color: var(--text-dim); font-size: 15px; margin-bottom: 16px; }
.seo-columns strong { color: var(--text); }
.seo-columns a { color: var(--accent); text-decoration: none; }
.seo-columns a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .seo-columns { grid-template-columns: 1fr; }
}
