/* ============================================
   THE DARK LAYER — styles.css
   Dark Cyber Aesthetic | Gold + Red Accents
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Exo+2:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #111111;
  --bg-card:       #161616;
  --bg-card-hover: #1c1c1c;
  --gold:          #FFD700;
  --gold-dim:      #c9a800;
  --gold-glow:     rgba(255, 215, 0, 0.15);
  --red:           #cc1111;
  --red-bright:    #e01a1a;
  --red-glow:      rgba(204, 17, 17, 0.2);
  --text-primary:  #f0f0f0;
  --text-secondary:#a0a0a0;
  --text-muted:    #666666;
  --border:        #222222;
  --border-gold:   rgba(255, 215, 0, 0.3);
  --font-display:  'Orbitron', monospace;
  --font-body:     'Exo 2', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subtle circuit-board noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(204,17,17,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,215,0,0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ============ NAVBAR ============ */
.navbar {
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.nav-logo-text .brand span { color: var(--red-bright); }

.nav-logo-text .tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  font-family: var(--font-display);
}

.nav-menu a:hover { color: var(--gold); }

.nav-menu .btn-nav {
  background: var(--red);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  transition: background 0.3s, box-shadow 0.3s !important;
}

.nav-menu .btn-nav:hover {
  background: var(--red-bright) !important;
  box-shadow: 0 0 15px var(--red-glow);
  color: #fff !important;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 60% 50%, rgba(204,17,17,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(255,215,0,0.04) 0%, transparent 40%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0808 100%);
}

/* Animated scan line */
.hero-bg::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.4), transparent);
  animation: scanline 4s linear infinite;
  top: 0;
}

@keyframes scanline {
  0%   { top: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 0 40px rgba(255,255,255,0.1);
}

.hero h1 .line-red { color: var(--red-bright); }
.hero h1 .line-gold { color: var(--gold); }

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
  border: 1px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 0 25px var(--red-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  padding: 0.9rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
  border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
  background: var(--gold-glow);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-logo-wrap {
  position: relative;
}

.hero-logo-wrap img {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 0 40px rgba(204,17,17,0.4));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse, rgba(204,17,17,0.12) 0%, transparent 70%);
  animation: glowpulse 3s ease-in-out infinite;
}

@keyframes glowpulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item { text-align: left; }

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ SECTION COMMON ============ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.section-title span { color: var(--red-bright); }

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 1rem auto 0;
  line-height: 1.8;
  font-weight: 300;
}

/* ============ TOPICS SECTION ============ */
.topics-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.topic-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.topic-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.topic-card:hover::before { transform: scaleX(1); }

.topic-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.topic-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.topic-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============ LATEST POSTS ============ */
.posts-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.blog-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--red);
  transition: height 0.3s;
}

.blog-card:hover {
  border-color: rgba(204,17,17,0.3);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.blog-card:hover::after { height: 100%; }

.card-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.card-tag {
  font-size: 0.72rem;
  background: var(--red-glow);
  color: var(--red-bright);
  border: 1px solid rgba(204,17,17,0.3);
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.read-more {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover { color: #fff; }
.read-more::after { content: '→'; transition: transform 0.3s; }
.read-more:hover::after { transform: translateX(4px); }

.posts-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============ ABOUT STRIP ============ */
.about-strip {
  padding: 5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
  font-weight: 300;
}

.about-features {
  list-style: none;
  margin: 2rem 0;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.about-features li:last-child { border-bottom: none; }

.about-features li::before {
  content: '▸';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.threat-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 1.5rem;
  border-radius: 3px;
  transition: border-color 0.3s;
}

.threat-stat:hover { border-left-color: var(--gold); }

.threat-stat .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red-bright);
  display: block;
  margin-bottom: 0.25rem;
}

.threat-stat .desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 5rem 0;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(204,17,17,0.06) 0%, transparent 70%);
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ============ FOOTER ============ */
footer {
  background: #000;
  border-top: 1px solid var(--border-gold);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============ BLOG PAGE ============ */
.page-hero {
  padding: 4rem 0 3rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.blog-filter-bar {
  padding: 1.5rem 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 62px;
  z-index: 100;
}

.filter-wrap {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.blog-main {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.blog-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

/* ============ ABOUT PAGE ============ */
.about-hero {
  padding: 5rem 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.credential-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 1.8rem;
  border-radius: 3px;
  transition: all 0.3s;
}

.credential-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.credential-card .icon { font-size: 1.8rem; margin-bottom: 0.75rem; display: block; }

.credential-card h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.credential-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============ PRIVACY POLICY ============ */
.privacy-content {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.privacy-content .prose {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.privacy-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.privacy-content ul {
  margin: 0.5rem 0 1.2rem 1.5rem;
  color: var(--text-secondary);
}

.privacy-content ul li { margin-bottom: 0.5rem; line-height: 1.7; font-size: 0.95rem; }

.privacy-content a { color: var(--gold); text-decoration: none; }
.privacy-content a:hover { text-decoration: underline; }

.contact-box-dark {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  border-radius: 3px;
  margin-top: 1rem;
}

.contact-box-dark p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

/* ============ BLOG POST PAGE ============ */
.post-hero {
  padding: 4rem 0 3rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.post-tags {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.post-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 300;
}

.post-body {
  padding: 3.5rem 0;
  background: var(--bg-primary);
}

.post-content {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.95;
}

.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin: 2.5rem 0 1rem;
  text-transform: uppercase;
}

.post-content h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 2rem 0 0.75rem;
  font-weight: 600;
}

.post-content p { margin-bottom: 1.4rem; color: var(--text-secondary); }

.post-content strong { color: var(--text-primary); font-weight: 600; }

.post-content ul, .post-content ol {
  margin: 0.5rem 0 1.4rem 1.5rem;
}

.post-content li { margin-bottom: 0.6rem; color: var(--text-secondary); }

.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
}

.key-takeaway {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--gold);
  padding: 1.8rem;
  border-radius: 3px;
  margin: 2.5rem 0;
}

.key-takeaway h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.key-takeaway p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.action-steps {
  background: var(--bg-card);
  border: 1px solid rgba(204,17,17,0.3);
  border-top: 2px solid var(--red);
  padding: 1.8rem;
  border-radius: 3px;
  margin: 2.5rem 0;
}

.action-steps h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ============ MOBILE MENU ============ */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 1.2rem;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  border-radius: 3px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .about-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .hero-visual { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
  }

  .nav-menu.active { display: flex; }

  .menu-toggle { display: block; }

  .navbar .container { position: relative; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }

  .blog-full-grid { grid-template-columns: 1fr; }
}
