/* ============================================
   DELTA EXECUTOR - BENTO GRID DESIGN
   Theme: Red (#ff2d2d) / Black (#0a0a0a) / White
   ============================================ */

:root {
  --red: #ff2d2d;
  --red-dark: #b30000;
  --red-glow: rgba(255, 45, 45, 0.45);
  --black: #0a0a0a;
  --black-2: #111114;
  --black-3: #18181c;
  --black-4: #22222a;
  --white: #ffffff;
  --gray: #b6b6c2;
  --gray-2: #6f6f7a;
  --border: rgba(255, 255, 255, 0.08);
  --border-red: rgba(255, 45, 45, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  --shadow-red: 0 10px 30px rgba(255, 45, 45, 0.15);
  --gradient-red: linear-gradient(135deg, #ff2d2d 0%, #b30000 100%);
  --gradient-dark: linear-gradient(135deg, #18181c 0%, #0a0a0a 100%);
  --gradient-hero: radial-gradient(ellipse at top, rgba(255, 45, 45, 0.18) 0%, transparent 60%), linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  --container: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background grid pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 45, 45, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 45, 45, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  pointer-events: none;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: #ff6b6b; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
}

.brand img { width: 42px; height: 50px; }

.brand-name span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--gray);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

.nav-links a:hover { color: var(--white); }

.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

.nav-cta {
  background: var(--gradient-red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--red-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--red-glow);
}

.nav-cta::after { display: none !important; }

.mobile-menu {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 80px 0 60px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 45, 45, 0.12);
  border: 1px solid var(--border-red);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero h1 .red {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-red);
  color: var(--white);
  box-shadow: 0 8px 25px var(--red-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--red-glow);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-red);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  display: grid;
  gap: 16px;
}

.hero-card {
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.hero-card-logo {
  width: 64px;
  height: 80px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 20px var(--red-glow));
}

.hero-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}

.hero-card p {
  color: var(--gray);
  font-size: 14px;
  text-align: center;
  margin-bottom: 16px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.platform-btn {
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid var(--border-red);
  color: var(--white);
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.platform-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.platform-btn .icon {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

/* ============================================
   BENTO GRID SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section h2 .red { color: var(--red); }

.section-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.6;
}

/* Bento Grid Base */
.bento {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(160px, auto);
}

.bento-card {
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.bento-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.bento-card.large { grid-column: span 4; grid-row: span 2; }
.bento-card.wide { grid-column: span 3; }
.bento-card.tall { grid-column: span 2; grid-row: span 2; }
.bento-card.normal { grid-column: span 2; }
.bento-card.small { grid-column: span 2; grid-row: span 1; }

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 45, 45, 0.12);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  color: var(--red);
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.bento-card.large h3 { font-size: 28px; }

.bento-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.65;
}

.bento-card.large p { font-size: 16px; }

.bento-list {
  list-style: none;
  margin-top: 16px;
}

.bento-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--gray);
  font-size: 14px;
}

.bento-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
}

.bento-stat {
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1.5px;
}

.bento-stat-label {
  color: var(--gray);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.bento-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--red-glow);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  top: -100px;
  right: -100px;
  opacity: 0.4;
}

/* ============================================
   PLATFORMS
   ============================================ */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.platform-card {
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.platform-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
}

.platform-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.platform-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.platform-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 18px;
}

.platform-card .btn { width: 100%; justify-content: center; }

/* ============================================
   SCRIPT HUB
   ============================================ */
.scripts-wrap {
  background: var(--black-2);
}

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

.script-card {
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  position: relative;
}

.script-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
}

.script-game {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.script-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.script-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 16px;
  min-height: 60px;
}

.script-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
}

.script-meta .views { color: var(--red); font-weight: 700; }

/* ============================================
   STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step-card {
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}

.step-num {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: var(--gradient-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 4px 15px var(--red-glow);
}

.step-card h4 {
  font-size: 17px;
  font-weight: 800;
  margin: 20px 0 8px;
}

.step-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-table {
  width: 100%;
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border-collapse: collapse;
}

.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  background: rgba(255, 45, 45, 0.1);
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.compare-table td {
  font-size: 14px;
  color: var(--gray);
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table td:first-child {
  color: var(--white);
  font-weight: 700;
}

.compare-table .check { color: var(--red); font-weight: 900; }

/* ============================================
   FAQ
   ============================================ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--border-red); }

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--red);
  font-weight: 900;
  transition: var(--transition);
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.7;
}

.faq-a-inner {
  padding: 0 24px 22px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: radial-gradient(ellipse at center, rgba(255, 45, 45, 0.15) 0%, transparent 60%), var(--black);
  text-align: center;
  position: relative;
}

.cta-section h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-section p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 900;
  font-size: 22px;
}

.footer-brand img { width: 36px; height: 44px; }

.footer p, .footer a {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.footer h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--gray-2);
}

.disclaimer {
  background: rgba(255, 45, 45, 0.05);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 40px auto;
  max-width: 900px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

.disclaimer strong { color: var(--red); }

/* ============================================
   BLOG PAGE STYLES
   ============================================ */
.article-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px;
}

.article-hero {
  text-align: center;
  margin-bottom: 50px;
}

.article-hero .article-meta {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.article-hero h1 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.article-hero .article-sub {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 24px;
}

.article-hero .article-info {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 13px;
  color: var(--gray-2);
}

.article-hero .article-info span::before {
  content: '•';
  margin-right: 8px;
  color: var(--red);
}

.article-hero .article-info span:first-child::before { display: none; }

.article-body {
  font-size: 17px;
  line-height: 1.8;
  color: #d4d4dc;
}

.article-body h2 {
  font-size: 30px;
  font-weight: 900;
  margin: 50px 0 20px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.article-body h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 12px;
  border-radius: 2px;
}

.article-body h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 36px 0 14px;
  color: var(--white);
}

.article-body p {
  margin-bottom: 22px;
}

.article-body ul, .article-body ol {
  margin: 0 0 22px 24px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body a {
  color: var(--red);
  border-bottom: 1px solid var(--border-red);
}

.article-body a:hover { color: #ff6b6b; }

.article-body blockquote {
  border-left: 4px solid var(--red);
  background: rgba(255, 45, 45, 0.05);
  padding: 20px 24px;
  margin: 30px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--gray);
}

.article-body code {
  background: var(--black-3);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--red);
  font-family: 'Courier New', monospace;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--black-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.article-body table th {
  background: rgba(255, 45, 45, 0.15);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
}

.article-body table td {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--gray);
}

.article-body table td:first-child {
  color: var(--white);
  font-weight: 700;
}

.article-cta {
  background: var(--gradient-dark);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 50px 0;
}

.article-cta h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
}

.article-cta p {
  color: var(--gray);
  margin-bottom: 20px;
}

.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.related-posts h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.related-card {
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: var(--transition);
}

.related-card:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
}

.related-card .related-tag {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.related-card h4 {
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 8px;
  font-weight: 800;
}

.related-card a {
  color: var(--white);
}

.related-card a:hover { color: var(--red); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.large,
  .bento-card.wide,
  .bento-card.tall,
  .bento-card.normal,
  .bento-card.small { grid-column: span 2; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--black-2);
    border-top: 1px solid var(--border);
    padding: 20px;
    gap: 18px;
  }
  .mobile-menu { display: block; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.large,
  .bento-card.wide,
  .bento-card.tall,
  .bento-card.normal,
  .bento-card.small { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 22px; }
  .section { padding: 60px 0; }
}

/* Supplied Delta Executor logo — keep the original aspect ratio everywhere. */
.brand img,
.footer-brand img,
.hero-card-logo {
  object-fit: contain;
  object-position: center;
}

/* ============================================
   RESPONSIVE TABLES + BLOG FEATURE IMAGES
   ============================================ */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  margin: 24px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  scrollbar-width: thin;
}
.table-wrap > table { margin: 0 !important; min-width: 620px; }
.article-body .table-wrap { margin: 28px 0; }
.featured-image {
  margin: 0 auto 38px;
  max-width: 100%;
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-2);
}
.featured-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}
.featured-image figcaption {
  padding: 10px 14px;
  color: var(--gray-2);
  font-size: 12px;
  text-align: center;
}
.blog-card-image {
  display: block;
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin: 0 0 16px;
  border: 1px solid var(--border);
}
@media (max-width: 640px) {
  .table-wrap { margin: 18px 0; border-radius: 10px; }
  .table-wrap > table { min-width: 560px; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 12px; white-space: nowrap; }
  .article-body table th, .article-body table td { padding: 10px 12px; font-size: 12px; white-space: nowrap; }
  .featured-image { margin-bottom: 28px; border-radius: 12px; }
  .featured-image img { max-height: 250px; object-fit: cover; }
  .blog-card-image { height: 125px; }
}


/* Internal linking sections: responsive and touch-friendly */
.internal-link-list a, .internal-article-links a {
  display:block;
  padding:12px 14px;
  border-radius:10px;
  text-decoration:none;
}
.internal-link-list a:hover, .internal-article-links a:hover {
  text-decoration:underline;
}
@media (max-width:600px){
  .internal-link-list { grid-template-columns:1fr !important; }
  .internal-article-links ul { grid-template-columns:1fr !important; }
}
