/* ============ BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green: #1DB954;
  --green-light: #1ed760;
  --green-deep: #0d7a35;
  --green-glow: rgba(29, 185, 84, 0.4);
  --black: #000;
  --ink: #050505;
  --ink-2: #0d0d0d;
  --ink-3: #151515;
  --surface: #1a1a1a;
  --surface-2: #222222;
  --surface-3: #2a2a2a;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.13);
  --text: #ffffff;
  --text-2: #c4c4c4;
  --text-3: #6e6e6e;
  --pink: #F0A9C8;
  --purple: #A855F7;
  --blue: #3B82F6;
}
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

img { max-width: 100%; height: auto; display: block; }

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 14px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}
.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  border: 1.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px var(--green-glow);
  transition: transform 0.3s;
}
.brand-icon:hover { transform: scale(1.06) rotate(-5deg); }
.brand-icon svg { width: 82%; height: 82%; }
.brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.4px;
  color: var(--text);
  line-height: 1;
}
.brand-name em {
  display: block;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--green);
  letter-spacing: 2px;
  margin-top: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
nav a {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
nav a:hover, nav a.active {
  color: var(--text);
  background: var(--surface);
}
nav a.cta {
  background: var(--green);
  color: #000;
  padding: 10px 20px;
  font-weight: 800;
  box-shadow: 0 6px 20px var(--green-glow);
}
nav a.cta:hover {
  background: var(--green-light);
  transform: scale(1.04);
}
.burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  padding: 6px;
}

/* ============ PAGES ============ */
.page { display: none; padding-top: 80px; min-height: 100vh; }
.page.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ============ HERO (SPLIT SCREEN) ============ */
.hero {
  padding: 50px 36px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1f12 0%, #000 60%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.25), transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(240, 169, 200, 0.15), transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(29, 185, 84, 0.12);
  border: 1px solid rgba(29, 185, 84, 0.35);
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: 66px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 24px;
  color: var(--text);
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero h1 .outline {
  -webkit-text-stroke: 1.5px var(--green);
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero p {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--green);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.3px;
  box-shadow: 0 10px 30px var(--green-glow);
  font-family: 'Figtree', sans-serif;
}
.btn:hover {
  background: var(--green-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px var(--green-glow);
}
.btn svg { width: 18px; height: 18px; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line-2);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--green);
}

/* Hero stats rail */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  max-width: 520px;
}
.stat-cell {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}
.stat-cell:last-child { border-right: none; }
.stat-cell .num {
  font-size: 26px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-cell .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  font-weight: 700;
}

/* Hero visual - SCREENSHOTS STACK */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}
.hero-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.phone-main {
  position: relative;
  z-index: 3;
  width: 75%;
  margin: 0 auto;
  border-radius: 26px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 60px var(--green-glow);
  animation: mainFloat 6s ease-in-out infinite;
}
@keyframes mainFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}
.phone-side {
  position: absolute;
  width: 55%;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s;
}
.phone-left {
  top: 15%;
  left: -5%;
  z-index: 2;
  transform: rotate(-8deg);
  animation: sideFloatLeft 7s ease-in-out infinite;
}
.phone-right {
  top: 25%;
  right: -5%;
  z-index: 2;
  transform: rotate(8deg);
  animation: sideFloatRight 8s ease-in-out infinite;
}
@keyframes sideFloatLeft {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-12px); }
}
@keyframes sideFloatRight {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-14px); }
}
.phone-badge {
  position: absolute;
  top: 8%;
  right: 10%;
  z-index: 5;
  background: var(--green);
  color: #000;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 1.5px;
  box-shadow: 0 12px 30px var(--green-glow);
  transform: rotate(8deg);
  text-transform: uppercase;
}

/* ============ INFO RAIL ============ */
.info-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.info-cell {
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  transition: background 0.3s;
}
.info-cell:last-child { border-right: none; }
.info-cell:hover { background: var(--surface); }
.info-cell-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(29, 185, 84, 0.1);
  border: 1px solid rgba(29, 185, 84, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.info-cell-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}
.info-cell-value {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

/* ============ SEARCH ============ */
.search-strip {
  padding: 40px 36px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.search-box {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--line-2);
  border-radius: 50px;
  transition: all 0.3s;
}
.search-box:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 6px rgba(29, 185, 84, 0.1);
}
.search-box .s-icon {
  padding: 0 10px 0 22px;
  color: var(--text-3);
  font-size: 18px;
  display: flex;
}
.search-box input {
  flex: 1;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  outline: none;
  font-weight: 500;
}
.search-box input::placeholder { color: var(--text-3); }
.search-box button {
  margin: 6px;
  padding: 12px 26px;
  background: var(--green);
  color: #000;
  border: none;
  border-radius: 40px;
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}
.search-box button:hover { background: var(--green-light); }

/* ============ SECTIONS ============ */
.section {
  padding: 90px 36px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section-full { max-width: 100%; }
.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(29, 185, 84, 0.08);
  border: 1px solid rgba(29, 185, 84, 0.2);
  border-radius: 4px;
}
.section-head h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2.2px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.section-head h2 em { font-style: normal; color: var(--green); }
.section-head p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
}

/* ============ SCREENSHOT FEATURE (Dashboard Style) ============ */
.screenshot-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.screenshot-feature {
  background: linear-gradient(160deg, var(--surface), var(--ink-3));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  transition: all 0.4s;
}
.screenshot-feature:hover {
  border-color: rgba(29, 185, 84, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px var(--green-glow);
}
.screenshot-feature img {
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.screenshot-feature h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.screenshot-feature p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============ FEATURE TILES (DASHBOARD) ============ */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.dash-card {
  background: linear-gradient(160deg, var(--surface), var(--ink-3));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.dash-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.dash-card:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 185, 84, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.dash-card:hover::before { transform: scaleX(1); }
.dash-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(29, 185, 84, 0.12);
  border: 1px solid rgba(29, 185, 84, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.dash-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-card p {
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.65;
}
.tag-new {
  display: inline-block;
  background: var(--green);
  color: #000;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============ TUTORIAL STEPS (with screenshots) ============ */
.tutorial-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.tut-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}
.tut-step:hover {
  transform: translateY(-8px);
  border-color: rgba(29, 185, 84, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.tut-step-img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: var(--ink-3);
}
.tut-step-num {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: #000;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px var(--green-glow);
}
.tut-step-body {
  padding: 22px;
}
.tut-step-body h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.tut-step-body p {
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.gallery-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
}
.gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(29, 185, 84, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 40px var(--green-glow);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  padding: 14px 16px;
  background: var(--ink-3);
}
.gallery-caption h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.gallery-caption p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
}

/* ============ ARTICLE ============ */
.article-body {
  max-width: 900px;
  margin: 0 auto;
}
.article-body h1 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.6px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.article-body h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 44px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.article-body h2 .ch {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.article-body h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 30px 0 12px;
  color: var(--green);
}
.article-body h4 {
  font-size: 17px;
  font-weight: 800;
  margin: 22px 0 10px;
}
.article-body p {
  color: #d5d5d5;
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.85;
}
.article-body ul, .article-body ol {
  margin: 14px 0 22px 26px;
  color: #d5d5d5;
}
.article-body li { margin-bottom: 10px; font-size: 15.5px; line-height: 1.75; }
.article-body strong { color: var(--text); font-weight: 800; }
.article-body img {
  width: 100%;
  border-radius: 16px;
  margin: 26px 0;
  border: 1px solid var(--line);
}
.article-body code {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(29, 185, 84, 0.1);
  color: var(--green);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 13px;
}

/* Pull Quote */
.pull-quote {
  margin: 30px 0;
  padding: 30px 36px;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.08), transparent);
  border-left: 4px solid var(--green);
  border-radius: 4px 16px 16px 4px;
  position: relative;
}
.pull-quote p {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

/* Callout */
.callout {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: 12px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.callout.warn {
  border-left-color: #FF6B35;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), transparent);
}
.callout-icon { font-size: 24px; flex-shrink: 0; line-height: 1; }
.callout-body h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 6px;
  font-weight: 700;
}
.callout.warn .callout-body h4 { color: #FF6B35; }
.callout-body p {
  color: var(--text-2);
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}

/* Data Grid */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.data-cell {
  padding: 20px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all 0.3s;
}
.data-cell:hover {
  border-color: rgba(29, 185, 84, 0.35);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.data-cell-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}
.data-cell-value {
  font-size: 22px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.8px;
  line-height: 1.1;
}
.data-cell-desc {
  font-size: 12.5px;
  color: var(--text-3);
  margin-top: 4px;
}

/* Table */
.compare-table {
  width: 100%;
  margin: 24px 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  border-collapse: collapse;
}
.compare-table th {
  background: linear-gradient(90deg, rgba(29, 185, 84, 0.12), transparent);
  padding: 14px 18px;
  text-align: left;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-2);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(29, 185, 84, 0.03); }

/* Check list */
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.check-list li {
  padding: 14px 18px 14px 46px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.55;
  transition: all 0.3s;
}
.check-list li:hover {
  border-color: rgba(29, 185, 84, 0.35);
  background: var(--surface-2);
  transform: translateX(4px);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
}

/* Keyword link */
.kw {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 185, 84, 0.4);
  transition: all 0.25s;
  cursor: pointer;
}
.kw:hover {
  background: rgba(29, 185, 84, 0.1);
  padding: 0 3px;
  border-radius: 3px;
}

/* ============ DOWNLOAD CARDS ============ */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}
.dl-panel {
  background: linear-gradient(160deg, var(--surface), var(--ink-3));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.dl-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-deep));
  opacity: 0;
  transition: opacity 0.4s;
}
.dl-panel:hover {
  border-color: rgba(29, 185, 84, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(29, 185, 84, 0.15);
}
.dl-panel:hover::before { opacity: 1; }
.dl-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  background: rgba(29, 185, 84, 0.12);
  border: 1px solid rgba(29, 185, 84, 0.3);
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.dl-icon {
  font-size: 42px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.dl-panel h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.dl-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.dl-panel p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.dl-panel .btn { width: 100%; justify-content: center; padding: 13px 20px; font-size: 13.5px; }

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(29, 185, 84, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  background: var(--surface-2);
}
.blog-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.06); }
.blog-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
}
.blog-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.blog-card:hover h3 { color: var(--green); }
.blog-card p {
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.5px;
}
.blog-card-footer .arrow { color: var(--green); font-size: 16px; transition: transform 0.3s; }
.blog-card:hover .blog-card-footer .arrow { transform: translateX(6px); }

/* ============ FOOTER ============ */
footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 70px 36px 30px;
  margin-top: 40px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-icon { width: 46px; height: 46px; }
.footer-brand .brand-name { font-size: 18px; }
.footer-col p {
  color: var(--text-3);
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: var(--green); transform: translateX(4px); }
.socials { display: flex; gap: 8px; margin-top: 14px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 15px;
}
.socials a:hover {
  background: var(--green);
  color: #000;
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px var(--green-glow);
}
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.5px;
}
.footer-bottom a { color: var(--green); text-decoration: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero h1 { font-size: 48px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero-stats { max-width: 100%; }
  .hero-visual { min-height: 500px; }
  .screenshot-features { grid-template-columns: 1fr; gap: 30px; }
  .info-rail { grid-template-columns: 1fr 1fr; }
  .info-cell:nth-child(2) { border-right: none; }
  .info-cell:nth-child(1), .info-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 700px) {
  header { padding: 12px 20px; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink-2);
    flex-direction: column;
    padding: 18px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
  }
  nav ul.open { display: flex; }
  .burger { display: block; }
  .hero { padding: 40px 20px 60px; }
  .hero h1 { font-size: 34px; letter-spacing: -1.5px; }
  .hero p { font-size: 15px; }
  .btn { padding: 13px 26px; font-size: 13px; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .stat-cell { padding: 14px 14px; }
  .stat-cell .num { font-size: 20px; }
  .hero-visual { min-height: 400px; }
  .section { padding: 55px 20px; }
  .section-head h2 { font-size: 30px; letter-spacing: -1.2px; }
  .article-body h1 { font-size: 28px; }
  .article-body h2 { font-size: 22px; }
  .article-body h3 { font-size: 18px; }
  .search-strip { padding: 22px 16px; }
  .search-box input { padding: 15px 14px; font-size: 13.5px; }
  .search-box button { padding: 10px 20px; font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}
