/* =========================================================================
   Barracks Life — design system
   Single source of truth. No external CSS frameworks.
   ========================================================================= */

:root {
  /* Brand */
  --olive-700: #3D402F;
  --olive-500: #5C6048;
  --olive-300: #8A8E76;
  --gold-500: #B49D61;
  --gold-300: #D7C088;
  --gold-100: #EFE4C5;

  /* Canvas / surfaces — dark */
  --canvas: #0E1110;
  --surface-1: #1A1E1B;
  --surface-2: #262A26;
  --surface-3: #323626;

  /* Cream — light */
  --cream: #F7F6F2;
  --cream-card: #FFFFFF;
  --cream-line: #EFEDE7;

  /* Text */
  --text-on-dark: #F4F2EC;
  --text-on-dark-muted: #A6A299;
  --text-on-light: #1A1A1A;
  --text-on-light-muted: #6B6B6B;

  /* Semantic */
  --success: #5B8266;
  --danger: #C25450;
  --info: #7A8FA6;

  /* Type */
  --font-display: "Oswald", "Bebas Neue", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 760px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-soft:
    0 30px 60px rgba(0, 0, 0, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.10);
  --shadow-tight:
    0 8px 24px rgba(0, 0, 0, 0.10),
    0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-hero:
    0 60px 100px rgba(0, 0, 0, 0.40),
    0 16px 30px rgba(0, 0, 0, 0.20);
}

/* =========================================================================
   Reset
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-on-dark);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* =========================================================================
   Type
   ========================================================================= */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
}
.display-xl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.5px;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.06;
  letter-spacing: 0.5px;
}
.display-md {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: 0.5px;
}
.lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
}
.gold { color: var(--gold-500); }
.cream { color: var(--text-on-dark); }

/* =========================================================================
   Layout
   ========================================================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--max-w-narrow); }
.section { padding: clamp(60px, 9vw, 120px) 0; }
.section.tight { padding: clamp(40px, 6vw, 80px) 0; }
.section.surface { background: var(--surface-1); border-block: 1px solid rgba(244, 242, 236, 0.06); }
.section.cream {
  background: var(--cream);
  color: var(--text-on-light);
}
.section.cream .lede { color: var(--text-on-light-muted); }
.section.cream .eyebrow { color: var(--olive-700); }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold-500);
  color: var(--text-on-light);
  box-shadow: 0 10px 30px rgba(180, 157, 97, 0.25);
}
.btn-primary:hover { background: var(--gold-300); }
.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid rgba(244, 242, 236, 0.18);
}
.btn-ghost:hover { border-color: var(--gold-500); color: var(--gold-300); }
.btn-olive {
  background: var(--olive-700);
  color: var(--cream);
}
.btn-olive:hover { background: var(--olive-500); }

/* =========================================================================
   Top nav
   ========================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 17, 16, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(244, 242, 236, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 2.5px;
  color: var(--text-on-dark);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold-500); }
.nav-cta { display: inline-flex; gap: 10px; align-items: center; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--gold-500);
}
@media (max-width: 880px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--canvas);
  padding: 32px 24px;
  display: none;
  z-index: 40;
}
.mobile-drawer.open { display: block; }
.mobile-drawer a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  border-bottom: 1px solid rgba(244, 242, 236, 0.06);
  color: var(--text-on-dark);
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  z-index: -1;
}
.hero::before {
  inset: -120px auto auto -100px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(180, 157, 97, 0.20), transparent 60%);
}
.hero::after {
  inset: auto -120px -120px auto;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61, 64, 47, 0.55), transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero h1 { margin-bottom: 22px; }
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-on-dark-muted);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--text-on-dark-muted);
  font-size: 13px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-500);
}
.hero-web-cta {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 242, 236, 0.06);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.web-cta-tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--text-on-dark-muted);
  font-weight: 600;
}
.web-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-500);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  transition: color 0.15s ease, gap 0.15s ease;
}
.web-cta-link:hover {
  color: var(--gold-300);
  gap: 10px;
}

/* Hero device mock */
.hero-mock {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone {
  position: absolute;
  width: 270px;
  height: 540px;
  border-radius: 38px;
  background: #0a0b0a;
  padding: 8px;
  box-shadow: var(--shadow-hero);
}
.phone::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 5;
}
.phone .screen {
  width: 100%; height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: var(--canvas);
}
.phone.behind {
  transform: translateX(-110px) rotate(-8deg) scale(0.86);
  opacity: 0.5;
  z-index: 1;
}
.phone.front {
  z-index: 2;
  transform: translateX(40px) rotate(5deg);
}
@media (max-width: 880px) {
  .hero-mock { height: 460px; }
  .phone { width: 230px; height: 460px; }
  .phone.behind { transform: translateX(-80px) rotate(-8deg) scale(0.86); }
  .phone.front { transform: translateX(30px) rotate(5deg); }
}

/* Demo screens for hero phones */
.demo-discover {
  position: relative; height: 100%;
  background: linear-gradient(180deg, #4a3f33, #1f1a14);
}
.demo-discover .gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
}
.demo-discover .info {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  color: #fff;
}
.demo-discover .name {
  font-size: 22px; font-weight: 700; line-height: 1;
}
.demo-discover .age {
  font-size: 18px; font-weight: 400; opacity: 0.9; margin-left: 6px;
}
.demo-discover .badge {
  display: inline-flex;
  align-items: center; gap: 4px;
  background: rgba(180, 157, 97, 0.92);
  color: var(--text-on-light);
  font-size: 9px;
  letter-spacing: 0.5px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  margin-top: 8px;
}
.demo-discover .pip {
  position: absolute; top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 3px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
}

.demo-profile {
  position: relative; height: 100%;
  background: var(--cream);
  display: flex; flex-direction: column;
}
.demo-profile .header {
  background: linear-gradient(180deg, #5a4f3f, #2a221c);
  height: 220px;
  position: relative;
}
.demo-profile .card {
  margin: -40px 14px 0;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-tight);
  position: relative;
}
.demo-profile .card .name {
  font-size: 18px; font-weight: 800;
  color: var(--text-on-light);
}
.demo-profile .chips {
  display: flex; gap: 4px; flex-wrap: wrap; margin-top: 8px;
}
.demo-profile .chip {
  background: rgba(61, 64, 47, 0.08);
  color: var(--olive-700);
  font-size: 9px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

/* =========================================================================
   Stats strip
   ========================================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid rgba(244, 242, 236, 0.06);
  border-bottom: 1px solid rgba(244, 242, 236, 0.06);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: 0.5px;
}
.stat .lbl {
  font-size: 12px;
  color: var(--text-on-dark-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* =========================================================================
   Feature grid
   ========================================================================= */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 14px; }
.section-head .lede { max-width: 640px; margin: 0 auto; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--surface-1);
  border: 1px solid rgba(244, 242, 236, 0.06);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 157, 97, 0.4);
}
.feature .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(180, 157, 97, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-on-dark);
  font-weight: 700;
}
.feature p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  margin: 0;
}

/* =========================================================================
   How it works
   ========================================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; gap: 24px; } }
.step {
  background: var(--cream-card);
  border: 1px solid var(--cream-line);
  padding: 28px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-tight);
}
.step .num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text-on-light);
}
.step p {
  font-size: 14px;
  color: var(--text-on-light-muted);
  line-height: 1.55;
}

/* =========================================================================
   Safety strip
   ========================================================================= */
.safety {
  background: linear-gradient(135deg, var(--olive-700), #2C3022);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.safety::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 157, 97, 0.20), transparent 60%);
  z-index: -1;
}
.safety .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 880px) { .safety .grid { grid-template-columns: 1fr; } }
.safety h2 { color: var(--text-on-dark); margin-bottom: 14px; }
.safety .points { display: grid; gap: 14px; }
.safety .point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.safety .point .check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(180, 157, 97, 0.18);
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.safety .point strong {
  display: block;
  color: var(--text-on-dark);
  font-size: 15px;
  margin-bottom: 2px;
  font-weight: 700;
}
.safety .point span {
  color: var(--gold-300);
  font-size: 13px;
  line-height: 1.55;
}

/* =========================================================================
   Pull-quote
   ========================================================================= */
.quote-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--text-on-dark);
  margin: 0;
  letter-spacing: 0.5px;
}
.quote-block .who {
  margin-top: 18px;
  font-size: 13px;
  color: var(--gold-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
  display: grid;
  gap: 12px;
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}
.faq-item {
  background: var(--cream-card);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-md);
  padding: 0 22px;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--gold-500); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-on-light);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-500);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding: 0 0 18px;
  font-size: 14.5px;
  color: var(--text-on-light-muted);
  line-height: 1.65;
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
  background: var(--canvas);
  border-top: 1px solid rgba(244, 242, 236, 0.06);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer ul li {
  padding: 5px 0;
  font-size: 14px;
}
.footer ul li a {
  color: var(--text-on-dark-muted);
  transition: color 0.15s ease;
}
.footer ul li a:hover { color: var(--gold-500); }
.footer-meta {
  border-top: 1px solid rgba(244, 242, 236, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-on-dark-muted);
}
.footer-pitch {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  max-width: 320px;
}

/* =========================================================================
   Store badges (use real PNG/SVG when you have them)
   ========================================================================= */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(244, 242, 236, 0.12);
  transition: border-color 0.15s ease;
}
.store-badge:hover { border-color: var(--gold-500); }
.store-badge .small {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text-on-dark-muted);
}
.store-badge .big {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* =========================================================================
   Article / legal pages
   ========================================================================= */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  background: var(--canvas);
}
.article header { margin-bottom: 40px; }
.article header .eyebrow { display: block; margin-bottom: 12px; }
.article header h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0.3px;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}
.article header .meta {
  font-size: 13px;
  color: var(--text-on-dark-muted);
}
.article h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 40px 0 14px;
  color: var(--text-on-dark);
  letter-spacing: 0.3px;
}
.article h3 {
  font-size: 18px;
  margin: 24px 0 10px;
  color: var(--text-on-dark);
  font-weight: 700;
}
.article p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
  margin-bottom: 16px;
}
.article ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--text-on-dark-muted);
}
.article ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 15.5px;
}
.article a {
  color: var(--gold-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article a:hover { color: var(--gold-300); }
.callout {
  background: var(--surface-1);
  border-left: 3px solid var(--gold-500);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
}
.callout strong { color: var(--text-on-dark); }

/* Crisis card on /safety */
.crisis-card {
  background: linear-gradient(135deg, #401818, #1c0c0c);
  border: 1px solid rgba(194, 84, 80, 0.30);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
}
.crisis-card .label {
  color: #ff8b82;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.crisis-card h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.crisis-card p { color: #f8c9c5; font-size: 14.5px; margin-bottom: 16px; }
.crisis-btn {
  display: inline-flex;
  background: #C25450;
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
}

/* =========================================================================
   Intel index (blog list)
   ========================================================================= */
.intel-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .intel-list { grid-template-columns: 1fr; } }
.intel-card {
  background: var(--surface-1);
  border: 1px solid rgba(244, 242, 236, 0.06);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: block;
  overflow: hidden;
}
.intel-card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  flex-shrink: 0;
}
.intel-card-body {
  padding: 22px 26px 26px;
}
.intel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 157, 97, 0.4);
}
.intel-card .top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.intel-card .cat {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(180, 157, 97, 0.12);
  padding: 4px 9px;
  border-radius: 6px;
}
.intel-card .date {
  font-size: 12px;
  color: var(--text-on-dark-muted);
}
.intel-card h3 {
  font-size: 19px;
  line-height: 1.3;
  color: var(--text-on-dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.intel-card p {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.intel-card .read {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold-500);
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =========================================================================
   Utilities
   ========================================================================= */
.hide-on-small { display: revert; }
@media (max-width: 720px) {
  .hide-on-small { display: none; }
}
.flow > * + * { margin-top: 16px; }
.text-center { text-align: center; }
.fadein { animation: fadein 600ms ease-out both; }
@keyframes fadein {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
