/* =====================================================
   Lucy — lucy.xymex.com
   Minimal static CSS. No framework. No build step.
   Phosphor-green accent: #39ff6a
   Dark background: #0d0d0d
   ===================================================== */

/* --- Reset & base ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:    #39ff6a;
  --green-dim: #1e9c3f;
  --bg:       #0d0d0d;
  --surface:  #161616;
  --border:   #2a2a2a;
  --text:     #e8e8e8;
  --muted:    #888;
  --radius:   8px;
  --max-w:    1040px;
  --pad:      clamp(16px, 5vw, 48px);
}

html { scroll-behavior: smooth; }

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

/* --- Layout ---------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

section { padding: clamp(48px, 8vw, 96px) 0; }

h1 { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; }
a  { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; }

/* --- Buttons --------------------------------------- */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: #52ff84; text-decoration: none; }

/* --- Hero ------------------------------------------ */
.hero {
  padding: clamp(64px, 12vw, 128px) 0 clamp(48px, 8vw, 80px);
  border-bottom: 1px solid var(--border);
}
.hero-lockup { max-width: 680px; }
.eyebrow {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.hero h1 { margin-bottom: 1rem; }
.sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--muted);
  margin-bottom: 1rem;
}
.support-line { color: var(--muted); font-size: 1rem; margin-bottom: 0; }
.price-note { color: var(--muted); font-size: 0.9rem; margin-top: 0.75rem; }

/* --- Privacy proof --------------------------------- */
.privacy-proof { background: var(--surface); }
.label-block {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.label-badge {
  flex: 0 0 auto;
  background: #000;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  min-width: 180px;
}
.label-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}
.label-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}
.label-explain { flex: 1 1 300px; }
.label-explain ul li { padding-left: 1.25rem; position: relative; margin-bottom: 0.4rem; color: var(--text); }
.label-explain ul li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); }

/* --- How it works ---------------------------------- */
.section-sub { color: var(--muted); margin-bottom: 2rem; }
.steps { list-style: none; display: flex; flex-direction: column; gap: 2rem; }
.steps li { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  flex: 0 0 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  background: var(--green);
  color: #000;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
}
.steps li strong { display: block; margin-bottom: 0.25rem; }
.steps li p { color: var(--muted); margin: 0; }

/* --- Features -------------------------------------- */
.features { background: var(--surface); }
.feature-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.75rem; margin-top: 1.5rem; }
.feature-list li {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.feature-list li strong { color: var(--green); }
.defer-note {
  margin-top: 1.5rem;
  padding: 12px 16px;
  background: var(--bg);
  border-left: 3px solid var(--green-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* --- Verticals ------------------------------------- */
.vertical-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 { color: var(--green); }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.5rem; }
.card-note { font-size: 0.8rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 0.5rem; margin-top: 0.5rem; }

/* --- Expectations ---------------------------------- */
.expectations { background: var(--surface); }
.best-results {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 1.5rem;
  max-width: 600px;
}
.best-results ul { margin: 0.75rem 0 1rem; }
.best-results ul li { padding-left: 1.25rem; position: relative; margin-bottom: 0.4rem; }
.best-results ul li::before { content: "\00B7"; position: absolute; left: 0; color: var(--green); font-size: 1.5rem; line-height: 1; top: 0.1rem; }
.caveat { color: var(--muted); font-size: 0.9rem; margin-bottom: 0; }

/* --- Pricing --------------------------------------- */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.price-card.base { border-color: var(--green); }
.price-card h3 { margin-bottom: 0.5rem; }
.price-card.base h3 { color: var(--green); }
.price-amount { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.25rem; }
.price-type { font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; }
.price-card ul { flex: 1; }
.price-card ul li { font-size: 0.9rem; color: var(--muted); padding-left: 1.25rem; position: relative; margin-bottom: 0.4rem; }
.price-card ul li::before { content: "\2013"; position: absolute; left: 0; color: var(--green-dim); }
.price-cta { font-size: 0.85rem; color: var(--green); margin-top: 0.75rem; margin-bottom: 0; }

/* --- Benchmark teaser ------------------------------ */
.benchmark-teaser { background: var(--surface); }
.benchmark-teaser p { color: var(--muted); max-width: 640px; }

/* --- Download -------------------------------------- */
.download { text-align: center; }
.download h2 { margin-bottom: 0.5rem; }
.download p { color: var(--muted); max-width: 560px; margin: 0 auto 0; }
.btn-appstore { display: inline-block; margin-top: 1.5rem; }
.coming-soon-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.75rem; }

/* --- Footer ---------------------------------------- */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-nav a { font-size: 0.9rem; color: var(--muted); }
.footer-nav a:hover { color: var(--text); }
.footer-legal { font-size: 0.8rem; color: var(--muted); }
.footer-legal a { color: var(--muted); text-decoration: underline; }

/* --- Responsive tweaks ----------------------------- */
@media (max-width: 600px) {
  .label-block { flex-direction: column; }
  .steps li { flex-direction: column; }
  .step-num { align-self: flex-start; }
}
