/*
Theme Name: Launch Rocket Bridge
Theme URI: https://launchrocketai.info
Author: Shane / Launch Rocket AI
Description: Sister site theme matching Launch Rocket AI branding.
Version: 1.0
Text Domain: launchrocket-bridge
*/

:root {
  /* Replace these with your actual colors from the .info site */
  --lr-bg: #020617;           /* main background */
  --lr-surface: #020921;      /* card background */
  --lr-primary: #38bdf8;      /* main accent (neon blue) */
  --lr-primary-soft: rgba(56, 189, 248, 0.12);
  --lr-accent: #f97316;       /* secondary accent (orange) */
  --lr-text: #e5e7eb;
  --lr-muted: #9ca3af;
  --lr-border: #1f2937;
}

/* basic global styling (same as earlier message, shortened here) */

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #000 55%);
  color: var(--lr-text);
  line-height: 1.6;
}

a {
  color: var(--lr-primary);
  text-decoration: none;
}
a:hover { color: var(--lr-accent); }

/* header, layout, hero, packages, cards, footer, responsive */
/* (use the exact CSS from the previous message – you can paste it all in here) */
