/* ---------------------------------------------------------
   OmnisonrAI / Alloy HX — Dark Neon Amber Theme
   --------------------------------------------------------- */

:root {
  --bg-dark: #050607;
  --bg-panel: #0b0d10;
  --text-light: #f5f7fb;
  --text-muted: #9ba0b5;

  --amber: #ffb347;
  --amber-glow: rgba(255, 179, 71, 0.45);

  --alloy-gold: #e6c27a;
  --accent: #ff9f1c;

  --border-soft: rgba(255, 255, 255, 0.08);
  --radius: 10px;
  --transition: 0.25s ease;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  padding-bottom: 4rem;
}

a {
  color: var(--amber);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--alloy-gold);
}

/* ---------------------------------------------------------
   Layout Containers
   --------------------------------------------------------- */

.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* ---------------------------------------------------------
   Hero Section
   --------------------------------------------------------- */

.hero {
  text-align: center;
  padding: 5rem 2rem 3rem;
  background: linear-gradient(180deg, #0b0d10 0%, #050607 100%);
  border-bottom: 1px solid var(--border-soft);
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: var(--amber);
  text-shadow: 0 0 12px var(--amber-glow);
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.location {
  margin-top: 0.3rem;
  color: var(--text-muted);
}

.cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  background: var(--amber);
  color: #000;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 0 18px var(--amber-glow);
  transition: var(--transition);
}

.cta:hover {
  background: var(--alloy-gold);
  box-shadow: 0 0 25px var(--amber-glow);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   Section Styling
   --------------------------------------------------------- */

.section,
.about,
.founder,
.contact {
  padding: 3rem 2rem;
  border-bottom: 1px solid var(--border-soft);
}

.section h2,
.about h2,
.founder h2,
.contact h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--amber);
  text-shadow: 0 0 10px var(--amber-glow);
}

.section p,
.about p,
.founder p,
.contact p {
  color: var(--text-light);
  max-width: 800px;
  margin-bottom: 1rem;
}

/* ---------------------------------------------------------
   Lists
   ------------------------------------------------