:root {
  --bg: #06090a;
  --bg-alt: #0a100e;
  --panel: #0f1613;
  --text: #e9f2ec;
  --muted: #92a69b;
  --line: #18251f;
  --accent: #34d399;
  --accent-2: #a3e635;
  --grad: linear-gradient(120deg, #34d399, #a3e635);
  --radius: 16px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

/* Sale banner */
.sale-banner {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  align-items: center; justify-content: center;
  padding: 10px 18px;
  background: var(--grad);
  color: #06090a;
  font-size: .92rem;
  text-align: center;
}
.sale-banner__text strong { font-weight: 800; }
.sale-banner__cta {
  font-weight: 700;
  border-bottom: 1px solid rgba(6,9,10,.5);
  white-space: nowrap;
}
.sale-banner__cta:hover { border-color: #06090a; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(6,9,10,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.05rem; }
.brand__mark { width: 26px; height: 26px; display: block; flex: none; filter: drop-shadow(0 0 8px rgba(52,211,153,.28)); }
.brand__accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav { display: flex; gap: 26px; font-size: .92rem; color: var(--muted); }
.nav a:hover { color: var(--text); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(70px, 12vw, 140px) 0 clamp(60px, 9vw, 110px); }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; color: var(--accent); margin: 0 0 18px; font-weight: 600; }
.lede { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); max-width: 46ch; }
.lede strong { color: var(--text); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__wave { position: absolute; inset: 0; z-index: -1; opacity: .5; pointer-events: none; }
.wave-grid {
  position: absolute; right: -10%; top: -20%;
  width: 70vw; height: 70vw; max-width: 780px; max-height: 780px;
  background:
    radial-gradient(circle at 30% 30%, rgba(52,211,153,.32), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(163,230,53,.26), transparent 55%);
  filter: blur(30px);
  border-radius: 50%;
  animation: float 14s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-24px) scale(1.05); } }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: .95rem; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn--primary { background: var(--grad); color: #06090a; box-shadow: 0 8px 30px rgba(52,211,153,.25); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(163,230,53,.3); }
.btn--ghost { border: 1px solid var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); }
.btn--lg { padding: 15px 30px; font-size: 1.05rem; }

/* Sections */
.section { padding: clamp(56px, 9vw, 100px) 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.section p { color: var(--muted); }
.section p strong { color: var(--text); }

/* Feature list */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.feature-list li { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; color: var(--muted); }
.feature-list__k { display: block; color: var(--text); font-weight: 700; font-size: .95rem; margin-bottom: 2px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.step__num { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .85rem; color: var(--accent); }
.step h3 { margin-top: 10px; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .15s ease, border-color .15s ease; }
.card:hover { transform: translateY(-4px); border-color: var(--accent-2); }
.card p { margin: 0; font-size: .95rem; }
.section__intro { color: var(--muted); max-width: 60ch; margin: 0; font-size: 1.05rem; }

/* Acquire */
.section--acquire { background: var(--bg-alt); border-top: 1px solid var(--line); }
.acquire { text-align: center; max-width: 640px; }
.acquire__lede { font-size: 1.1rem; margin-bottom: 28px; }
.acquire .btn { margin-top: 6px; }
.acquire__contact { margin-top: 18px; font-size: .92rem; color: var(--muted); }
.acquire__contact a { color: var(--accent); border-bottom: 1px solid rgba(52,211,153,.4); }

/* Article / prose */
.article { padding: clamp(48px, 8vw, 90px) 0 clamp(56px, 9vw, 100px); }
.article .container { max-width: 760px; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 26px; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.article__title { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; }
.article__deck { font-size: 1.15rem; color: var(--muted); margin: 0 0 8px; }
.article__meta { font-size: .82rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 40px; }
.prose h2 { font-size: 1.6rem; margin-top: 48px; }
.prose h3 { font-size: 1.2rem; margin-top: 32px; }
.prose p { color: #c3d2c9; margin: 0 0 18px; }
.prose ul { color: #c3d2c9; padding-left: 22px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--text); }
.prose a:not(.btn) { color: var(--accent); border-bottom: 1px solid rgba(52,211,153,.35); }
.prose a:not(.btn):hover { border-color: var(--accent); }
.prose a.btn { border-bottom: none; }
.prose a.btn--primary { color: #06090a; }
.pull { border-left: 3px solid var(--accent); padding: 6px 0 6px 20px; margin: 28px 0; color: var(--text); font-size: 1.15rem; font-weight: 500; }
.article-cta { margin-top: 48px; padding: 30px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.article-cta h3 { margin-top: 0; }
.article-cta p { color: var(--muted); margin: 0 0 18px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 30px 0; font-size: .85rem; color: var(--muted); }
.site-footer__inner { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }

/* Responsive */
@media (max-width: 860px) {
  .nav { display: none; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}
