@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg:      #f4f1eb;
  --bg2:     #ede9e0;
  --bg3:     #e5e0d6;
  --white:   #faf8f4;
  --ink:     #0d0d0d;
  --ink2:    #3a3a3a;
  --ink3:    #888;
  --red:     #e8321a;
  --red2:    #c2260f;
  --border:  #0d0d0d;
  --border-l:#ccc8be;
  --r:       4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--ink3); border-radius: 3px; }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 60px; background: var(--white);
  border-bottom: 1.5px solid var(--border);
  display: flex; align-items: stretch;
}

.nav-logo-block {
  display: flex; align-items: center;
  padding: 0 32px;
  border-right: 1.5px solid var(--border);
  text-decoration: none;
  gap: 10px;
}

.nav-logo-sq {
  width: 28px; height: 28px;
  background: var(--ink); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-sq svg { width: 14px; height: 14px; color: #fff; }

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.5px;
}

.nav-links {
  display: flex; align-items: stretch; list-style: none;
}

.nav-links li a {
  display: flex; align-items: center;
  padding: 0 24px; height: 100%;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink2); text-decoration: none;
  border-right: 1.5px solid var(--border);
  transition: all 0.15s;
  letter-spacing: -0.1px;
}

.nav-links li a:hover { background: var(--bg2); color: var(--ink); }
.nav-links li a.active { color: var(--ink); font-weight: 600; background: var(--bg); }

.nav-actions {
  margin-left: auto; display: flex; align-items: stretch;
}

.btn-nav-ghost {
  display: flex; align-items: center; padding: 0 24px;
  font-size: 13.5px; font-weight: 500; color: var(--ink2);
  border-left: 1.5px solid var(--border); cursor: pointer;
  text-decoration: none; transition: all 0.15s;
}
.btn-nav-ghost:hover { background: var(--bg2); color: var(--ink); }

.btn-nav-red {
  display: flex; align-items: center; gap: 8px;
  padding: 0 28px;
  font-size: 13.5px; font-weight: 600;
  background: var(--red); color: #fff;
  border-left: 1.5px solid var(--border);
  cursor: pointer; text-decoration: none;
  transition: background 0.15s;
  letter-spacing: -0.1px;
}
.btn-nav-red:hover { background: var(--red2); }

/* ── LAYOUT ──────────────────────────────────── */
.page { padding-top: 60px; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 40px; }

/* ── SECTION DIVIDER ─────────────────────────── */
.sec-divider {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 0; border-top: 1.5px solid var(--border);
  margin-bottom: 0;
}
.sec-num { font-size: 11px; font-weight: 600; color: var(--ink3); letter-spacing: 1px; }
.sec-label { font-size: 11px; font-weight: 600; color: var(--ink3); letter-spacing: 1.5px; text-transform: uppercase; }
.sec-line { flex: 1; height: 1px; background: var(--border-l); }

/* ── HERO ────────────────────────────────────── */
.hero {
  border-bottom: 1.5px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: calc(100vh - 60px);
}

.hero-left {
  padding: 80px 64px 80px 40px;
  border-right: 1.5px solid var(--border);
  display: flex; flex-direction: column; justify-content: space-between;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ink3); margin-bottom: 48px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: 96px; font-weight: 800; line-height: 0.92;
  letter-spacing: -5px; color: var(--ink);
}

.hero-h1 .red { color: var(--red); }

.hero-sub {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}

.hero-desc {
  font-size: 16px; color: var(--ink2); line-height: 1.75;
  max-width: 300px;
}

.hero-actions {
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-start;
}

.btn-red {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; padding: 14px 28px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: none; cursor: pointer; letter-spacing: -0.2px;
  transition: background 0.15s;
  border-radius: var(--r);
}
.btn-red:hover { background: var(--red2); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--ink); padding: 13px 28px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  border: 1.5px solid var(--border); cursor: pointer;
  transition: background 0.15s; border-radius: var(--r);
}
.btn-outline:hover { background: var(--bg2); }

.hero-note { font-size: 12px; color: var(--ink3); margin-top: 8px; }

/* Hero right — decorative panel */
.hero-right {
  background: var(--white);
  display: flex; flex-direction: column;
}

.hero-stat-block {
  padding: 40px 36px;
  border-bottom: 1.5px solid var(--border);
}

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 64px; font-weight: 800; line-height: 1;
  letter-spacing: -3px; color: var(--ink);
}

.hero-stat-label {
  font-size: 12px; color: var(--ink3); margin-top: 6px;
  letter-spacing: 0.5px;
}

.hero-badge-block {
  padding: 28px 36px;
  border-bottom: 1.5px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}

.badge-tag {
  background: var(--red); color: #fff; padding: 4px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  border-radius: 2px;
}

.badge-text { font-size: 13px; color: var(--ink2); }

.hero-platforms {
  padding: 28px 36px;
  border-bottom: 1.5px solid var(--border);
}
.platform-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink3); margin-bottom: 14px; }
.platform-list { display: flex; flex-direction: column; gap: 8px; }
.platform-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13.5px; color: var(--ink2); padding: 10px 0;
  border-bottom: 1px solid var(--border-l);
}
.platform-row:last-child { border-bottom: none; }
.platform-row strong { color: var(--ink); font-weight: 600; }
.platform-size { font-size: 12px; color: var(--ink3); }

.hero-ticker {
  margin-top: auto; padding: 24px 36px;
  display: flex; align-items: center; gap: 12px;
}
.ticker-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; animation: pulse 2s infinite; }
.ticker-text { font-size: 12.5px; color: var(--ink3); }

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

/* ── APP MOCKUP ──────────────────────────────── */
.mockup-section {
  border-bottom: 1.5px solid var(--border);
  background: var(--bg2);
}

.mockup-label-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 40px;
  border-bottom: 1.5px solid var(--border);
  background: var(--white);
}
.mockup-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ink3); }
.mockup-version { font-size: 12px; color: var(--ink3); }

.mockup-outer {
  padding: 48px 40px;
}

.app-window {
  background: #1a1a1a;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--border);
}

.app-titlebar {
  background: #111;
  height: 40px; display: flex; align-items: center;
  padding: 0 16px; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tl { width: 12px; height: 12px; border-radius: 50%; }
.tl.r { background: #ff5f57; }
.tl.y { background: #ffbd2e; }
.tl.g { background: #28c840; }
.titlebar-name {
  flex: 1; text-align: center; font-size: 12px; color: #555;
}

.app-toolbar {
  background: #161616;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 46px; display: flex; align-items: center; padding: 0 12px; gap: 4px;
}
.tb { width: 34px; height: 34px; border-radius: 6px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #555; transition: all 0.15s; }
.tb:hover { background: #222; color: #aaa; }
.tb.on { background: #e8321a; color: #fff; }
.tb svg { width: 14px; height: 14px; }
.tb-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.08); margin: 0 6px; }
.tb-color-swatch { width: 22px; height: 22px; border-radius: 4px; background: #e8321a; border: 2px solid rgba(255,255,255,0.2); cursor: pointer; margin-left: 4px; }
.tb-spacer { flex: 1; }
.tb-save { display: flex; align-items: center; gap: 6px; background: #e8321a; color: #fff; border-radius: 6px; padding: 0 14px; height: 32px; font-size: 12px; font-weight: 600; border: none; cursor: pointer; }

.app-body {
  display: grid; grid-template-columns: 1fr 240px;
  height: 420px;
}

.canvas-area {
  background: #0f0f0f;
  position: relative; overflow: hidden;
  background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 28px 28px;
}

.sc-img {
  position: absolute; top: 28px; left: 28px; right: 28px; bottom: 28px;
  background: linear-gradient(160deg, #0f172a, #1e1b4b);
  border-radius: 6px; border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.sc-bar { height: 36px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; padding: 0 12px; gap: 8px; }
.sc-dots { display: flex; gap: 5px; }
.sc-d { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.sc-addr { flex: 1; max-width: 200px; height: 18px; background: rgba(255,255,255,0.05); border-radius: 3px; margin: auto; }
.sc-content { padding: 16px; display: flex; flex-direction: column; gap: 9px; }
.sc-h { height: 16px; width: 50%; background: rgba(255,255,255,0.1); border-radius: 3px; }
.sc-l { height: 8px; border-radius: 2px; background: rgba(255,255,255,0.05); }

.ann-svg { position: absolute; inset: 0; pointer-events: none; }

.props-panel {
  background: #161616;
  border-left: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; overflow: hidden;
}
.panel-header {
  padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; gap: 4px;
}
.ph-tab {
  flex: 1; padding: 7px 0; text-align: center; font-size: 11.5px; font-weight: 600;
  border-radius: 4px; cursor: pointer; color: #555; transition: all 0.15s;
}
.ph-tab.on { background: #222; color: #ccc; }
.panel-body { flex: 1; padding: 18px; display: flex; flex-direction: column; gap: 20px; overflow: auto; }
.pp-l { font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #444; margin-bottom: 8px; }
.pp-colors { display: flex; gap: 6px; flex-wrap: wrap; }
.pp-c { width: 24px; height: 24px; border-radius: 4px; cursor: pointer; border: 2px solid transparent; transition: transform 0.15s; }
.pp-c:hover { transform: scale(1.1); }
.pp-c.on { border-color: rgba(255,255,255,0.5); }
.pp-slider { display: flex; align-items: center; gap: 8px; }
.pp-track { flex: 1; height: 3px; background: #2a2a2a; border-radius: 2px; position: relative; }
.pp-fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 2px; background: #e8321a; }
.pp-thumb { position: absolute; top: -5px; width: 13px; height: 13px; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.pp-val { font-size: 11px; color: #444; min-width: 24px; text-align: right; }
.pp-styles { display: flex; gap: 5px; }
.pp-st { flex: 1; height: 30px; border-radius: 4px; background: #1e1e1e; border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 11px; color: #444; cursor: pointer; }
.pp-st.on { border-color: #e8321a; color: #e8321a; }
.panel-footer { padding: 14px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; gap: 8px; }
.pf-b { flex: 1; padding: 9px; border-radius: 5px; font-size: 12px; font-weight: 600; cursor: pointer; border: none; text-align: center; transition: all 0.15s; }
.pf-ghost { background: #1e1e1e; color: #666; border: 1px solid rgba(255,255,255,0.07); }
.pf-red { background: #e8321a; color: #fff; }

/* ── MARQUEE ─────────────────────────────────── */
.marquee-section {
  background: var(--ink);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  overflow: hidden; padding: 18px 0;
}
.marquee-inner {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 32px;
  padding: 0 32px;
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.3); letter-spacing: 0.5px;
  text-transform: uppercase; white-space: nowrap;
}
.marquee-sep { color: var(--red); font-size: 16px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS ROW ───────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1.5px solid var(--border);
}
.stat-cell {
  padding: 52px 40px;
  border-right: 1.5px solid var(--border);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 64px; font-weight: 800; letter-spacing: -4px;
  line-height: 1; color: var(--ink);
}
.stat-n .red { color: var(--red); }
.stat-lbl { font-size: 13px; color: var(--ink3); margin-top: 10px; line-height: 1.5; }

/* ── FEATURES SECTION ────────────────────────── */
.features-section {
  border-bottom: 1.5px solid var(--border);
}

.features-header {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1.5px solid var(--border);
}

.feat-header-left {
  padding: 64px 40px;
  border-right: 1.5px solid var(--border);
}

.feat-header-right {
  padding: 64px 40px;
  display: flex; flex-direction: column; justify-content: flex-end;
}

.big-h {
  font-family: 'Syne', sans-serif;
  font-size: 56px; font-weight: 800;
  letter-spacing: -3px; line-height: 1.0; color: var(--ink);
}

.big-h em {
  font-style: normal; color: var(--red);
}

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
}

.feat-card {
  padding: 48px 40px;
  border-right: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  transition: background 0.15s;
}
.feat-card:last-child, .feat-card:nth-child(3), .feat-card:nth-child(6) { border-right: none; }

.feat-card:hover { background: var(--bg2); }

.feat-num {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  color: var(--red); margin-bottom: 24px;
  font-family: 'Syne', sans-serif;
}

.feat-icon {
  width: 44px; height: 44px; border: 1.5px solid var(--border);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; background: var(--white);
  transition: all 0.15s;
}
.feat-icon svg { width: 20px; height: 20px; color: var(--ink); }
.feat-card:hover .feat-icon { background: var(--red); border-color: var(--red); }
.feat-card:hover .feat-icon svg { color: #fff; }

.feat-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 10px; }
.feat-text { font-size: 14px; color: var(--ink2); line-height: 1.7; }

/* ── SHORTCUTS ───────────────────────────────── */
.shortcuts-section {
  display: grid; grid-template-columns: 360px 1fr;
  border-bottom: 1.5px solid var(--border);
}

.sh-left {
  padding: 64px 40px;
  border-right: 1.5px solid var(--border);
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: space-between;
}

.sh-left .big-h { color: var(--white); }
.sh-left .big-h em { color: var(--red); }

.sh-right {
  padding: 0;
}

.sh-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border-l);
  transition: background 0.15s;
}
.sh-row:hover { background: var(--bg2); }
.sh-desc { font-size: 14px; color: var(--ink2); }
.kbd-group { display: flex; gap: 4px; }
kbd {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 4px; padding: 4px 9px;
  font-size: 11.5px; font-family: 'SF Mono', monospace;
  color: var(--ink); box-shadow: 0 2px 0 var(--border-l);
}

/* ── TESTIMONIALS ────────────────────────────── */
.testi-section {
  border-bottom: 1.5px solid var(--border);
  display: grid; grid-template-columns: repeat(3, 1fr);
}

.testi-card {
  padding: 52px 40px;
  border-right: 1.5px solid var(--border);
  transition: background 0.15s;
}
.testi-card:last-child { border-right: none; }
.testi-card:hover { background: var(--white); }

.testi-stars { color: var(--red); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.testi-quote { font-size: 15px; color: var(--ink2); line-height: 1.75; margin-bottom: 28px; quotes: "«" "»"; }
.testi-quote::before { content: open-quote; color: var(--red); font-size: 20px; line-height: 0; vertical-align: -4px; margin-right: 2px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
}
.testi-name { font-size: 13.5px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--ink3); }

/* ── PRICING ─────────────────────────────────── */
.pricing-header {
  text-align: center; padding: 80px 40px 60px;
  border-bottom: 1.5px solid var(--border);
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1.5px solid var(--border);
}

.pr-card {
  padding: 52px 40px;
  border-right: 1.5px solid var(--border);
  position: relative;
}
.pr-card:last-child { border-right: none; }
.pr-card.featured { background: var(--ink); }

.pr-badge {
  position: absolute; top: 28px; right: 28px;
  background: var(--red); color: #fff;
  padding: 4px 12px; font-size: 11px; font-weight: 700; border-radius: 2px;
}

.pr-plan-name {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ink3); margin-bottom: 16px;
}
.pr-card.featured .pr-plan-name { color: #555; }

.pr-amount {
  font-family: 'Syne', sans-serif;
  font-size: 72px; font-weight: 800; letter-spacing: -4px; line-height: 1;
  color: var(--ink); margin-bottom: 4px;
}
.pr-card.featured .pr-amount { color: #fff; }
.pr-amount .red { color: var(--red); }

.pr-period { font-size: 13px; color: var(--ink3); margin-bottom: 28px; }
.pr-card.featured .pr-period { color: #555; }

.pr-divider-line { height: 1.5px; background: var(--border-l); margin-bottom: 28px; }
.pr-card.featured .pr-divider-line { background: rgba(255,255,255,0.1); }

.pr-features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 36px; }

.pr-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink2); }
.pr-card.featured .pr-feature { color: #999; }

.pr-check-icon {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.pr-check-icon.yes { background: var(--red); border-color: var(--red); }
.pr-check-icon svg { width: 10px; height: 10px; }
.pr-check-icon.yes svg { color: #fff; }
.pr-check-icon:not(.yes) svg { color: var(--ink3); }

.btn-pr-red {
  display: block; text-align: center; padding: 14px;
  background: var(--red); color: #fff;
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: none; cursor: pointer; transition: background 0.15s; border-radius: var(--r);
}
.btn-pr-red:hover { background: var(--red2); }

.btn-pr-outline {
  display: block; text-align: center; padding: 13px;
  background: transparent; color: var(--ink);
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: 1.5px solid var(--border); cursor: pointer; transition: all 0.15s; border-radius: var(--r);
}
.btn-pr-outline:hover { background: var(--bg2); }

.btn-pr-dark {
  display: block; text-align: center; padding: 13px;
  background: transparent; color: #fff;
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.15s; border-radius: var(--r);
}
.btn-pr-dark:hover { background: rgba(255,255,255,0.07); }

/* ── FAQ ─────────────────────────────────────── */
.faq-section {
  display: grid; grid-template-columns: 360px 1fr;
  border-bottom: 1.5px solid var(--border);
}
.faq-left { padding: 64px 40px; border-right: 1.5px solid var(--border); }
.faq-right {}
.faq-item { border-bottom: 1px solid var(--border-l); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 40px; cursor: pointer; font-size: 15px; font-weight: 600;
  transition: background 0.15s; letter-spacing: -0.2px;
}
.faq-q:hover { background: var(--bg2); }
.faq-toggle {
  width: 28px; height: 28px; border: 1.5px solid var(--border);
  border-radius: 4px; background: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.faq-toggle svg { width: 12px; height: 12px; color: var(--ink); transition: transform 0.2s; }
.faq-item.open .faq-toggle { background: var(--red); border-color: var(--red); }
.faq-item.open .faq-toggle svg { color: #fff; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 40px 24px; font-size: 14px; color: var(--ink2); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── DOWNLOAD ─────────────────────────────────── */
.dl-section {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1.5px solid var(--border);
}
.dl-card {
  padding: 52px 40px;
  border-right: 1.5px solid var(--border);
  position: relative; transition: background 0.15s;
}
.dl-card:last-child { border-right: none; }
.dl-card:hover { background: var(--white); }
.dl-card.primary { background: var(--red); }
.dl-card.primary:hover { background: var(--red2); }

.dl-badge-tag {
  position: absolute; top: 28px; right: 28px;
  background: var(--ink); color: #fff;
  padding: 4px 10px; font-size: 10px; font-weight: 700; border-radius: 2px; letter-spacing: 0.5px;
}

.dl-icon { font-size: 48px; margin-bottom: 24px; }

.dl-name {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 800; letter-spacing: -1px; margin-bottom: 10px;
}
.dl-card.primary .dl-name { color: #fff; }

.dl-meta { font-size: 12.5px; color: var(--ink3); margin-bottom: 4px; }
.dl-card.primary .dl-meta { color: rgba(255,255,255,0.6); }
.dl-meta + .dl-meta { margin-bottom: 32px; }

.btn-dl-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--red);
  padding: 12px 24px; border-radius: var(--r);
  font-size: 14px; font-weight: 700; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.15s;
}
.btn-dl-white:hover { background: rgba(255,255,255,0.9); }

.btn-dl-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 11px 24px; border-radius: var(--r);
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: 1.5px solid var(--border); cursor: pointer; transition: all 0.15s;
}
.btn-dl-outline:hover { background: var(--bg2); }

/* ── CHANGELOG ───────────────────────────────── */
.changelog-section { border-bottom: 1.5px solid var(--border); }
.cl-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 40px;
  border-bottom: 1.5px solid var(--border);
}
.cl-item {
  display: grid; grid-template-columns: 120px 120px 1fr;
  border-bottom: 1px solid var(--border-l);
  padding: 28px 40px; transition: background 0.15s;
}
.cl-item:hover { background: var(--white); }
.cl-ver { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: var(--red); }
.cl-date { font-size: 13px; color: var(--ink3); padding-top: 2px; }
.cl-body {}
.cl-h { font-size: 15px; font-weight: 600; margin-bottom: 5px; letter-spacing: -0.2px; }
.cl-p { font-size: 13.5px; color: var(--ink2); line-height: 1.65; }
.cl-tags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.tag { font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 2px; letter-spacing: 0.5px; text-transform: uppercase; }
.tag-new  { background: rgba(232,50,26,0.1); color: var(--red); border: 1px solid rgba(232,50,26,0.2); }
.tag-fix  { background: rgba(245,158,11,0.1); color: #b45309; border: 1px solid rgba(245,158,11,0.2); }
.tag-perf { background: rgba(34,197,94,0.1); color: #15803d; border: 1px solid rgba(34,197,94,0.2); }
.tag-ui   { background: rgba(13,13,13,0.07); color: var(--ink); border: 1px solid var(--border-l); }

/* ── REQS ────────────────────────────────────── */
.reqs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1.5px solid var(--border); }
.req-card { padding: 48px 40px; border-right: 1.5px solid var(--border); }
.req-card:last-child { border-right: none; }
.req-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 24px; }
.req-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.req-list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink2); }
.req-list li::before { content: ''; width: 6px; height: 6px; background: var(--red); flex-shrink: 0; }

/* ── ABOUT ───────────────────────────────────── */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1.5px solid var(--border);
}
.about-intro-left { padding: 80px 40px; border-right: 1.5px solid var(--border); }
.about-intro-right { padding: 80px 40px; display: flex; flex-direction: column; gap: 20px; }

.about-text p { font-size: 15.5px; color: var(--ink2); line-height: 1.85; margin-bottom: 20px; }

.val-row {
  padding: 28px 0; border-bottom: 1px solid var(--border-l);
  display: grid; grid-template-columns: 40px 1fr; gap: 16px;
}
.val-row:last-child { border-bottom: none; }
.val-icon { font-size: 22px; }
.val-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.val-text { font-size: 13.5px; color: var(--ink2); line-height: 1.6; }

.team-section { border-bottom: 1.5px solid var(--border); }
.team-header {
  padding: 40px;
  border-bottom: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.team-card {
  padding: 48px 40px;
  border-right: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  transition: background 0.15s;
}
.team-card:nth-child(3), .team-card:nth-child(6) { border-right: none; }
.team-card:hover { background: var(--white); }

.team-av {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800;
  margin-bottom: 18px;
}
.team-name { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 5px; }
.team-role { font-size: 13px; color: var(--ink3); }

/* ── CTA BANNER ──────────────────────────────── */
.cta-block {
  background: var(--ink);
  padding: 100px 40px;
  text-align: center;
  border-bottom: 1.5px solid var(--border);
}
.cta-h {
  font-family: 'Syne', sans-serif;
  font-size: 72px; font-weight: 800; letter-spacing: -4px; line-height: 0.95;
  color: #fff; margin-bottom: 24px;
}
.cta-h .red { color: var(--red); }
.cta-sub { font-size: 17px; color: #666; margin-bottom: 44px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-red-lg {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; padding: 16px 36px;
  font-size: 15px; font-weight: 700; text-decoration: none; border: none;
  cursor: pointer; transition: background 0.15s; border-radius: var(--r);
}
.btn-red-lg:hover { background: var(--red2); }

.btn-white-lg {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff; padding: 15px 36px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.15s; border-radius: var(--r);
}
.btn-white-lg:hover { background: rgba(255,255,255,0.06); }

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--white);
  border-top: 1.5px solid var(--border);
}

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1.5px solid var(--border);
}

.footer-col { padding: 48px 40px; border-right: 1.5px solid var(--border); }
.footer-col:last-child { border-right: none; }

.footer-brand { }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-sq { width: 28px; height: 28px; background: var(--ink); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.footer-logo-sq svg { width: 14px; height: 14px; color: #fff; }
.footer-logo-name { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800; color: var(--ink); }
.footer-tagline { font-size: 13.5px; color: var(--ink3); line-height: 1.7; max-width: 240px; }

.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ink3); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13.5px; color: var(--ink2); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--red); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 40px;
}
.footer-copy { font-size: 12.5px; color: var(--ink3); }
.footer-socials { display: flex; gap: 8px; }
.fsoc {
  width: 34px; height: 34px;
  border: 1.5px solid var(--border-l); border-radius: 4px;
  background: var(--bg2); display: flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none; color: var(--ink3); transition: all 0.15s;
}
.fsoc:hover { border-color: var(--border); color: var(--ink); background: var(--bg3); }
.fsoc svg { width: 14px; height: 14px; }

/* ── EYEBROW ─────────────────────────────────── */
.eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ink3); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; width: 16px; height: 1.5px; background: var(--red); }

.text-red { color: var(--red); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-h1 { font-size: 64px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card:nth-child(3) { border-right: 1.5px solid var(--border); }
  .feat-card:nth-child(2), .feat-card:nth-child(4), .feat-card:nth-child(6) { border-right: none; }
  .pricing-grid, .dl-section { grid-template-columns: 1fr; }
  .pr-card, .dl-card { border-right: none; border-bottom: 1.5px solid var(--border); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(2), .footer-col:nth-child(4) { border-right: none; }
  .testi-section { grid-template-columns: 1fr; }
  .testi-card { border-right: none; border-bottom: 1.5px solid var(--border); }
  .about-intro, .shortcuts-section, .faq-section { grid-template-columns: 1fr; }
  .about-intro-left, .sh-left, .faq-left { border-right: none; border-bottom: 1.5px solid var(--border); }
  .features-header { grid-template-columns: 1fr; }
  .feat-header-left { border-right: none; border-bottom: 1.5px solid var(--border); }
  .reqs { grid-template-columns: 1fr; }
  .req-card { border-right: none; border-bottom: 1.5px solid var(--border); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card:nth-child(2) { border-right: none; }
  .cl-item { grid-template-columns: 100px 1fr; }
  .cl-date { display: none; }
}

@media (max-width: 640px) {
  nav { flex-wrap: wrap; height: auto; }
  .nav-links { display: none; }
  .hero-h1 { font-size: 48px; letter-spacing: -2px; }
  .big-h { font-size: 40px; }
  .cta-h { font-size: 48px; }
  .stat-n { font-size: 48px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card { border-right: none; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-col { border-right: none; }
  .footer-col:nth-child(2), .footer-col:nth-child(4) { border-right: none; }
}
