/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #5EA259;
  --green-light:  #e8f5e5;
  --green-mid:    #c8e6c2;
  --green-dark:   #4a8344;
  --bg:           #f3f3f1;
  --card:         #ffffff;
  --border:       #ddd;
  --border-hover: #bbb;
  --text:         #161616;
  --text-muted:   #777;
  --text-dim:     #aaa;
  --pixel:        'Pixelify Sans', monospace;
  --heading:      'Saira Stencil One', sans-serif;
  --body:         'Titillium Web', Arial, sans-serif;
  --radius:       14px;
  --radius-sm:    8px;
}

body.dark {
  --bg:           #1a1a1a;
  --card:         #242424;
  --border:       #333;
  --border-hover: #555;
  --text:         #e0e0e0;
  --text-muted:   #888;
  --text-dim:     #555;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  transition: background 0.2s, color 0.2s;
  overflow-x: hidden;
}

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

a { color: var(--green); }

code {
  font-family: monospace;
  font-size: 0.85em;
  background: var(--bg);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--green);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--heading);
  font-weight: 400; /* Saira Stencil One is display weight */
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text);
}

h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h1 span { color: var(--green); }

h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.75rem; }

h3 { font-size: 1.05rem; margin-bottom: 0.4rem; font-family: var(--body); font-weight: 600; }

.section-label {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

/* ── LAYOUT ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

section { padding: 88px 0; }
section + section { border-top: 1px solid var(--border); }

/* ── CARD BASE ── */
.card-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.15s, border-color 0.15s;
}
.card-box:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border-color: var(--border-hover);
}
body.dark .card-box:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.3); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--green-dark); color: #fff; }

.btn-secondary {
  display: inline-block;
  background: var(--card);
  color: var(--text);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 62px;
  transition: background 0.2s, border-color 0.2s;
}

.nav-logo {
  font-family: var(--pixel);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--green);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav-tagline {
  font-family: var(--body);
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 400;
  white-space: nowrap;
}

.nav-links {
  display: flex; gap: 1.75rem; list-style: none; align-items: center;
}
.nav-links a {
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--green); }
.nav-links .nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 0.42rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--green-dark); }

.nav-right { display: flex; align-items: center; gap: 10px; }

#theme-toggle {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  cursor: pointer;
  display: flex; align-items: center;
  color: var(--text-muted);
  transition: border-color 0.15s;
  flex-shrink: 0;
}
#theme-toggle:hover { border-color: var(--border-hover); }

/* Hamburger (mobile) */
#nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
#nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-muted); border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile nav drawer */
#mobile-nav {
  display: none;
  position: fixed; top: 62px; left: 0; right: 0; z-index: 99;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column; gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
#mobile-nav a:last-child { border-bottom: none; }
#mobile-nav a:hover { color: var(--green); }
#mobile-nav .mob-cta {
  margin-top: 1rem;
  background: var(--green);
  color: #fff !important;
  text-align: center;
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 0.75rem;
  border-bottom: none;
}

/* ── HERO ── */
#hero { padding-top: 140px; padding-bottom: 88px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: 100px;
  padding: 4px 14px;
  font-family: var(--body);
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
body.dark .hero-badge { background: rgba(94,162,89,0.12); border-color: rgba(94,162,89,0.3); }
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Hero device mockup */
.hero-device { padding: 20px 22px; }

.hero-device-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.device-logo {
  font-family: var(--pixel);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green);
  line-height: 1;
}
.device-logo small {
  font-family: var(--body);
  font-size: 0.68rem;
  color: var(--text-dim);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

.device-stats { display: flex; gap: 16px; }
.device-stat { text-align: right; }
.device-stat-label {
  font-size: 0.62rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.06em;
  font-family: var(--body);
}
.device-stat-val {
  font-size: 0.78rem; color: var(--text-muted);
  font-weight: 600; font-family: var(--body);
}

.mini-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.mini-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 8px; text-align: center;
}
.mini-card svg { stroke: var(--text-muted); display: block; margin: 0 auto; }
.mini-card-title {
  font-size: 0.7rem; font-weight: 600; color: var(--text);
  margin-top: 5px; font-family: var(--body);
}
.mini-card-sub { font-size: 0.6rem; color: var(--text-dim); font-family: var(--body); }

/* ── STORY ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.story-text p {
  color: var(--text-muted); font-size: 1rem;
  font-weight: 300; margin-bottom: 1rem; line-height: 1.8;
}
.story-text p strong { color: var(--text); font-weight: 600; }

.lineage { display: flex; flex-direction: column; gap: 10px; }
.lineage-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border-radius: 12px;
}
.lineage-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); margin-top: 5px; flex-shrink: 0;
}
.lineage-item h4 {
  font-size: 0.88rem; font-weight: 600; color: var(--text);
  margin-bottom: 4px; font-family: var(--body);
}
.lineage-item p { font-size: 0.82rem; color: var(--text-muted); font-family: var(--body); }
.lineage-xprep {
  border: 1px solid var(--green-mid) !important;
  background: var(--green-light) !important;
}
body.dark .lineage-xprep {
  background: rgba(94,162,89,0.08) !important;
  border-color: rgba(94,162,89,0.25) !important;
}
body.dark .lineage-xprep h4 { color: var(--green); }

/* ── WHAT IS ── */
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.what-text p {
  color: var(--text-muted); font-weight: 300;
  font-size: 1rem; margin-bottom: 1rem; line-height: 1.8;
}
.what-text p strong { color: var(--text); font-weight: 600; }

.stats-box {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.stat-cell { background: var(--card); padding: 24px 20px; }
.stat-num {
  font-family: var(--heading);
  font-size: 2.2rem;
  color: var(--green);
  display: block; line-height: 1;
}
.stat-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }

/* ── HOW IT WORKS ── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 2.5rem;
}
.step { padding: 2rem 1.5rem; text-align: center; position: relative; }
.step:not(:last-child)::after {
  content: '→'; position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%); color: var(--border-hover); font-size: 1.2rem;
}

.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-light); border: 1px solid var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-size: 1.1rem;
  color: var(--green); margin: 0 auto 1rem;
}
body.dark .step-num { background: rgba(94,162,89,0.12); border-color: rgba(94,162,89,0.3); }

.step h3 { font-size: 0.95rem; margin-bottom: 0.5rem; font-family: var(--body); font-weight: 600; }
.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── FEATURES ── */
.features-intro p {
  color: var(--text-muted); font-weight: 300;
  max-width: 520px; margin-top: 0.25rem; margin-bottom: 2rem;
}

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

.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: box-shadow 0.15s, border-color 0.15s;
  display: flex; flex-direction: column;
}
.feat-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border-color: var(--border-hover);
}
body.dark .feat-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }

.feat-card svg { stroke: var(--text-muted); margin-bottom: 12px; }

.feat-card-title {
  font-size: 0.9rem; font-weight: 700; color: var(--text);
  margin-bottom: 2px; font-family: var(--body);
}
.feat-card-sub {
  font-size: 0.7rem; color: var(--green); font-weight: 700;
  letter-spacing: 0.06em; margin-bottom: 7px; font-family: var(--body);
  text-transform: uppercase;
}
.feat-card-desc {
  font-size: 0.82rem; color: var(--text-muted);
  line-height: 1.55; flex: 1;
}
.feat-screenshot {
  margin-top: 14px; aspect-ratio: 16/9;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--text-dim); font-family: var(--body);
  overflow: hidden;
}
.feat-screenshot img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.feat-card.wide { grid-column: span 2; }
.feat-card.wide .feat-screenshot { aspect-ratio: 21/9; }

/* ── AUDIENCE ── */
.personas {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 2.5rem;
}
.persona {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px;
  border-top: 3px solid var(--green);
  transition: box-shadow 0.15s;
}
.persona:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.07); }
.persona-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
body.dark .persona-icon { background: rgba(94,162,89,0.1); border-color: rgba(94,162,89,0.25); }
.persona-icon svg { stroke: var(--green); }
.persona h3 { font-family: var(--body); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.persona p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ── COMPARE ── */
.compare-note {
  color: var(--text-muted); font-weight: 300;
  max-width: 520px; margin-top: 0.25rem;
}

.compare-wrap {
  overflow-x: auto; margin-top: 2.5rem;
  border-radius: var(--radius); border: 1px solid var(--border);
}
table {
  width: 100%; border-collapse: collapse;
  font-size: 0.875rem; background: var(--card);
  font-family: var(--body);
}
thead tr { border-bottom: 1px solid var(--border); }
th {
  padding: 14px 18px; text-align: left;
  font-size: 0.7rem; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--text-muted); font-weight: 700;
}
th.ours { color: var(--green); background: var(--green-light); }
body.dark th.ours { background: rgba(94,162,89,0.08); }

td {
  padding: 12px 18px; border-bottom: 1px solid var(--border);
  color: var(--text-muted); vertical-align: middle;
}
td:first-child { color: var(--text); font-weight: 600; }
td.ours { background: rgba(94,162,89,0.04); color: var(--text); }

tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(0,0,0,0.012); }
tr:hover td.ours { background: rgba(94,162,89,0.07); }

.yes { color: var(--green); font-weight: 700; }
.no { color: var(--text-dim); }

/* ── GET XPREP ── */
.get-note {
  color: var(--text-muted); font-weight: 300;
  max-width: 520px; margin-top: 0.25rem;
}
.get-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 2.5rem;
}

.get-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px;
}
.get-card.featured { border-color: var(--green); border-width: 2px; }

.get-label {
  font-family: var(--body); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); font-weight: 700; margin-bottom: 6px;
}
.get-card h3 {
  font-family: var(--body); font-size: 1.35rem;
  font-weight: 700; margin-bottom: 6px;
}
.get-card .desc {
  font-size: 0.9rem; color: var(--text-muted);
  margin-bottom: 1.5rem; font-weight: 300; line-height: 1.7;
}

.price {
  font-family: var(--heading);
  font-size: 2.4rem;
  color: var(--green);
  line-height: 1;
}
.price-note {
  font-size: 0.78rem; color: var(--text-dim);
  margin-top: 4px; margin-bottom: 1.5rem;
  font-family: var(--body);
}

.config-row { margin-bottom: 1rem; }
.config-lbl {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--text-muted);
  margin-bottom: 7px; font-family: var(--body); font-weight: 700;
}
.config-opts { display: flex; gap: 6px; flex-wrap: wrap; }
.opt {
  padding: 5px 15px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.82rem;
  color: var(--text-muted); cursor: pointer; background: transparent;
  font-family: var(--body); transition: all 0.15s;
}
.opt:hover { border-color: var(--green); color: var(--green); }
.opt.active {
  border-color: var(--green); color: var(--green);
  background: var(--green-light);
}
body.dark .opt.active { background: rgba(94,162,89,0.12); }

/* ── INSTALL ── */
.install-inline {
  background: #111; border-radius: var(--radius);
  overflow: hidden; border: 1px solid #2a2a2a;
  max-width: 720px; margin-bottom: 1.5rem;
}
.install-meta {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.install-reqs { display: flex; flex-direction: column; gap: 10px; }
.install-topbar {
  background: #1c1c1c; padding: 10px 16px;
  border-bottom: 1px solid #2a2a2a;
  display: flex; align-items: center; gap: 7px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.d-r { background: #ff5f56; }
.d-y { background: #ffbd2e; }
.d-g { background: #27c93f; }
.install-code {
  padding: 22px; font-family: monospace;
  font-size: 0.88rem; line-height: 1.9; overflow-x: auto;
  white-space: nowrap;
}
.prompt { color: #4a8a45; user-select: none; }
.cmd { color: #e0e0e0; }

/* Force dark terminal in light mode so command is always readable */
body:not(.dark) .install-inline { background: #1e1e1e; border-color: #333; }
body:not(.dark) .install-topbar { background: #2a2a2a; border-color: #333; }

/* ── VIDEOS ── */
.videos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.video-card { overflow: hidden; }
.video-embed {
  position: relative; width: 100%; padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
.video-meta { padding: 1.25rem 1.5rem 1.5rem; }
.video-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green);
  background: var(--green-light); border: 1px solid var(--green-mid);
  padding: 2px 10px; border-radius: 100px;
  margin-bottom: 0.6rem; font-family: var(--body);
}
body.dark .video-tag { background: rgba(94,162,89,0.12); border-color: rgba(94,162,89,0.25); }
.video-meta h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.video-meta p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.install-footnote {
  font-size: 0.8rem; color: var(--text-dim);
  margin-top: 10px; font-family: var(--body);
}
.install-footnote a { color: var(--green); text-decoration: none; }
.install-footnote a:hover { text-decoration: underline; }

.install-steps { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 12px; }
.install-step { display: flex; gap: 12px; align-items: flex-start; }
.i-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-light); border: 1px solid var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--green);
  flex-shrink: 0; font-family: var(--body);
}
body.dark .i-num { background: rgba(94,162,89,0.12); border-color: rgba(94,162,89,0.3); }
.i-text {
  font-size: 0.9rem; color: var(--text-muted);
  padding-top: 4px; line-height: 1.55; font-family: var(--body);
}
.i-text strong { color: var(--text); font-weight: 600; }

/* ── NEWSLETTER ── */
#newsletter { text-align: center; }
#newsletter h2 { margin-bottom: 0.5rem; }
#newsletter p {
  color: var(--text-muted); font-weight: 300;
  margin-bottom: 2rem; font-family: var(--body);
}

.nl-form { display: flex; gap: 8px; max-width: 440px; margin: 0 auto; }
.nl-form input {
  flex: 1; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 16px;
  font-family: var(--body); font-size: 0.9rem; color: var(--text);
  outline: none; transition: border-color 0.15s;
}
.nl-form input:focus { border-color: var(--green); }
.nl-form input::placeholder { color: var(--text-dim); }

/* ── FOOTER ── */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}

.footer-logo-text {
  font-family: var(--pixel);
  font-weight: 700; font-size: 1.3rem;
  color: var(--green); display: block; margin-bottom: 4px;
}
.footer-tagline {
  font-size: 0.75rem; color: var(--text-dim);
  margin-bottom: 1rem; font-family: var(--body);
}
.footer-about {
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 1.25rem;
  font-family: var(--body); font-weight: 300;
}

.socials { display: flex; gap: 8px; }
.soc {
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--text-muted); transition: all 0.15s;
}
.soc:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
body.dark .soc:hover { background: rgba(94,162,89,0.1); }
.soc svg { width: 15px; height: 15px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--body); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); font-weight: 700; margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  font-family: var(--body); font-size: 0.875rem;
  color: var(--text-muted); text-decoration: none; transition: color 0.15s;
}
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--text-dim);
  flex-wrap: wrap; gap: 8px; font-family: var(--body);
}
.footer-bottom a { color: var(--text-dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > div:first-child { grid-column: span 2; }
}

@media (max-width: 820px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  #nav-toggle { display: flex; }

  .hero-layout,
  .story-grid,
  .what-grid,
  .get-grid { grid-template-columns: 1fr; gap: 2rem; }

  #hero { padding-top: 110px; }
  .hero-sub { max-width: 100%; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card.wide { grid-column: span 2; }

  .personas { grid-template-columns: repeat(2, 1fr); }

  .videos-grid { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; gap: 0; }
  .step:not(:last-child)::after {
    content: '↓'; right: auto; top: auto;
    bottom: -14px; left: 50%;
    transform: translateX(-50%);
  }
  .step { padding: 1.75rem 1.5rem; }

  .install-grid { gap: 2rem; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  section { padding: 60px 0; }
  #hero { padding-top: 100px; padding-bottom: 60px; }

  .cards-grid { grid-template-columns: 1fr; }
  .feat-card.wide { grid-column: span 1; }
  .feat-card.wide .feat-screenshot { aspect-ratio: 16/9; }

  .personas { grid-template-columns: 1fr; }

  .get-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: span 1; }

  .nl-form { flex-direction: column; }

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

  .hero-device-header { flex-direction: column; gap: 10px; }
  .device-stats { gap: 10px; }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }

  .footer-bottom { flex-direction: column; text-align: center; }
}