:root {
  color-scheme: dark;
  --bg: #050712;
  --panel: rgba(255,255,255,.07);
  --panel-strong: rgba(255,255,255,.11);
  --line: rgba(255,255,255,.14);
  --text: #f7f8ff;
  --muted: #a9b2c7;
  --soft: #7f8aa3;
  --purple: #8b5cf6;
  --cyan: #22d3ee;
  --pink: #f0abfc;
  --green: #34d399;
  --yellow: #fbbf24;
  --radius: 24px;
  --max: 1160px;
  --shadow: 0 28px 90px rgba(0,0,0,.48);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 4%, rgba(139,92,246,.34), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(34,211,238,.18), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(240,171,252,.13), transparent 32%),
    linear-gradient(180deg, #050712 0%, #080b18 48%, #050712 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5,7,18,.78);
  backdrop-filter: blur(18px);
}
.nav { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.04em; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  box-shadow: 0 0 36px rgba(139,92,246,.48);
}
.nav-links { display: flex; align-items: center; gap: 20px; color: var(--muted); font-weight: 650; }
.nav-links a:hover { color: var(--text); }
.menu-button {
  display: none;
  background: rgba(255,255,255,.06);
  color: var(--text); border: 1px solid var(--line);
  border-radius: 12px; padding: 9px 11px;
}
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 800; cursor: pointer; transition: .18s ease; white-space: nowrap;
}
.button:hover { transform: translateY(-1px); }
.primary { background: linear-gradient(135deg, var(--purple), var(--cyan)); color: white; box-shadow: 0 14px 34px rgba(139,92,246,.25); }
.secondary { background: rgba(255,255,255,.075); border-color: var(--line); color: var(--text); }
.disabled { background: rgba(255,255,255,.055); border-color: var(--line); color: var(--soft); cursor: not-allowed; }
.hero { padding: 84px 0 66px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(139,92,246,.38); background: rgba(139,92,246,.12);
  color: #ded4ff; border-radius: 999px; padding: 7px 12px; font-weight: 800; font-size: .86rem;
}
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -.055em; }
h1 { font-size: clamp(3.2rem, 8vw, 6.6rem); margin: 22px 0 18px; }
h1 span, .gradient-text {
  background: linear-gradient(135deg, #fff 0%, #cdbdff 48%, #80efff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-subtitle { max-width: 820px; font-size: clamp(1.18rem, 2.8vw, 2rem); font-weight: 900; letter-spacing: -.04em; }
.lead { max-width: 780px; color: var(--muted); font-size: 1.08rem; margin: 16px 0 0; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-card {
  position: relative; overflow: hidden; border-radius: 34px; padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.hero-card:before {
  content: ""; position: absolute; inset: -1px;
  background: radial-gradient(circle at 15% 0%, rgba(139,92,246,.40), transparent 42%);
  pointer-events: none;
}
.terminal {
  position: relative; border-radius: 24px; padding: 18px;
  background: rgba(3,7,18,.78); border: 1px solid rgba(255,255,255,.11);
}
.dots { display: flex; gap: 6px; margin-bottom: 12px; }
.dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.34); }
.line { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); color: var(--muted); font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .9rem; }
.line strong { color: var(--text); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pill { color: var(--muted); border: 1px solid var(--line); background: rgba(255,255,255,.055); border-radius: 999px; padding: 7px 11px; font-size: .86rem; font-weight: 750; }
.section { padding: 62px 0; }
.section-head { margin-bottom: 26px; max-width: 780px; }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.35rem); }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }
.featured {
  display: grid; grid-template-columns: 1fr .85fr; gap: 20px; padding: 28px;
  border-radius: 34px; border: 1px solid rgba(139,92,246,.36);
  background: linear-gradient(135deg, rgba(139,92,246,.20), rgba(34,211,238,.08));
  box-shadow: var(--shadow);
}
.card, .tool, .faq, .blog-card {
  border: 1px solid var(--line); background: var(--panel); border-radius: var(--radius);
  padding: 22px; box-shadow: 0 12px 36px rgba(0,0,0,.18);
}
.card p, .tool p, .faq p, .blog-card p { color: var(--muted); margin: 0 0 16px; }
.tool-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.status { display: inline-flex; border-radius: 999px; padding: 5px 10px; font-size: .78rem; font-weight: 900; margin-bottom: 14px; }
.live { color: #a7f3d0; background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.32); }
.soon { color: #fde68a; background: rgba(251,191,36,.10); border: 1px solid rgba(251,191,36,.28); }
.tool h3, .card h3, .blog-card h3, .featured h3 { font-size: 1.32rem; margin-bottom: 10px; }
.disclaimer { color: #fde68a; background: rgba(251,191,36,.08); border: 1px solid rgba(251,191,36,.30); border-radius: var(--radius); padding: 20px; margin-top: 18px; }
.page-hero { padding: 74px 0 30px; }
.page-hero h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
.article { max-width: 880px; margin: 0 auto; padding: 36px 0 80px; }
.article-box { background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.article h2 { font-size: 2rem; margin: 38px 0 12px; }
.article p, .article li { color: var(--muted); font-size: 1.05rem; }
.article a { color: #c4b5fd; text-decoration: underline; text-underline-offset: 4px; }
.footer { border-top: 1px solid var(--line); padding: 42px 0; background: rgba(0,0,0,.18); color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 24px; }
.footer-links { display: grid; gap: 8px; margin-top: 10px; }
.footer a:hover { color: var(--text); }
@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: 74px; left: 16px; right: 16px; padding: 18px; border-radius: 18px; border: 1px solid var(--line); background: rgba(8,12,28,.97); box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .menu-button { display: inline-flex; }
  .hero-grid, .featured, .tool-grid, .grid-3, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 22px, var(--max)); }
  .actions .button, .tool .button { width: 100%; }
  .featured, .card, .tool, .faq, .blog-card { padding: 18px; }
}
