/* ============================================================
   XENO EXECUTOR — styles.css
   Dark premium design · Xeno green accent #22c55e
   Typography: Space Grotesk (display) · Inter (body) · JetBrains Mono (code)
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  /* Background layers */
  --bg:   #0a0a0a;
  --bg-1: #111111;
  --bg-2: #181818;
  --bg-3: #202020;

  /* Borders */
  --b:      rgba(255,255,255,.07);
  --b-str:  rgba(255,255,255,.13);

  /* Xeno green */
  --g:      #22c55e;
  --g-l:    #4ade80;
  --g-d:    #16a34a;
  --g-10:   rgba(34,197,94,.1);
  --g-20:   rgba(34,197,94,.2);
  --glow:   0 0 28px rgba(34,197,94,.28);

  /* Text */
  --t-1: rgba(255,255,255,.92);
  --t-2: rgba(255,255,255,.58);
  --t-3: rgba(255,255,255,.32);
  --t-4: rgba(255,255,255,.1);
  --white: #fff;

  /* Type */
  --fd: 'Space Grotesk', system-ui, sans-serif;
  --fm: 'JetBrains Mono', 'Fira Code', monospace;
  --fb: 'Inter', system-ui, sans-serif;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Ease */
  --ease: cubic-bezier(.22,1,.36,1);
  --t: .26s var(--ease);
  --ts: .45s var(--ease);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--t-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; border: none; background: none; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
[hidden] { display: none !important; }

/* Screen-reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--fd);
  color: var(--white);
  line-height: 1.14;
  letter-spacing: -.025em;
}
h3 { letter-spacing: -.01em; }
p { color: var(--t-2); line-height: 1.72; }
em { color: var(--g); font-style: normal; }
strong { color: var(--t-1); }

/* ---- LAYOUT ---- */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 96px; }

/* ---- SECTION HEADER ---- */
.section-head { text-align: center; margin-bottom: 56px; }
.eyebrow {
  display: inline-block;
  font-family: var(--fm);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  margin-bottom: 12px;
}
.section-head p { font-size: 1.05rem; max-width: 500px; margin-inline: auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fd);
  font-weight: 600;
  border-radius: var(--r-md);
  transition: var(--t);
  white-space: nowrap;
  outline: none;
}
.btn:focus-visible { outline: 2px solid var(--g); outline-offset: 3px; }

/* Primary: Xeno Green */
.btn-green {
  background: var(--g);
  color: #030a05;
  padding: .65rem 1.35rem;
  font-size: .92rem;
}
.btn-green:hover {
  background: var(--g-l);
  box-shadow: var(--glow), 0 4px 24px rgba(34,197,94,.28);
  transform: translateY(-2px);
}
.btn-green:active { transform: translateY(0); }

/* Ghost / outline */
.btn-outline {
  color: var(--t-1);
  border: 1px solid var(--b-str);
  padding: .65rem 1.35rem;
  font-size: .92rem;
}
.btn-outline:hover {
  background: var(--t-4);
  border-color: rgba(34,197,94,.5);
  color: var(--white);
}

/* Sizes */
.btn-sm  { padding: .48rem .95rem; font-size: .82rem; border-radius: var(--r-sm); }
.btn-lg  { padding: .82rem 1.7rem; font-size: 1rem;   border-radius: var(--r-md); }
.btn-xl  { padding: .96rem 2.2rem; font-size: 1.08rem; border-radius: var(--r-lg); }
.btn-full { width: 100%; justify-content: center; }

/* ---- BADGES ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .28rem .72rem;
  border-radius: 100px;
  font-family: var(--fm);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.badge-green { background: var(--g-10); color: var(--g); border: 1px solid var(--g-20); }
.badge-dim   { background: var(--t-4);  color: var(--t-2); border: 1px solid var(--b); }

.badge-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--g); flex-shrink: 0;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10,10,10,.8);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--b);
  transition: box-shadow var(--t);
}
.site-header.is-scrolled { box-shadow: 0 1px 32px rgba(0,0,0,.4); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fd);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo img { border-radius: 6px; }
.nav-logo strong { color: var(--g); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-link {
  padding: .42rem .78rem;
  border-radius: var(--r-sm);
  color: var(--t-2);
  font-size: .875rem;
  font-weight: 500;
  transition: var(--t);
}
.nav-link:hover { color: var(--white); background: var(--t-4); }

.nav-cta { margin-left: auto; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .35rem;
  border-radius: var(--r-sm);
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 21px; height: 2px;
  background: var(--t-2); border-radius: 2px; transition: var(--t);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 16px 18px;
  border-top: 1px solid var(--b);
}
.mobile-link {
  padding: .65rem .8rem;
  color: var(--t-2);
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: var(--t);
}
.mobile-link:hover { color: var(--white); background: var(--t-4); }

/* ---- BREADCRUMB ---- */
.breadcrumb-nav {
  border-bottom: 1px solid var(--b);
  padding-block: .55rem;
}
.breadcrumb-nav ol {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--fm);
  font-size: .72rem;
  color: var(--t-3);
}
.breadcrumb-nav a { color: var(--g); }
.breadcrumb-nav li + li::before { content: '/'; margin-right: .4rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* Subtle green glow from the top */
.hero-glow-top {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(34,197,94,.1) 0%, transparent 65%);
  filter: blur(60px);
}

/* Dot grid */
.hero-grid-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 35%, black 0%, transparent 100%);
}

.hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.hero-text { text-align: center; max-width: 740px; }

.hero-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(3.8rem, 11vw, 7rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
  margin-bottom: 22px;
  background: linear-gradient(170deg, #fff 55%, rgba(255,255,255,.45) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.3vw, 1.25rem);
  color: var(--t-2);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Stats row */
.hero-stats {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 36px;
  border-right: 1px solid var(--b);
  gap: 2px;
}
.hero-stats li:last-child { border-right: none; }
.hero-stats strong {
  font-family: var(--fd);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
}
.hero-stats span {
  font-size: .72rem;
  color: var(--t-3);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Screenshot */
.hero-screenshot { width: 100%; align-self: center; }

.screenshot-window {
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  border: 1px solid var(--b-str);
  border-bottom: none;
  background: var(--bg-1);
  overflow: hidden;
  box-shadow: 0 -8px 60px rgba(34,197,94,.1), 0 40px 100px rgba(0,0,0,.7);
  animation: floatY 9s ease-in-out infinite;
  will-change: transform;
}

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

/* Fake window chrome */
.window-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #141414;
  border-bottom: 1px solid var(--b);
}
.chrome-dot {
  width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0;
}
.chrome-dot--red    { background: #ff5f56; }
.chrome-dot--yellow { background: #ffbd2e; }
.chrome-dot--green  { background: var(--g); }
.chrome-title {
  font-family: var(--fm);
  font-size: .75rem;
  color: var(--t-2);
  margin-left: 4px;
  flex: 1;
}
.chrome-badge {
  font-family: var(--fm);
  font-size: .62rem;
  font-weight: 700;
  color: var(--g);
  background: var(--g-10);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 100px;
  padding: .15rem .5rem;
  letter-spacing: .06em;
}

.screenshot-img {
  width: 100%;
  display: block;
  height: clamp(220px, 30vw, 380px);
  object-fit: cover;
  object-position: top center;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--bg-1); }

/* Grid with hairline separators (Linear-style) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--b);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--b); /* shows as gap lines */
  gap: 1px;
}

.feat-card {
  background: var(--bg-1);
  padding: 36px 32px;
  transition: background var(--t);
  position: relative;
}
.feat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--g), transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.feat-card:hover { background: var(--bg-2); }
.feat-card:hover::after { opacity: 1; }

.feat-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 18px;
  line-height: 1;
}
.feat-card h3 {
  font-family: var(--fd);
  font-size: .98rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.feat-card p {
  font-size: .875rem;
  color: var(--t-2);
  line-height: 1.68;
}

/* ============================================================
   SHOWCASE
   ============================================================ */
.showcase { background: var(--bg); overflow: hidden; }

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.showcase-fig { position: relative; overflow: hidden; border-radius: var(--r-lg); }
.showcase-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-lg);
  border: 1px solid var(--b-str);
  box-shadow: 0 24px 72px rgba(0,0,0,.55), 0 0 0 1px rgba(34,197,94,.08);
  transition: transform var(--ts);
  display: block;
}
.showcase-img:hover { transform: scale(1.015); }

.showcase-copy { display: flex; flex-direction: column; gap: 24px; }
.showcase-copy h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); }

.showcase-list { display: flex; flex-direction: column; gap: 14px; }
.showcase-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.check-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--g-10);
  color: var(--g);
  font-size: .7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.showcase-list strong { display: block; color: var(--t-1); font-size: .92rem; }
.showcase-list span { color: var(--t-2); font-size: .85rem; }

/* ============================================================
   CHANGELOG
   ============================================================ */
.changelog { background: var(--bg-1); }

.cl-list { display: flex; flex-direction: column; gap: 20px; }

.cl-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--b);
  border-radius: var(--r-xl);
  transition: border-color var(--t), background var(--t);
}
.cl-item:hover { border-color: var(--b-str); }

.cl-item--latest {
  border-color: rgba(34,197,94,.25);
  background: linear-gradient(135deg, rgba(34,197,94,.055) 0%, var(--bg-2) 55%);
}
.cl-item--latest:hover { border-color: rgba(34,197,94,.45); }

.cl-meta { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }

.cl-ver-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.ver-tag {
  font-family: var(--fm);
  font-size: .82rem;
  font-weight: 700;
  padding: .28rem .65rem;
  border-radius: var(--r-sm);
  background: var(--t-4);
  color: var(--t-1);
  border: 1px solid var(--b);
}
.ver-tag--current {
  background: var(--g-10);
  color: var(--g);
  border-color: rgba(34,197,94,.3);
}

.latest-label {
  font-family: var(--fm);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--g);
  color: #030a05;
  border-radius: 100px;
  padding: .18rem .55rem;
}

.cl-date {
  font-family: var(--fm);
  font-size: .72rem;
  color: var(--t-3);
  letter-spacing: .04em;
}

.cl-changes { display: flex; flex-direction: column; gap: 5px; }
.cl-changes li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: .88rem;
  color: var(--t-2);
  padding: 5px 8px;
  border-radius: var(--r-xs);
  transition: background var(--t);
}
.cl-changes li:hover { background: var(--t-4); }

/* Change type tags */
.ct {
  font-family: var(--fm);
  font-size: .62rem;
  font-weight: 700;
  padding: .15rem .42rem;
  border-radius: 3px;
  flex-shrink: 0;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.ct--new { background: rgba(34,197,94,.14);   color: #4ade80; }
.ct--imp { background: rgba(99,102,241,.14);  color: #818cf8; }
.ct--fix { background: rgba(251,146,60,.14);  color: #fb923c; }

/* ============================================================
   SYSTEM REQUIREMENTS
   ============================================================ */
.requirements { background: var(--bg); }

.req-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.req-table-wrap {
  border: 1px solid var(--b);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.req-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.req-table th, .req-table td {
  padding: 13px 20px;
  text-align: left;
  border-bottom: 1px solid var(--b);
}
.req-table tr:last-child td { border-bottom: none; }
.req-table thead th {
  background: var(--bg-2);
  font-family: var(--fm);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t-3);
  padding-block: 16px;
}
.req-table thead th:nth-child(2) { color: var(--g); }
.req-table tbody tr { background: var(--bg-1); transition: background var(--t); }
.req-table tbody tr:hover { background: var(--bg-2); }
.req-table tbody td { color: var(--t-2); }
.req-table tbody td:first-child strong { color: var(--t-1); }
.req-table tbody td:nth-child(2) { color: var(--t-1); }

.compat-card {
  background: var(--bg-2);
  border: 1px solid var(--b);
  border-radius: var(--r-xl);
  padding: 24px;
}
.compat-title {
  font-family: var(--fm);
  font-size: .68rem;
  font-weight: 700;
  color: var(--t-3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.compat-list { display: flex; flex-direction: column; gap: 9px; }
.compat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--t-2);
}
.compat-check {
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--g-10);
  color: var(--g);
  font-size: .68rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.compat-note { margin-top: 16px; font-size: .78rem; color: var(--t-3); }

/* ============================================================
   COMPARISON
   ============================================================ */
.comparison { background: var(--bg-1); }

.comp-wrap {
  border: 1px solid var(--b);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.comp-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.comp-table th, .comp-table td {
  padding: 15px 24px;
  text-align: left;
  border-bottom: 1px solid var(--b);
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table thead th {
  background: var(--bg-2);
  font-family: var(--fm);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t-3);
  padding-block: 18px;
}
.comp-table thead .col-xeno { color: var(--g) !important; }
.col-xeno { background: rgba(34,197,94,.04); }
.comp-table tbody tr { background: var(--bg-1); transition: background var(--t); }
.comp-table tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }
.comp-table tbody tr:hover { background: var(--bg-2); }
.comp-table td:first-child { color: var(--t-2); }
.comp-win { color: var(--g); font-weight: 600; }

/* ============================================================
   INSTALLATION
   ============================================================ */
.installation { background: var(--bg); }

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--bg-2);
  border: 1px solid var(--b);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.step-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--g), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.step-card:hover { border-color: rgba(34,197,94,.3); background: var(--bg-3); transform: translateY(-5px); }
.step-card:hover::before { transform: scaleX(1); }

.step-num {
  display: block;
  font-family: var(--fm);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--g);
  opacity: .2;
  line-height: 1;
  margin-bottom: 18px;
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--fd);
}
.step-card > p { font-size: .875rem; color: var(--t-2); margin-bottom: 16px; }

/* Mini checklist inside step cards */
.step-checklist {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}
.step-checklist li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: .835rem;
  color: var(--t-2);
  line-height: 1.5;
}
.step-checklist li::before {
  content: '—';
  color: var(--g);
  font-family: var(--fm);
  font-size: .72rem;
  flex-shrink: 0;
  opacity: .8;
}

/* ============================================================
   COMMUNITY
   ============================================================ */
.community { background: var(--bg-1); }

.community-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.community-left { display: flex; flex-direction: column; gap: 24px; }
.community-left h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.community-left > p { font-size: .975rem; }

.community-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
}
.community-stats li { display: flex; flex-direction: column; gap: 2px; }
.community-stats strong {
  font-family: var(--fd);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.025em;
}
.community-stats span {
  font-size: .72rem;
  color: var(--t-3);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.community-quote { font-size: .85rem; color: var(--t-3); font-style: italic; }

.community-card {
  background: var(--bg-2);
  border: 1px solid var(--b);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dev-header { display: flex; align-items: center; gap: 14px; }
.dev-avatar { border-radius: var(--r-md); }
.dev-name { display: block; font-weight: 600; color: var(--t-1); font-size: .95rem; }
.dev-role { font-size: .78rem; color: var(--t-3); }
.dev-bio { font-size: .875rem; color: var(--t-2); line-height: 1.7; }

.discord-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: var(--r-md);
  background: rgba(114,137,218,.12);
  color: #7289da;
  font-size: .875rem;
  font-weight: 600;
  font-family: var(--fd);
  border: 1px solid rgba(114,137,218,.22);
  transition: var(--t);
}
.discord-btn:hover {
  background: rgba(114,137,218,.22);
  transform: translateX(4px);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-inner { max-width: 700px; }
.faq-inner .section-head { text-align: left; }

.faq-list {
  border: 1px solid var(--b);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--b); transition: var(--t); }
.faq-item:last-child { border-bottom: none; }

.faq-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  background: var(--bg-1);
  color: var(--t-1);
  font-size: .93rem;
  font-weight: 600;
  font-family: var(--fd);
  text-align: left;
  transition: background var(--t);
}
.faq-btn:hover { background: var(--bg-2); }
.faq-btn[aria-expanded="true"] { background: var(--bg-2); color: var(--white); }

.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--b-str);
  display: flex; align-items: center; justify-content: center;
  color: var(--g);
  transition: transform var(--t), background var(--t);
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--g);
  border-radius: 2px;
  transition: var(--t);
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; }
.faq-btn[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-btn[aria-expanded="true"] .faq-icon { background: var(--g-10); }

.faq-item dd {
  padding: 0 22px 18px;
  background: var(--bg-2);
}
.faq-item dd p { font-size: .88rem; color: var(--t-2); line-height: 1.72; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  background: linear-gradient(135deg, rgba(34,197,94,.09) 0%, var(--bg-1) 55%);
  border-top: 1px solid rgba(34,197,94,.15);
  border-bottom: 1px solid var(--b);
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 560px;
}
.cta-logo {
  border-radius: var(--r-lg);
  animation: logoPulse 4.5s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { filter: drop-shadow(0 0 8px rgba(34,197,94,0)); }
  50%      { filter: drop-shadow(0 0 24px rgba(34,197,94,.5)); }
}
.cta-title { font-size: clamp(2rem, 5vw, 3rem); }
.cta-sub { font-size: 1.05rem; color: var(--t-2); }
.cta-meta {
  font-family: var(--fm);
  font-size: .68rem;
  color: var(--t-3);
  letter-spacing: .07em;
}

/* ============================================================
   SOCIAL SHARE
   ============================================================ */
.social-share {
  background: var(--bg-1);
  border-top: 1px solid var(--b);
  padding-block: 20px;
}
.ss-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.ss-label {
  font-family: var(--fm);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--t-3);
  flex-shrink: 0;
}
.ss-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.ss-btn {
  padding: .4rem .88rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--b);
  background: var(--bg-2);
  color: var(--t-2);
  font-size: .78rem;
  font-weight: 500;
  transition: var(--t);
}
.ss-btn:hover {
  background: var(--bg-3);
  color: var(--white);
  border-color: var(--b-str);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--b); padding-block: 28px 20px; }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--b);
  margin-bottom: 14px;
}
.footer-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--fd); font-weight: 600; color: var(--t-1); font-size: .92rem;
}
.footer-copy { font-size: .78rem; color: var(--t-3); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: .78rem; color: var(--t-3); transition: color var(--t); }
.footer-links a:hover { color: var(--white); }
.footer-disclaimer { font-size: .73rem; color: var(--t-3); line-height: 1.6; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid       { grid-template-columns: repeat(2, 1fr); }
  .showcase-inner      { grid-template-columns: 1fr; }
  .showcase-fig        { order: 0; }
  .req-grid            { grid-template-columns: 1fr; }
  .compat-card         { max-width: none; }
  .community-inner     { grid-template-columns: 1fr; }
  .community-card      { max-width: 480px; }
}

@media (max-width: 768px) {
  .section             { padding-block: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle          { display: flex; }

  .hero { padding-top: 56px; }
  .hero-stats li { padding: 14px 22px; }

  .features-grid       { grid-template-columns: 1fr; }
  .steps-list          { grid-template-columns: 1fr; }

  .cl-item             { grid-template-columns: 1fr; gap: 14px; }
  .cl-meta             { flex-direction: row; align-items: center; flex-wrap: wrap; }

  .comp-table th, .comp-table td { padding: 11px 14px; font-size: .82rem; }

  .footer-inner        { flex-direction: column; align-items: flex-start; }
  .footer-links        { flex-wrap: wrap; }

  .community-stats     { gap: 24px; }
  .faq-inner           { max-width: 100%; }
}

@media (max-width: 480px) {
  .container           { padding-inline: 16px; }
  .hero-title          { font-size: 3.4rem; }
  .hero-ctas           { flex-direction: column; width: 100%; }
  .hero-ctas .btn      { width: 100%; justify-content: center; }

  .hero-stats          {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--b);
    border-radius: var(--r-md);
    gap: 0;
  }
  .hero-stats li       {
    border-right: none;
    border-bottom: 1px solid var(--b);
    padding: 14px 16px;
  }
  .hero-stats li:nth-child(1), .hero-stats li:nth-child(2) { border-right: 1px solid var(--b); }
  .hero-stats li:nth-child(3), .hero-stats li:nth-child(4) { border-bottom: none; }
  .hero-stats li:nth-child(2) { border-right: none; }
  .hero-stats li:nth-child(4) { border-right: none; }

  .section-head        { margin-bottom: 36px; }
  .section-head h2     { font-size: 1.65rem; }
  .feat-card           { padding: 24px; }
  .step-card           { padding: 24px; }
  .cl-item             { padding: 20px; }
  .cta-title           { font-size: 1.8rem; }
  .ss-inner            { flex-direction: column; align-items: flex-start; }

  .req-grid            { grid-template-columns: 1fr; }
  .comp-table          { font-size: .78rem; }
  .comp-table th, .comp-table td { padding: 9px 11px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .screenshot-window { animation: none; }
}
