/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --bg:          #0A0A0A;
  --surface:     #111111;
  --surface2:    #181818;
  --border:      #222222;
  --border2:     #2A2A2A;
  --text:        #F5F0E8;
  --text-soft:   #888880;
  --text-muted:  #444440;
  --accent:      #F26D2D;
  --accent-glow: rgba(242,109,45,0.18);
  --accent-dim:  rgba(242,109,45,0.12);
  --white:       #ffffff;
  --radius-xl:   24px;
  --radius-lg:   16px;
  --radius-md:   12px;
  --radius-sm:   8px;
  --content:     1140px;
  --shadow:      0 40px 100px rgba(0,0,0,0.6);
  --shadow-sm:   0 8px 32px rgba(0,0,0,0.4);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1,h2,h3,h4 { margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ── Layout helpers ────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-inner {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}
.section-head {
  max-width: 660px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.section-head p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
  margin-top: 14px;
}

/* ── Eyebrow ───────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 8px 32px var(--accent-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.05);
  border-color: var(--border2);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); }
.btn-ghost-dark {
  background: transparent;
  border-color: var(--border2);
  color: var(--text);
}
.btn-ghost-dark:hover { border-color: var(--text-soft); }

/* Buttons inside price cards should be full width and centered */
.price-card .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.btn-large { padding: 16px 28px; font-size: 15px; }

/* ── Scroll reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

/* ══════════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  padding: 20px 0;
}

.brand { display: flex; align-items: center; }
.brand-logo { height: 30px; width: auto; display: block; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}
.site-nav a { transition: color 0.2s; }
.site-nav a:hover { color: var(--text); }

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--accent);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

/* ══════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 72px);
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  padding: 40px 0 100px;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}
.hero-lead {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}
.hero-trust .dot { color: var(--border2); }

/* ── Widget mockup ─────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  width: 100%;
}
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 510%;
  height: 165%;
  background: radial-gradient(ellipse at top, rgba(233,97,42,0.035) 0%, transparent 75%);
  filter: blur(210px);
  z-index: -1;
  pointer-events: none;
}
.app-preview-img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 12px rgba(233,97,42,0.18));
}

.widget-mock {
  position: relative;
  background: #0D0D0D;
  border: 1px solid #222;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 80px rgba(242,109,45,0.08);
  user-select: none;
}

.wm-panels {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1px;
  background: #1A1A1A;
}
.wm-panel {
  background: #111111;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

/* ── Panel header ──────────────────────────────────────────────── */
.wm-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 7px;
  border-bottom: 1px solid #1C1C1C;
  flex-shrink: 0;
}
.wm-header-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wm-logo-icon {
  width: 13px;
  height: 13px;
  object-fit: contain;
  opacity: 0.65;
}
.wm-panel-label {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #F5F0E8;
}
.wm-collapse-arrow { font-size: 12px; color: #2A2A2A; }

/* ── Scratch pad ───────────────────────────────────────────────── */
.wm-scratch {
  padding: 7px 10px;
  border-bottom: 1px solid #1C1C1C;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.wm-scratch-line { font-size: 9px; color: #666; line-height: 1.5; }
.wm-scratch-line.dim { color: #333; }

/* ── Section bar (NOTES | + Add) ──────────────────────────────── */
.wm-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px 3px;
}
.wm-section-title {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #F5F0E8;
}
.wm-add-link { font-size: 8px; color: #3A3A3A; font-weight: 600; }
.wm-ml-auto { margin-left: auto; }

/* ── Category header rows ──────────────────────────────────────── */
.wm-cat-header {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
}
.wm-cat-chevron { font-size: 7px; color: #2E2E2E; }
.wm-cat-label { font-size: 7.5px; font-weight: 700; letter-spacing: 0.08em; color: #4A4A4A; }
.wm-cat-count { font-size: 7px; color: #333; }
.wm-spacer { flex: 1; }
.wm-cat-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.wm-cat-done-row .wm-cat-label { color: #2E2E2E; }
.wm-clear-all { font-size: 7px; color: #333; }

/* ── List items (notes and tasks) ─────────────────────────────── */
.wm-list-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px 3px 0;
  background: #1D1D1D;
  margin: 1px 0;
}
.wm-item-border {
  width: 3px;
  align-self: stretch;
  min-height: 14px;
  flex-shrink: 0;
  border-radius: 0 1px 1px 0;
}
.wm-drag-handle { font-size: 8px; color: #242424; margin-left: 4px; flex-shrink: 0; }
.wm-item-arrow { font-size: 9px; color: #2E2E2E; flex-shrink: 0; }
.wm-item-text {
  font-size: 9px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.wm-done-item .wm-item-text { color: #333; text-decoration: line-through; }

/* ── Calendar panel ────────────────────────────────────────────── */
.wm-panel-body {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wm-tabs { display: flex; align-items: center; gap: 3px; }
.wm-tab {
  font-size: 7.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  color: #444;
  border: 1px solid #2A2A2A;
}
.wm-tab.active { background: #F5F0E8; color: #111; border-color: #F5F0E8; }
/* ── Calendar day view ─────────────────────────────────────────── */
.wm-cal-panel { position: relative; }
.wm-cal-tabs-row {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 10px 5px;
  border-bottom: 1px solid #1C1C1C;
}
.wm-cal-date-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 5px 10px 4px;
}
.wm-cal-date-label {
  font-size: 10px;
  font-weight: 800;
  color: #F5F0E8;
  letter-spacing: 0.03em;
}
.wm-cal-evt-count { font-size: 7.5px; color: #3A3A3A; }
.wm-day-view {
  position: relative;
  height: 330px;
  overflow: hidden;
  padding-left: 36px;
  padding-right: 8px;
  margin-top: 2px;
}
.wm-hour-row {
  position: absolute;
  left: 0;
  right: 0;
  height: 44px;
}
.wm-hour-row::after {
  content: '';
  position: absolute;
  left: 36px;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(255,255,255,0.04);
}
.wm-hour-lbl {
  position: absolute;
  left: 0;
  width: 32px;
  top: -5px;
  font-size: 7px;
  color: #3A3A3A;
  text-align: right;
  padding-right: 4px;
}
.wm-evt-block {
  position: absolute;
  left: 36px;
  right: 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  overflow: hidden;
}
.wm-evt-circle {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.wm-evt-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
  min-width: 0;
}
.wm-evt-name {
  font-size: 8.5px;
  font-weight: 700;
  color: #F5F0E8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wm-evt-time { font-size: 7px; color: rgba(245,240,232,0.5); }

.wm-remaining { font-size: 8px; color: #333; }
.wm-checkbox {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid #2E2E2E;
  flex-shrink: 0;
}
.wm-checkmark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  color: #3A3A3A;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

/* ── Notes extras ──────────────────────────────────────────────── */
.wm-eye { font-size: 8px; color: #2E2E2E; margin-left: 2px; }
.wm-note-selected { background: rgba(232,168,124,0.06) !important; }

/* ── Rich text editor (open note) ─────────────────────────────── */
.wm-editor {
  margin: 0 8px 6px;
  background: #0E0E0E;
  border: 1px solid #232323;
  border-radius: 3px;
  overflow: hidden;
}
.wm-editor-toolbar {
  display: flex;
  gap: 9px;
  padding: 3px 9px;
  border-bottom: 1px solid #1E1E1E;
}
.wm-editor-toolbar span,
.wm-editor-toolbar em,
.wm-editor-toolbar u {
  font-size: 8px;
  color: #3A3A3A;
  font-style: normal;
  text-decoration: none;
}
.wm-editor-body { padding: 5px 9px; }
.wm-ed-h {
  font-size: 8.5px;
  font-weight: 700;
  color: #C8C0B4;
  margin: 4px 0 2px;
}
.wm-ed-p { font-size: 7.5px; color: #555; margin: 1px 0; line-height: 1.5; }

/* ── To-do panel ───────────────────────────────────────────────── */
.wm-todo-panel { position: relative; }
.wm-todo-meta {
  padding: 3px 10px 5px;
  border-bottom: 1px solid #1C1C1C;
}

/* ══════════════════════════════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════════════════════════════ */
.why-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.compare-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
}
.compare-card.featured {
  background: linear-gradient(145deg, rgba(242,109,45,0.06), var(--surface2));
  border-color: rgba(242,109,45,0.25);
}
.compare-card.faded { opacity: 0.55; }
.compare-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.compare-tag.accent { color: var(--accent); }
.compare-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.compare-card p { font-size: 14px; line-height: 1.65; color: var(--text-soft); }

/* ══════════════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-top: 2px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s, background 0.2s, border-top-color 0.2s;
}
.feature-card:hover {
  border-color: var(--border2);
  border-top-color: var(--accent);
  background: var(--surface2);
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.feature-card p { font-size: 14px; line-height: 1.7; color: var(--text-soft); }

/* ══════════════════════════════════════════════════════════════════
   ROADMAP
══════════════════════════════════════════════════════════════════ */
.roadmap-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.roadmap-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  position: relative;
}
.roadmap-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.roadmap-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  display: inline-block;
}
.roadmap-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.roadmap-card p { font-size: 14px; line-height: 1.7; color: var(--text-soft); }
.roadmap-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  border-left: 2px solid var(--border2);
  padding-left: 16px;
}

/* ══════════════════════════════════════════════════════════════════
   THEMES (kept for reference, section removed from page)
══════════════════════════════════════════════════════════════════ */
.themes-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.themes-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.theme-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  background: var(--bg);
}
.theme-chip:hover { border-color: var(--border2); color: var(--text); }
.theme-chip.active { border-color: var(--accent); color: var(--text); }
.theme-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid;
  flex-shrink: 0;
}
.theme-preview-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.theme-preview {
  padding: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  transition: background 0.4s;
  min-height: 220px;
  align-items: flex-start;
}
.tp-group {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
}
/* Theme-specific backgrounds */
.theme-preview[data-active="obsidian"] { background: #0D0D0D; }
.theme-preview[data-active="ivory"]    { background: #F0EDE8; }
.theme-preview[data-active="midnight"] { background: #070B14; }
.theme-preview[data-active="coffee"]   { background: #1C160E; }
.theme-preview[data-active="forest"]   { background: #0A120D; }

/* Theme panel mini cards */
.tp {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 16px;
  width: 140px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tp-ivory { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }
.tp-label { font-size: 8px; font-weight: 800; letter-spacing: 0.16em; color: rgba(255,255,255,0.2); text-transform: uppercase; }
.tp-ivory .tp-label { color: rgba(0,0,0,0.2); }
.tp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tp-ivory .tp-card { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.07); }
.tp-cal-head { justify-content: space-between; font-size: 10px; color: rgba(0,0,0,0.35); }
.tp-cal-head strong { color: rgba(0,0,0,0.6); }
.tp-agenda { flex-direction: column; gap: 5px; }
.tp-ev { height: 12px; border-radius: 3px; width: 80%; }
.tp-ev.coral { background: rgba(232,168,124,0.5); }
.tp-ev.blue  { background: rgba(133,193,233,0.5); }
.tp-row { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1); flex: 1; }
.tp-ivory .tp-row { background: rgba(0,0,0,0.1); }
.tp-row.long { width: 100%; }
.tp-row.med  { width: 70%; }
.tp-row.short{ width: 45%; }
.tp-row.done { background: rgba(255,255,255,0.05); }
.tp-dot { width: 8px; height: 8px; border-radius: 50%; }
.tp-dot.coral { background: #E8A87C; }
.tp-dot.blue  { background: #85C1E9; }
.tp-dot.green { background: #82E0AA; }
.tp-check {
  width: 14px; height: 14px; border-radius: 4px;
  background: var(--accent); color: #fff;
  font-size: 8px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; flex-shrink: 0;
}
.tp-circle {
  width: 14px; height: 14px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 640px;
  margin-bottom: 24px;
}
.price-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.price-card-featured {
  border-color: rgba(242,109,45,0.35);
  background: linear-gradient(145deg, rgba(242,109,45,0.06), var(--surface2));
}
.price-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
}
.price-plan { font-size: 13px; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.1em; }
.price-amount {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}
.price-dollar { font-size: 24px; margin-top: 8px; color: var(--text-soft); }
.price-cents  { font-size: 28px; margin-top: 12px; color: var(--text-soft); }
.price-period {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: -8px;
}
.price-save {
  background: rgba(130,224,170,0.12);
  color: #82E0AA;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
}
.price-perks { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.price-perks li {
  font-size: 13px;
  color: var(--text-soft);
  padding-left: 16px;
  position: relative;
}
.price-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}
.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: left;
  max-width: 640px;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════════
   AFFILIATES
══════════════════════════════════════════════════════════════════ */
.affiliate-banner {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 56px 24px;
}
.affiliate-inner {
  max-width: var(--content);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.affiliate-inner .btn {
  margin-top: 12px;
}
.affiliate-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.affiliate-heading {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}
.affiliate-sub {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════
   DOWNLOAD
══════════════════════════════════════════════════════════════════ */
.download-section {
  background: linear-gradient(160deg, rgba(242,109,45,0.06) 0%, transparent 50%);
  border-top: 1px solid var(--border);
}
.download-card { max-width: 600px; }
.download-card h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.download-card p { color: var(--text-soft); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.download-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.download-card .download-note { font-size: 11px; color: var(--text-muted); opacity: 0.6; letter-spacing: 0.01em; }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.footer-logo { height: 28px; width: auto; display: block; opacity: 0.88; transform: translateY(-6px); }
.footer-copy { color: var(--text-muted); font-size: 13px; line-height: 1; flex: 1; margin: 0; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-soft); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 0 60px;
    gap: 40px;
  }
  .hero-copy h1 { font-size: clamp(2.4rem,7vw,3.6rem); }
  .widget-mock { font-size: 11px; }
  .wm-panel { min-height: auto; padding: 12px 8px; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card.faded { opacity: 1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
}
@media (max-width: 600px) {
  .site-nav { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .wm-panels { grid-template-columns: 1fr; }
}
