@font-face {
  font-family: 'National';
  src: url('national-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --green:   #1ed760;
  --green-d: #0faf46;
  --green-g: #13f060;
  --bg:      #0a0a0f;
  --bg2:     #111118;
  --bg3:     #181820;
  --card:    rgba(255,255,255,0.035);
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --text:    #f0f0f5;
  --muted:   rgba(240,240,245,0.45);
  --muted2:  rgba(240,240,245,0.2);
  --radius:  18px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: default;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.55;
}

nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  display: inline-flex; align-items: center;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.07) 0%,
    rgba(255,255,255,0.03) 50%,
    rgba(255,255,255,0.06) 100%
  );
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  border-radius: 100px;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-left: 1px solid rgba(255,255,255,0.14);
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.5),
    0 2px 8px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    inset 0 1px 0 rgba(255,255,255,0.12);
  white-space: nowrap;
  padding: 0;
  overflow: hidden;
}

.nav-logo {
  font-family: 'National', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  display: flex; align-items: center;
  padding: 8px 20px 8px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--green); }

.nav-links {
  display: flex; align-items: center; gap: 0;
  list-style: none;
  padding: 0 6px;
}

.nav-links a {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(240,240,245,0.6); text-decoration: none;
  transition: color 0.2s, background 0.2s;
  padding: 13px 18px; border-radius: 100px;
  display: block;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em;
  background: linear-gradient(135deg, rgba(30,215,96,0.9) 0%, rgba(19,240,96,0.85) 100%);
  color: #050a05;
  padding: 10px 20px; border-radius: 100px;
  margin: 6px 8px 6px 4px;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  box-shadow:
    0 2px 12px rgba(30,215,96,0.3),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.nav-cta:hover {
  background: linear-gradient(135deg, rgba(40,235,110,0.95) 0%, rgba(30,255,110,0.9) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(30,215,96,0.4), inset 0 1px 0 rgba(255,255,255,0.35);
}

#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 15%, rgba(30,215,96,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(100,60,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(30,215,96,0.05) 0%, transparent 60%);
}

.blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.blob-1 {
  width: 500px; height: 500px;
  background: rgba(30,215,96,0.08);
  top: -100px; left: 50%; transform: translateX(-50%);
  animation: drift1 10s ease-in-out infinite alternate;
}
.blob-2 {
  width: 350px; height: 350px;
  background: rgba(100,50,240,0.07);
  bottom: 100px; right: -80px;
  animation: drift2 13s ease-in-out infinite alternate;
}
@keyframes drift1 {
  from { transform: translateX(-60%) translateY(0); }
  to   { transform: translateX(-40%) translateY(40px); }
}
@keyframes drift2 {
  from { transform: translate(0,0); }
  to   { transform: translate(-30px, -40px); }
}

.hero-content { position: relative; z-index: 1; text-align: center; max-width: 760px; }

h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -0.035em;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 em {
  font-style: normal; color: var(--green);
  text-shadow: 0 0 40px rgba(30,215,96,0.4);
}

.hero-sub {
  margin-top: 22px;
  font-size: 1.125rem; font-weight: 300; line-height: 1.65;
  color: var(--muted); max-width: 520px; margin-inline: auto;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  margin-top: 40px; display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.02em;
  background: var(--green); color: #030d03;
  padding: 14px 30px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  background: var(--green-g); transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(30,215,96,0.4);
}

.btn-ghost {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600;
  background: transparent; color: var(--muted);
  padding: 14px 30px; border-radius: 100px;
  border: 1px solid var(--border2);
  text-decoration: none; cursor: pointer;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

.hero-preview {
  position: relative; z-index: 1;
  margin-top: 72px; width: 100%; max-width: 620px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.widget-mockup {
  background: rgba(22, 23, 28, 0.97);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 16px 20px 18px;
  display: flex; flex-direction: column; gap: 0;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 30px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(30,215,96,0.06);
  position: relative; overflow: hidden;
  transition: box-shadow 0.6s ease;
  cursor: default;
}

.widget-mockup::after {
  content: '';
  position: absolute; top: 0; left: 16px; right: 16px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  pointer-events: none;
}

.wm-label {
  font-family: 'National', 'DM Mono', monospace;
  font-size: 7.5px; font-weight: 500;
  color: rgba(95, 97, 106, 1);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.wm-art {
  display: none;
}

.wm-info { flex: 1; min-width: 0; }

.wm-title-wrap { overflow: hidden; }

.wm-title {
  font-family: 'National', var(--font-display); font-weight: 700; font-size: 1.35rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 3px; color: #fcfcfe;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.wm-artist {
  font-size: 0.78rem; color: rgba(168,170,178,1); margin-bottom: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.wm-title.slide-out { transform: translateY(-100%); opacity: 0; }
.wm-title.slide-in  { animation: slideInFromBelow 0.3s ease forwards; }
.wm-artist.slide-out { transform: translateY(-100%); opacity: 0; }
.wm-artist.slide-in  { animation: slideInFromBelow 0.3s 0.05s ease forwards; }

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

.wm-progress-wrap { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }

.wm-bar {
  height: 2px; border-radius: 2px;
  background: rgba(255,255,255,0.1); position: relative; overflow: hidden;
}

.wm-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 62%;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  transition: background 0.5s ease;
}

.wm-times {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 0.6rem; color: rgba(95,97,106,1);
}

.wm-eq-row {
  display: flex; align-items: flex-end; gap: 3px;
  height: 30px;
}

.wm-eq-bar {
  width: 3px; border-radius: 1.5px;
  background: var(--green);
  animation: wmeq 1s ease-in-out infinite alternate;
}
.wm-eq-bar:nth-child(1) { height: 10px; animation-duration: 0.55s; animation-delay: 0.00s; }
.wm-eq-bar:nth-child(2) { height: 20px; animation-duration: 0.42s; animation-delay: 0.07s; }
.wm-eq-bar:nth-child(3) { height: 28px; animation-duration: 0.60s; animation-delay: 0.14s; }
.wm-eq-bar:nth-child(4) { height: 16px; animation-duration: 0.48s; animation-delay: 0.21s; }
.wm-eq-bar:nth-child(5) { height: 24px; animation-duration: 0.52s; animation-delay: 0.05s; }
.wm-eq-bar:nth-child(6) { height: 8px;  animation-duration: 0.38s; animation-delay: 0.18s; }
.wm-eq-bar:nth-child(7) { height: 22px; animation-duration: 0.58s; animation-delay: 0.10s; }
.wm-eq-bar:nth-child(8) { height: 14px; animation-duration: 0.44s; animation-delay: 0.25s; }
.wm-eq-bar:nth-child(9) { height: 26px; animation-duration: 0.46s; animation-delay: 0.03s; }

@keyframes wmeq {
  from { transform: scaleY(0.18); }
  to   { transform: scaleY(1); }
}

.wm-controls {
  display: none;
}

.wm-glow {
  position: absolute; left: -20px; top: 50%; transform: translateY(-50%);
  width: 140px; height: 140px; border-radius: 50%;
  pointer-events: none;
  transition: background 0.6s ease;
}

.track-flash {
  position: absolute; inset: 0; border-radius: 14px;
  pointer-events: none; opacity: 0;
}
.track-flash.flash-down {
  animation: flashDown 0.4s ease forwards;
}
@keyframes flashDown {
  0%   { opacity: 0.18; transform: translateY(-6px); }
  100% { opacity: 0; transform: translateY(0); }
}

.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted2); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-family: var(--font-mono);
  animation: fadeUp 1s 1s ease both;
}
.scroll-arrow {
  width: 20px; height: 20px; border-right: 1.5px solid var(--muted2);
  border-bottom: 1.5px solid var(--muted2);
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}

.eq { display: none; }

section { position: relative; z-index: 1; }
.section-inner { max-width: 1100px; margin-inline: auto; padding: 100px 24px; }

.section-eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  color: var(--green); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--green);
}

h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1rem; line-height: 1.7; color: var(--muted); max-width: 480px;
}

#features { background: var(--bg2); }

.feat-header { text-align: center; margin-bottom: 64px; }
.feat-header .section-eyebrow { justify-content: center; }
.feat-header .section-eyebrow::before { display: none; }
.feat-header .section-desc { margin-inline: auto; max-width: 560px; text-align: center; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
.feat-card:first-child { border-radius: var(--radius) 0 0 0; }
.feat-card:nth-child(3) { border-radius: 0 var(--radius) 0 0; }
.feat-card:nth-child(4) { border-radius: 0 0 0 var(--radius); }
.feat-card:last-child { border-radius: 0 0 var(--radius) 0; }
.feat-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.12);
}
.feat-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,215,96,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card:hover::before { opacity: 1; }

.feat-icon {
  display: block; margin-bottom: 20px;
  color: var(--green); opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.feat-card:hover .feat-icon { opacity: 1; transform: scale(1.06); }

.feat-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.feat-desc { font-size: 0.875rem; line-height: 1.65; color: var(--muted); }
.feat-tag {
  display: inline-block; margin-top: 14px;
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--green); background: rgba(30,215,96,0.08);
  border: 1px solid rgba(30,215,96,0.15);
  padding: 3px 10px; border-radius: 100px; letter-spacing: 0.06em;
}

#how { background: var(--bg); }

.how-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.steps { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }

.step {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
}
.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.5rem; color: rgba(255,255,255,0.08);
  width: 40px; flex-shrink: 0; line-height: 1; padding-top: 2px;
  transition: color 0.3s;
}
.step:hover .step-num { color: var(--green); }

.step-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  margin-bottom: 6px; transition: color 0.2s;
}
.step:hover .step-title { color: var(--green); }

.step-desc { font-size: 0.875rem; line-height: 1.6; color: var(--muted); }

.step-code {
  margin-top: 10px; display: inline-block;
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--green); background: rgba(30,215,96,0.06);
  border: 1px solid rgba(30,215,96,0.12);
  padding: 5px 12px; border-radius: 8px;
}

.code-window {
  background: #0d0d12;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.code-titlebar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.code-dot { width: 11px; height: 11px; border-radius: 50%; }
.code-dot.r { background: #ff5f57; }
.code-dot.y { background: #febc2e; }
.code-dot.g { background: #28c840; }
.code-filename {
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--muted2); margin-left: 8px;
}
.code-body { padding: 24px 22px; overflow-x: auto; }
.code-body pre {
  font-family: var(--font-mono); font-size: 0.78rem; line-height: 1.8;
  color: rgba(240,245,240,0.75);
}
.tok-kw  { color: #c792ea; }
.tok-fn  { color: #82aaff; }
.tok-str { color: #c3e88d; }
.tok-com { color: rgba(255,255,255,0.25); font-style: italic; }
.tok-gr  { color: var(--green); }
.tok-nm  { color: #ffcb6b; }

#stats {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px;
  padding: 64px 0;
}

.stat {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  flex: 1; min-width: 160px;
}

.stat-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.5));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-num span { color: var(--green); -webkit-text-fill-color: var(--green); }
.stat-label { font-size: 0.85rem; color: var(--muted); }
.stat-sub { font-family: var(--font-mono); font-size: 0.65rem; color: var(--muted2); }

#about { background: var(--bg2); }

.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.tech-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}

.pill {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--muted); border: 1px solid var(--border2);
  padding: 6px 14px; border-radius: 100px;
  display: flex; align-items: center; gap: 6px;
  transition: all 0.2s; cursor: default;
}
.pill:hover {
  color: var(--text); border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}
.pill .dot-sm {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); opacity: 0.7;
}

.glass-cards { position: relative; height: 340px; }

.glass-card {
  position: absolute;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  padding: 24px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.gc1 {
  top: 0; left: 0; right: 60px;
  animation: float1 6s ease-in-out infinite;
}
.gc2 {
  bottom: 0; left: 40px; right: 0;
  animation: float2 7s ease-in-out infinite;
}
@keyframes float1 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

.gc-label { font-family: var(--font-mono); font-size: 0.65rem; color: var(--muted2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.gc-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.gc-sub { font-size: 0.78rem; color: var(--muted); }

.mini-waveform {
  display: flex; align-items: flex-end; gap: 2px; margin-top: 12px; height: 28px;
}
.wv-bar {
  width: 4px; border-radius: 2px; background: var(--green); opacity: 0.6;
  animation: wvAnim 1.2s ease-in-out infinite alternate;
}
.wv-bar:nth-child(odd)  { animation-duration: 0.9s; }
.wv-bar:nth-child(even) { animation-duration: 1.3s; animation-delay: 0.15s; }
@keyframes wvAnim {
  from { transform: scaleY(0.3); }
  to   { transform: scaleY(1); }
}

.fft-viz {
  display: flex; align-items: flex-end; gap: 3px; margin-top: 14px; height: 32px;
}
.fft-bar {
  flex: 1; border-radius: 2px;
  background: linear-gradient(to top, var(--green), rgba(30,215,96,0.3));
  animation: fftAnim 1s ease-in-out infinite alternate;
}
.fft-bar:nth-child(1) { animation-duration: 0.55s; }
.fft-bar:nth-child(2) { animation-duration: 0.70s; animation-delay: 0.05s; }
.fft-bar:nth-child(3) { animation-duration: 0.45s; animation-delay: 0.10s; }
.fft-bar:nth-child(4) { animation-duration: 0.80s; animation-delay: 0.15s; }
.fft-bar:nth-child(5) { animation-duration: 0.60s; animation-delay: 0.02s; }
.fft-bar:nth-child(6) { animation-duration: 0.50s; animation-delay: 0.08s; }
.fft-bar:nth-child(7) { animation-duration: 0.75s; animation-delay: 0.12s; }
.fft-bar:nth-child(8) { animation-duration: 0.65s; animation-delay: 0.18s; }
.fft-bar:nth-child(9) { animation-duration: 0.42s; animation-delay: 0.06s; }
@keyframes fftAnim {
  from { transform: scaleY(0.15); }
  to   { transform: scaleY(1); }
}

.color-swatch-row { display: flex; gap: 6px; margin-top: 12px; }
.swatch { width: 28px; height: 28px; border-radius: 8px; }

#install { background: var(--bg); }

.install-box {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 680px; margin-inline: auto;
}

.install-tabs {
  display: flex; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.tab-btn {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  padding: 12px 22px; cursor: pointer; border: none; background: transparent;
  color: var(--muted2); transition: color 0.2s;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }

.tab-pane { display: none; padding: 28px 28px; }
.tab-pane.active { display: block; }

.cmd-line {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.4); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 18px; margin-bottom: 12px; gap: 12px;
}

.cmd-text { font-family: var(--font-mono); font-size: 0.82rem; color: var(--green); }

.cmd-copy {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--muted2);
  background: transparent; border: 1px solid var(--border2);
  padding: 4px 10px; border-radius: 6px; cursor: pointer;
  transition: all 0.2s; flex-shrink: 0;
}
.cmd-copy:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

.install-note { font-size: 0.8rem; color: var(--muted2); line-height: 1.6; }
.install-note a { color: var(--green); text-decoration: none; }
.install-note a:hover { text-decoration: underline; }

footer {
  position: relative; z-index: 1;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 36px;
}

.footer-inner {
  max-width: 1100px; margin-inline: auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px;
}

.footer-logo { padding: 0; border: none; margin-bottom: 10px; font-size: 1rem; }
.footer-tagline { font-size: 0.82rem; color: var(--muted2); max-width: 200px; line-height: 1.5; }

.footer-col-title {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.82rem; color: var(--muted2); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1100px; margin-inline: auto;
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}

.footer-copy { font-size: 0.75rem; color: var(--muted2); }
.footer-heart { color: var(--green); }

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

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  nav { top: 12px; }
  .nav-links { display: none; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .how-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card { border-radius: 0 !important; }
  .feat-card:first-child { border-radius: var(--radius) var(--radius) 0 0 !important; }
  .feat-card:last-child  { border-radius: 0 0 var(--radius) var(--radius) !important; }
  .stats-row { flex-direction: column; gap: 28px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .widget-mockup { padding: 14px 16px; }
}
.btn-coming-soon {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  background: rgba(30,215,96,0.06);
  border: 1px solid rgba(30,215,96,0.2);
  color: rgba(30,215,96,0.6);
  cursor: default;
  position: relative; overflow: hidden;
}
.btn-coming-soon::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(30,215,96,0.06) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer-cs 2.4s ease-in-out infinite;
}
@keyframes shimmer-cs {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.install-coming-soon {
  max-width: 480px; margin-inline: auto;
  text-align: center;
  padding: 64px 40px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.install-coming-soon::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,215,96,0.35), transparent);
}
.install-coming-soon::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(30,215,96,0.06) 0%, transparent 70%);
}
.coming-soon-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(30,215,96,0.07);
  border: 1px solid rgba(30,215,96,0.15);
  color: rgba(30,215,96,0.7);
  margin-bottom: 24px;
  animation: float1 5s ease-in-out infinite;
}
.install-coming-soon h3 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 40%, rgba(255,255,255,0.5));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.install-coming-soon p {
  font-size: 0.9rem; line-height: 1.7; color: var(--muted);
}