
/* base.css -- extracted from xanguard.tech blog posts */

/* ── Premium noir typography (self-hosted; CSP font-src 'self') ── */
/* Both families are variable fonts (Space Grotesk wght 300-700, JetBrains Mono wght 400-800); the old per-weight files were byte-identical copies, so one file per family covers every weight. */
@font-face { font-family: 'Space Grotesk'; src: url('/fonts/space-grotesk-400.woff2') format('woff2'); font-weight: 300 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('/fonts/jetbrains-mono-400.woff2') format('woff2'); font-weight: 400 800; font-style: normal; font-display: swap; }

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

:root {
  /* Premium noir + champagne gold. One accent, zero gradients, hairline borders. */
  --bg-primary: #0b0b0d;
  --bg-secondary: #101013;
  --bg-card: #141417;
  --bg-card-hover: #1a1a1f;
  --border: #242429;
  --border-glow: rgba(212, 175, 55, 0.18);
  --accent: #d4af37;
  --accent-bright: #e6c966;
  --accent-dim: #a8892f;
  --accent-glow: rgba(212, 175, 55, 0.10);
  --accent-secondary: #c9a227;
  --text-primary: #f2f1ec;
  --text-secondary: #a7a49b;
  --text-muted: #6d6a61;
  --success: #3ecf8e;
  --warning: #e6b93f;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Cascadia Code', Consolas, monospace;
  --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-bright); text-decoration: none; transition: color 0.2s; }

a:hover { color: var(--accent); }

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ accordion — BEM style (homepage, communities, tracker, eca, referral) */
.faq { padding: 100px 0; background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq__header { text-align: center; margin-bottom: 48px; }
.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; transition: border-color 0.3s; }
.faq__item:hover { border-color: var(--accent-dim); }
.faq__question { width: 100%; padding: 20px 32px; background: var(--bg-card); border: none; color: var(--text-primary); font-size: 15px; font-weight: 600; text-align: center; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 16px; font-family: var(--font-sans); }
.faq__question-icon { font-size: 18px; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq__item.open .faq__question-icon { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq__item.open .faq__answer { max-height: 300px; }
.faq__answer-inner { padding: 0 48px 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; background: var(--bg-card); text-align: center; }


/* Pricing cards — shared across homepage + product pages */
.pricing { padding: 100px 0; background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing__header { text-align: center; margin-bottom: 64px; }
.pricing__header .section-subtitle { margin: 0 auto; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; transition: all 0.3s ease; position: relative; }
.pricing-card:hover { transform: translateY(-4px); border-color: var(--accent-dim); }
.pricing-card--featured { border-color: var(--accent-dim); background: var(--bg-card-hover); box-shadow: none; }
.pricing-card--featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-secondary)); }
.pricing-card__popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); }
.pricing-card__name { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.pricing-card__desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-card__price { margin-bottom: 24px; }
.pricing-card__amount { font-size: 42px; font-weight: 800; line-height: 1; }
.pricing-card__amount .currency { font-size: 22px; vertical-align: top; color: var(--text-muted); }
.pricing-card__period { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.pricing-card__per-account { font-size: 12px; color: var(--accent); margin-top: 4px; }
.pricing-card__features { list-style: none; flex: 1; margin-bottom: 24px; }
.pricing-card__features li { padding: 8px 0; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.pricing-card__features li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--accent-glow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%2300d4ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.pricing-card .btn { width: 100%; justify-content: center; }
@media (max-width: 900px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing__grid { grid-template-columns: 1fr; } }


/* nav.css -- extracted from xanguard.tech blog posts */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav__logo-icon {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; color: #0b0b0d;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--accent-bright); }

.nav__links a.active { color: var(--accent); }

.nav__dropdown { position: relative; }

.nav__dropdown-toggle {
  display: flex; align-items: center; gap: 5px;
  color: var(--text-secondary); font-size: 14px; font-weight: 500;
  cursor: pointer; background: none; border: none;
  font-family: var(--font-sans); padding: 0; transition: color 0.2s;
}

.nav__dropdown-toggle:hover { color: var(--text-primary); }

.nav__dropdown-toggle svg { transition: transform 0.2s; }

.nav__dropdown.open .nav__dropdown-toggle svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  display: none; position: absolute;
  top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  min-width: 280px;
  background: rgba(20, 26, 46, 0.98); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4); z-index: 200;
}

.nav__dropdown.open .nav__dropdown-menu {
  display: block; animation: fadeInUp 0.15s ease both;
}

.nav__dropdown-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; border-radius: var(--radius-sm);
  transition: background 0.15s; text-decoration: none;
}

.nav__dropdown-item:hover { background: var(--bg-card-hover); }

.nav__dropdown-item__icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.nav__dropdown-item__icon--blue { background: var(--accent-glow); }

.nav__dropdown-item__icon--purple { background: #c9a22718; }

.nav__dropdown-item__icon--orange { background: #ff8c0018; }

.nav__dropdown-item__icon--red { background: #ff3b3b18; }

.nav__dropdown-item__icon--yellow { background: #ffb02018; }

.nav__dropdown-item__text { flex: 1; }

.nav__dropdown-item__title {
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  display: flex; align-items: center; gap: 6px;
}

.nav__dropdown-item__title .tag {
  font-size: 10px; font-weight: 600; padding: 1px 6px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px;
}

.tag--new { background: #c9a22725; color: var(--accent-secondary); }

.tag--free { background: #00e68a18; color: var(--success); }

.nav__dropdown-item__desc {
  font-size: 12px; color: var(--text-muted); margin-top: 2px; line-height: 1.4;
}

.nav__dropdown-divider { height: 1px; background: var(--border); margin: 4px 12px; }

@media (max-width: 768px) {
  .nav__dropdown-menu {
    position: static; transform: none; min-width: unset;
    background: transparent; backdrop-filter: none;
    border: none; box-shadow: none; padding: 0 0 0 8px;
    display: none;
  }
  .nav__dropdown.open .nav__dropdown-menu { display: block; animation: none; }
  .nav__dropdown-item { padding: 8px; }
  .nav__dropdown-divider { margin: 4px 8px; }
}

.nav__mobile-toggle {
  display: none;
  background: none; border: none;
  color: var(--text-primary); font-size: 24px;
  cursor: pointer; padding: 4px;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(16px);
    padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav__mobile-toggle { display: block; }
  .nav__cta-mobile { display: inline-flex !important; }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav__dropdown-item__icon--blue { background: #d4af3718; }

.nav__dropdown-item__icon--green { background: #00e68a18; }

.tag--new { background: #ff3b3b25; color: var(--accent); }

.nav__logo:hover { color: var(--text-primary); }

.nav__dropdown-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.nav__dropdown-dot--blue { background: #3b82f6; }
.nav__dropdown-dot--purple { background: #a855f7; }
.nav__dropdown-dot--orange { background: #f97316; }
.nav__dropdown-dot--red { background: #ff3b3b; }
.nav__dropdown-dot--amber { background: #f5a623; }

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px);
}

/* buttons.css -- extracted from xanguard.tech blog posts */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #0b0b0d;
  box-shadow: none;
  font-weight: 700;
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--accent-bright);
  box-shadow: none;
  color: #0b0b0d;
}

.btn--purple {
  background: var(--accent);
  color: #0b0b0d;
  box-shadow: none;
  font-weight: 700;
}

.btn--purple:hover {
  transform: translateY(-2px);
  background: var(--accent-bright);
  box-shadow: none;
  color: #0b0b0d;
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--accent-dim);
  color: var(--accent-bright);
  background: var(--accent-glow);
}

.btn--sm { padding: 10px 20px; font-size: 13px; }

.btn--red {
  background: linear-gradient(135deg, #ff3b3b, #cc2020);
  color: #e8edf5;
  box-shadow: 0 4px 20px rgba(255, 59, 59, 0.25);
}

.btn--red:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff5555, #dd3030);
  box-shadow: 0 8px 28px rgba(255, 59, 59, 0.35);
  color: #e8edf5;
}

.btn--amber {
  background: #f5a623;
  color: #000;
  border: 1px solid #f5a623;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--amber:hover {
  background: #d4891a;
  border-color: #d4891a;
}

.btn--green {
  background: #00e68a;
  color: #000;
  border: 1px solid #00e68a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--green:hover {
  background: #00cc7a;
  border-color: #00cc7a;
}

.btn--orange {
  background: linear-gradient(135deg, #ff8c00, #e07000);
  color: #fff;
  box-shadow: none;
}

.btn--orange:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffa030, #ff8c00);
  box-shadow: none;
  color: #fff;
}

.btn--gold {
  background: linear-gradient(135deg, #f5a623, #d4911e);
  color: #000;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.btn--gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffb840, #f5a623);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.4);
  color: #000;
}

.nav__links a.btn--gold,
.nav__links a.btn--gold:hover { color: #000; }

/* Same specificity war hit btn--primary/btn--purple in the nav: the gold
   "Start Free" button inherited --text-secondary (gray) from
   `.nav__links a` (0,1,1) over `.btn--primary`'s #0b0b0d (0,1,0) —
   gold-on-gray, unreadable. Patch primary/purple like gold above. */
.nav__links a.btn--primary,
.nav__links a.btn--primary:hover,
.nav__links a.btn--purple,
.nav__links a.btn--purple:hover { color: #0b0b0d; }

.nav__links a.btn--orange:hover { color: #fff; }

.nav__links a.btn--green:hover { color: #fff; }

/* animations.css -- extracted from xanguard.tech blog posts */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* footer.css — editorial footer (2026-07 redesign) */

.footer {
  padding: 72px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 48px;
}

.footer__brand { display: flex; align-items: center; gap: 14px; }

.footer__logo-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 19px; color: #0b0b0d;
}

.footer__brand-text { display: flex; flex-direction: column; }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.footer__brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer__status a { color: var(--success); }
.footer__status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  animation: termPulse 1.8s ease-in-out infinite;
}
@keyframes termPulse { 0%,100% { opacity: 0.35; } 50% { opacity: 1; } }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 220px));
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer__col { display: flex; flex-direction: column; gap: 12px; }

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer__col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--accent-bright); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer__copy { font-size: 13px; color: var(--text-muted); }
.footer__copy--right { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; }
.footer__machine { font-family: var(--font-mono); font-size: 11px; }
.footer__machine a { color: var(--text-muted); text-decoration: none; margin-left: 10px; }
.footer__machine a:hover { color: var(--text); text-decoration: underline; }

@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; }
}

/* scrollbar.css -- extracted from xanguard.tech blog posts */

::-webkit-scrollbar { width: 8px; height: 8px; }

::-webkit-scrollbar-track { background: var(--bg-primary); }

::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* premium.css — Xanguard noir/gold design system (2026-07 redesign)
   Loaded after base/buttons/nav/footer — wins by cascade. Zero gradients,
   zero glow. Type does the work: Space Grotesk display + JetBrains Mono data. */

/* ── Film grain (self-contained SVG turbulence, CSP-safe) ── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Shared atoms ── */
.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.hairline-top { border-top: 1px solid var(--border); }

/* ── Mega hero (homepage) ── */
.mega-hero {
  position: relative;
  padding: 180px 0 0;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(212,175,55,0.06), transparent 60%),
    var(--bg-primary);
}
.mega-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}
.mega-hero__label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.mega-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.2vw, 104px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  max-width: 16ch;
}
.mega-hero__title em {
  font-style: normal;
  color: var(--accent-bright);
}
.mega-hero__sub {
  margin-top: 32px;
  max-width: 62ch;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--text-secondary);
}
.mega-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.mega-hero__meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.mega-hero__meta-item { min-width: 120px; }
.mega-hero__meta-value {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
}
.mega-hero__meta-value b { color: var(--accent-bright); font-weight: 600; }
.mega-hero__meta-label {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Terminal (delivery receipts) ── */
.terminal-wrap {
  margin-top: 64px;
  border-top: 1px solid var(--border);
  padding: 40px 0 0;
}
.terminal {
  background: #0d0d10;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.terminal__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: #101014;
}
.terminal__dot { width: 10px; height: 10px; border-radius: 50%; background: #2c2c33; }
.terminal__dot--gold { background: var(--accent); }
.terminal__title {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.terminal__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent-bright);
}
.terminal__live::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-bright);
  animation: termPulse 1.6s ease-in-out infinite;
}
@keyframes termPulse { 0%,100% { opacity: 0.35; } 50% { opacity: 1; } }
.terminal__body {
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 2.05;
  overflow-x: auto;
  white-space: nowrap;
}
.terminal__row { display: block; color: var(--text-secondary); }
.terminal__ts { color: var(--text-muted); }
.terminal__handle { color: var(--text-primary); }
.terminal__ms { color: var(--accent-bright); }
.terminal__pipe { color: var(--accent); }
.terminal__text { color: var(--text-muted); }
@media (max-width: 720px) {
  .terminal__body { font-size: 11px; white-space: normal; }
}

/* ── Ticker ── */
.ticker {
  margin-top: 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-secondary);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 46s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}
.ticker__item b { color: var(--accent-bright); font-weight: 600; }
.ticker__sep { color: var(--accent); }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* ── Numbered editorial rows (products) ── */
.prow {
  display: grid;
  grid-template-columns: 90px 1.2fr 2fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  transition: background 0.25s ease, padding 0.25s ease;
}
.prow:hover { background: var(--bg-card); padding-left: 16px; }
.prow__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
}
.prow__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.prow__desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.prow__price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-bright);
  white-space: nowrap;
}
@media (max-width: 860px) {
  .prow { grid-template-columns: 48px 1fr; }
  .prow__desc, .prow__price { grid-column: 2; }
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 720px) {
  .mega-hero { padding-top: 130px; }
  .mega-hero__meta { gap: 24px; }
}

