/* ─── COMBNEWS CYBER-HONEYCOMB ─── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@500;600;700;800&family=IBM+Plex+Mono:ital,wght@0,400;0,600;0,700;1,400&display=swap');

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

:root {
  --comb-bg: #fffdf0;  /* Pale light yellow */
  --comb-blk: #09090b; /* Pure Void */
  --comb-ylw: #eab308; /* Honey Gold */
  --comb-gray: #71717a;
  --container-max: 1400px;
}

body { font-family: 'Space Grotesk', sans-serif; background: var(--comb-bg); color: var(--comb-blk); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.2s; }
a:hover { color: var(--comb-ylw); }

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

/* ─── MASTHEAD & NAV ─── */
header { background: var(--comb-bg); border-bottom: 4px solid var(--comb-blk); position: relative; }
.top-tracker { background: var(--comb-ylw); color: var(--comb-blk); font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 8px 0; border-bottom: 2px solid var(--comb-blk); }

.masthead { display: flex; justify-content: space-between; align-items: center; padding: 30px 0; }
.logo-box { display: inline-block; }
.logo { font-family: 'Syne', sans-serif; font-size: 55px; font-weight: 800; color: var(--comb-blk); text-transform: uppercase; letter-spacing: -2px; line-height: 1; position: relative; }
.logo span { background: var(--comb-blk); color: var(--comb-ylw); padding: 0 10px; margin-left: -5px; clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); display: inline-block; }
.tagline { font-family: 'IBM Plex Mono', monospace; font-size: 13px; font-weight: 600; color: var(--comb-gray); margin-top: 5px; }

.main-nav { border-top: 2px solid var(--comb-blk); display: flex; }
.main-nav a { flex: 1; text-align: center; padding: 18px 0; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--comb-blk); border-right: 2px solid var(--comb-blk); }
.main-nav a:first-child { border-left: 2px solid var(--comb-blk); }
.main-nav a:hover { background: var(--comb-blk); color: var(--comb-ylw); }

/* ─── HARDWARE GRIDS ─── */
.section-hdr { margin: 60px 0 30px; display: flex; align-items: center; justify-content: space-between; border-bottom: 4px solid var(--comb-blk); padding-bottom: 10px; }
.section-hdr h2 { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; display: flex; align-items: center; gap: 15px; }
.section-hdr h2::before { content: ""; display: inline-block; width: 20px; height: 20px; background: var(--comb-ylw); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); border: 2px solid var(--comb-blk); }

.badge-hex { display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700; text-transform: uppercase; background: var(--comb-ylw); color: var(--comb-blk); padding: 4px 10px; border: 2px solid var(--comb-blk); box-shadow: 2px 2px 0 var(--comb-blk); margin-bottom: 15px; }

/* ─── COMB CARD EXPERIENCES ─── */
.grid-mag { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.grid-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.comb-box { background: var(--comb-bg); border: 2px solid var(--comb-blk); position: relative; transition: 0.2s; display: flex; flex-direction: column; }
.comb-box:hover { box-shadow: -8px 8px 0 var(--comb-ylw), -8px 8px 0 2px var(--comb-blk); transform: translate(4px, -4px); }
.comb-img { width: 100%; height: 220px; border-bottom: 2px solid var(--comb-blk); overflow: hidden; }
.comb-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%) contrast(1.1); transition: 0.4s; }
.comb-box:hover .comb-img img { filter: grayscale(0) contrast(1.1); transform: scale(1.05); }
.comb-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.comb-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; line-height: 1.1; margin-bottom: 12px; }

.comb-hero { border: 2px solid var(--comb-blk); position: relative; height: 500px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.comb-hero-img { position: absolute; inset: 0; z-index: 1; }
.comb-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.comb-hero-content { position: relative; z-index: 2; padding: 40px; background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); color: #fff; }
.comb-hero-title { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; line-height: 1.1; margin-bottom: 10px; max-width: 900px; }

.comb-list-item { display: flex; gap: 20px; align-items: stretch; border: 2px solid var(--comb-blk); background: #fff; margin-bottom: 20px; transition: 0.2s; }
.comb-list-item:hover { box-shadow: -4px 4px 0 var(--comb-blk); transform: translate(2px,-2px); }
.comb-list-img { width: 140px; height: 140px; flex-shrink: 0; border-right: 2px solid var(--comb-blk); }
.comb-list-img img { width: 100%; height: 100%; object-fit: cover; }
.comb-list-body { padding: 15px; display: flex; flex-direction: column; justify-content: center; }
.comb-list-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; line-height: 1.2; margin-bottom: 8px; }

.meta-log { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600; color: var(--comb-gray); }

/* ─── DARK SECTOR ─── */
.dark-sector { background: var(--comb-blk); padding: 80px 0; color: #fff; margin: 80px 0; border-top: 4px solid var(--comb-ylw); border-bottom: 4px solid var(--comb-ylw); }
.dark-sector .section-hdr { border-bottom-color: #333; }
.dark-sector .section-hdr h2 { color: #fff; }
.dark-sector .comb-box { background: #111; border-color: #333; }
.dark-sector .comb-box:hover { box-shadow: -8px 8px 0 var(--comb-ylw); border-color: var(--comb-ylw); }
.dark-sector .comb-title { color: #fff; }

/* ─── POST PAGE ─── */
.hexa-wrap { max-width: 900px; margin: 60px auto; border: 4px solid var(--comb-blk); background: #fff; padding: 50px; box-shadow: -15px 15px 0 var(--comb-ylw), -15px 15px 0 2px var(--comb-blk); }
.hexa-hdr { text-align: center; border-bottom: 2px solid var(--comb-blk); padding-bottom: 30px; margin-bottom: 30px; }
.hexa-title { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; line-height: 1.1; margin: 15px 0; letter-spacing: -1px; }
.hexa-hero { width: 100%; border: 2px solid var(--comb-blk); margin-bottom: 40px; }
.hexa-hero img { width: 100%; height: auto; display: block; }
.hexa-body { font-size: 19px; line-height: 1.8; color: #222; }
.hexa-body p { margin-bottom: 25px; }

/* ─── FOOTER ─── */
footer { background: var(--comb-ylw); padding: 80px 0 40px; border-top: 4px solid var(--comb-blk); margin-top: 80px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.ft-logo { font-size: 45px; margin-bottom: 15px; color: var(--comb-blk); }
.ft-title { font-family: 'IBM Plex Mono'; font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--comb-blk); border-bottom: 2px solid var(--comb-blk); padding-bottom: 10px; margin-bottom: 20px; }
.ft-list { list-style: none; }
.ft-list li { margin-bottom: 12px; font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; }
.ft-list li a:hover { color: #fff; }
.ft-bottom { text-align: center; border-top: 2px solid var(--comb-blk); margin-top: 60px; padding-top: 30px; font-family: 'IBM Plex Mono'; font-size: 12px; font-weight: 700; }
