:root{
  --bg: #f7fafc;
  --card: #ffffff;
  --card2: #ffffff;
  --text: #0f172a;
  --muted: rgba(15,23,42,0.65);
  --border: rgba(15,23,42,0.10);
  --shadow: 0 18px 50px rgba(2, 6, 23, 0.10);
  --accent: #2563eb;
  --accent2: #0ea5e9;
  --good: #16a34a;
  --warn: #f59e0b;
  --bad: #ef4444;
  --radius: 18px;
}

/* root page styles */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #0f172a;
  color: white;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

p {
  opacity: 0.85;
  font-size: 18px;
}

.hero {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.hero-logo{
  width: 240px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn:hover {
  background: #1d4ed8;
}

.section {
  padding: 30px 20px;
}

.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 40px;
}

.card {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 12px;
}

footer {
  text-align: center;
  padding: 40px 20px;
  opacity: 0.6;
  font-size: 14px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

.nav a:hover {
  opacity: 0.7;
}

.hero-ctas{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: wrap;
}

.btn.btn-secondary{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn.btn-secondary:hover{
  background: rgba(255,255,255,0.14);
}

.sub{
  margin-top: -6px;
  opacity: 0.75;
}

.card.brand{
  display:flex;
  flex-direction: column;
  align-items: center;
  text-align:center;
}

.brand-logo{
  width: 100%;
  max-width: 240px;      /* bigger logo plate */
  height: 200px;         /* more vertical space */
  object-fit: contain;

  display:block;
  margin: 0 auto 18px auto;

  padding: 18px 22px;
  border-radius: 16px;

  /* brighter background so Crisis Ready Gear pops */
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.10),
      0 8px 20px rgba(0,0,0,0.25);

  filter: saturate(1.1) contrast(1.1);
}

.link{
  display:inline-block;
  margin-top: 12px;
  color: #93c5fd;
  text-decoration: none;
  font-weight: 600;
}
.link:hover{ opacity: 0.85; }

.nav-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}

.nav-logo{
  height: 84px;
  width: auto;
  display:block;
  filter: brightness(1.05);
  opacity: 0.95;
}