/* ═══════════════════════════════════════════════════════════
   Espresso FlowCon — shared site styles
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --bg:        #1a1a1a;
  --card:      #2a2a2a;
  --border:    #3a3a3a;
  --gold:      #c9a96f;
  --gold-dim:  #a8854e;
  --text:      #e8dfd4;
  --muted:     #888888;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 700; color: var(--gold); letter-spacing: 0.03em; text-decoration: none; }
.nav-logo img { width: 30px; height: 30px; border-radius: 7px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--gold); color: #1a1a1a;
  padding: 8px 20px; border-radius: 999px;
  font-size: 0.875rem; font-weight: 700;
  text-decoration: none; transition: background .2s;
}
.nav-cta:hover { background: var(--gold-dim); }

/* ── SHARED SECTION HEADINGS ── */
.section-label {
  text-align: center;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700;
  margin-bottom: 48px;
}

/* ── SHARED BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #1a1a1a;
  padding: 14px 28px; border-radius: 14px;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold-dim); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 28px; border-radius: 14px;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: border-color .2s, transform .15s;
}
.btn-secondary:hover { border-color: var(--gold); transform: translateY(-1px); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); max-width: 1100px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   INDEX PAGE
   ═══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 96px 24px 80px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,169,111,0.12) 0%, transparent 70%);
}
.hero-icon { width: 110px; height: 110px; border-radius: 24px; box-shadow: 0 12px 40px rgba(0,0,0,0.5); margin-bottom: 28px; }
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.15rem; color: var(--muted);
  max-width: 560px; margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-sub { margin-top: 16px; font-size: 0.8rem; color: var(--muted); }

/* ── SCREENSHOTS STRIP ── */
.screenshots { padding: 80px 24px; overflow: hidden; }
.screenshots-scroll {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.screenshot-card {
  flex: 0 0 auto;
  width: 180px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform .25s, box-shadow .25s;
}
.screenshot-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.7); }
.screenshot-card img { width: 100%; display: block; }
.screenshot-label {
  background: var(--card);
  padding: 8px 10px;
  font-size: 0.72rem; color: var(--muted); text-align: center; letter-spacing: 0.04em;
}

/* ── FEATURES ── */
.features { padding: 80px 24px; max-width: 1100px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px;
  transition: border-color .2s;
}
.feature-card:hover { border-color: var(--gold); }
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.feature-card--screenshot { padding: 0; overflow: hidden; }
.feature-card--screenshot img { width: 100%; display: block; }
.feature-card--screenshot .feature-card-body { padding: 20px 22px 22px; }
.feature-card--screenshot .feature-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.feature-card--screenshot .feature-card-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.feature-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; background: #000; }
.feature-shots.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature-shots img { width: 100%; display: block; }
.feature-card--screenshot .feature-card-body ul { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 6px; }
.feature-card--screenshot .feature-card-body ul li { font-size: 0.82rem; color: var(--muted); line-height: 1.5; padding-left: 14px; position: relative; }
.feature-card--screenshot .feature-card-body ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.feature-learn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  color: var(--gold); font-size: 0.82rem; font-weight: 700;
  text-decoration: none;
  transition: gap .2s, color .2s;
}
.feature-learn:hover { color: var(--gold-dim); gap: 10px; }

/* ── HOW TO USE CTA (index) ── */
.htu-cta { padding: 80px 24px; }
.htu-cta-inner {
  max-width: 820px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.htu-cta-inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,169,111,0.10), transparent 70%);
  pointer-events: none;
}
.htu-cta-inner > * { position: relative; }
.htu-cta .htu-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(201,169,111,0.12);
  border: 1px solid rgba(201,169,111,0.35);
  border-radius: 14px;
  color: var(--gold);
  margin-bottom: 18px;
}
.htu-cta .htu-icon svg { width: 28px; height: 28px; }
.htu-cta h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; margin-bottom: 14px; }
.htu-cta > .htu-cta-inner > p { color: var(--muted); font-size: 1rem; max-width: 540px; margin: 0 auto 28px; }
.htu-topics {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 640px; margin: 0 auto 32px;
  text-align: left;
}
.htu-topic {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(201,169,111,0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  text-decoration: none;
  transition: border-color .2s, transform .15s;
}
.htu-topic:hover { border-color: var(--gold); transform: translateY(-2px); }
.htu-topic svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.htu-topic strong { display: block; color: var(--text); font-size: 0.85rem; font-weight: 700; }
.htu-topic span { font-size: 0.75rem; color: var(--muted); line-height: 1.4; }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 80px 24px;
  background: linear-gradient(180deg, transparent, rgba(201,169,111,0.04) 50%, transparent);
}
.steps { display: flex; flex-direction: column; gap: 0; max-width: 640px; margin: 48px auto 0; }
.steps .step {
  display: flex; gap: 24px; align-items: flex-start;
  padding-bottom: 36px; position: relative;
  background: transparent; border: none; border-radius: 0;
}
.steps .step:not(:last-child)::after {
  content: '';
  position: absolute; left: 19px; top: 44px; bottom: 0;
  width: 2px; background: var(--border);
}
.steps .step-num {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
}
.steps .step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.steps .step p { font-size: 0.9rem; color: var(--muted); }

/* ── ROAST PROFILES ── */
.roast-profiles { padding: 80px 24px; max-width: 900px; margin: 0 auto; }
.profiles-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; }
.profile-row {
  display: grid; grid-template-columns: 160px 1fr;
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.profile-row:hover { border-color: var(--gold); }
.profile-label {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 16px;
  font-weight: 700; font-size: 0.9rem;
  border-right: 1px solid var(--border);
}
.profile-specs {
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  padding: 14px 20px; align-items: center;
}
.spec { font-size: 0.82rem; }
.spec-key { color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.7rem; display: block; }
.spec-val { color: var(--text); font-weight: 600; }

/* ── PRICING ── */
.pricing { padding: 80px 24px; max-width: 800px; margin: 0 auto; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.plan-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 32px 28px;
}
.plan-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(201,169,111,0.15);
}
.plan-badge {
  display: inline-block;
  background: var(--gold); color: #1a1a1a;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px; margin-bottom: 16px;
}
.plan-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.plan-price { font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.plan-price span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.plan-price-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 24px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem;
}
.plan-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.plan-features li.disabled { color: var(--muted); }
.plan-features li.disabled::before { content: '–'; color: var(--border); }

/* ── PRIVACY POLICY ── */
.privacy { padding: 80px 24px; max-width: 800px; margin: 0 auto; }
.privacy-content {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 40px 36px; margin-top: 48px;
}
.privacy-content h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--gold);
  margin: 28px 0 8px;
}
.privacy-content h3:first-child { margin-top: 0; }
.privacy-content p, .privacy-content ul {
  font-size: 0.9rem; color: var(--muted); line-height: 1.75;
}
.privacy-content ul { padding-left: 20px; }
.privacy-content ul li { margin-bottom: 6px; }
.privacy-effective { font-size: 0.8rem; color: var(--muted); margin-bottom: 24px; }

/* ── MORE APPS ── */
.more-apps { padding: 80px 24px; max-width: 700px; margin: 0 auto; }
.more-apps-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 48px 36px; text-align: center; overflow: hidden;
}
.more-apps-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(201,169,111,0.12); border: 1px solid rgba(201,169,111,0.35);
  border-radius: 14px; color: var(--gold); margin-bottom: 20px;
  overflow: hidden;
}
.more-apps-icon svg { width: 28px; height: 28px; flex-shrink: 0; }
.more-apps-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.more-apps-card > p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; max-width: 480px; margin: 0 auto 28px; }

/* ── SUPPORT ── */
.support { padding: 80px 24px; max-width: 700px; margin: 0 auto; }
.support-content {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 48px 36px; text-align: center;
}
.support-content h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.support-content > p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; max-width: 480px; margin: 0 auto 28px; }
.support-email {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,169,111,0.10); border: 1px solid rgba(201,169,111,0.35);
  padding: 14px 28px; border-radius: 14px;
  color: var(--gold); font-size: 1rem; font-weight: 700;
  text-decoration: none; transition: background .2s, transform .15s;
}
.support-email:hover { background: rgba(201,169,111,0.18); transform: translateY(-1px); }
.support-email svg { flex-shrink: 0; }

/* ── TERMS & CONDITIONS ── */
.terms { padding: 80px 24px; max-width: 800px; margin: 0 auto; }
.terms-content {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 40px 36px; margin-top: 48px;
}
.terms-content p {
  font-size: 0.9rem; color: var(--muted); line-height: 1.75;
}
.terms-content ul { padding-left: 20px; margin: 16px 0; }
.terms-content ul li { margin-bottom: 10px; font-size: 0.9rem; }
.terms-content a { color: var(--gold); text-decoration: none; transition: color .2s; }
.terms-content a:hover { color: var(--gold-dim); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.footer-logo { font-size: 1rem; font-weight: 700; color: var(--gold); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.78rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   HOW-TO-USE PAGE
   ═══════════════════════════════════════════════════════════ */

.page-hero {
  text-align: center;
  padding: 80px 24px 40px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,169,111,0.12) 0%, transparent 70%);
}
.page-hero img { width: 72px; height: 72px; border-radius: 16px; box-shadow: 0 8px 28px rgba(0,0,0,0.5); margin-bottom: 20px; }
.page-hero .section-label { margin-bottom: 12px; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero > p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }
.read-time {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  padding: 6px 14px;
  background: rgba(201,169,111,0.08);
  border: 1px solid rgba(201,169,111,0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
}
.read-time svg { width: 14px; height: 14px; }

/* ── GUIDE LAYOUT ── */
.guide-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 24px 80px; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); text-decoration: none; font-size: 0.9rem;
  margin-bottom: 24px;
}
.back-link:hover { color: var(--gold-dim); }

.guide-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 24px;
}
.guide-search svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }
.guide-search input {
  flex: 1;
  background: transparent; border: none; outline: none;
  color: var(--text); font-size: 0.95rem;
  font-family: inherit;
}
.guide-search input::placeholder { color: var(--muted); }
.guide-search kbd {
  font-size: 0.7rem; color: var(--muted);
  border: 1px solid var(--border); border-radius: 5px;
  padding: 2px 6px;
  font-family: inherit;
}

.guide-layout { display: block; }
.guide-content { min-width: 0; }

.toc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.toc h2 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.toc ol {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 24px;
  list-style: none; counter-reset: toc;
}
.toc li { counter-increment: toc; }
.toc a {
  color: var(--text); text-decoration: none; font-size: 0.92rem;
  display: flex; align-items: baseline; gap: 10px;
  padding: 4px 0;
  transition: color .2s;
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
}
.toc a:hover { color: var(--gold); }

/* Desktop: sticky side TOC */
.toc-side {
  display: none;
  position: sticky; top: 80px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 18px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.toc-side h2 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.toc-side ol { list-style: none; counter-reset: tocside; display: flex; flex-direction: column; gap: 2px; }
.toc-side li { counter-increment: tocside; }
.toc-side a {
  display: flex; align-items: baseline; gap: 8px;
  color: var(--muted); text-decoration: none;
  font-size: 0.82rem;
  padding: 6px 10px; border-radius: 7px;
  border-left: 2px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
}
.toc-side a::before {
  content: counter(tocside, decimal-leading-zero);
  color: var(--gold); font-size: 0.7rem; font-weight: 700;
}
.toc-side a:hover { color: var(--text); background: rgba(201,169,111,0.06); }
.toc-side a.active { color: var(--gold); background: rgba(201,169,111,0.1); border-left-color: var(--gold); }

.guide-section { margin-bottom: 56px; scroll-margin-top: 80px; }
.guide-section.is-hidden { display: none; }
.guide-section-header {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.guide-section-header .icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,169,111,0.12);
  border: 1px solid rgba(201,169,111,0.35);
  border-radius: 10px;
  color: var(--gold);
  flex-shrink: 0;
}
.guide-section-header .icon svg { width: 20px; height: 20px; }
.guide-section-header h2 { font-size: 1.45rem; font-weight: 700; flex: 1; }
.guide-section-header .anchor {
  color: var(--muted); text-decoration: none;
  font-size: 1.1rem; opacity: 0;
  transition: opacity .2s, color .2s;
  padding: 4px 8px;
}
.guide-section-header:hover .anchor { opacity: 1; }
.guide-section-header .anchor:hover { color: var(--gold); }

.guide-step {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 22px;
  margin-bottom: 14px;
}
.guide-step.is-hidden { display: none; }
.guide-step-num {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: #1a1a1a;
  border-radius: 10px; font-weight: 800; font-size: 0.95rem;
}
.guide-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.guide-step p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
.guide-step-shot {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  max-width: 260px;
}
.guide-step-shot img { width: 100%; display: block; }

.tip {
  display: flex; gap: 14px;
  background: rgba(201,169,111,0.08);
  border: 1px solid rgba(201,169,111,0.35);
  border-radius: 12px; padding: 16px 18px;
  margin: 18px 0 14px;
}
.tip::before {
  content: "💡";
  flex-shrink: 0;
  font-size: 1.05rem;
}
.tip p { font-size: 0.9rem; color: var(--text); line-height: 1.6; }

/* Premium CTA (replaces comparison table) */
.premium-cta {
  background: var(--card);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(201,169,111,0.2), 0 8px 32px rgba(201,169,111,0.1);
}
.premium-cta .plan-badge {
  display: inline-block;
  background: var(--gold); color: #1a1a1a;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.premium-cta h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.premium-cta > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; max-width: 520px; margin-left: auto; margin-right: auto; }
.premium-cta ul {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px 20px;
  max-width: 580px; margin: 0 auto 24px;
  text-align: left;
}
.premium-cta li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text);
}
.premium-cta li::before { content: '✓'; color: var(--gold); font-weight: 700; }

.ref-list {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 8px 4px;
}
.ref-row {
  display: grid; grid-template-columns: 44px 140px 1fr; gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.ref-row:last-child { border-bottom: none; }
.ref-row .ref-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,169,111,0.12);
  border-radius: 10px;
  color: var(--gold);
}
.ref-row .ref-icon svg { width: 18px; height: 18px; }
.ref-row .ref-label { font-weight: 700; color: var(--text); }
.ref-row .ref-detail { font-size: 0.88rem; color: var(--muted); }

.trouble {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 22px;
  margin-bottom: 14px;
}
.trouble h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.trouble h3::before {
  content: "⚠";
  color: var(--gold); font-size: 1.05rem;
}
.trouble ul { list-style: none; display: grid; gap: 8px; }
.trouble li {
  font-size: 0.9rem; color: var(--muted); line-height: 1.55;
  padding-left: 18px; position: relative;
}
.trouble li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

.no-results {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
.no-results.is-visible { display: block; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  .features { max-width: 1280px; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-card--screenshot { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); align-items: stretch; }
  .feature-card--screenshot .feature-shots { height: 100%; align-content: start; }
  .feature-card--screenshot .feature-card-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
  .feature-card--screenshot .feature-card-body h3 { font-size: 1.5rem; margin-bottom: 12px; }
  .feature-card--screenshot .feature-card-body p { font-size: 1rem; }
  .feature-card--screenshot .feature-card-body ul { margin-top: 18px; gap: 10px; }
  .feature-card--screenshot .feature-card-body ul li { font-size: 0.95rem; padding-left: 18px; }
  .feature-card--screenshot .feature-card-body ul li::before { top: 10px; }
}

@media (min-width: 960px) {
  .guide-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }
  .toc-side { display: block; }
  .toc { display: none; }
}

@media (max-width: 600px) {
  nav { padding: 12px 16px; }
  .nav-links { display: none; }
  .privacy-content { padding: 28px 20px; }
  .profile-row { grid-template-columns: 1fr; }
  .profile-label { border-right: none; border-bottom: 1px solid var(--border); }
  .guide-step { grid-template-columns: 1fr; }
  .guide-step-num { margin-bottom: 4px; }
  .ref-row { grid-template-columns: 36px 1fr; }
  .ref-row .ref-detail { grid-column: 1 / -1; padding-left: 50px; }
}
