/* ============================================
   INDUSTRY 4.1 — Apex Orbit Brand
   Editorial Magazine Layout (Vogue x Wired)
   Monetization + Consulting Funnels
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #00434D;
  --cyan: #0086BF;
  --blue: #205F9A;
  --beige: #C9A87C;
  --grey: #276E9D;
  --white: #FFFFFF;
  --bg: #06181C;
  --bg-raised: #0B2228;
  --bg-card: #0F2A32;
  --bg-card-hover: #143640;
  --bg-surface: #184048;
  --text: #EDF2F4;
  --text-sec: #99B0B8;
  --text-muted: #5E7E88;
  --border: #1A3640;
  --border-lt: #15303A;
  --accent: #0086BF;
  --accent-dk: #006B99;
  --accent-gl: rgba(0,134,191,0.12);
  --warm: #C9A87C;
  --warm-dk: #B08E62;
  --warm-gl: rgba(201,168,124,0.12);
  --fn-d: 'Space Grotesk', sans-serif;
  --fn-b: 'Inter', sans-serif;
  --fn-m: 'JetBrains Mono', monospace;
  --r: 4px; --rm: 8px; --rl: 12px; --tr: 0.25s ease;
  --max: 1320px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--fn-b); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.ctr { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.ctr-narrow { max-width: 860px; margin: 0 auto; padding: 0 48px; }

/* ===================== TOP BAR ===================== */
.top-bar { background: var(--navy); padding: 8px 0; text-align: center; font-family: var(--fn-d); font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.top-bar a { color: var(--warm); margin-left: 6px; }

/* ===================== NAV ===================== */
.nav { position: sticky; top: 0; z-index: 200; background: rgba(6,24,28,0.96); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.n-logo { font-family: var(--fn-d); font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.n-logo .v { font-family: var(--fn-m); font-size: 11px; color: var(--cyan); vertical-align: super; margin-left: 2px; }
.n-logo .by { font-size: 10px; font-weight: 400; color: var(--text-muted); margin-left: 8px; }
.n-links { display: flex; gap: 1px; align-items: center; }
.n-links a { font-family: var(--fn-d); font-size: 12px; font-weight: 600; color: var(--text-muted); padding: 7px 12px; border-radius: var(--r); transition: all var(--tr); }
.n-links a:hover, .n-links a.on { color: var(--text); background: var(--bg-card); }
.n-cta { background: var(--cyan) !important; color: #fff !important; font-size: 10px !important; font-weight: 800 !important; letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 16px !important; }
.n-cta:hover { background: var(--accent-dk) !important; }
.n-vip { background: var(--warm) !important; color: var(--bg) !important; font-size: 10px !important; font-weight: 800 !important; letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 16px !important; margin-left: 4px !important; }
.n-vip:hover { background: var(--warm-dk) !important; }

/* ===================== TAGS ===================== */
.tag { font-family: var(--fn-m); font-size: 9px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 3px 9px; border-radius: 2px; display: inline-block; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.t-r { background: rgba(0,134,191,0.12); color: var(--cyan); }
.t-b { background: rgba(32,95,154,0.12); color: var(--blue); }
.t-g { background: rgba(15,191,127,0.1); color: #0FBF7F; }
.t-a { background: var(--warm-gl); color: var(--warm); }
.t-p { background: rgba(39,110,157,0.12); color: var(--grey); }
.t-c { background: rgba(0,67,77,0.2); color: #3DBDD4; }
.t-vip { background: var(--warm-gl); color: var(--warm); border: 1px solid rgba(201,168,124,0.2); }
.t-sp { background: rgba(0,134,191,0.06); color: var(--cyan); border: 1px solid rgba(0,134,191,0.15); font-size: 8px; }
.t-apex { background: rgba(0,67,77,0.3); color: var(--cyan); border: 1px solid rgba(0,134,191,0.2); }

/* ===================== META ===================== */
.meta { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--text-muted); flex-wrap: wrap; }
.meta-a { font-weight: 600; color: var(--text-sec); }

/* ===================== BUTTONS ===================== */
.btn { background: var(--cyan); color: #fff; font-family: var(--fn-d); font-weight: 800; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; padding: 12px 26px; border: none; border-radius: var(--r); cursor: pointer; white-space: nowrap; transition: all var(--tr); text-decoration: none; display: inline-block; }
.btn:hover { background: var(--accent-dk); transform: translateY(-1px); }
.btn-warm { background: var(--warm); color: var(--bg); }
.btn-warm:hover { background: var(--warm-dk); }
.btn-outline { background: transparent; border: 1px solid var(--cyan); color: var(--cyan); }
.btn-outline:hover { background: var(--accent-gl); }
.btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--text); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-sm { font-size: 9px; padding: 8px 18px; }
.btn-lg { font-size: 12px; padding: 14px 32px; }
.btn-full { width: 100%; text-align: center; }

/* ===================== EDITORIAL HERO ===================== */
/* Full-width dramatic hero — Vogue-style */
.ed-hero { position: relative; padding: 48px 0 0; margin-bottom: 0; }
.ed-hero-inner { width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: stretch; }
.ed-hero-content { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl); padding: 32px; display: flex; flex-direction: column; }
.ed-hero-content .tag { margin-bottom: 14px; }
.ed-hero-content h1 { font-family: var(--fn-d); font-size: 28px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 12px; }
.ed-hero-content .dk { font-size: 14px; color: var(--text-sec); line-height: 1.65; margin-bottom: 16px; max-width: 540px; flex: 1; }
.ed-hero-content .meta { margin-bottom: 16px; }
.ed-hero-content .hero-actions { display: flex; gap: 12px; }
.ed-hero-aside { display: flex; flex-direction: column; gap: 16px; }

/* Sidebar cards in hero area */
.ed-hero-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rm); padding: 20px; transition: all var(--tr); display: block; }
.ed-hero-card:hover { border-color: var(--cyan); background: var(--bg-card-hover); }
.ed-hero-card .tag { margin-bottom: 8px; }
.ed-hero-card h3 { font-family: var(--fn-d); font-size: 15px; font-weight: 700; line-height: 1.3; margin-bottom: 5px; }
.ed-hero-card p { font-size: 11px; color: var(--text-muted); line-height: 1.45; }
.ed-hero-card.apex-card { border-color: rgba(0,134,191,0.25); background: rgba(0,134,191,0.06); }
.ed-hero-card.apex-card:hover { border-color: var(--cyan); }

/* ===================== SECTION DIVIDERS ===================== */
.section-break { padding: 56px 0 0; }
.section-break-sm { padding: 36px 0 0; }
.sh { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.sh h2 { font-family: var(--fn-d); font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.sh a { font-family: var(--fn-m); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cyan); }

/* ===================== EDITORIAL GRIDS ===================== */
/* Magazine-style asymmetric grid — big feature + 2 small */
.ed-grid-feature { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; margin-bottom: 20px; }
.ed-grid-feature .ed-card-lg { grid-row: 1 / 3; }

/* 3-column equal grid */
.ed-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }

/* 2-column grid */
.ed-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

/* 4-column compact grid */
.ed-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }

/* ===================== EDITORIAL CARDS ===================== */
/* Large feature card */
.ed-card-lg { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; display: flex; flex-direction: column; transition: all var(--tr); }
.ed-card-lg:hover { border-color: var(--cyan); transform: translateY(-2px); }
.ed-card-lg .card-img { height: 280px; background: linear-gradient(135deg, #0A1820, #0F2830); position: relative; }
.ed-card-lg .card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-card) 0%, transparent 50%); }
.ed-card-lg .card-img .tag { position: absolute; top: 14px; left: 14px; z-index: 1; }
.ed-card-lg .card-bd { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.ed-card-lg .card-bd h3 { font-family: var(--fn-d); font-size: 22px; font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 10px; }
.ed-card-lg .card-bd p { font-size: 14px; color: var(--text-sec); line-height: 1.6; margin-bottom: 12px; flex: 1; }

/* Standard card */
.ed-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rm); overflow: hidden; display: flex; flex-direction: column; transition: all var(--tr); }
.ed-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.ed-card .card-img { height: 180px; background: linear-gradient(135deg, #0A1820, #0F2830); position: relative; }
.ed-card .card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-card) 0%, transparent 40%); }
.ed-card .card-img .tag { position: absolute; top: 10px; left: 10px; z-index: 1; }
.ed-card .card-bd { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.ed-card .card-bd h3 { font-family: var(--fn-d); font-size: 16px; font-weight: 700; line-height: 1.3; margin-bottom: 7px; letter-spacing: -0.01em; }
.ed-card .card-bd p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; flex: 1; }

/* Compact card (no image) */
.ed-card-compact { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rm); padding: 20px; display: block; transition: all var(--tr); }
.ed-card-compact:hover { border-color: var(--cyan); }
.ed-card-compact .tag { margin-bottom: 10px; }
.ed-card-compact h3 { font-family: var(--fn-d); font-size: 15px; font-weight: 700; line-height: 1.3; margin-bottom: 6px; }
.ed-card-compact p { font-size: 12px; color: var(--text-muted); line-height: 1.45; margin-bottom: 8px; }

/* VIP locked card */
.ed-card-vip { border-color: rgba(201,168,124,0.15); }
.ed-card-vip:hover { border-color: var(--warm); }
.ed-card-vip .vip-badge { position: absolute; top: 10px; right: 10px; font-family: var(--fn-m); font-size: 9px; font-weight: 700; color: var(--warm); background: rgba(6,24,28,0.9); border: 1px solid rgba(201,168,124,0.3); padding: 2px 8px; border-radius: 2px; z-index: 1; }
.fi-lock { font-family: var(--fn-m); font-size: 9px; color: var(--warm); letter-spacing: 0.05em; display: flex; align-items: center; gap: 5px; }
.fi-lock::before { content: '🔒'; font-size: 10px; }

/* Sponsored card */
.ed-card-sp { border-color: rgba(0,134,191,0.12); }
.ed-card-sp:hover { border-color: var(--cyan); }
.sp-label { font-family: var(--fn-m); font-size: 8px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 18px 0; display: flex; align-items: center; gap: 5px; }
.sp-label::before { content: ''; width: 4px; height: 4px; background: var(--cyan); border-radius: 50%; }

/* ===================== APEX STUDIOS CONSULTING CTAs ===================== */
/* Full-width consulting banner */
.apex-ban { background: linear-gradient(135deg, rgba(0,67,77,0.15) 0%, rgba(0,134,191,0.08) 100%); border: 1px solid rgba(0,134,191,0.2); border-radius: var(--rl); padding: 44px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; overflow: hidden; }
.apex-ban::before { content: 'APEX STUDIOS'; position: absolute; top: 14px; left: 48px; font-family: var(--fn-m); font-size: 9px; color: rgba(0,134,191,0.4); letter-spacing: 0.1em; }
.apex-ban h3 { font-family: var(--fn-d); font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; line-height: 1.2; }
.apex-ban h3 span { color: var(--cyan); }
.apex-ban p { font-size: 14px; color: var(--text-sec); max-width: 540px; line-height: 1.6; }
.apex-ban .btn { flex-shrink: 0; }

/* Inline consulting callout (mid-page) */
.apex-inline { background: var(--bg-card); border: 1px solid rgba(0,134,191,0.18); border-left: 3px solid var(--cyan); border-radius: var(--rm); padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.apex-inline-bd h4 { font-family: var(--fn-d); font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.apex-inline-bd p { font-size: 12px; color: var(--text-muted); }
.apex-inline .tag { flex-shrink: 0; }

/* Sidebar consulting widget */
.sb-apex { background: linear-gradient(135deg, rgba(0,67,77,0.12), rgba(0,134,191,0.06)); border: 1px solid rgba(0,134,191,0.2); border-radius: var(--rm); padding: 22px; position: relative; }
.sb-apex::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--cyan); border-radius: var(--rm) var(--rm) 0 0; }
.sb-apex h4 { font-family: var(--fn-d); font-size: 14px; font-weight: 800; margin-bottom: 6px; margin-top: 4px; }
.sb-apex p { font-size: 11px; color: var(--text-sec); line-height: 1.5; margin-bottom: 12px; }
.sb-apex ul { list-style: none; margin-bottom: 14px; }
.sb-apex ul li { font-size: 11px; color: var(--text-sec); padding: 4px 0; }
.sb-apex ul li::before { content: '→'; color: var(--cyan); margin-right: 6px; }

/* ===================== VIP BANNERS ===================== */
.vip-ban { background: linear-gradient(135deg, rgba(201,168,124,0.08), rgba(0,67,77,0.06)); border: 1px solid rgba(201,168,124,0.2); border-radius: var(--rl); padding: 44px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.vip-ban h3 { font-family: var(--fn-d); font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.vip-ban h3 span { color: var(--warm); }
.vip-ban p { font-size: 14px; color: var(--text-sec); max-width: 540px; }

/* ===================== AD SLOTS ===================== */
.ad-slot { background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--rm); padding: 32px; text-align: center; position: relative; }
.ad-slot::before { content: 'ADVERTISEMENT'; position: absolute; top: 8px; right: 14px; font-family: var(--fn-m); font-size: 7px; color: var(--text-muted); letter-spacing: 0.1em; }
.ad-slot h4 { font-family: var(--fn-d); font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.ad-slot p { font-size: 12px; color: var(--text-sec); margin-bottom: 14px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ===================== AFFILIATE TOOLS ===================== */
.tool-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tool-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rm); padding: 22px; display: flex; gap: 16px; align-items: flex-start; transition: all var(--tr); }
.tool-card:hover { border-color: var(--cyan); }
.tool-ico { width: 44px; height: 44px; background: var(--accent-gl); border-radius: var(--rm); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.tool-bd h4 { font-family: var(--fn-d); font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.tool-bd .tool-price { font-family: var(--fn-m); font-size: 10px; color: var(--warm); display: block; margin-bottom: 4px; }
.tool-bd p { font-size: 11px; color: var(--text-muted); line-height: 1.45; margin-bottom: 6px; }
.tool-bd .tool-cta { font-family: var(--fn-m); font-size: 9px; color: var(--cyan); letter-spacing: 0.05em; text-transform: uppercase; }

/* AdSense wrapper */
.ad-slot-wrap { margin: 24px 0; }
.ad-slot-wrap .ad-slot { min-height: 90px; }
.ad-inline { max-width: 680px; margin: 28px 0; }
.sb-adsense { min-height: 250px; padding: 8px; }
.sb-adsense ins { min-height: 240px; }

/* Affiliate section */
.aff-section { margin-bottom: 20px; }
.aff-section .sh { margin-bottom: 18px; }
.aff-disc { font-family: var(--fn-m); font-size: 9px; color: var(--text-muted); letter-spacing: 0.04em; }
.aff-label { font-family: var(--fn-m); font-size: 8px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 10px; }
.in-affiliate { background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--warm); border-radius: var(--rm); padding: 20px 24px; margin: 28px 0; max-width: 680px; }

/* ===================== NEWSLETTER ===================== */
.nl { background: linear-gradient(135deg, var(--bg-raised), #0A1E24); border: 1px solid var(--border); border-radius: var(--rl); padding: 48px; text-align: center; }
.nl h3 { font-family: var(--fn-d); font-size: 26px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.nl p { font-size: 14px; color: var(--text-sec); margin-bottom: 22px; max-width: 460px; margin-left: auto; margin-right: auto; }
.nl-f { display: flex; justify-content: center; gap: 8px; max-width: 420px; margin: 0 auto; }
.nl-i { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 11px 14px; color: var(--text); font-size: 12px; outline: none; font-family: var(--fn-b); }
.nl-i::placeholder { color: var(--text-muted); }
.nl-i:focus { border-color: var(--cyan); }
.nl-b { background: var(--cyan); color: #fff; border: none; border-radius: var(--r); padding: 11px 22px; font-family: var(--fn-d); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; cursor: pointer; }
.nl-n { font-size: 10px; color: var(--text-muted); margin-top: 12px; }
.nl-tiers { display: flex; justify-content: center; gap: 20px; margin-top: 14px; }
.nl-tier { font-family: var(--fn-m); font-size: 10px; color: var(--text-muted); }
.nl-tier span { color: var(--text-sec); font-weight: 600; }

/* ===================== SPOTLIGHT / QUOTE ===================== */
.ed-spot { display: grid; grid-template-columns: 1fr 1.2fr; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; }
.ed-spot-img { background: linear-gradient(135deg, #061820, #0F2A32); min-height: 320px; position: relative; display: flex; align-items: center; justify-content: center; }
.ed-spot-img .bq { font-family: var(--fn-d); font-size: 100px; color: var(--cyan); opacity: 0.08; }
.ed-spot-bd { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.ed-spot-bd .tag { margin-bottom: 12px; display: inline-block; align-self: flex-start; }
.ed-spot-bd h3 { font-family: var(--fn-d); font-size: 22px; font-weight: 800; line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.02em; }
.ed-spot-bd blockquote { font-size: 15px; font-style: italic; color: var(--text-sec); line-height: 1.75; margin-bottom: 14px; padding-left: 18px; border-left: 3px solid var(--cyan); }
.ed-spot-bd .cite { font-family: var(--fn-m); font-size: 10px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ===================== STATS ===================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rm); padding: 22px; text-align: center; }
.stat-n { font-family: var(--fn-d); font-size: 30px; font-weight: 800; color: var(--cyan); letter-spacing: -0.02em; }
.stat-l { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ===================== SIDEBAR (for articles/categories) ===================== */
.page-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
.page-main { min-width: 0; }
.page-sb { position: relative; }
.page-sb-in { position: sticky; top: 72px; display: flex; flex-direction: column; gap: 18px; max-height: calc(100vh - 84px); overflow-y: auto; scrollbar-width: none; }
.page-sb-in::-webkit-scrollbar { display: none; }

/* Sidebar widgets */
.sb-nl { background: linear-gradient(135deg, var(--bg-raised), #0A1E24); border: 1px solid var(--border); border-radius: var(--rm); padding: 20px; }
.sb-nl h4 { font-family: var(--fn-d); font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.sb-nl p { font-size: 11px; color: var(--text-sec); margin-bottom: 10px; line-height: 1.45; }
.sb-nl input { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 9px 12px; color: var(--text); font-size: 12px; outline: none; margin-bottom: 8px; }
.sb-nl input:focus { border-color: var(--cyan); }
.sb-nl button { width: 100%; background: var(--cyan); color: #fff; border: none; border-radius: var(--r); padding: 9px; font-family: var(--fn-d); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; cursor: pointer; }
.sb-nl .sb-count { font-size: 10px; color: var(--text-muted); margin-top: 8px; text-align: center; }

.sb-ad { background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--rm); padding: 20px; text-align: center; position: relative; }
.sb-ad::before { content: 'AD'; position: absolute; top: 6px; right: 8px; font-family: var(--fn-m); font-size: 7px; color: var(--text-muted); letter-spacing: 0.1em; }
.sb-ad h4 { font-family: var(--fn-d); font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.sb-ad p { font-size: 11px; color: var(--text-sec); line-height: 1.4; margin-bottom: 10px; }

.sb-vip { background: linear-gradient(135deg, rgba(201,168,124,0.08), rgba(0,67,77,0.06)); border: 1px solid rgba(201,168,124,0.2); border-radius: var(--rm); padding: 20px; text-align: center; }
.sb-vip h4 { font-family: var(--fn-d); font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.sb-vip h4 span { color: var(--warm); }
.sb-vip p { font-size: 11px; color: var(--text-sec); margin-bottom: 10px; line-height: 1.4; }
.sb-vip .price { font-family: var(--fn-d); font-size: 24px; font-weight: 800; color: var(--warm); margin-bottom: 3px; }
.sb-vip .price-sub { font-size: 10px; color: var(--text-muted); margin-bottom: 10px; display: block; }

.sb-trending { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rm); padding: 18px; }
.sb-trending h4 { font-family: var(--fn-d); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; color: var(--cyan); }
.sb-trending ol { list-style: none; counter-reset: tr; }
.sb-trending ol li { counter-increment: tr; padding: 8px 0; border-bottom: 1px solid var(--border-lt); }
.sb-trending ol li:last-child { border-bottom: none; }
.sb-trending ol li a { display: flex; gap: 8px; align-items: flex-start; transition: color var(--tr); }
.sb-trending ol li a:hover { color: var(--cyan); }
.sb-trending ol li a::before { content: counter(tr); font-family: var(--fn-m); font-size: 16px; font-weight: 800; color: rgba(0,134,191,0.25); min-width: 20px; }
.sb-trending ol li a span { font-size: 12px; font-weight: 600; line-height: 1.3; }

.sb-tool { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rm); padding: 18px; display: block; transition: all var(--tr); }
.sb-tool:hover { border-color: var(--cyan); }
.sb-tool-label { font-family: var(--fn-m); font-size: 8px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.sb-tool h4 { font-family: var(--fn-d); font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.sb-tool .tool-price { font-family: var(--fn-m); font-size: 10px; color: var(--warm); display: block; margin-bottom: 5px; }
.sb-tool p { font-size: 11px; color: var(--text-muted); line-height: 1.4; margin-bottom: 6px; }
.sb-tool .tool-cta { font-family: var(--fn-m); font-size: 9px; color: var(--cyan); letter-spacing: 0.05em; text-transform: uppercase; }

/* ===================== ARTICLE ===================== */
.art-h { padding: 48px 0 28px; max-width: 720px; }
.art-h h1 { font-family: var(--fn-d); font-size: 36px; font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 14px; }
.art-h .dk { font-size: 16px; color: var(--text-sec); line-height: 1.65; margin-bottom: 16px; }
.art-body { max-width: 680px; padding-bottom: 40px; }
.art-body p { font-size: 16px; line-height: 1.85; color: var(--text-sec); margin-bottom: 22px; }
.art-body h2 { font-family: var(--fn-d); font-size: 22px; font-weight: 800; color: var(--text); margin: 40px 0 14px; letter-spacing: -0.02em; }
.art-body h3 { font-family: var(--fn-d); font-size: 18px; font-weight: 700; color: var(--text); margin: 32px 0 10px; }
.art-body blockquote { border-left: 3px solid var(--cyan); padding: 14px 0 14px 22px; margin: 28px 0; font-size: 17px; font-style: italic; color: var(--text); line-height: 1.65; }
.art-body ul, .art-body ol { margin: 14px 0 22px 22px; color: var(--text-sec); }
.art-body li { font-size: 15px; line-height: 1.8; margin-bottom: 6px; }
.art-body strong { color: var(--text); }
.callout { background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--cyan); border-radius: var(--rm); padding: 22px 24px; margin: 28px 0; }
.callout h4 { font-family: var(--fn-d); font-size: 12px; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.callout p { font-size: 14px; margin-bottom: 0; }
.in-cta { background: linear-gradient(135deg, rgba(0,134,191,0.05), rgba(0,134,191,0.02)); border: 1px solid rgba(0,134,191,0.14); border-radius: var(--rm); padding: 28px; margin: 36px 0; text-align: center; }
.in-cta h4 { font-family: var(--fn-d); font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.in-cta p { font-size: 13px !important; color: var(--text-muted) !important; margin-bottom: 14px !important; }

/* ===================== ABOUT ===================== */
.ab-h { padding: 56px 0 36px; max-width: 680px; }
.ab-h h1 { font-family: var(--fn-d); font-size: 40px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; line-height: 1.08; }
.ab-h p { font-size: 17px; color: var(--text-sec); line-height: 1.65; }
.sv-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sv-c { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rm); padding: 28px; transition: all var(--tr); }
.sv-c:hover { border-color: var(--cyan); }
.sv-c .ico { font-size: 28px; margin-bottom: 12px; }
.sv-c h3 { font-family: var(--fn-d); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.sv-c p { font-size: 12px; color: var(--text-muted); line-height: 1.55; }
.sv-c ul { list-style: none; margin-top: 12px; }
.sv-c ul li { font-size: 11px; color: var(--text-sec); padding: 4px 0; border-top: 1px solid var(--border-lt); }
.sv-c ul li::before { content: '\2192'; color: var(--cyan); margin-right: 6px; }

/* ===================== CATEGORY ===================== */
.cat-h { padding: 48px 0 24px; }
.cat-h h1 { font-family: var(--fn-d); font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.cat-h p { font-size: 14px; color: var(--text-sec); max-width: 560px; }

/* ===================== VIP ===================== */
.vip-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vip-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl); padding: 34px 26px; text-align: center; transition: all var(--tr); position: relative; }
.vip-card:hover { border-color: var(--cyan); }
.vip-card.featured { border-color: var(--warm); }
.vip-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--warm); color: var(--bg); font-family: var(--fn-m); font-size: 8px; font-weight: 700; letter-spacing: 0.06em; padding: 3px 10px; border-radius: 2px; }
.vip-card h4 { font-family: var(--fn-d); font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.vip-card .price { font-family: var(--fn-d); font-size: 36px; font-weight: 800; color: var(--cyan); margin: 14px 0 4px; letter-spacing: -0.03em; }
.vip-card .price-sub { font-size: 11px; color: var(--text-muted); margin-bottom: 18px; display: block; }
.vip-card ul { list-style: none; text-align: left; margin-bottom: 22px; }
.vip-card ul li { font-size: 12px; color: var(--text-sec); padding: 6px 0; border-bottom: 1px solid var(--border-lt); }
.vip-card ul li::before { content: '\2713'; color: var(--cyan); margin-right: 7px; font-weight: 700; }

/* ===================== MEDIA KIT ===================== */
.mk-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mk-c { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rm); padding: 24px; text-align: center; }
.mk-c .mk-n { font-family: var(--fn-d); font-size: 26px; font-weight: 800; color: var(--cyan); margin-bottom: 3px; }
.mk-c .mk-l { font-size: 11px; color: var(--text-muted); }
.mk-ad { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.mk-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rm); padding: 22px; }
.mk-item h4 { font-family: var(--fn-d); font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.mk-item .mk-price { font-family: var(--fn-m); font-size: 12px; color: var(--warm); margin-bottom: 6px; display: block; }
.mk-item p { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

/* ===================== STICKY BAR ===================== */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; background: rgba(6,24,28,0.97); backdrop-filter: blur(16px); border-top: 1px solid var(--border); padding: 10px 0; transform: translateY(100%); animation: slideUp 0.4s ease 2s forwards; }
@keyframes slideUp { to { transform: translateY(0); } }
.sticky-bar-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.sticky-bar-in p { font-size: 12px; color: var(--text-sec); }
.sticky-bar-in p strong { color: var(--text); }
.sticky-bar form { display: flex; gap: 8px; }
.sticky-bar input { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 8px 12px; color: var(--text); font-size: 12px; width: 200px; outline: none; }
.sticky-bar button { background: var(--cyan); color: #fff; border: none; border-radius: var(--r); padding: 8px 16px; font-family: var(--fn-d); font-size: 10px; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.sticky-bar .close-bar { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 18px; padding: 4px 8px; }

/* ===================== LOAD MORE ===================== */
.load-more { text-align: center; padding: 32px 0; }
.load-more button { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rm); padding: 14px 36px; color: var(--text-sec); font-family: var(--fn-d); font-size: 12px; font-weight: 700; cursor: pointer; transition: all var(--tr); }
.load-more button:hover { border-color: var(--cyan); color: var(--text); }

/* ===================== FOOTER ===================== */
.ft { border-top: 1px solid var(--border); padding: 44px 0 32px; margin-top: 32px; }
.ft-g { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.ft-br .ft-logo { font-family: var(--fn-d); font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.ft-br .ft-logo span { color: var(--cyan); }
.ft-br p { font-size: 11px; color: var(--text-muted); line-height: 1.65; }
.ft-col h4 { font-family: var(--fn-m); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 7px; }
.ft-col ul li a { font-size: 11px; color: var(--text-muted); transition: color var(--tr); }
.ft-col ul li a:hover { color: var(--text); }
.ft-bt { padding-top: 20px; border-top: 1px solid var(--border); font-size: 10px; color: var(--text-muted); }

/* ===================== RESPONSIVE ===================== */
@media(max-width:1024px) {
  .ed-hero-inner { grid-template-columns: 1fr; gap: 16px; }
  .ed-hero-content h1 { font-size: 24px; }
  .ed-hero-aside { flex-direction: row; overflow-x: auto; }
  .ed-hero-card { min-width: 240px; }
  .ed-grid-feature { grid-template-columns: 1fr; }
  .ed-grid-feature .ed-card-lg { grid-row: auto; }
  .ed-grid-3, .ed-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .page-wrap { grid-template-columns: 1fr; }
  .page-sb { display: none; }
  .ed-spot { grid-template-columns: 1fr; }
  .ed-spot-img { min-height: 200px; }
  .stats, .sv-g, .vip-tiers, .mk-g { grid-template-columns: repeat(2, 1fr); }
  .ft-g { grid-template-columns: repeat(2, 1fr); }
  .apex-ban, .vip-ban { flex-direction: column; text-align: center; padding: 32px; }
  .tool-grid { grid-template-columns: 1fr; }
}
/* ===================== GHOST KARBON EDITOR WIDTHS ===================== */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: 1.5em auto;
  transform: translateX(calc(50% - 50vw + (50vw - 50%)*0.15));
}
.kg-width-full {
  position: relative;
  width: 100vw;
  min-width: 100%;
  margin: 1.5em auto;
  transform: translateX(calc(50% - 50vw));
}
.kg-width-wide img,
.kg-width-full img {
  width: 100%;
}

/* ===================== HAMBURGER MENU ===================== */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; margin-left: 8px; flex-direction: column; gap: 4px; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

@media(max-width:640px) {
  .hamburger { display: flex; }
  .n-links { display: none; position: absolute; top: 56px; left: 0; right: 0; background: rgba(6,24,28,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 16px 20px; border-bottom: 1px solid var(--border); gap: 0; z-index: 199; }
  .n-links.open { display: flex; }
  .n-links a { padding: 12px 0; border-bottom: 1px solid var(--border-lt); font-size: 14px; color: var(--text-sec); }
  .n-links a:last-child { border-bottom: none; }
  .n-links a:hover, .n-links a.on { color: var(--text); background: none; }
}

@media(max-width:640px) {
  .ctr, .ctr-narrow { padding: 0 20px; }
  .ed-hero-content h1 { font-size: 28px; }
  .ed-hero { min-height: 60vh; }
  .ed-grid-3, .ed-grid-4, .ed-grid-2, .stats, .sv-g, .vip-tiers, .mk-g, .mk-ad { grid-template-columns: 1fr; }
  .sticky-bar form { display: none; }
  .art-h h1 { font-size: 26px; }
  .apex-inline { flex-direction: column; }
}
