/*
Theme Name: Datapipesoft
Theme URI: https://datapipesoft.com
Author: Datapipesoft
Description: Custom theme for Datapipesoft — AI-Powered Software Agency
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: datapipesoft
*/

:root {
  --navy: #050d1a;
  --navy2: #0a1628;
  --cyan: #00c8ff;
  --cyan-glow: rgba(0,200,255,0.12);
  --cyan-border: rgba(0,200,255,0.25);
  --text: #e8f0ff;
  --muted: #7a90b0;
  --card: #0c1c30;
  --card-border: rgba(0,200,255,0.15);
  --green: #00e5a0;
}

* { box-sizing: border-box; margin:0; padding:0; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy); color: var(--text);
  line-height: 1.6; font-size: 15px; overflow-x: hidden;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--cyan); color: #030f1c;
  border: 2px solid var(--cyan); border-radius: 8px;
  padding: 12px 26px; font-size: 15px; font-weight: 700;
  font-family: 'Outfit', sans-serif; cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  letter-spacing: 0.2px; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: #00a8d8; border-color: #00a8d8; transform: translateY(-1px); color: #030f1c; }

.btn-ghost {
  background: transparent; color: var(--cyan);
  border: 2px solid var(--cyan); border-radius: 8px;
  padding: 12px 26px; font-size: 15px; font-weight: 600;
  font-family: 'Outfit', sans-serif; cursor: pointer;
  transition: background 0.2s, transform 0.15s; letter-spacing: 0.2px;
  text-decoration: none; display: inline-block;
}
.btn-ghost:hover { background: rgba(0,200,255,0.1); transform: translateY(-1px); color: var(--cyan); }

.btn-green {
  background: var(--green); color: #021a10;
  border: 2px solid var(--green); border-radius: 8px;
  padding: 11px 22px; font-size: 14px; font-weight: 700;
  font-family: 'Outfit', sans-serif; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none; display: inline-block;
}
.btn-green:hover { background: #00c48a; border-color: #00c48a; transform: translateY(-1px); color: #021a10; }

.btn-ghost-green {
  background: transparent; color: var(--green);
  border: 2px solid var(--green); border-radius: 8px;
  padding: 11px 22px; font-size: 14px; font-weight: 600;
  font-family: 'Outfit', sans-serif; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none; display: inline-block;
}
.btn-ghost-green:hover { background: rgba(0,229,160,0.1); transform: translateY(-1px); color: var(--green); }

.nav-cta {
  background: var(--cyan); color: #030f1c;
  border: 2px solid var(--cyan); border-radius: 6px;
  padding: 8px 18px; font-size: 13px; font-weight: 700;
  font-family: 'Outfit', sans-serif; cursor: pointer; transition: background 0.2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: #00a8d8; border-color: #00a8d8; color: #030f1c; }

.yt-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #cc0000; color: #fff;
  border: 2px solid #cc0000; border-radius: 6px;
  padding: 7px 14px; font-size: 13px; font-weight: 700;
  font-family: 'Outfit', sans-serif; cursor: pointer;
  text-decoration: none; transition: background 0.2s;
}
.yt-btn:hover { background: #aa0000; border-color: #aa0000; color: #fff; }
.yt-icon { width: 16px; height: 16px; }

/* ── NAV ── */
nav.site-nav {
  background: rgba(5,13,26,0.97);
  border-bottom: 1px solid var(--cyan-border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(8px);
}
.logo { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: #fff; text-decoration: none; }
.logo span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a { color: var(--muted); font-size: 14px; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--cyan); }
.nav-right { display: flex; align-items: center; gap: 10px; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }

/* ── HERO ── */
.hero {
  position: relative; padding: 5rem 2rem 4rem;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,200,255,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image: linear-gradient(var(--cyan) 1px, transparent 1px), linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,200,255,0.08); border: 1px solid var(--cyan-border);
  color: var(--cyan); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 1.5rem;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-size: 48px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.08;
  margin-bottom: 1.25rem; max-width: 700px; margin-left: auto; margin-right: auto; color: #fff;
}
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero-sub {
  font-size: 16px; color: var(--muted); font-weight: 300;
  max-width: 520px; margin: 0 auto 2.25rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── STATS ── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--cyan-border);
  border-top: 1px solid var(--cyan-border); border-bottom: 1px solid var(--cyan-border);
}
.stat { background: var(--navy2); padding: 1.75rem 1.25rem; text-align: center; }
.stat-n { font-size: 34px; font-weight: 800; color: var(--cyan); letter-spacing: -1px; font-family: 'JetBrains Mono', monospace; }
.stat-l { font-size: 12px; color: var(--muted); margin-top: 4px; font-weight: 500; }

/* ── SECTIONS ── */
.section { padding: 4rem 2rem; }
.section-label {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan); font-weight: 600; margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--cyan); }
.section-title { font-size: 32px; font-weight: 800; letter-spacing: -0.8px; margin-bottom: 0.75rem; line-height: 1.15; color: #fff; }
.section-desc { color: var(--muted); font-size: 15px; font-weight: 300; max-width: 540px; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-top: 2.5rem; }
.srv-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s; cursor: default;
}
.srv-card:hover { border-color: var(--cyan); transform: translateY(-3px); }
.srv-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,200,255,0.1); border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.srv-icon svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; }
.srv-name { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.srv-desc { font-size: 12px; color: var(--muted); line-height: 1.65; }

/* ── FEATURED ── */
.featured {
  background: var(--navy2);
  border-top: 1px solid var(--cyan-border); border-bottom: 1px solid var(--cyan-border);
  padding: 4rem 2rem;
}
.featured-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; max-width: 960px; margin: 0 auto; }
.featured-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,229,160,0.1); border: 1px solid rgba(0,229,160,0.3);
  color: var(--green); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 1rem;
}
.featured-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: blink 1.5s infinite; }
.featured h2 { font-size: 32px; font-weight: 800; letter-spacing: -1px; margin-bottom: 0.5rem; line-height: 1.1; color: #fff; }
.featured h2 em { font-style: normal; color: var(--cyan); }
.featured-tagline { color: var(--muted); font-size: 14px; margin-bottom: 1.5rem; font-weight: 300; line-height: 1.7; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.75rem; }
.features-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); }
.feat-check { color: var(--cyan); font-size: 10px; line-height: 16px; width: 16px; text-align: center; flex-shrink: 0; font-weight: 700; }
.exchanges { display: flex; gap: 8px; margin-bottom: 1.75rem; }
.exch-tag {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted); font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 6px; font-family: 'JetBrains Mono', monospace;
}
.featured-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-store {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: 10px;
  font-size: 13px; font-weight: 700; font-family: 'Outfit', sans-serif;
  cursor: pointer; text-decoration: none;
  transition: transform 0.15s, opacity 0.2s;
  border: none;
}
.btn-store:hover { transform: translateY(-2px); opacity: 0.88; }
.btn-appstore { background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.btn-appstore:hover { color: #fff; }
.btn-googleplay { background: #fff; color: #111; border: 1px solid rgba(0,0,0,0.1); }
.btn-googleplay:hover { color: #111; }

/* ── APP MOCKUP ── */
.app-mockup { background: #060f1e; border: 1px solid rgba(0,200,255,0.2); border-radius: 16px; overflow: hidden; }
.mock-header { background: #0a1628; border-bottom: 1px solid rgba(0,200,255,0.12); padding: 10px 14px; display: flex; align-items: center; gap: 8px; }
.mock-logo-text { font-size: 13px; font-weight: 700; color: var(--cyan); font-family: 'JetBrains Mono', monospace; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; margin-left: auto; }
.mock-live { font-size: 10px; color: var(--green); font-weight: 600; font-family: 'JetBrains Mono', monospace; }
.mock-body { padding: 12px; }
.mock-row { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 6px; padding: 8px 10px; border-radius: 8px; font-size: 11px; font-family: 'JetBrains Mono', monospace; margin-bottom: 3px; align-items: center; }
.mock-header-row { color: var(--muted); font-size: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 6px; margin-bottom: 6px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 6px; padding-left: 10px; font-family: 'JetBrains Mono', monospace; }
.mock-pair { font-weight: 700; font-size: 12px; color: #fff; }
.mock-price { color: #e8f0ff; }
.up { color: #00e5a0; } .dn { color: #ff5a5a; }
.mock-vol { font-size: 10px; padding: 2px 6px; border-radius: 4px; text-align: center; font-weight: 600; }
.vol-hi { background: rgba(255,90,90,0.15); color: #ff5a5a; }
.vol-md { background: rgba(255,180,0,0.12); color: #ffb400; }
.vol-lo { background: rgba(0,229,160,0.12); color: #00e5a0; }
.mock-row:hover { background: rgba(0,200,255,0.04); }
.mock-tabs { display: flex; gap: 6px; margin-bottom: 10px; }
.mock-tab { font-size: 10px; font-family: 'JetBrains Mono', monospace; font-weight: 600; padding: 4px 10px; border-radius: 5px; background: rgba(0,200,255,0.08); border: 1px solid rgba(0,200,255,0.15); color: var(--muted); cursor: pointer; }
.mock-tab.active { background: rgba(0,200,255,0.18); color: var(--cyan); border-color: var(--cyan); }
.news-item { background: rgba(0,200,255,0.04); border: 1px solid rgba(0,200,255,0.1); border-radius: 8px; padding: 8px 10px; margin-bottom: 5px; }
.news-headline { font-size: 11px; color: #e8f0ff; font-weight: 500; margin-bottom: 4px; line-height: 1.4; }
.news-meta { display: flex; gap: 6px; align-items: center; }
.news-tag { font-size: 9px; font-family: 'JetBrains Mono', monospace; font-weight: 700; padding: 2px 7px; border-radius: 4px; }
.tag-bull { background: rgba(0,229,160,0.15); color: #00e5a0; }
.tag-bear { background: rgba(255,90,90,0.12); color: #ff5a5a; }
.tag-neut { background: rgba(255,180,0,0.12); color: #ffb400; }
.news-time { font-size: 9px; color: var(--muted); font-family: 'JetBrains Mono', monospace; margin-left: auto; }

/* ── PROJECTS ── */
.projects-section { padding: 4rem 2rem; }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 2.5rem; }
.proj-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; transition: border-color 0.2s, transform 0.2s; cursor: default; }
.proj-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.proj-img { height: 160px; background: #0a1628; display: flex; align-items: center; justify-content: center; font-size: 48px; position: relative; overflow: hidden; }
.proj-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, var(--card) 100%); }
.proj-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; width: 100%; height: 100%; padding: 8px; }
.proj-img-thumb { border-radius: 6px; background: #0f2040; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.proj-body { padding: 1rem 1.25rem 1.25rem; }
.proj-tag { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); font-family: 'JetBrains Mono', monospace; margin-bottom: 6px; }
.proj-name { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; color: #fff; }
.proj-desc { font-size: 12px; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.proj-readmore { font-size: 12px; color: var(--cyan); font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.proj-readmore:hover { opacity: 0.7; }

/* ── BLOG ── */
.blog-section { background: var(--navy2); border-top: 1px solid var(--cyan-border); padding: 4rem 2rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 2.5rem; }
.blog-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 12px; padding: 1.25rem; transition: border-color 0.2s; cursor: default; }
.blog-card:hover { border-color: var(--cyan); }
.blog-cat { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); font-weight: 700; margin-bottom: 8px; font-family: 'JetBrains Mono', monospace; }
.blog-title { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 8px; color: #fff; }
.blog-meta { font-size: 11px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.blog-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

/* ── YOUTUBE ── */
.yt-section { padding: 4rem 2rem; text-align: center; }
.yt-card { max-width: 600px; margin: 2rem auto 0; background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; padding: 2.5rem 2rem; position: relative; overflow: hidden; }
.yt-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(255,0,0,0.06) 0%, transparent 70%); pointer-events: none; }
.yt-logo { font-size: 48px; margin-bottom: 1rem; }
.yt-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.yt-card p { color: var(--muted); font-size: 14px; margin-bottom: 1.5rem; line-height: 1.7; }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, #0a1e3a 0%, #051020 100%); border-top: 1px solid var(--cyan-border); border-bottom: 1px solid var(--cyan-border); padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(0,200,255,0.07) 0%, transparent 70%); pointer-events: none; }
.cta-section h2 { font-size: 34px; font-weight: 800; letter-spacing: -1px; margin-bottom: 0.75rem; color: #fff; }
.cta-section p { color: var(--muted); font-size: 15px; margin-bottom: 1.75rem; }

/* ── CONTACT ── */
.contact-section {
  padding: 5rem 2rem;
  background: var(--navy);
  border-top: 1px solid var(--cyan-border);
}
.contact-section .section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 3rem;
}
.contact-section .section-label {
  justify-content: center;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-map {
  background: #0a1628;
  border: 1px solid var(--cyan-border);
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(0.8);
}
.map-pin-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,200,255,0.1);
  border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
}
.map-pin-icon svg { width: 26px; height: 26px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; }
.contact-right h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.contact-right p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.contact-box {
  background: rgba(0,200,255,0.04);
  border: 1px solid var(--cyan-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}
.contact-box strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.contact-box p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.6;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,200,255,0.1);
  border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; }
.contact-info-text { display: flex; flex-direction: column; }
.contact-info-label { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.contact-info-value { font-size: 14px; color: #fff; font-weight: 600; }
.contact-info-value a { color: #fff; text-decoration: none; transition: color 0.2s; }
.contact-info-value a:hover { color: var(--cyan); }
.btn-contact {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px 24px;
  background: var(--cyan); color: #030f1c;
  border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-contact:hover { background: #00a8d8; transform: translateY(-1px); color: #030f1c; }

/* ── FOOTER ── */
footer.site-footer { background: #030910; border-top: 1px solid var(--cyan-border); padding: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--muted); }
.foot-logo { font-size: 16px; font-weight: 800; color: #fff; }
.foot-logo span { color: var(--cyan); }
.foot-links { display: flex; gap: 1.25rem; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: 12px; transition: color 0.2s; }
.foot-links a:hover { color: var(--cyan); }

/* ── BLOG ARCHIVE ── */
.blog-archive { padding: 4rem 2rem 5rem; max-width: 1100px; margin: 0 auto; }
.blog-archive-header { text-align: center; margin-bottom: 3rem; }
.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.blog-archive-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 14px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.blog-archive-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.blog-archive-thumb { height: 180px; overflow: hidden; }
.blog-archive-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-archive-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-excerpt { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-archive-nav {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--cyan-border);
}
.blog-archive-nav a { color: var(--cyan); text-decoration: none; }

/* ── INNER PAGES ── */
.inner-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}
.inner-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.25rem;
}
.inner-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  background: rgba(0,200,255,0.08);
  border: 1px solid var(--cyan-border);
  padding: 3px 10px; border-radius: 999px;
}
.inner-date { font-size: 12px; color: var(--muted); }
.inner-title {
  font-size: 36px; font-weight: 800; letter-spacing: -1px;
  line-height: 1.15; color: #fff; margin-bottom: 2rem;
}
.inner-content {
  color: var(--muted); font-size: 16px; line-height: 1.85;
  border-top: 1px solid var(--cyan-border); padding-top: 2rem;
}
.inner-content h1,
.inner-content h2,
.inner-content h3,
.inner-content h4 { color: #fff; font-weight: 700; margin: 2rem 0 0.75rem; letter-spacing: -0.5px; }
.inner-content h2 { font-size: 24px; }
.inner-content h3 { font-size: 20px; }
.inner-content p { margin-bottom: 1.25rem; }
.inner-content a { color: var(--cyan); text-decoration: none; }
.inner-content a:hover { text-decoration: underline; }
.inner-content ul, .inner-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.inner-content li { margin-bottom: 0.5rem; }
.inner-content img { max-width: 100%; border-radius: 10px; margin: 1.5rem 0; border: 1px solid var(--cyan-border); }
.inner-content blockquote {
  border-left: 3px solid var(--cyan); padding-left: 1.25rem;
  margin: 1.5rem 0; color: #a0b4cc; font-style: italic;
}
.inner-content pre, .inner-content code {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  background: #0a1628; border: 1px solid var(--cyan-border);
  border-radius: 6px; padding: 2px 8px;
}
.inner-content pre { padding: 1rem 1.25rem; overflow-x: auto; display: block; margin-bottom: 1.25rem; }
.inner-content pre code { background: none; border: none; padding: 0; }
.inner-back { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--cyan-border); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(5,13,26,0.98); padding: 1.5rem 2rem; border-bottom: 1px solid var(--cyan-border); gap: 1rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .featured-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-map { height: 260px; }
  footer.site-footer { flex-direction: column; text-align: center; }
  .foot-links { flex-wrap: wrap; justify-content: center; }
}
