/* ElmerShack Marketing Site — style.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0D1B2A;
  --bg-surface:#162435;
  --bg-raised: #1D2F44;
  --accent:    #EF9F27;
  --accent-dim:#BA7517;
  --text:      #F0EBE0;
  --text-sec:  #B8B0A2;
  --text-muted:#7A7268;
  --border:    rgba(239,159,39,0.18);
  --green:     #4CAF50;
  --amber:     #EF9F27;
  --red:       #E53935;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;
  --font-mono:    'Source Code Pro', 'Courier New', monospace;
  --radius:    10px;
  --max-w:     1100px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.85; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--text); font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.nav-logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text); }
.nav-logo-shack { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.18em; color: var(--accent); margin-left: 4px; vertical-align: baseline; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-sec); font-size: 14px; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-hamburger { display: none; background: none; border: none; color: var(--text-sec); font-size: 22px; cursor: pointer; padding: 4px 8px; }
.nav-mobile { display: none; padding: 8px 0 12px; border-top: 1px solid var(--border); background: var(--bg-surface); }
.nav-mobile.open { display: flex; flex-direction: column; }
.nav-mobile a { padding: 12px 24px; color: var(--text-sec); font-size: 15px; display: block; }
.nav-mobile a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* ── Buttons ── */
.btn-primary-sm {
  background: var(--accent); color: var(--bg) !important; border: none; border-radius: 6px;
  padding: 7px 16px; font-size: 13px; font-weight: 700; cursor: pointer; transition: filter 0.15s;
  display: inline-block;
}
.btn-primary-sm:hover { filter: brightness(1.1); opacity: 1; }
.btn-ghost-sm {
  background: transparent; color: var(--text-sec); border: 1px solid var(--border);
  border-radius: 6px; padding: 6px 14px; font-size: 13px; cursor: pointer; transition: all 0.15s;
  display: inline-block;
}
.btn-ghost-sm:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }
.btn-hero-primary {
  background: var(--accent); color: var(--bg) !important; border: none; border-radius: 8px;
  padding: 14px 32px; font-size: 16px; font-weight: 700; cursor: pointer;
  display: inline-block; transition: filter 0.15s; letter-spacing: 0.02em;
}
.btn-hero-primary:hover { filter: brightness(1.1); opacity: 1; }
.btn-hero-secondary {
  background: transparent; color: var(--text-sec); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 13px 28px; font-size: 15px; cursor: pointer;
  display: inline-block; transition: all 0.15s;
}
.btn-hero-secondary:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }
.btn-secondary-lg {
  background: var(--bg-raised); color: var(--text); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 28px; font-size: 15px; font-weight: 600;
  display: inline-block; transition: all 0.15s;
}
.btn-secondary-lg:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }
.btn-primary-lg {
  background: var(--accent); color: var(--bg) !important; border: none; border-radius: 8px;
  padding: 13px 30px; font-size: 15px; font-weight: 700; display: inline-block; transition: filter 0.15s;
}
.btn-primary-lg:hover { filter: brightness(1.1); opacity: 1; }

/* ── Section labels ── */
.section-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-title { font-family: var(--font-display); font-size: clamp(28px,4vw,42px); font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-sec); max-width: 560px; margin: 0 auto 32px; }

/* ── Hero ── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: 80px 24px;
  max-width: var(--max-w); margin: 0 auto; position: relative;
}
.hero-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: -1;
  background: radial-gradient(ellipse at 70% 30%, rgba(239,159,39,0.07) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(186,117,23,0.05) 0%, transparent 50%);
}
.hero-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.hero-title { font-family: var(--font-display); font-size: clamp(32px,5vw,54px); font-weight: 700; color: var(--text); line-height: 1.1; margin-bottom: 20px; }
.hero-title em { color: var(--accent); font-style: italic; }
.hero-sub { font-size: 17px; color: var(--text-sec); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); }

/* App preview mockup */
.app-preview {
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(239,159,39,0.1);
}
.app-preview-bar {
  background: var(--bg); padding: 10px 14px; display: flex; align-items: center;
  gap: 6px; border-bottom: 1px solid var(--border);
}
.app-preview-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.app-preview-url { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); margin-left: 8px; }
.app-preview-screen { padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.preview-card { background: var(--bg-raised); border: 1px solid rgba(239,159,39,0.12); border-radius: 8px; padding: 12px; }
.preview-card-title { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.preview-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.preview-stat { text-align: center; }
.preview-stat-val { display: block; font-family: var(--font-mono); font-size: 22px; font-weight: 700; }
.preview-stat-label { font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.preview-bands { display: flex; flex-direction: column; gap: 6px; }
.preview-band { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }
.preview-band span:first-child { min-width: 28px; }
.preview-bar { height: 6px; border-radius: 3px; flex: 0 0 auto; }
.preview-band span:last-child { font-size: 11px; }
.elmer-card .preview-elmer-header { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.preview-elmer-text { font-size: 11px; color: var(--text-sec); line-height: 1.6; font-style: italic; }
.green { color: var(--green); }
.amber { color: var(--amber); }
.red { color: var(--red); }

/* ── Proof strip ── */
.proof-strip { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 24px; }
.proof-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; }
.proof-item { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }
.proof-sep { color: rgba(239,159,39,0.3); }

/* ── Features overview (home) ── */
.features-section { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; margin-bottom: 40px; }
.feature-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color 0.2s, transform 0.2s; }
.feature-card:hover { border-color: var(--accent-dim); transform: translateY(-2px); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-sec); line-height: 1.7; }
.features-cta { text-align: center; }

/* ── Elmer section ── */
.elmer-section { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 0; }
.elmer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.elmer-text p { font-size: 16px; color: var(--text-sec); margin-bottom: 16px; line-height: 1.7; }
.elmer-text em { color: var(--text); font-style: italic; }
.elmer-chat { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.elmer-msg { display: flex; gap: 10px; align-items: flex-start; }
.elmer-msg.user { flex-direction: row-reverse; }
.elmer-avatar-sm { width: 26px; height: 26px; background: rgba(239,159,39,0.15); border: 1px solid rgba(239,159,39,0.3); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 4px; }
.elmer-bubble { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; font-size: 13px; color: var(--text-sec); line-height: 1.6; max-width: 85%; }
.elmer-bubble.user { background: var(--bg-raised); color: var(--text); }

/* ── Pricing teaser ── */
.pricing-teaser { padding: 72px 0; text-align: center; }

/* ── Pricing full ── */
.pricing-section { padding: 60px 0 80px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 60px; }
.pricing-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px; position: relative; }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 40px rgba(239,159,39,0.12); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--bg); font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; padding: 3px 12px; border-radius: 12px; white-space: nowrap; }
.pricing-tier-name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.pricing-price { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.pricing-price.coming-soon { font-size: 22px; color: var(--text-muted); }
.pricing-period { font-size: 16px; font-weight: 400; color: var(--text-muted); margin-left: 4px; font-family: var(--font-body); }
.pricing-price-hint { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.pricing-desc { font-size: 14px; color: var(--text-sec); margin-bottom: 20px; line-height: 1.5; min-height: 52px; }
.btn-pricing-primary { display: block; text-align: center; background: var(--accent); color: var(--bg) !important; border: none; border-radius: 7px; padding: 11px; font-size: 14px; font-weight: 700; margin-bottom: 24px; transition: filter 0.15s; }
.btn-pricing-primary:hover { filter: brightness(1.1); opacity: 1; }
.btn-pricing-secondary { display: block; text-align: center; background: transparent; color: var(--text-sec); border: 1px solid var(--border); border-radius: 7px; padding: 10px; font-size: 14px; margin-bottom: 24px; transition: all 0.15s; }
.btn-pricing-secondary:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 13px; color: var(--text-sec); }
.feat-limit { color: var(--text-muted); font-size: 11px; margin-left: 4px; }
.feat-highlight { color: var(--accent); font-size: 11px; font-weight: 600; margin-left: 4px; }
.beta-banner { background: rgba(239,159,39,0.08); border: 1px solid rgba(239,159,39,0.25); border-radius: 8px; padding: 14px 20px; font-size: 15px; color: var(--text-sec); margin-top: 24px; }
.beta-banner strong { color: var(--text); }
.pricing-faq { padding-top: 48px; border-top: 1px solid var(--border); }
.pricing-faq h3 { font-family: var(--font-display); font-size: 24px; color: var(--text); margin-bottom: 24px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.faq-q { font-weight: 600; color: var(--text); margin-bottom: 6px; font-size: 15px; }
.faq-a { font-size: 14px; color: var(--text-sec); line-height: 1.6; }

/* ── Features full page ── */
.page-hero { padding: 60px 0 48px; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(28px,4vw,48px); font-weight: 700; color: var(--text); margin-bottom: 14px; }
.page-hero-sub { font-size: 17px; color: var(--text-sec); max-width: 560px; }
.features-full { padding: 0 0 80px; }
.feature-row { display: grid; grid-template-columns: 55% 1fr; gap: 60px; align-items: start; padding: 60px 0; max-width: var(--max-w); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.feature-row.reverse { grid-template-columns: 1fr 55%; }
.feature-row.reverse .feature-row-text { order: 2; }
.feature-row.reverse .feature-row-visual { order: 1; }
.feature-divider { max-width: var(--max-w); margin: 0 auto; border: none; border-top: 1px solid var(--border); }
.feature-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.feature-row-text h2 { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.feature-row-text p { font-size: 15px; color: var(--text-sec); line-height: 1.7; margin-bottom: 14px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.feature-list li { font-size: 14px; color: var(--text-sec); padding-left: 14px; position: relative; }
.feature-list li::before { content: '·'; position: absolute; left: 0; color: var(--accent); }
.feat-badge { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; padding: 32px; font-family: var(--font-mono); font-size: 14px; color: var(--accent); text-align: center; letter-spacing: 0.05em; }
.feature-row-visual,
.feature-row > .feature-row-visual {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
  gap: 12px;
}
.feature-row-visual > * { width: 100%; }
.feature-row-visual > .feat-shot-pad.narrow { max-width: 380px; }
.feature-row-visual > .feat-shot-pad.medium { max-width: 560px; }

/* ── Feature screenshots ─────────────────────────────────────────────────── */
.feat-screenshot-wrap { width: 100%; min-width: 0; }
.feat-screenshot {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 32px rgba(0,0,0,0.5);
  display: block;
}
.feat-screenshot-caption {
  font-size: 11px;
  color: var(--text-muted, #7A7268);
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.feat-two-up {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
}
.feat-two-up .feat-screenshot {
  max-height: 280px;
}

/* ── CTA ── */
.cta-section { padding: 80px 24px; }
.cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(26px,4vw,38px); font-weight: 700; color: var(--text); margin-bottom: 14px; }
.cta-inner p { font-size: 16px; color: var(--text-sec); margin-bottom: 28px; }
.cta-note { margin-top: 16px; font-size: 13px; color: var(--text-muted); }

/* ── Footer ── */
.footer { background: var(--bg-surface); border-top: 1px solid var(--border); padding: 32px 24px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; flex-wrap: wrap; gap: 16px; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--accent); opacity: 1; }
.footer-copy { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }

/* ── Hero video embed ── */
.hero-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(239,159,39,0.1);
}
.hero-video iframe,
.hero-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  object-fit: cover;
  background: #000;
}
.hero-video-caption { margin-top: 12px; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 0.06em; text-align: center; }

/* ── Dashboard highlights (Home: "one pane of glass") ── */
.dash-highlights { padding: 80px 0; background: var(--bg); border-top: 1px solid var(--border); }
.dash-highlights-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.dash-highlights-head .section-eyebrow,
.dash-highlights-head .section-title { display: block; }
.dash-highlights-head p { font-size: 16px; color: var(--text-sec); line-height: 1.7; margin-top: 10px; }
.dash-hero-shot { max-width: 920px; margin: 0 auto 36px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.dash-hero-shot img { display: block; width: 100%; height: auto; }
.dash-hero-caption { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); text-align: center; letter-spacing: 0.06em; margin: -20px 0 36px; }

.dash-highlights-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 14px; max-width: 920px; margin: 0 auto;
}
.dash-highlight-item {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px; font-size: 14px; color: var(--text-sec);
  line-height: 1.55;
}
.dash-highlight-item strong { color: var(--text); display: block; font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.dash-highlight-item .dh-tag { font-family: var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 6px; display: block; }

/* ── Elmer spotlight (flagship section) ── */
.elmer-spotlight { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 96px 0; }
.elmer-flagship-tag { display: inline-block; font-family: var(--font-mono); font-size: 10px; color: var(--bg); background: var(--accent); padding: 4px 10px; border-radius: 4px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.elmer-spot-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.elmer-spot-text h2 { font-family: var(--font-display); font-size: clamp(28px,3.5vw,38px); font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: 16px; }
.elmer-spot-text > p { font-size: 16px; color: var(--text-sec); line-height: 1.75; margin-bottom: 16px; }
.elmer-spot-text em { color: var(--text); font-style: italic; }
.elmer-knows { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 18px 22px; margin: 18px 0 22px; }
.elmer-knows-label { font-family: var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
.elmer-knows ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; }
.elmer-knows li { font-size: 13px; color: var(--text-sec); padding-left: 14px; position: relative; }
.elmer-knows li::before { content: '·'; color: var(--accent); position: absolute; left: 0; }
.elmer-privacy { background: rgba(239,159,39,0.06); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; padding: 14px 18px; margin: 18px 0 22px; font-size: 13px; color: var(--text-sec); line-height: 1.6; }
.elmer-privacy strong { color: var(--text); }
.elmer-spot-shots { display: flex; flex-direction: column; gap: 18px; }
.elmer-spot-shots .feat-screenshot { max-height: none; height: auto; object-fit: contain; }
.elmer-spot-shot-wrap { background: var(--bg); border-radius: 10px; padding: 8px; border: 1px solid var(--border); box-shadow: 0 6px 32px rgba(0,0,0,0.5); max-width: 380px; margin: 0 auto; width: 100%; }
.elmer-spot-shot-wrap img { width: 100%; height: auto; display: block; border-radius: 6px; }
.elmer-spot-shot-cap { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 8px; letter-spacing: 0.04em; }

/* ── Roadmap / coming soon ── */
.roadmap-section { padding: 80px 0; background: var(--bg); }
.roadmap-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.roadmap-head p { font-size: 16px; color: var(--text-sec); line-height: 1.7; margin-top: 10px; }
.roadmap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; max-width: 920px; margin: 0 auto; }
.roadmap-item { background: var(--bg-surface); border: 1px dashed var(--border); border-radius: var(--radius); padding: 22px 24px; }
.roadmap-tag { font-family: var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
.roadmap-item h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.roadmap-item p { font-size: 13px; color: var(--text-sec); line-height: 1.6; }

/* ── CTA trio (sign up / feedback / share) ── */
.cta-trio-section { padding: 80px 24px; background: var(--bg-surface); border-top: 1px solid var(--border); }
.cta-trio-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.cta-trio-inner h2 { font-family: var(--font-display); font-size: clamp(26px,4vw,36px); font-weight: 700; color: var(--text); margin-bottom: 14px; }
.cta-trio-inner > p { font-size: 16px; color: var(--text-sec); margin-bottom: 32px; }
.cta-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cta-trio-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px 22px; text-align: center; transition: border-color .2s, transform .2s; }
.cta-trio-card:hover { border-color: var(--accent-dim); transform: translateY(-2px); }
.cta-trio-card .cta-card-icon { font-size: 26px; margin-bottom: 10px; }
.cta-trio-card h3 { font-family: var(--font-display); font-size: 16px; color: var(--text); margin-bottom: 6px; }
.cta-trio-card p { font-size: 13px; color: var(--text-sec); margin-bottom: 14px; min-height: 38px; line-height: 1.5; }
.cta-trio-card .btn-card { display: inline-block; background: var(--accent); color: var(--bg) !important; border-radius: 6px; padding: 8px 18px; font-size: 13px; font-weight: 700; transition: filter .15s; }
.cta-trio-card .btn-card:hover { filter: brightness(1.1); opacity: 1; }
.cta-trio-card.secondary .btn-card { background: transparent; color: var(--accent) !important; border: 1px solid var(--accent); }
.cta-trio-card.secondary .btn-card:hover { background: var(--accent); color: var(--bg) !important; }
.share-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.share-row a {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-sec); border: 1px solid var(--border);
  border-radius: 4px; padding: 5px 10px; transition: all .15s;
  letter-spacing: 0.04em;
}
.share-row a:hover { color: var(--accent); border-color: var(--accent); opacity: 1; }
.cta-trio-note { margin-top: 24px; font-size: 13px; color: var(--text-muted); }

/* ── FAQ page ── */
.faq-page-section { padding: 0 0 80px; }
.faq-cat { max-width: 820px; margin: 48px auto 0; padding: 0 24px; }
.faq-cat-label { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 8px; }
.faq-cat-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
  background: transparent;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 4px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform .2s;
  line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-body {
  padding: 0 4px 22px;
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.75;
}
.faq-item .faq-body p + p { margin-top: 10px; }
.faq-item .faq-body code { font-family: var(--font-mono); background: var(--bg-surface); border: 1px solid var(--border); padding: 1px 6px; border-radius: 4px; font-size: 13px; color: var(--text); }
.faq-item .faq-body a { color: var(--accent); }
.faq-todo { display: inline-block; font-family: var(--font-mono); font-size: 10px; color: var(--bg); background: var(--accent); padding: 2px 8px; border-radius: 3px; letter-spacing: 0.12em; text-transform: uppercase; margin-right: 6px; vertical-align: 1px; }

/* ── Features page additions ── */
.feat-screenshot.tall { max-height: 520px; }
.feat-screenshot.contain {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  margin: 0 auto;
}
.feat-row-shot-stack { display: flex; flex-direction: column; gap: 14px; width: 100%; min-width: 0; }
.feat-shot-pad {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 6px;
  width: 100%;
}
.feat-shot-pad.narrow { max-width: 380px; margin: 0 auto; }
.feat-shot-pad.medium { max-width: 560px; margin: 0 auto; }
.feat-shot-pad img { display: block; width: 100%; height: auto; border-radius: 6px; }
.feat-shot-pad video { display: block; width: 100%; height: auto; border-radius: 6px; background: #000; }
.feature-row-text .sub-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 10px; }
.feature-row-text .sub-list li { font-size: 14px; color: var(--text-sec); padding-left: 14px; position: relative; }
.feature-row-text .sub-list li::before { content: '·'; position: absolute; left: 0; color: var(--accent); }
.feat-callout {
  background: rgba(239,159,39,0.06); border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0; padding: 12px 16px; margin: 14px 0;
  font-size: 13px; color: var(--text-sec); line-height: 1.6;
}
.feat-callout strong { color: var(--text); }

/* ── Lightbox / image zoom ── */
.zoom-trigger {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 6px;
  /* Crisp custom magnifier cursor — black glyph + white halo for legibility on any background.
     Hotspot is centered on the magnifier circle. Falls back to native zoom-in. */
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><g><circle cx='13' cy='13' r='9.5' fill='rgba(255,255,255,0.92)' stroke='%23111' stroke-width='2'/><line x1='13' y1='8.5' x2='13' y2='17.5' stroke='%23111' stroke-width='2.2' stroke-linecap='round'/><line x1='8.5' y1='13' x2='17.5' y2='13' stroke='%23111' stroke-width='2.2' stroke-linecap='round'/><line x1='20' y1='20' x2='29' y2='29' stroke='rgba(255,255,255,0.92)' stroke-width='5' stroke-linecap='round'/><line x1='20' y1='20' x2='29' y2='29' stroke='%23111' stroke-width='3' stroke-linecap='round'/></g></svg>") 13 13, zoom-in;
  color: inherit;
  font: inherit;
  text-align: inherit;
  position: relative;
  overflow: hidden;
}
.zoom-trigger img { display: block; width: 100%; height: auto; transition: transform 0.25s ease; }
.zoom-trigger:hover img,
.zoom-trigger:focus-visible img { transform: scale(1.015); }
.zoom-trigger:focus { outline: none; }
.zoom-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}
@media (prefers-reduced-motion: reduce) {
  .zoom-trigger img { transition: none; }
  .zoom-trigger:hover img,
  .zoom-trigger:focus-visible img { transform: none; }
}

body.lightbox-open { overflow: hidden; }

.lightbox {
  position: fixed; inset: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 14, 22, 0.88);
  backdrop-filter: blur(4px);
  cursor: zoom-out;
}
.lightbox-panel {
  position: relative;
  max-width: 96vw;
  max-height: 95vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  outline: none;
}
.lightbox-figure {
  margin: 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  max-width: 100%;
  max-height: 95vh;
}
.lightbox-img-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(0,0,0,0.7);
  background: var(--bg-surface);
  /* Frame expands to fill most of the viewport. Image inside is letter-
     boxed via object-fit so aspect ratio is preserved on any shape. */
  width: 92vw;
  height: 82vh;
  touch-action: none;
}
.lightbox-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  transform-origin: 50% 50%;
  transition: transform 0.12s ease-out;
  user-select: none;
  -webkit-user-drag: none;
}
@media (prefers-reduced-motion: reduce) {
  .lightbox-img { transition: none; }
}
.lightbox-caption-wrap {
  display: flex; flex-direction: column; gap: 4px;
  text-align: center;
  max-width: 880px;
  padding: 4px 8px 0;
}
.lightbox-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.lightbox-caption {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.5;
}
.lightbox-caption[hidden] { display: none; }
.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--accent);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.6);
  transition: background 0.15s, color 0.15s, transform 0.15s;
  z-index: 3;
}
.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--accent);
  color: var(--bg);
  outline: none;
  transform: scale(1.05);
}
.lightbox-close:focus-visible {
  box-shadow: 0 0 0 3px rgba(239,159,39,0.4), 0 6px 24px rgba(0,0,0,0.6);
}
.lightbox-toolbar {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 4px 6px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.6);
  z-index: 3;
  font-family: var(--font-mono);
}
.lightbox-toolbar button {
  background: transparent;
  color: var(--text);
  border: 0;
  border-radius: 999px;
  height: 36px;
  min-width: 36px;
  padding: 0 12px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, opacity 0.15s;
}
.lightbox-toolbar button svg {
  width: 18px;
  height: 18px;
  display: block;
}
.lightbox-toolbar button:hover:not(:disabled),
.lightbox-toolbar button:focus-visible:not(:disabled) {
  background: var(--accent);
  color: var(--bg);
  outline: none;
}
.lightbox-toolbar button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.lightbox-zoom-level {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
  min-width: 56px;
  text-align: center;
  padding: 0 4px;
  letter-spacing: 0.04em;
}
@media (prefers-reduced-motion: reduce) {
  .lightbox { transition: none; }
  .lightbox-close,
  .lightbox-toolbar button { transition: none; }
  .lightbox-close:hover,
  .lightbox-close:focus-visible { transform: none; }
}
@media (max-width: 700px) {
  .lightbox { padding: 12px; }
  .lightbox-toolbar {
    top: auto;
    bottom: -18px;
  }
  .lightbox-close { top: -14px; right: -6px; width: 38px; height: 38px; font-size: 22px; }
  .lightbox-img-wrap { width: 95vw; height: 70vh; }
  .lightbox-caption { font-size: 13px; }
  .lightbox-zoom-level { min-width: 44px; font-size: 11px; }
  .lightbox-toolbar button { height: 32px; min-width: 32px; padding: 0 10px; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .hero-visual { order: -1; }
  .elmer-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .feature-row,
  .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-row-text { order: 1; }
  .feature-row.reverse .feature-row-visual { order: 2; }
  .faq-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .elmer-spot-grid { grid-template-columns: 1fr; gap: 36px; }
  .elmer-knows ul { grid-template-columns: 1fr; }
  .cta-trio { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .proof-inner { flex-direction: column; gap: 8px; }
  .proof-sep { display: none; }
  .hero-actions { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .section-title { font-size: 26px; }
}

