/* ───────────────────────────────────────────────────────────────
   Godeap brand tokens — Horizon AI event
   Extracted from godeap.ai (teal #14b8a6 primary).
   Positioning: "Sovereign AI Systems for ASEAN —
   built on your infrastructure, under your control."
   ─────────────────────────────────────────────────────────────── */
:root {
  /* Brand teal scale */
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6; /* PRIMARY */
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --brand: var(--teal-500);
  --brand-bright: var(--teal-400);
  --brand-deep: var(--teal-700);

  /* Secondary + accent */
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --amber-500: #d97706;
  --amber-400: #f59e0b;

  /* Danger scale — App B "exposure" theatre */
  --safe:   #22c55e;
  --warn:   #eab308;
  --alert:  #f97316;
  --danger: #ef4444;
  --danger-deep: #b91c1c;

  /* Neutrals (dark-first, screens live on projectors) */
  --ink-950: #05080a;
  --ink-900: #0a0f12;
  --ink-850: #0e1418;
  --ink-800: #111a1f;
  --ink-700: #1b262c;
  --ink-600: #2a3941;
  --ink-500: #48606b;
  --ink-400: #708995;
  --fog-300: #9fb2bb;
  --fog-200: #c6d3d9;
  --fog-100: #e8eef1;
  --white:   #ffffff;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-mono: "SF Mono", Monaco, Menlo, "Ubuntu Mono", Consolas, monospace;

  /* Radii + shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-soft: 0 10px 40px -12px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 40px -6px rgba(20, 184, 166, 0.45);
  --shadow-danger: 0 0 44px -6px rgba(239, 68, 68, 0.5);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

.brand-gradient {
  background: radial-gradient(1200px 600px at 15% -10%, rgba(20,184,166,.18), transparent 60%),
              radial-gradient(1000px 700px at 100% 0%, rgba(59,130,246,.12), transparent 55%),
              var(--ink-950);
}

.mono { font-family: var(--font-mono); }

/* Godeap wordmark helper */
.godeap-mark {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; letter-spacing: -0.02em;
}
.godeap-mark img { height: 1.2em; width: auto; }

/* Reduced-motion respect */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
