/* =========================================================
   NetPlus Petrich · WordPress Block Theme Stylesheet
   ========================================================= */

:root {
  --np-bg:       #f6f5f1;
  --np-ink:      #0d1117;
  --np-ink-soft: #3a4049;
  --np-muted:    #7a818c;
  --np-line:     #e3e1d9;
  --np-card:     #ffffff;
  --np-dark:     #0b0d12;
  --np-dark-2:   #14171f;
  --np-accent:   oklch(72% 0.16 230);
  --np-accent-2: oklch(82% 0.14 160);
  --np-warn:     oklch(78% 0.14 60);
  --np-danger:   oklch(64% 0.18 25);

  /* Map to WP custom properties as aliases */
  --dark:     var(--np-dark);
  --dark-2:   var(--np-dark-2);
  --accent:   var(--np-accent);
  --accent-2: var(--np-accent-2);
  --warn:     var(--np-warn);
  --danger:   var(--np-danger);
  --bg:       var(--np-bg);
  --ink:      var(--np-ink);
  --ink-soft: var(--np-ink-soft);
  --muted:    var(--np-muted);
  --line:     var(--np-line);
  --card:     var(--np-card);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}
.mono { font-family: 'IBM Plex Mono', monospace; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* WP wraps all block content in .wp-site-blocks */
.wp-site-blocks { padding: 0; }

.wrap,
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ---------- BUTTONS ---------- */
.btn, .wp-block-button__link {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 16px; border-radius: 999px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  border: 1px solid transparent; transition: 0.15s;
  font-family: inherit;
}
.btn-ghost { color: #f1efe9; border-color: rgba(255,255,255,0.15); background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-ghost-light { color: var(--ink); border-color: var(--line); background: transparent; }
.btn-ghost-light:hover { background: var(--card); }
.btn-primary { background: var(--accent); color: #0b0d12; font-weight: 600; }
.btn-primary:hover { filter: brightness(1.06); }
.btn-dark { background: var(--ink); color: #f6f5f1; }
.btn-dark:hover { background: #1b2028; }
.btn-arrow::after { content: "→"; font-family: 'IBM Plex Mono', monospace; }
.btn-lg { height: 48px; padding: 0 24px; font-size: 15px; }

/* ---------- TOP UTILITY MENU ---------- */
.top-menu {
  background: #050608;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.top-menu-inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 32px;
}
.top-menu-left {
  display: flex; gap: 18px; align-items: center;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.top-menu-left .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2); box-shadow: 0 0 6px var(--accent-2);
  display: inline-block; vertical-align: middle; margin-right: 6px;
}
.top-menu-links {
  display: flex; gap: 0; align-items: center;
}
.top-menu-links a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; color: rgba(255,255,255,0.55);
  transition: 0.15s; position: relative;
  text-transform: uppercase;
}
.top-menu-links a + a::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 1px; height: 12px;
  background: rgba(255,255,255,0.08);
  transform: translateY(-50%);
}
.top-menu-links a:hover { color: #fff; }
.top-menu-links svg {
  width: 11px; height: 11px; opacity: 0.55;
  stroke: currentColor; fill: none; stroke-width: 1.6;
}
@media (max-width: 700px) {
  .top-menu-left { display: none; }
  .top-menu-links a { padding: 8px 10px; }
  .top-menu-links svg { display: none; }
}

/* ---------- TICKER ---------- */
.ticker {
  background: var(--ink); color: #f1efe9;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; white-space: nowrap;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  padding: 8px 0;
  letter-spacing: 0.04em;
}
.ticker-track { display: inline-block; animation: np-scroll 40s linear infinite; padding-left: 100%; }
.ticker-track span { margin: 0 28px; color: #b8bcc4; }
.ticker-track span b { color: var(--accent-2); font-weight: 500; }
@keyframes np-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ---------- NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
}
.nav,
.wp-block-group.nav {
  background: rgba(8,10,14,0.96);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  color: #f1efe9;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 32px rgba(0,0,0,0.18);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  font-weight: 600; font-size: 18px; letter-spacing: -0.01em;
  flex-shrink: 0;
}
.brand-img {
  height: 56px; width: auto; display: block;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 12px;
  box-sizing: content-box;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 4px 18px rgba(80,160,255,0.18), 0 1px 0 rgba(255,255,255,0.5) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand:hover .brand-img {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 8px 28px rgba(80,160,255,0.28), 0 1px 0 rgba(255,255,255,0.5) inset;
}
.brand-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.18em; text-transform: uppercase;
  padding-left: 14px; border-left: 1px solid rgba(255,255,255,0.16);
}

/* WP Navigation block overrides */
.nav .wp-block-navigation {
  color: #c8cbd1;
  font-size: 14px;
}
.nav .wp-block-navigation a {
  color: #c8cbd1;
  padding: 4px 0;
  position: relative;
}
.nav .wp-block-navigation a:hover,
.nav .wp-block-navigation .current-menu-item > a {
  color: #fff;
}
.nav .wp-block-navigation .current-menu-item > a::after {
  content: ""; position: absolute; bottom: -32px; left: 0; right: 0;
  height: 2px; background: var(--accent);
}
/* Submenu */
.nav .wp-block-navigation__submenu-container {
  background: rgba(11,13,18,0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 8px;
  min-width: 260px;
}
.nav .wp-block-navigation__submenu-container a {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}
.nav .wp-block-navigation__submenu-container a:hover {
  background: rgba(255,255,255,0.06);
}
/* CTA button in nav */
.nav-cta .wp-block-button__link,
.nav .btn-primary {
  background: var(--accent); color: #0b0d12;
  border-radius: 999px; padding: 0 20px; height: 38px;
  display: inline-flex; align-items: center;
  font-weight: 600; font-size: 14px;
  border: none;
}

/* footer / light-surface variant */
footer .brand-img,
.brand-img.on-light {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

/* ---------- BREADCRUMB ---------- */
.crumb {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  color: var(--muted); padding: 28px 0 0;
  letter-spacing: 0.04em;
}
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--ink); }
.crumb span { color: var(--ink); }

/* ---------- EYEBROW / TAG ---------- */
.eyebrow {
  display: inline-flex; gap: 10px; align-items: center;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 12px; border: 1px solid rgba(80,160,255,0.3);
  border-radius: 999px;
  background: rgba(80,160,255,0.06);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2); box-shadow: 0 0 8px var(--accent-2);
  animation: np-pulse 2s infinite;
}
@keyframes np-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ---------- PAGE HEADER ---------- */
.page-head {
  padding: 56px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-head-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: end;
}
.page-title {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98; letter-spacing: -0.035em;
  font-weight: 500; margin: 24px 0 0;
}
.page-title em { font-style: normal; color: var(--accent); font-weight: 400; }
.page-lead {
  font-size: 17px; color: var(--ink-soft); line-height: 1.55;
}

/* ---------- SECTION TITLES ---------- */
section.block { padding: 110px 0; }
section.block.compact { padding: 72px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; gap: 32px; flex-wrap: wrap;
}
.section-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-tag::before { content: "// "; color: var(--accent); }
h2.section-title {
  margin: 0; font-size: clamp(34px, 4vw, 52px);
  font-weight: 500; letter-spacing: -0.03em; line-height: 1.02;
  max-width: 720px;
}
.section-lead {
  font-size: 16px; color: var(--ink-soft); max-width: 320px;
  line-height: 1.55;
}

/* ---------- HERO ---------- */
.hero {
  background: var(--dark); color: #f1efe9;
  padding: 80px 0 100px; position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
h1.hero-title {
  font-size: clamp(48px, 5.6vw, 78px); line-height: 0.98;
  letter-spacing: -0.035em; font-weight: 500; margin: 24px 0 24px;
}
.hero-title em { font-style: normal; color: var(--accent); font-weight: 400; }
.hero-sub { font-size: 18px; color: #b8bcc4; max-width: 480px; line-height: 1.55; }
.hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 540px;
}
.stat-num { font-size: 32px; font-weight: 500; letter-spacing: -0.02em; }
.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: #7a818c; text-transform: uppercase;
  letter-spacing: 0.08em; margin-top: 4px;
}

/* Speed card */
.speed-card {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 28px; position: relative; overflow: hidden;
}
.speed-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at 70% 0%, rgba(80,160,255,0.15), transparent 50%);
  pointer-events: none;
}
.speed-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; position: relative; }
.speed-head h3 { margin: 0 0 4px; font-size: 14px; font-weight: 500; color: #c8cbd1; }
.speed-head .id { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: #5a6068; }
.speed-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  color: var(--accent-2); padding: 4px 8px; border-radius: 4px;
  background: rgba(120,220,170,0.08);
}
.speed-status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 6px var(--accent-2); }
.speed-number { display: flex; align-items: baseline; gap: 8px; font-weight: 500; letter-spacing: -0.04em; position: relative; }
.speed-number .big {
  font-size: 96px; line-height: 0.9;
  background: linear-gradient(180deg, #fff 0%, #8fb8e8 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.speed-number .unit { font-family: 'IBM Plex Mono', monospace; font-size: 18px; color: #7a818c; }
.speed-bars { display: flex; gap: 3px; margin-top: 24px; height: 32px; align-items: flex-end; position: relative; }
.speed-bars span { flex: 1; background: var(--accent); border-radius: 1px; opacity: 0.85; animation: np-bar 1.6s ease-in-out infinite; }
@keyframes np-bar { 0%, 100% { height: 30%; opacity: 0.4; } 50% { height: 100%; opacity: 1; } }
.speed-meta {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
  margin-top: 28px; background: rgba(255,255,255,0.06);
  border-radius: 12px; overflow: hidden;
}
.speed-meta > div { background: var(--dark-2); padding: 16px; }
.speed-meta .k { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: #5a6068; text-transform: uppercase; letter-spacing: 0.08em; }
.speed-meta .v { font-size: 18px; font-weight: 500; margin-top: 6px; letter-spacing: -0.02em; }
.speed-meta .v small { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 400; color: #7a818c; }

/* ---------- PROMO BANNER ---------- */
.promo {
  background: var(--accent); color: #0b0d12;
  border-radius: 24px; padding: 48px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.promo::after {
  content: ""; position: absolute; right: -80px; bottom: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: oklch(82% 0.14 160 / 0.6);
  pointer-events: none;
}
.promo h3 {
  margin: 12px 0; font-size: clamp(28px, 3vw, 40px); font-weight: 500;
  letter-spacing: -0.025em; line-height: 1.05; max-width: 560px; position: relative;
}
.promo .mono { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; position: relative; }
.promo-cta { position: relative; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.promo-cta .deadline {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  background: rgba(11,13,18,0.1); padding: 6px 10px; border-radius: 4px;
}

/* ---------- SERVICES BENTO ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
  grid-auto-rows: 220px;
}
.svc {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: 0.2s; cursor: pointer;
}
.svc:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(13,17,23,0.07); }
.svc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.svc-num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }
.svc-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 8px; border-radius: 4px;
  background: var(--bg); color: var(--ink-soft); border: 1px solid var(--line);
}
.svc-tag.live { background: oklch(82% 0.14 160 / 0.18); color: oklch(48% 0.12 160); border-color: transparent; }
.svc h4 { margin: 0; font-size: 26px; font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; }
.svc p { margin: 8px 0 0; color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; }
.svc-foot { display: flex; justify-content: space-between; align-items: flex-end; }
.svc-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: #f1efe9;
  display: grid; place-items: center;
  font-family: 'IBM Plex Mono', monospace; font-size: 14px;
}
.svc-meta { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.svc.big {
  grid-column: span 3; grid-row: span 2;
  background: var(--dark); color: #f1efe9; border-color: var(--dark);
}
.svc.big::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px circle at 90% 0%, rgba(80,160,255,0.22), transparent 55%);
  pointer-events: none;
}
.svc.big h4 { font-size: 44px; letter-spacing: -0.035em; line-height: 0.98; max-width: 340px; }
.svc.big p { color: #b8bcc4; max-width: 360px; font-size: 14px; }
.svc.big .svc-num { color: var(--accent); }
.svc.big .svc-tag { background: rgba(255,255,255,0.06); color: #c8cbd1; border-color: rgba(255,255,255,0.08); }
.svc.big .svc-arrow { background: var(--accent); color: #0b0d12; width: 44px; height: 44px; font-size: 16px; }
.svc.big .svc-meta { color: #7a818c; }
.svc.wide { grid-column: span 3; }
.svc.tall { grid-column: span 2; grid-row: span 2; }
.svc.med  { grid-column: span 2; }
.svc.sm   { grid-column: span 2; }
.svc-glyph {
  position: absolute; right: -20px; bottom: -20px;
  width: 180px; height: 180px; opacity: 0.08; pointer-events: none;
}
.svc-glyph svg { width: 100%; height: 100%; }
.svc.big .svc-glyph { opacity: 0.18; right: 24px; bottom: 24px; }

/* ---------- FEATURES ---------- */
.features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
}
.feature {
  background: var(--card); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px; min-height: 280px;
}
.feature-num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }
.feature h4 { margin: 0; font-size: 22px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg); display: grid; place-items: center;
  border: 1px solid var(--line); margin-bottom: 4px;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 1.5; }

/* ---------- PLANS ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; padding: 32px;
  position: relative; display: flex; flex-direction: column; transition: 0.2s;
}
.plan:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(13,17,23,0.06); }
.plan-name { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.plan-speed { font-size: 64px; font-weight: 500; letter-spacing: -0.04em; line-height: 0.95; margin: 16px 0 4px; }
.plan-speed small { font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: var(--muted); font-weight: 400; }
.plan-desc { color: var(--ink-soft); font-size: 14px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px dashed var(--line); }
.plan-features { list-style: none; padding: 0; margin: 0 0 32px; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; padding: 6px 0; color: var(--ink-soft); }
.plan-features li::before { content: "+"; color: var(--accent); font-family: 'IBM Plex Mono', monospace; font-weight: 600; margin-top: 1px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-top: auto; margin-bottom: 20px; }
.plan-price .num { font-size: 40px; font-weight: 500; letter-spacing: -0.03em; }
.plan-price .cur { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--muted); }
.plan .btn { width: 100%; justify-content: center; }
.plan.featured { background: var(--dark); color: #f1efe9; border-color: var(--dark); }
.plan.featured .plan-desc { color: #b8bcc4; border-color: rgba(255,255,255,0.08); }
.plan.featured .plan-features li { color: #c8cbd1; }
.plan.featured .plan-features li::before { color: var(--accent-2); }
.plan.featured .plan-price .cur { color: #7a818c; }
.badge {
  position: absolute; top: 20px; right: 20px;
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--accent-2); color: #0b0d12;
  padding: 4px 8px; border-radius: 4px; font-weight: 500;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.testi p { margin: 0; font-size: 17px; line-height: 1.5; color: var(--ink); letter-spacing: -0.005em; }
.testi p::before { content: "\201E"; font-size: 32px; color: var(--accent); line-height: 0; vertical-align: -12px; margin-right: 4px; }
.testi-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px dashed var(--line); }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #0b0d12; display: grid; place-items: center; font-weight: 600; font-size: 14px; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 500; }
.testi-meta { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted); }

/* ---------- TIMELINE ---------- */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  border-top: 1px solid var(--line); padding-top: 32px;
}
.timeline-item { position: relative; padding-top: 24px; }
.timeline-item::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.timeline-year { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
.timeline-item h5 { margin: 8px 0 8px; font-size: 18px; font-weight: 500; letter-spacing: -0.02em; }
.timeline-item p { margin: 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 24px;
  font-size: 20px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.3;
}
.faq-q::after { content: "+"; font-family: 'IBM Plex Mono', monospace; font-weight: 400; color: var(--accent); font-size: 24px; transition: 0.2s; flex-shrink: 0; }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { margin: 16px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; max-width: 720px; }

/* ---------- SUPPORT BAND ---------- */
.support {
  background: var(--dark); color: #f1efe9; border-radius: 24px;
  padding: 56px; display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 56px; align-items: center;
}
.support h3 { margin: 16px 0 16px; font-size: clamp(32px, 3.4vw, 44px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; }
.support p { color: #b8bcc4; margin: 0 0 32px; max-width: 460px; }
.contact-card {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px;
  font-family: 'IBM Plex Mono', monospace;
}
.contact-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(255,255,255,0.08); font-size: 13px; }
.contact-row:last-child { border: none; }
.contact-row .k { color: #7a818c; }
.contact-row .v { color: #f1efe9; }
.contact-row .v.accent { color: var(--accent); }

/* ---------- NEWS ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.news-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; transition: 0.2s;
}
.news-card:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(13,17,23,0.07); }
.news-img {
  aspect-ratio: 16/10;
  background: repeating-linear-gradient(45deg, rgba(13,17,23,0.06) 0 1px, transparent 1px 12px), var(--bg);
  border-bottom: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted);
}
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.news-meta {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase;
  display: flex; justify-content: space-between;
}
.news-card h4 { margin: 0; font-size: 20px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.2; }
.news-card p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.news-card .read { margin-top: auto; padding-top: 16px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--accent); }

/* ---------- LOGO STRIP ---------- */
.logo-strip {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); gap: 32px;
}
.logo-strip span { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
.logo-strip .biz { font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 18px; color: var(--ink-soft); opacity: 0.7; }

/* ---------- INPUT ---------- */
.input {
  width: 100%; padding: 0 16px; height: 44px;
  border: 1px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 14px; background: #fff; outline: none;
  color: var(--ink); transition: 0.15s;
}
.input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(80,160,255,0.12); }
.input-pill { border-radius: 999px; }
textarea.input { padding: 14px 16px; height: auto; min-height: 120px; resize: vertical; line-height: 1.5; }
.label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; display: block; }

/* ---------- SPEC TABLE ---------- */
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 14px 0; vertical-align: top; }
.spec-table td:first-child { width: 38%; font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; padding-right: 24px; }
.spec-table td:last-child { color: var(--ink); }

/* ---------- MISC ---------- */
.note { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--muted); margin-top: 16px; }
.note a { text-decoration: underline; }
.divider { height: 1px; background: var(--line); margin: 24px 0; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line); color: var(--ink-soft);
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 6px var(--accent-2); }

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  background: var(--bg);
}
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.foot h5 { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 16px; font-weight: 500; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { padding: 5px 0; font-size: 14px; color: var(--ink-soft); }
.foot li a:hover { color: var(--ink); }
.foot-brand p { color: var(--ink-soft); font-size: 14px; max-width: 280px; line-height: 1.55; margin: 16px 0; }
.foot-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); font-family: 'IBM Plex Mono', monospace; }

/* ---------- SINGLE POST / PAGE CONTENT ---------- */
.entry-content {
  max-width: 760px; margin: 0 auto;
  font-size: 17px; line-height: 1.7; color: var(--ink-soft);
}
.entry-content h2, .entry-content h3 { color: var(--ink); margin-top: 2em; }
.entry-content a { color: var(--accent); text-decoration: underline; }
.entry-content img { border-radius: 12px; margin: 2em 0; }
.entry-content ul, .entry-content ol { padding-left: 1.5em; }
.entry-content li { margin-bottom: 0.5em; }
.entry-content blockquote {
  border-left: 3px solid var(--accent);
  margin: 2em 0; padding: 1em 1.5em;
  background: var(--card); border-radius: 0 12px 12px 0;
  font-style: italic; color: var(--ink);
}

/* ---------- BLOG CARD ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; transition: 0.2s;
  text-decoration: none; color: inherit;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(13,17,23,0.07); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-meta { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted); }
.blog-card h3 { margin: 0; font-size: 20px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.2; }
.blog-card p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.blog-card-read { margin-top: auto; padding-top: 16px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--accent); }

/* ---------- 404 ---------- */
.not-found-wrap { padding: 120px 0; text-align: center; }
.not-found-wrap .code { font-family: 'IBM Plex Mono', monospace; font-size: 120px; font-weight: 400; color: var(--line); line-height: 1; }
.not-found-wrap h1 { font-size: clamp(28px, 3vw, 40px); font-weight: 500; margin: 16px 0; }
.not-found-wrap p { color: var(--ink-soft); max-width: 420px; margin: 0 auto 32px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .foot { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav .wp-block-navigation { display: none; }
  .page-head-grid, .support, .foot, .promo { grid-template-columns: 1fr; }
  .plans, .testimonials, .news-grid, .blog-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .svc.big, .svc.wide, .svc.tall, .svc.med, .svc.sm { grid-column: span 2; grid-row: auto; }
  .svc.big h4 { font-size: 32px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 80px; }
}
@media (max-width: 600px) {
  .wrap, .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    padding-left: 20px; padding-right: 20px;
  }
  .features { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .foot { grid-template-columns: 1fr 1fr; }
  .support { padding: 36px 24px; }
}
