:root {
  --bg: #FAFAF2;
  --surface: #FFFFFF;
  --text: #171A14;
  --text-2: #68705C;
  --primary: #4F6F1F;
  --primary-hover: #3F5918;
  --accent: #B8E44C;
  --soft-accent: #EEF8D8;
  --border: #E1E6D6;
  --muted: #F3F5EA;

  --cat-ads: #F97316;
  --cat-selfpromo: #3B82F6;
  --cat-intro: #22A06B;
  --cat-outro: #8B5CF6;
  --cat-cta: #EF4444;
  --cat-filler: #64748B;

  --cat-ads-bg: #FFF3E8;
  --cat-selfpromo-bg: #EAF2FF;
  --cat-intro-bg: #E8F7EF;
  --cat-outro-bg: #F1ECFF;
  --cat-cta-bg: #FEECEC;
  --cat-filler-bg: #F1F5F9;

  --radius: 10px;
  --radius-sm: 7px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-precise: cubic-bezier(.4, 0, .2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; color: var(--text); }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.04; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
section { padding: 4.5rem 0; position: relative; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 1.25rem;
}
.label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--text-2);
  opacity: 0.4;
}
.label.center { justify-content: center; }
.label.center::before { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 180ms var(--ease-precise);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: var(--muted); border-color: #CFD6BC; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn svg { width: 14px; height: 14px; }

/* Store badges */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: transform 180ms var(--ease), background 180ms;
  text-decoration: none;
}
.store-badge:hover { transform: translateY(-2px); background: #000; }
.store-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge-small { font-size: 10px; opacity: 0.75; letter-spacing: 0.04em; }
.store-badge-big { font-size: 14px; font-weight: 600; }
.official-store-badge {
  padding: 0;
  background: transparent;
  border-radius: 8px;
  box-shadow: none;
}
.official-store-badge:hover {
  background: transparent;
  transform: translateY(-2px);
}
.official-store-badge img {
  width: auto;
  height: 52px;
  display: block;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 242, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; color: var(--text); }
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  flex: none;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 6px rgba(23, 26, 20, 0.1);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--text-2); font-weight: 500; }
.nav-links a { transition: color 180ms; }
.nav-links a:hover { color: var(--text); }
@media (max-width: 820px) { .nav-links { display: none; } }

/* ============ HERO ============ */
.hero { padding: 4.5rem 0 5rem; text-align: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--soft-accent);
  border: 1px solid #DDE9B0;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.75rem;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero h1 { max-width: 820px; margin: 0 auto 1.5rem; }
.strike-word {
  position: relative;
  display: inline-block;
  color: var(--primary);
}
.strike-word::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  top: 54%;
  height: 6px;
  background: var(--accent);
  transform: rotate(-2deg);
  border-radius: 2px;
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-meta {
  font-size: 13px;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 14px; height: 14px; color: var(--primary); }

/* ============ BROWSER MOCKUP ============ */
.browser {
  max-width: 1080px;
  margin: 3.5rem auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px -8px rgba(23, 26, 20, 0.10), 0 2px 6px rgba(23, 26, 20, 0.04);
  position: relative;
  text-align: left;
}
.browser-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--muted);
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 11px; height: 11px; border-radius: 50%; }
.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-2);
  max-width: 380px;
  margin: 0 auto;
}
.browser-url svg { color: var(--text-2); flex-shrink: 0; }
.browser-ext { display: flex; align-items: center; gap: 6px; }
.ext-btn {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: var(--soft-accent);
  border: 1px solid #DDE9B0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  position: relative;
}
.ext-btn::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  border: 1px solid var(--surface);
}

.browser-content { position: relative; background: #1a1a1a; padding: 16px; }

.player {
  background: #000;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.player-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}
.player-center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(23, 26, 20, 0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.skip-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(23, 26, 20, 0.94);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
  pointer-events: none;
  max-width: 280px;
  z-index: 3;
}
.skip-overlay.show { opacity: 1; transform: translateY(0); }
.skip-overlay-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.skip-overlay-icon svg { width: 13px; height: 13px; }
.skip-overlay-text { display: flex; flex-direction: column; gap: 1px; }
.skip-overlay-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
}
.skip-overlay-info { font-size: 13px; font-weight: 500; }

.player-controls { background: rgba(0, 0, 0, 0.96); padding: 10px 14px; }

.timeline {
  position: relative;
  height: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.timeline-bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  transform: translateY(-50%);
}
.timeline-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 2;
  width: 0%;
}
.timeline-thumb {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  left: 0%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.seg {
  position: absolute;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 2px;
  z-index: 1;
}
.seg-ads { background: var(--cat-ads); }
.seg-selfpromo { background: var(--cat-selfpromo); }
.seg-intro { background: var(--cat-intro); }
.seg-outro { background: var(--cat-outro); }
.seg-cta { background: var(--cat-cta); }
.seg-filler { background: var(--cat-filler); }

.control-row { display: flex; align-items: center; gap: 10px; color: #fff; }
.ctrl-btn {
  color: #fff;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 4px;
  transition: opacity 180ms, background 180ms;
}
.ctrl-btn:hover { opacity: 1; background: rgba(255,255,255,0.08); }
.ctrl-btn.ext-in-player {
  background: var(--primary);
  opacity: 1;
  width: 26px;
  height: 22px;
}
.ctrl-btn.ext-in-player:hover { background: var(--primary-hover); }
.time-display {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-variant-numeric: tabular-nums;
}
.spacer { flex: 1; }

/* ============ POPUP (inside browser) ============ */
.popup {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 264px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px -8px rgba(23, 26, 20, 0.22), 0 2px 6px rgba(23, 26, 20, 0.08);
  z-index: 5;
  overflow: hidden;
}
.popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.popup-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.popup-title svg { color: var(--primary); }
.popup-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
  background: var(--soft-accent);
  padding: 3px 8px;
  border-radius: 100px;
}
.popup-status .status-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.popup-body { padding: 6px 0; }
.popup-row {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  transition: background 150ms;
}
.popup-row:hover { background: var(--muted); }
.cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.popup-label { flex: 1; }
.popup-row .count {
  font-size: 11px;
  color: var(--text-2);
  font-variant-numeric: tabular-nums;
}
.toggle {
  width: 30px;
  height: 18px;
  background: #D1D7BF;
  border-radius: 9px;
  position: relative;
  cursor: pointer;
  transition: background 200ms var(--ease-precise);
  flex-shrink: 0;
}
.toggle.on { background: var(--primary); }
.toggle .knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 200ms var(--ease-precise);
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.toggle.on .knob { transform: translateX(12px); }
.popup-foot {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup-foot a { color: var(--primary); font-weight: 500; }

@media (max-width: 880px) { .popup { display: none; } }

/* ============ SECTION HEADERS ============ */
.section-header { max-width: 720px; }
.section-header.center { margin: 0 auto; text-align: center; }
.section-header p {
  color: var(--text-2);
  font-size: 16px;
  margin-top: 0.85rem;
  line-height: 1.55;
}
.section-header.center p { margin-left: auto; margin-right: auto; }

/* ============ CHANGES (before/after) ============ */
.changes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 3rem;
}
.changes-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.changes-col.before { background: var(--muted); }
.changes-col-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.changes-col.before .changes-col-label { color: #8B8B7A; }
.changes-col.after .changes-col-label { color: var(--primary); }
.changes-col h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }
.changes-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.changes-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.changes-list li svg { flex-shrink: 0; margin-top: 3px; width: 15px; height: 15px; }
.changes-col.before .changes-list li { color: #555A48; }
.changes-col.before .changes-list li svg { color: #8B8B7A; }
.changes-col.after .changes-list li svg { color: var(--primary); }
@media (max-width: 820px) { .changes-grid { grid-template-columns: 1fr; } }

/* ============ CONTROL (categories setup) ============ */
.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 3rem;
}
.control-copy h2 { margin-bottom: 1.25rem; }
.control-copy p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.control-copy .muted { color: var(--text-2); font-size: 14px; }
.control-visual { display: flex; justify-content: center; }
.popup-standalone {
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px -4px rgba(23, 26, 20, 0.1);
  overflow: hidden;
}
@media (max-width: 880px) { .control-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============ CATEGORIES ============ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 3rem;
}
.cat-card {
  padding: 24px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 200ms var(--ease), box-shadow 200ms;
}
.cat-card:hover { transform: translateY(-2px); box-shadow: 0 6px 16px -6px rgba(23,26,20,0.10); }
.cat-marker { width: 36px; height: 6px; border-radius: 3px; margin-bottom: 14px; }
.cat-name { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.cat-desc { font-size: 13px; color: var(--text-2); line-height: 1.5; }
@media (max-width: 820px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }

/* ============ VIEWER EXPERIENCE ============ */
.viewer-flow {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}
.viewer-main {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
}
.viewer-steps { display: flex; flex-direction: column; gap: 14px; }
.viewer-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.viewer-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--soft-accent);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.viewer-step h4 { font-size: 15px; margin-bottom: 4px; }
.viewer-step p { font-size: 13px; color: var(--text-2); line-height: 1.5; }

.feedback-overlay {
  position: absolute;
  bottom: 70px;
  right: 22px;
  background: rgba(23, 26, 20, 0.95);
  color: #fff;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
}
.feedback-info { font-size: 12px; display: flex; flex-direction: column; gap: 1px; }
.feedback-info .label-small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
}
.feedback-info .info { font-size: 12px; font-weight: 500; }
.feedback-actions {
  display: flex;
  gap: 6px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.fb-btn {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms;
}
.fb-btn:hover { background: rgba(255,255,255,0.2); }
.fb-btn.active { background: var(--primary); }
@media (max-width: 880px) { .viewer-flow { grid-template-columns: 1fr; } }

/* ============ TRUST / CONTROL / SAFETY ============ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 3rem;
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 200ms var(--ease), box-shadow 200ms;
}
.trust-card:hover { transform: translateY(-2px); box-shadow: 0 6px 16px -6px rgba(23,26,20,0.10); }
.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--soft-accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-card h3 { font-size: 17px; margin-bottom: 8px; }
.trust-card p { font-size: 14px; color: var(--text-2); line-height: 1.55; }
@media (max-width: 820px) { .trust-grid { grid-template-columns: 1fr; } }

.trust-clarion {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 20px 24px;
  background: var(--soft-accent);
  border: 1px solid #DDE9B0;
  border-radius: var(--radius);
}
.trust-clarion-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-clarion-icon svg { width: 18px; height: 18px; }
.trust-clarion-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}
.trust-clarion-text strong { font-weight: 600; color: var(--text); font-size: 15px; }
.trust-clarion-text span { color: var(--text-2); }
@media (max-width: 600px) { .trust-clarion { flex-direction: column; } }

/* ============ COMMUNITY PROOF ============ */
.community-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 3rem;
  text-align: center;
}
.community-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
}
.community-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.community-stat-label {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
}
.community-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 640px;
  margin: 2rem auto 0;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.community-note-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--muted);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.community-note-icon svg { width: 15px; height: 15px; }
.community-note p { margin: 0; }
@media (max-width: 720px) { .community-stats { grid-template-columns: 1fr 1fr; } }

/* ============ MARKING STEPS (simplified) ============ */
.marking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 2rem auto 3rem;
  flex-wrap: wrap;
}
.marking-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.marking-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.marking-step-text { font-size: 13px; font-weight: 500; color: var(--text); white-space: nowrap; }
.marking-step-arrow { color: var(--text-2); flex-shrink: 0; }
@media (max-width: 720px) {
  .marking-steps { flex-direction: column; }
  .marking-step-arrow { transform: rotate(90deg); }
  .marking-step-text { white-space: normal; }
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 680px;
  margin: 2.5rem auto 0;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 200ms;
}
.faq-item[open] { border-color: var(--primary); box-shadow: 0 2px 8px rgba(79, 111, 31, 0.10); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::-moz-list-bullet { list-style: none; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-2);
  transition: transform 200ms var(--ease);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.faq-answer p { margin: 0; }

/* ============ INSTALL STEPS ============ */
.install-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.install-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--soft-accent);
  border: 1px solid #DDE9B0;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.install-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.install-step-arrow { color: var(--text-2); flex-shrink: 0; }
@media (max-width: 600px) {
  .install-steps { flex-direction: column; }
  .install-step-arrow { transform: rotate(90deg); }
}

/* ============ MARKING (open for everyone) — legacy below ============ */
.marking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 3rem;
}
.marking-copy h2 { margin-bottom: 1.25rem; }
.marking-copy p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.marking-points { display: flex; flex-direction: column; gap: 18px; margin-top: 2rem; }
.marking-point { display: flex; gap: 14px; align-items: flex-start; }
.marking-point .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--soft-accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.marking-point h4 { font-size: 15px; margin-bottom: 4px; }
.marking-point p { font-size: 13.5px; color: var(--text-2); line-height: 1.5; margin: 0; }

.marking-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.marker-panel {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-top: 14px;
}
.marker-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.marker-head .icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--soft-accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.marker-head h4 { font-size: 15px; }
.marker-head .sub { font-size: 12px; color: var(--text-2); margin-top: 2px; }
.marker-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}
.marker-row label { color: var(--text-2); font-size: 12px; }
.time-input {
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.marker-mini-btn {
  padding: 7px 11px;
  font-size: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text-2);
  transition: all 180ms;
}
.marker-mini-btn:hover { background: var(--bg); color: var(--text); border-color: #CFD6BC; }
.select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 13px;
}
.select .chevron { margin-left: auto; color: var(--text-2); }
@media (max-width: 880px) { .marking-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============ PLATFORMS ============ */
.platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 200ms, transform 200ms;
}
.platform-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.platform-name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.platform-desc { font-size: 13px; color: var(--text-2); }
@media (max-width: 600px) { .platforms-grid { grid-template-columns: 1fr; } }

/* ============ FINAL CTA ============ */
.final-cta {
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
}
.final-cta h2 { margin-bottom: 1rem; }
.final-cta-sub {
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: 16px;
}
.final-cta-stores {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.final-timeline-strip {
  max-width: 720px;
  margin: 0 auto;
  padding: 18px;
  background: #000;
  border-radius: var(--radius);
}
.final-strip-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.final-strip-row:last-child { margin-bottom: 0; }
.final-strip-label {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  width: 64px;
  flex-shrink: 0;
  text-align: left;
}
.final-strip-timeline {
  flex: 1;
  position: relative;
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
}
.final-strip-timeline .seg { height: 8px; }

/* ============ FOOTER ============ */
.footer { padding: 3rem 0 4rem; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.footer-links { display: flex; gap: 24px; font-size: 13px; color: var(--text-2); flex-wrap: wrap; }
.footer-links a:hover { color: var(--text); }
.footer-note {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: calc(var(--d, 0) * 80ms);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; }
  .footer-inner { padding: 0 20px; }
  .hero { padding: 3rem 0 4rem; }
  .browser-content { padding: 10px; }
}
