/* /public_html/assets/css/base.css */
:root{
  /* NutriBalance / Speakcall Theme */
  --bg: #001a2a;

  /* Karten / Flächen */
  --surface: rgba(255,255,255,0.06);      /* entspricht Speakcall --card-bg */
  --surface-2: rgba(255,255,255,0.085);   /* leicht stärker für Hero */
  --border: rgba(255,255,255,0.10);

  /* Text */
  --text: #ffffff;        /* entspricht Speakcall --text-main */
  --muted: #cbd5f5;       /* entspricht Speakcall --text-muted */
  --tiny: rgba(203,213,245,0.72);

  /* Akzent */
  --accent: #1f7cff;      /* entspricht Speakcall --accent */
  --accent-soft: rgba(31,124,255,0.16);
  --accent-hover: #0d5bd1;/* entspricht Speakcall --accent-hover */

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.5);  /* entspricht Speakcall --card-shadow */
  --max: 1240px;
  --pad: 22px;

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --h1: 38px;
  --h2: 18px;
  --p: 16.5px;
  --lh: 1.55;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: var(--font);
  background: radial-gradient(1200px 600px at 20% 0%, rgba(34,211,238,0.09), transparent 55%),
              radial-gradient(900px 500px at 90% 10%, rgba(59,130,246,0.06), transparent 50%),
              var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }

.h1{ font-size: var(--h1); line-height: 1.1; margin: 0 0 10px; letter-spacing: -0.02em; }
.h2{ font-size: var(--h2); margin: 0 0 6px; letter-spacing: -0.01em; }
.p{ font-size: var(--p); line-height: var(--lh); margin: 0; color: var(--text); }
.muted{ color: var(--muted); }
.tiny{ color: var(--tiny); font-size: 13px; line-height: 1.35; }

.hr{ height:1px; background: var(--border); border:0; margin: 18px 0; }

.card{
  background: linear-gradient(180deg, var(--surface), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 13px;
}

kbd{
  font-family: var(--mono);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 12px;
}

.btn-row{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 14px;
}
.btn:hover{ border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.075); }
.btn-primary{
  background: linear-gradient(180deg, var(--accent-soft), rgba(255,255,255,0.05));
  border-color: rgba(34,211,238,0.35);
}
.btn-ghost{
  background: transparent;
}