/* ==========================================================================
   MIDAS CLOTHING LTD — TACTICAL GAMING HUD & PRIVACY ARCHITECTURE
   Theme: Immersive UI (Cyber Gold & Obsidian HUD)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800;900&family=Rajdhani:wght@500;600;700&family=JetBrains+Mono:wght@400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --midas-gold: #FFD700;
  --midas-glow: rgba(255, 215, 0, 0.3);
  --hud-blue: #00f2ff;
  --cyber-magenta: #ff00c1;

  --bg-deep: #050505;
  --bg-surface: #0a0a0a;
  --bg-panel: #111111;
  --bg-card: rgba(12, 12, 12, 0.85);
  --bg-card-hover: rgba(22, 22, 22, 0.95);

  --gold-primary: #FFD700;
  --gold-bright: #FFD700;
  --gold-light: #FFF0A0;
  --gold-dark: #B39700;
  --gold-glow: rgba(255, 215, 0, 0.3);

  --emerald-cyber: #00f2ff;
  --emerald-mid: #00b8c4;
  --emerald-dark: #004f54;
  --emerald-glow: rgba(0, 242, 255, 0.25);

  --text-main: #d4d4d4;
  --text-muted: #8e8e8e;
  --text-dim: #555555;
  --border-gold: rgba(255, 215, 0, 0.2);
  --border-emerald: rgba(0, 242, 255, 0.2);

  --font-display: 'Cinzel', serif;
  --font-tech: 'Rajdhani', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Inter', sans-serif;

  --clip-chamfer: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  --clip-tab: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  --clip-card-angled: polygon(0 0, 95% 0, 100% 20px, 100% 100%, 5% 100%, 0 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 50%, #111111 0%, #050505 100%);
  position: relative;
}

.gaming-bg {
  background-image: radial-gradient(circle at 50% 50%, #111 0%, #050505 100%);
  position: relative;
}

.gaming-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

.hud-border {
  border: 1px solid rgba(255, 215, 0, 0.2);
  background: rgba(0, 0, 0, 0.6);
  clip-path: polygon(0 0, 95% 0, 100% 20px, 100% 100%, 5% 100%, 0 100%);
}

.glitch-text {
  text-shadow: 2px 0 var(--hud-blue), -2px 0 #ff00c1;
}

.nav-btn {
  position: relative;
  padding: 10px 20px;
  transition: all 0.3s;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

.nav-btn:hover {
  background: var(--midas-glow);
  color: var(--midas-gold);
}

.status-bar {
  height: 30px;
  background: #000;
  border-top: 1px solid #333;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-family: monospace;
  font-size: 10px;
  color: #666;
}

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.scanlines-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 3px, 6px 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.hud-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* TOP STATUS HUD */
.hud-topbar {
  background: rgba(3, 8, 6, 0.92);
  border-bottom: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: var(--font-mono);
  font-size: 12px;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
}

.hud-sys-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
}

.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 255, 136, 0.05);
  padding: 3px 10px;
  border-radius: 2px;
  border: 1px solid rgba(0, 255, 136, 0.15);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-cyber);
  box-shadow: 0 0 8px var(--emerald-cyber);
  animation: pulse-dot 2s infinite ease-in-out;
}

.status-dot.gold {
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-bright);
}

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

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hud-tool-btn {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hud-tool-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-deep);
  box-shadow: 0 0 12px var(--gold-glow);
  transform: translateY(-1px);
}

/* SITE HEADER */
.site-header {
  background: linear-gradient(180deg, rgba(6, 18, 13, 0.95) 0%, rgba(3, 8, 6, 0.85) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 16px 0;
  position: relative;
  z-index: 90;
}

.header-nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-shield {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-emblem-diamond {
  width: 44px;
  height: 44px;
  border: 2px solid var(--midas-gold);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 14px var(--midas-glow);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-emblem-diamond span {
  transform: rotate(-45deg);
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--midas-gold);
  font-size: 20px;
  line-height: 1;
}

.brand-shield:hover .brand-emblem-diamond {
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 0 20px var(--midas-gold);
  border-color: #FFF;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 10px var(--gold-glow));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-shield:hover .brand-logo-img {
  transform: scale(1.08) rotate(3deg);
}

.brand-title-wrap h1 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--midas-gold);
  text-shadow: 0 0 12px var(--midas-glow);
  line-height: 1;
}

.brand-tagline {
  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--hud-blue);
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-tech);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  position: relative;
  clip-path: var(--clip-chamfer);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--border-gold);
  text-shadow: 0 0 8px var(--gold-glow);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 8px 12px;
  font-family: var(--font-tech);
  font-size: 16px;
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  padding: 60px 0 40px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid var(--emerald-cyber);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--emerald-cyber);
  letter-spacing: 1px;
  margin-bottom: 20px;
  clip-path: var(--clip-chamfer);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.gold-glow-text {
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(255, 223, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-game-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #D4AF37 0%, #AA8010 100%);
  color: #030806;
  font-family: var(--font-tech);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: var(--clip-chamfer);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-game-primary:hover {
  background: linear-gradient(135deg, #FFDF00 0%, #D4AF37 100%);
  box-shadow: 0 0 35px rgba(255, 223, 0, 0.7);
  transform: translateY(-2px);
}

.btn-game-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(6, 18, 13, 0.8);
  color: var(--gold-light);
  font-family: var(--font-tech);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 24px;
  text-decoration: none;
  border: 1px solid var(--border-gold);
  cursor: pointer;
  clip-path: var(--clip-chamfer);
  transition: all 0.25s ease;
}

.btn-game-secondary:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

.hero-specs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 24px;
}

.spec-cell {
  background: rgba(10, 27, 20, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 12px;
  clip-path: var(--clip-chamfer);
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.spec-val {
  font-family: var(--font-tech);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
}

/* HERO EMBLEM VISUAL */
.hero-visual-card {
  background: radial-gradient(circle at center, rgba(14, 38, 28, 0.8) 0%, rgba(6, 18, 13, 0.95) 70%);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 36px 24px;
  text-align: center;
  position: relative;
  clip-path: var(--clip-card-angled);
  box-shadow: inset 0 0 40px rgba(0, 255, 136, 0.05), 0 10px 40px rgba(0, 0, 0, 0.6);
}

.emblem-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-ring-outer {
  position: absolute;
  inset: -10px;
  border: 1px dashed var(--gold-primary);
  border-radius: 50%;
  animation: rotate-ring 30s linear infinite;
}

.emblem-ring-inner {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  animation: rotate-ring-rev 20s linear infinite;
}

@keyframes rotate-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotate-ring-rev {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

.emblem-main-img {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 0 18px var(--gold-bright));
}

.hud-emblem-info {
  margin-top: 12px;
}

.emblem-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold-light);
}

.emblem-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--emerald-cyber);
  letter-spacing: 2px;
  margin-top: 4px;
}

/* SECTION HEADINGS */
.section-wrapper {
  padding: 70px 0;
  position: relative;
}

.section-head-hud {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--emerald-cyber);
  display: inline-block;
  margin-bottom: 8px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 4px 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: 2px;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* TACTICAL VAULT TABS */
.vault-nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.vault-tab-btn {
  background: rgba(6, 18, 13, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text-muted);
  font-family: var(--font-tech);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  clip-path: var(--clip-chamfer);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vault-tab-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border-color: var(--gold-primary);
}

.vault-tab-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(0, 255, 136, 0.1) 100%);
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 0 20px var(--gold-glow);
}

.vault-tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.vault-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.vault-display-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 32px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vault-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.vault-heading {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-light);
}

.vault-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--emerald-cyber);
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--emerald-cyber);
  padding: 4px 10px;
}

.vault-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.vault-item-node {
  background: rgba(6, 18, 13, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 20px;
  clip-path: var(--clip-chamfer);
  transition: all 0.2s ease;
}

.vault-item-node:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.node-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.node-title {
  font-family: var(--font-tech);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.node-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* RADAR & SECURITY METRICS GRID */
.radar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.radar-gauge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 24px;
  text-align: center;
  clip-path: var(--clip-chamfer);
}

.gauge-val {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--gold-bright);
  margin: 12px 0 4px;
  text-shadow: 0 0 15px var(--gold-glow);
}

.gauge-val.emerald {
  color: var(--emerald-cyber);
  text-shadow: 0 0 15px var(--emerald-glow);
}

.gauge-label {
  font-family: var(--font-tech);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 1px;
}

.gauge-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* TERMINAL HUD */
.terminal-hud-box {
  background: #020604;
  border: 1px solid var(--emerald-cyber);
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
  font-family: var(--font-mono);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.terminal-header {
  background: #061810;
  border-bottom: 1px solid rgba(0, 255, 136, 0.3);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.t-dot.red { background: #FF5F56; }
.t-dot.yellow { background: #FFBD2E; }
.t-dot.green { background: #27C93F; }

.terminal-title {
  font-size: 12px;
  color: var(--emerald-cyber);
  letter-spacing: 1px;
}

.terminal-body {
  padding: 20px;
  height: 280px;
  overflow-y: auto;
  color: var(--text-main);
  font-size: 13px;
  line-height: 1.6;
}

.terminal-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #040F0A;
  border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.term-prompt {
  color: var(--emerald-cyber);
  font-weight: 700;
}

.term-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 13px;
  outline: none;
}

.terminal-quick-cmds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.quick-cmd-btn {
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.25);
  color: var(--emerald-cyber);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-cmd-btn:hover {
  background: var(--emerald-cyber);
  color: #030806;
}

.term-cmd-highlight {
  color: var(--gold-bright);
  font-weight: 700;
}

.term-gold {
  color: var(--gold-primary);
}

/* CLOUDFLARE SECTION */
.cloudflare-hud-panel {
  background: linear-gradient(180deg, rgba(10, 27, 20, 0.9) 0%, rgba(6, 18, 13, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  position: relative;
  clip-path: var(--clip-chamfer);
}

.cf-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-family: var(--font-tech);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.tree-structure-box {
  background: #020604;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  padding: 20px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--emerald-cyber);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

/* COMMS & DEVELOPER CONTACT */
.comms-hud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.comms-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 32px;
  clip-path: var(--clip-chamfer);
}

.comms-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.comms-email-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 18, 13, 0.9);
  border: 1px solid var(--emerald-cyber);
  padding: 12px 16px;
  margin-top: 16px;
  clip-path: var(--clip-chamfer);
}

.email-txt {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--emerald-cyber);
  font-weight: 700;
}

.copy-email-btn {
  background: var(--emerald-cyber);
  color: #030806;
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-email-btn:hover {
  background: var(--gold-bright);
}

/* PRIVACY CODEX DEDICATED VIEW / PAGE */
.policy-hero-banner {
  background: radial-gradient(circle at 50% 30%, rgba(14, 38, 28, 0.8) 0%, rgba(6, 18, 13, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
  clip-path: var(--clip-chamfer);
}

.policy-filter-bar {
  max-width: 600px;
  margin: 24px auto 0;
}

.policy-search-input {
  width: 100%;
  background: rgba(3, 8, 6, 0.9);
  border: 1px solid var(--border-gold);
  padding: 12px 20px;
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 14px;
  outline: none;
  clip-path: var(--clip-chamfer);
}

.policy-search-input:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 15px var(--gold-glow);
}

.policy-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

.policy-sidebar-toc {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 24px;
  position: sticky;
  top: 60px;
  height: fit-content;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  clip-path: var(--clip-chamfer);
}

.toc-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 10px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toc-link {
  font-family: var(--font-tech);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 8px;
  display: block;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}

.toc-link:hover {
  color: var(--gold-bright);
  border-left-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

.policy-content-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.policy-section-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 32px;
  clip-path: var(--clip-chamfer);
  scroll-margin-top: 70px;
  transition: border-color 0.3s ease;
}

.policy-section-card:hover {
  border-color: var(--gold-primary);
}

.policy-sec-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald-cyber);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.policy-sec-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 10px;
}

.policy-card-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-main);
}

.policy-card-body p {
  margin-bottom: 14px;
}

.policy-card-body ul {
  margin: 12px 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.policy-card-body li {
  color: var(--text-muted);
}

.policy-card-body strong {
  color: var(--gold-light);
}

/* FOOTER */
.site-footer {
  background: #020604;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 40px 0 24px;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 24px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-tech);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-bottom-bar {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}

/* TOAST NOTIFICATION */
.hud-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(6, 18, 13, 0.95);
  border: 1px solid var(--emerald-cyber);
  color: var(--emerald-cyber);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 12px 20px;
  box-shadow: 0 0 20px var(--emerald-glow);
  z-index: 999;
  display: none;
  align-items: center;
  gap: 8px;
  clip-path: var(--clip-chamfer);
  animation: slideToast 0.3s ease;
}

@keyframes slideToast {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* RESPONSIVE DESIGN */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 32px;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .policy-layout-grid {
    grid-template-columns: 1fr;
  }
  .policy-sidebar-toc {
    position: static;
    max-height: none;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(6, 18, 13, 0.98);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border-gold);
  }
  .nav-menu.open {
    display: flex;
  }
  .topbar-content {
    flex-direction: column;
    height: auto;
    padding: 8px 0;
    gap: 8px;
  }
  .hero-specs-row {
    grid-template-columns: 1fr;
  }
}
