/* ============================================
   MATAHITAM - style.css
   Dark Luxury Tech Brand Portal
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-black: #000410;
  --bg-dark: #01040F;
  --bg-navy: #061126;
  --bg-blue-dark: #001644;
  --blue-primary: #0947A2;
  --blue-secondary: #2E5085;
  --blue-light: #658DC2;
  --blue-neon: #6EB6F7;
  --white: #FFFFFF;
  --silver: #D6D8DF;
  --charcoal: #1F191D;
  --brown-dark: #4A3633;
  --skin-tone: #6E5752;

  --glass-bg: rgba(9, 71, 162, 0.08);
  --glass-border: rgba(110, 182, 247, 0.15);
  --glass-hover: rgba(9, 71, 162, 0.18);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-neon: 0 0 20px rgba(110, 182, 247, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--silver);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--blue-neon); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--white); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 500; }
p { color: var(--silver); line-height: 1.8; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--blue-secondary); border-radius: 3px; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-neon { color: var(--blue-neon); }
.text-silver { color: var(--silver); }
.text-center { text-align: center; }
.text-muted { color: var(--blue-light); font-size: 0.9rem; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-neon { background: rgba(110, 182, 247, 0.15); color: var(--blue-neon); border: 1px solid var(--glass-border); }
.badge-blue { background: rgba(9, 71, 162, 0.3); color: var(--blue-light); border: 1px solid rgba(9, 71, 162, 0.4); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
  color: var(--white);
  border: 1px solid rgba(110, 182, 247, 0.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0a56c4, var(--blue-primary));
  color: var(--white);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue-neon);
  border: 1px solid var(--glass-border);
}
.btn-outline:hover {
  background: var(--glass-bg);
  color: var(--white);
  border-color: var(--blue-neon);
}
.btn-ghost {
  background: transparent;
  color: var(--silver);
  border: 1px solid rgba(214, 216, 223, 0.15);
}
.btn-ghost:hover { color: var(--white); border-color: var(--silver); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ---- GLASS CARD ---- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}
.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(110, 182, 247, 0.3);
  box-shadow: var(--shadow-neon);
  transform: translateY(-4px);
}
.card-body { padding: 28px; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(1, 4, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}
.navbar-logo img {
  width: 320px;
  max-width: 160px;
  height: auto;
  display: block;
}
.navbar-logo span { color: var(--blue-neon); }
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-menu a {
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-menu a:hover, .navbar-menu a.active {
  color: var(--white);
  background: var(--glass-bg);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  cursor: pointer;
}
.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--silver);
  transition: var(--transition);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(6, 17, 38, 0.97);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  padding: 8px;
  box-shadow: var(--shadow-card);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--silver);
  border-radius: var(--radius-sm);
  width: 100%;
}
.dropdown-menu a:hover { background: var(--glass-bg); color: var(--white); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, rgba(9, 71, 162, 0.18) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(110, 182, 247, 0.06) 0%, transparent 50%),
              var(--bg-black);
  padding-top: 116px;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110, 182, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 182, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--blue-neon);
  box-shadow: 0 0 8px var(--blue-neon);
}
.hero-eyebrow span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-neon);
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .highlight {
  position: relative;
  display: inline-block;
  color: var(--blue-neon);
  text-shadow: 0 0 40px rgba(110, 182, 247, 0.4);
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--silver);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--blue-light); margin-top: 4px; letter-spacing: 0.05em; }
.hero-visual {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
}
.orb-1 {
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(9, 71, 162, 0.3) 0%, transparent 70%);
  animation: pulse-orb 4s ease-in-out infinite;
}
.orb-2 {
  width: 250px; height: 250px;
  top: 50%; left: 50%;
  transform: translate(-30%, -60%);
  background: radial-gradient(circle, rgba(110, 182, 247, 0.15) 0%, transparent 70%);
  animation: pulse-orb 6s ease-in-out infinite reverse;
}
.orb-3 {
  width: 150px; height: 150px;
  top: 50%; left: 50%;
  transform: translate(-80%, 20%);
  background: radial-gradient(circle, rgba(46, 80, 133, 0.4) 0%, transparent 70%);
  animation: pulse-orb 5s ease-in-out infinite 1s;
}
@keyframes pulse-orb {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-neon);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--silver); max-width: 560px; line-height: 1.75; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-neon), transparent);
  margin-top: 20px;
  border-radius: 2px;
}
.section-header.centered .section-divider { margin: 20px auto 0; }

/* ---- FEATURE GRID ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card { padding: 32px; }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(9, 71, 162, 0.2);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { font-size: 0.9rem; line-height: 1.7; }
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-neon);
  margin-top: 16px;
}
.feature-link::after { content: '→'; transition: var(--transition); }
.feature-link:hover::after { transform: translateX(4px); }

/* ---- CARDS GRID ---- */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 24px;
}
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* ---- BLOG CARDS ---- */
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-card-img {
  height: 200px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(135deg, var(--bg-navy), var(--bg-blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4));
}
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-card-date { font-size: 0.8rem; color: var(--blue-light); }
.blog-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.blog-card p { font-size: 0.9rem; flex: 1; }
.blog-card-footer { margin-top: 20px; }

/* ---- BREADCRUMB ---- */
.breadcrumb-wrap {
  padding: 20px 0;
  margin-top: 116px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--blue-secondary);
}
.breadcrumb a { color: var(--blue-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb li:last-child { color: var(--silver); }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 60px 0 48px;
  background: linear-gradient(180deg, rgba(9, 71, 162, 0.1) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110, 182, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 182, 247, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin: 12px 0 16px; }
.page-hero .lead { font-size: 1.1rem; color: var(--silver); max-width: 640px; }

/* ---- INFO BOX ---- */
.info-box {
  padding: 24px 28px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue-neon);
  background: rgba(110, 182, 247, 0.06);
  margin: 24px 0;
}
.info-box.warning { border-color: #f5a623; background: rgba(245, 166, 35, 0.06); }
.info-box.success { border-color: #4caf50; background: rgba(76, 175, 80, 0.06); }
.info-box h4 { color: var(--white); margin-bottom: 8px; }
.info-box p { font-size: 0.9rem; }

/* ---- TABLE ---- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--glass-border); }
table { width: 100%; border-collapse: collapse; }
th {
  background: rgba(9, 71, 162, 0.2);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
  padding: 14px 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--glass-border);
}
td {
  padding: 14px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(110, 182, 247, 0.06);
  color: var(--silver);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(9, 71, 162, 0.06); }

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--blue-neon); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--blue-neon);
  font-size: 1.1rem;
}
.faq-item.open .faq-icon { background: var(--blue-primary); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 0 22px; color: var(--silver); font-size: 0.95rem; line-height: 1.8; }

/* ---- STEPS ---- */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  box-shadow: 0 0 16px rgba(9, 71, 162, 0.5);
}
.step-content h4 { color: var(--white); margin-bottom: 6px; }
.step-content p { font-size: 0.9rem; }

/* ---- SITEMAP ---- */
.sitemap-section { margin-bottom: 40px; }
.sitemap-section h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-neon);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--glass-border);
}
.sitemap-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sitemap-links a {
  color: var(--silver);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.sitemap-links a::before { content: '→'; color: var(--blue-neon); font-size: 0.8rem; }
.sitemap-links a:hover { color: var(--white); background: var(--glass-bg); }
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  margin-bottom: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(9, 71, 162, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--silver); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(9, 71, 162, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue-neon);
  background: rgba(9, 71, 162, 0.12);
  box-shadow: 0 0 0 3px rgba(110, 182, 247, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--blue-secondary); }

/* ---- LEGAL CONTENT ---- */
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 1.3rem; margin: 36px 0 14px; color: var(--white); }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 10px; color: var(--blue-light); }
.legal-content p, .legal-content li { font-size: 0.95rem; line-height: 1.85; color: var(--silver); margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; }
.legal-content ul li { list-style: disc; margin-bottom: 8px; }
.legal-content .last-updated {
  display: inline-block;
  padding: 6px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--blue-light);
  margin-bottom: 32px;
}

/* ---- PROMO CARDS ---- */
.promo-card {
  position: relative;
  overflow: hidden;
}
.promo-card-inner { padding: 32px; position: relative; z-index: 1; }
.promo-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 71, 162, 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.promo-badge {
  display: inline-block;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ---- PERMISSION TABLE ---- */
.perm-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--glass-border); align-items: center; }
.perm-row:last-child { border-bottom: none; }
.perm-icon { font-size: 1.2rem; width: 32px; text-align: center; }
.perm-text { flex: 1; }
.perm-text h5 { color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.perm-text p { font-size: 0.85rem; }
.perm-status { font-size: 0.8rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; }
.perm-status.allowed { background: rgba(76, 175, 80, 0.15); color: #4caf50; }
.perm-status.protected { background: rgba(9, 71, 162, 0.2); color: var(--blue-neon); }

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--blue-neon); }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; color: var(--blue-light); max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--blue-primary); color: var(--white); border-color: transparent; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--blue-light);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--blue-secondary); }
.footer-bottom-links a:hover { color: var(--silver); }
.footer-copy { font-size: 0.8rem; color: var(--blue-secondary); }

/* ---- HIGHLIGHT STRIP ---- */
.highlight-strip {
  background: linear-gradient(135deg, rgba(9, 71, 162, 0.15) 0%, rgba(110, 182, 247, 0.08) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.highlight-strip h2 { margin-bottom: 8px; }
.highlight-strip p { color: var(--silver); max-width: 480px; }
.highlight-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- BANNER ---- */
.banner-section {
  padding: 48px 0;
  background: var(--bg-black);
}
.banner-frame {
  width: 100%;
  max-width: 1024px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: linear-gradient(90deg, var(--bg-navy), var(--bg-blue-dark), var(--bg-navy));
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--blue-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  z-index: 1001;
}
.announcement-bar span { color: var(--blue-neon); font-weight: 600; }

/* ---- SECURITY BADGES ---- */
.security-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--silver);
}
.security-badge .icon { font-size: 1rem; }

/* ---- DOMAIN LIST ---- */
.domain-list { display: flex; flex-direction: column; gap: 12px; }
.domain-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
  gap: 12px;
}
.domain-item .domain-url {
  font-family: 'Courier New', monospace;
  color: var(--blue-neon);
  font-size: 0.95rem;
  font-weight: 600;
}
.domain-status { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; }
.dot-green { width: 8px; height: 8px; border-radius: 50%; background: #4caf50; box-shadow: 0 0 6px #4caf50; }
.dot-red { width: 8px; height: 8px; border-radius: 50%; background: #f44336; box-shadow: 0 0 6px #f44336; }

/* ---- ARTICLE ---- */
.article-header { padding: 48px 0 32px; }
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 16px 0 24px; }
.article-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.author-name { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.article-date { font-size: 0.8rem; color: var(--blue-light); }
.article-content { max-width: 820px; }
.article-content h2 { font-size: 1.35rem; margin: 36px 0 14px; }
.article-content h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--blue-light); }
.article-content p { margin-bottom: 16px; font-size: 0.975rem; line-height: 1.85; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 16px; }
.article-content li { margin-bottom: 8px; font-size: 0.975rem; line-height: 1.8; color: var(--silver); }
.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .navbar-menu, .navbar-actions { display: none; }
  .navbar-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 4, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
  }
  .navbar-menu.open a { padding: 14px 16px; font-size: 1rem; border-radius: var(--radius-md); }
  .navbar-actions { display: flex; }
  .navbar-toggle { display: flex; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .highlight-strip { padding: 32px 24px; }
  h1 { font-size: 2rem; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .dropdown-menu { position: relative; transform: none; left: 0; top: 0; border: none; background: rgba(9, 71, 162, 0.08); box-shadow: none; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .highlight-strip { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ---- MISC ---- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 60px 0;
}
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.775rem;
  font-weight: 500;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--silver);
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-primary);
  border: 1px solid var(--glass-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-neon);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-neon); color: var(--bg-dark); transform: translateY(-3px); }

/* Search bar */
.search-bar {
  display: flex;
  gap: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--glass-bg);
  max-width: 480px;
}
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
}
.search-bar input::placeholder { color: var(--blue-secondary); }
.search-bar button {
  padding: 12px 20px;
  background: var(--blue-primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}
.search-bar button:hover { background: #0a56c4; }