/* Datagram Panels — shares the parent brand's design tokens for consistency */
:root {
  --bg:         #0a0a0a;
  --bg-surface: #1a1a1a;
  --bg-card:    #141414;
  --text:       #f5f5f5;
  --text-muted: #888;
  --accent:     #2563eb;
  --accent-hover:#1d4ed8;
  --warm:       #d4a853;
  --border:     #2a2a2a;
  --white:      #ffffff;

  --font-head:  'Space Grotesk', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --space-xs: 4px; --space-sm: 8px; --space-md: 16px; --space-lg: 24px;
  --space-xl: 32px; --space-2xl: 48px; --space-3xl: 96px;

  --radius: 8px;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg); }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-lg); }

/* ---- Nav ---- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(10,10,10,.85); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: var(--space-md) var(--space-lg); max-width: var(--max-width); margin: 0 auto; }
.nav__logo { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; text-decoration: none; letter-spacing: -.01em; }
.nav__logo span { color: var(--accent); }
.nav__back { font-size: .85rem; color: var(--text-muted); text-decoration: none; }
.nav__back:hover { color: var(--text); }

/* ---- Buttons ---- */
.btn { display: inline-block; padding: 13px 28px; border-radius: var(--radius); font-weight: 600; font-size: .95rem; text-decoration: none; border: none; cursor: pointer; font-family: var(--font-body); transition: background .15s, transform .15s; }
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn--outline:hover { border-color: var(--text-muted); }

/* ---- Hero ---- */
.hero { padding: var(--space-3xl) 0 var(--space-2xl); text-align: center; position: relative; overflow: hidden; }
.hero__eyebrow { font-family: var(--font-head); color: var(--accent); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; margin-bottom: var(--space-md); }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -.02em; margin-bottom: var(--space-lg); }
.hero__subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 620px; margin: 0 auto var(--space-xl); }
.hero__actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* ---- Sections ---- */
.section { padding: var(--space-3xl) 0; }
.section--surface { background: var(--bg-surface); }
.section__eyebrow { font-family: var(--font-head); color: var(--warm); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: .8rem; margin-bottom: var(--space-sm); text-align: center; }
.section__title { font-size: clamp(1.8rem, 4vw, 2.6rem); text-align: center; margin-bottom: var(--space-2xl); }

/* ---- Feature grid ---- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-lg); }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-xl); }
.feature-card__icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: var(--space-md); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: var(--space-sm); }
.feature-card p { color: var(--text-muted); font-size: .92rem; }

/* ---- Spec chips ---- */
.chip-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }
.chip { background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; font-size: .85rem; color: var(--text-muted); }

/* ---- CTA band ---- */
.cta-band { background: var(--accent); text-align: center; padding: var(--space-3xl) var(--space-lg); }
.cta-band__title { font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--white); margin-bottom: var(--space-md); }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: var(--space-xl); }
.cta-band .btn--primary { background: var(--white); color: var(--accent); }
.cta-band .btn--primary:hover { background: #f0f0f0; }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--border); padding: var(--space-xl) 0; text-align: center; color: var(--text-muted); font-size: .85rem; }
.footer a { color: var(--text-muted); text-decoration: none; margin: 0 8px; }
.footer a:hover { color: var(--text); }

@media (max-width: 640px) {
  .hero { padding: var(--space-2xl) 0 var(--space-xl); }
}
