/* Cyberpunk Terminal Theme - Clash Download Site */
/* Dark base + neon green accents + matrix patterns */

:root {
  --bg-dark: #0a0e14;
  --bg-darker: #050709;
  --bg-panel: #0d1117;
  --bg-card: #161b22;
  --border: #30363d;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --accent: #00ff88;
  --accent-dim: #00cc6a;
  --accent-glow: rgba(0, 255, 136, 0.15);
  --cyan: #00d4ff;
  --purple: #a855f7;
  --orange: #ff6b35;
  --radius: 8px;
  --radius-lg: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Spin Animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Matrix Rain Background */
@keyframes matrix-fall {
  0% { transform: translateY(-100%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

.matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.matrix-column {
  position: absolute;
  top: -20px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--accent);
  opacity: 0.1;
  writing-mode: vertical-rl;
  animation: matrix-fall linear infinite;
}

/* Glow Effects */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow); }
  50% { box-shadow: 0 0 30px var(--accent-glow), 0 0 60px var(--accent-glow); }
}

@keyframes scan-line {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-icon {
  width: 36px;
  height: 36px;
}

.brand-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-text span {
  color: var(--accent);
}

.navlist {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navlist a {
  display: block;
  padding: 8px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.navlist a:hover {
  color: var(--text);
  background: var(--bg-card);
}

.navlist a.on {
  color: var(--accent);
  background: var(--accent-glow);
}

/* Sections */
.sec {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.sec-alt {
  background: var(--bg-panel);
}

.sec-dark {
  background: var(--bg-darker);
}

.sec-hd {
  text-align: center;
  margin-bottom: 48px;
}

.sec-label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.sec-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.sec-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    var(--bg-dark);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .hl {
  color: var(--accent);
  text-shadow: 0 0 30px var(--accent-glow);
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-val {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-lbl {
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-terminal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.terminal-body {
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.8;
}

.terminal-line {
  margin-bottom: 8px;
}

.terminal-prompt {
  color: var(--accent);
}

.terminal-cmd {
  color: var(--cyan);
}

.terminal-output {
  color: var(--text-muted);
}

.terminal-success {
  color: var(--accent);
}

/* Feature Grid */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--accent);
}

.feat-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feat-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Platform Grid */
.plat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}

.plat-card:hover {
  border-color: var(--accent);
  background: var(--bg-panel);
}

.plat-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent-glow), transparent);
}

.plat-ico {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--text);
}

.plat-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.plat-ver {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Deep Features - Alternating Rows */
.deep-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.deep-row:last-child {
  margin-bottom: 0;
}

.deep-row.rev {
  direction: rtl;
}

.deep-row.rev > * {
  direction: ltr;
}

.deep-info {
  max-width: 480px;
}

.deep-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-glow);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.deep-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.deep-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.deep-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Code Block */
.code-block {
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  overflow-x: auto;
}

.code-line {
  margin-bottom: 4px;
}

.code-comment {
  color: var(--text-muted);
}

.code-keyword {
  color: var(--purple);
}

.code-string {
  color: var(--accent);
}

.code-prop {
  color: var(--cyan);
}

/* Stats Bar */
.stats-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-item {
  flex: 1;
}

.stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: 14px;
  color: var(--text-muted);
}

/* Reviews Grid */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rev-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.rev-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rev-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--bg-dark);
}

.rev-info {
  flex: 1;
}

.rev-name {
  font-size: 15px;
  font-weight: 600;
}

.rev-role {
  font-size: 12px;
  color: var(--text-muted);
}

.rev-stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
}

.rev-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Comparison Table */
.cmp-wrap {
  overflow-x: auto;
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cmp-table th,
.cmp-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cmp-table th {
  background: var(--bg-panel);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cmp-table td {
  font-size: 14px;
}

.cmp-table tr:last-child td {
  border-bottom: none;
}

.cmp-table .hl {
  color: var(--accent);
  font-weight: 600;
}

.cmp-table .no {
  color: #ef4444;
}

.cmp-table .yes {
  color: var(--accent);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--bg-panel);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.open .faq-a {
  padding: 0 24px 20px;
  max-height: 500px;
}

.faq-a p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-panel));
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent);
  pointer-events: none;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.cta-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  position: relative;
}

/* Download Hero */
.dl-hero {
  padding: 120px 0 60px;
  background: 
    radial-gradient(ellipse at 50% 0%, var(--accent-glow), transparent),
    var(--bg-dark);
}

.dl-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.dl-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.dl-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* Main Download Box */
.dl-main {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
}

.dl-main::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  z-index: -1;
  opacity: 0.3;
  animation: pulse-glow 3s infinite;
}

.dl-main-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--accent);
}

.dl-main-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.dl-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.dl-meta-item {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dl-meta-item svg {
  width: 14px;
  height: 14px;
}

/* Other Platforms */
.other-plats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.op-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}

.op-card:hover {
  border-color: var(--cyan);
}

.op-ico {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  color: var(--text);
}

.op-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.op-ver {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Guide Steps */
.guide-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gstep {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}

.gstep-num {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin: 0 auto 16px;
}

.gstep-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gstep-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Requirements Grid */
.req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.req-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.req-ico {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--accent);
}

.req-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.req-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Version Timeline */
.ver-list {
  position: relative;
  padding-left: 24px;
}

.ver-list::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.ver-item {
  position: relative;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.ver-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 28px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
}

.ver-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-glow);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.ver-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 12px;
}

.ver-body {
  font-size: 14px;
  color: var(--text-muted);
}

/* Security Banner */
.sec-banner {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sec-ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--accent);
}

.sec-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.sec-text p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Article Layout */
.article-hero {
  padding: 120px 0 60px;
  background: 
    radial-gradient(ellipse at 20% 50%, var(--accent-glow), transparent),
    var(--bg-dark);
}

.article-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.article-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Keyword Strip */
.kw-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.kw {
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.kw:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Article Layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-body ul {
  margin: 16px 0;
  padding-left: 24px;
}

.article-body li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* Inline CTA */
.inline-cta {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}

.inline-cta p {
  margin-bottom: 16px;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 88px;
  height: fit-content;
}

.sbox {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.sbox-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sbox-links {
  list-style: none;
}

.sbox-links li {
  margin-bottom: 8px;
}

.sbox-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.sbox-links a:hover {
  color: var(--accent);
}

/* Sidebar Stats */
.sstat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sstat-item {
  text-align: center;
  padding: 12px;
  background: var(--bg-panel);
  border-radius: var(--radius);
}

.sstat-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.sstat-lbl {
  font-size: 11px;
  color: var(--text-muted);
}

/* Sidebar Security */
.side-security {
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.side-security svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
}

.side-security p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.footer-brand span {
  font-size: 18px;
  font-weight: 600;
}

.security-line {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent-dim);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--accent);
}

.btn-white {
  background: var(--text);
  color: var(--bg-dark);
}

.btn-white:hover {
  background: var(--accent);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .plat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .deep-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .deep-row.rev {
    direction: ltr;
  }
  
  .rev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .article-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
  }
  
  .guide-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .req-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .other-plats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .navlist {
    gap: 4px;
  }
  
  .navlist a {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .sec-title {
    font-size: 28px;
  }
  
  .feat-grid {
    grid-template-columns: 1fr;
  }
  
  .plat-grid {
    grid-template-columns: 1fr;
  }
  
  .rev-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-bar {
    flex-direction: column;
    gap: 24px;
  }
  
  .dl-title {
    font-size: 32px;
  }
  
  .guide-steps {
    grid-template-columns: 1fr;
  }
  
  .req-grid {
    grid-template-columns: 1fr;
  }
  
  .other-plats {
    grid-template-columns: 1fr;
  }
  
  .article-title {
    font-size: 28px;
  }
  
  .cta-banner {
    padding: 32px 24px;
  }
  
  .dl-main {
    padding: 28px;
  }
}
