/* Aevumex marketing site — tokens mirror the app (DESIGN.md). */
:root {
  --bg: #f9f9f9;
  --surface: #ffffff;
  --surface-2: #f3f4f3;
  --surface-3: #edeeee;
  --ink: #1a1c1c;
  --muted: #4d4635;
  --outline: #7f7663;
  --line: #d0c5af;
  --gold: #735c00;
  --gold-fill: #d4af37;
  --gold-hi: #f5d061;
  --gold-lo: #b89025;
  --emerald: #006c49;
  --emerald-soft: #e3f7ee;
  --shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.1), 0 3px 8px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.95);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121413;
    --surface: #1c1e1d;
    --surface-2: #171918;
    --surface-3: #232625;
    --ink: #ece6d6;
    --muted: #b8b0a0;
    --outline: #9a9184;
    --line: #3a372e;
    --gold: #e9c349;
    --emerald: #4edea3;
    --emerald-soft: #0f2a21;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}
* { box-sizing: border-box; }
html { color-scheme: light dark; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: "Space Grotesk", "Manrope", sans-serif; letter-spacing: -0.01em; line-height: 1.15; margin: 0 0 0.5em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 600; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; margin-top: 2.5rem; }
h3 { font-size: 1.15rem; font-weight: 600; margin-top: 1.5rem; }
p { margin: 0 0 1em; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }
header.site {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.15rem; }
.brand img { width: 40px; height: 40px; border-radius: 12px; }
nav.site a { margin-left: 18px; font-family: "Nunito Sans", sans-serif; font-size: 0.9rem; letter-spacing: 0.02em; color: var(--muted); }
nav.site a.lang { border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; }
.hero { padding: 48px 0 32px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.hero .kicker { font-family: "Nunito Sans", sans-serif; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--emerald); display: inline-flex; align-items: center; gap: 8px; }
.hero .kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); }
.hero p.lead { font-size: 1.2rem; color: var(--muted); max-width: 34rem; }
.cta { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 12px; font-weight: 700; font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold-fill) 45%, var(--gold-lo) 100%); color: #241a00;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.28), 0 2px 4px rgba(0, 0, 0, 0.18), inset 0 1px 0 #fff4bd, inset 0 -2px 0 #7a6014; }
.cta:hover { text-decoration: none; filter: brightness(1.03); }
.cta.ghost { background: var(--surface); color: var(--ink); box-shadow: var(--shadow); border: 1px solid var(--line); }
.phone { justify-self: center; width: min(320px, 100%); border-radius: 36px; background: linear-gradient(180deg, #1e232d, #0e1116); padding: 18px; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5); }
.phone .screen { background: var(--bg); border-radius: 24px; padding: 18px; color: var(--ink); }
.phone .label { font-family: "Nunito Sans", sans-serif; font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--outline); }
.phone .value { font-family: "Space Grotesk", sans-serif; font-size: 2rem; font-weight: 600; margin: 4px 0 8px; }
.phone .pill { display: inline-block; background: var(--emerald-soft); color: var(--emerald); border-radius: 999px; padding: 3px 10px; font-size: 0.8rem; font-weight: 600; }
.phone .row { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding: 12px; border-radius: 12px; background: var(--surface-3); box-shadow: var(--shadow); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin: 24px 0; }
.card { background: var(--surface-3); border-radius: 16px; padding: 22px; box-shadow: var(--shadow); border: 1px solid rgba(255, 255, 255, 0.5); }
.card h3 { margin-top: 0; }
.card p { color: var(--muted); margin: 0; font-size: 0.98rem; }
.card .icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(212, 175, 55, 0.18); color: var(--gold); display: grid; place-items: center; font-weight: 700; margin-bottom: 12px; }
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.price { font-family: "Space Grotesk", sans-serif; font-size: 2rem; font-weight: 600; }
.price small { font-size: 0.9rem; color: var(--muted); font-weight: 400; }
ul.check { list-style: none; padding: 0; margin: 12px 0 0; }
ul.check li { padding-left: 24px; position: relative; margin: 6px 0; color: var(--muted); }
ul.check li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald); font-weight: 700; }
.note { font-size: 0.9rem; color: var(--outline); }
footer.site { margin-top: 56px; padding: 28px 0 40px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.9rem; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; }
footer.site a { color: var(--muted); margin-right: 16px; }
.legal { padding: 24px 0 8px; }
.legal h1 { font-size: 2.2rem; }
.legal .meta { color: var(--outline); font-size: 0.9rem; }
.legal table { width: 100%; border-collapse: collapse; font-size: 0.95rem; margin: 12px 0 20px; }
.legal th, .legal td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal th { font-family: "Nunito Sans", sans-serif; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--outline); }
.legal ol, .legal ul { padding-left: 1.3em; }
.badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding-top: 24px; }
  nav.site a { margin-left: 12px; }
}
