/**
 * bagful.css — Bagful.net master stylesheet
 * /assets/css/bagful.css
 */

/* ════════════════════════════════
   TOKENS
════════════════════════════════ */
:root {
  /* ── Backgrounds: cool steel-tinted dark, not pure black ── */
  --bg:          #14171f;   /* slightly lighter, blue-steel undertone */
  --bg2:         #191d28;   /* surfaces */
  --bg3:         #1e2233;   /* input/elevated */
  --panel:       #1c2030;   /* panels */
  --edge:        rgba(255,255,255,0.07);
  --edge2:       rgba(255,255,255,0.13);
  --edge3:       rgba(255,255,255,0.22);

  /* ── Ink: slightly warmer white for readability ── */
  --ink:         #eaeef6;
  --ink75:       rgba(234,238,246,0.78);
  --ink50:       rgba(234,238,246,0.55);
  --ink30:       rgba(234,238,246,0.38);
  --ink25:       rgba(234,238,246,0.25);
  --ink15:       rgba(234,238,246,0.15);

  /* ── Steel: slightly more electric, less muted ── */
  --steel:       #4d96c0;
  --steel2:      #6bbcdf;
  --steel3:      #3a7fa8;
  --steel-lt:    rgba(77,150,192,0.12);
  --steel-glow:  rgba(77,150,192,0.08);
  --steel-edge:  rgba(77,150,192,0.22);

  /* ── Metal accent: for bare-metal / precision elements ── */
  --metal:       #8a9bb0;   /* cool gray-blue, like brushed steel */
  --metal-lt:    rgba(138,155,176,0.12);

  --green:       #4caf7d;
  --amber:       #c9922a;
  --red:         #c0444a;

  --font:        'Outfit', sans-serif;
  --mono:        'DM Mono', monospace;

  /* ── Grain texture overlay ── */
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ════════════════════════════════
   RESET
════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Subtle grain overlay — metal texture without being visible */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  mix-blend-mode: overlay;
}
img { max-width: 100%; display: block; }
a  { color: inherit; }

/* ════════════════════════════════
   NAV
════════════════════════════════ */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px; display: flex; align-items: center;
  padding: 0 52px;
  background: rgba(20,23,31,0.94);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 1px 0 rgba(77,150,192,0.06), 0 4px 24px rgba(0,0,0,0.3);
}
/* Nav steel accent line — barely visible, appears on scroll via JS class */
#main-nav.scrolled {
  background: rgba(20,23,31,0.97);
  border-bottom-color: rgba(77,150,192,0.12);
}

.logo {
  text-decoration: none; margin-right: 44px; flex-shrink: 0;
  display: flex; flex-direction: column;
}
.logo-word {
  font-size: 20px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em; line-height: 1.1;
}
.logo-dot { color: var(--steel2); }
.logo-net { font-weight: 300; color: var(--ink50); }
.logo-rule {
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink30);
}

.nav-links {
  list-style: none; display: flex; gap: 0; flex: 1;
}
.nav-links a {
  color: var(--ink50); text-decoration: none;
  font-size: 13.5px; font-weight: 400;
  padding: 6px 15px; border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); background: var(--edge); }

.nav-right { display: flex; gap: 8px; margin-left: auto; }
.nav-btn {
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  text-decoration: none; padding: 6px 18px; border-radius: 4px;
  transition: all 0.18s; white-space: nowrap;
}
.nav-ghost { color: var(--ink50); border: 1px solid var(--edge2); }
.nav-ghost:hover { color: var(--ink); border-color: var(--edge3); }
.nav-solid { background: var(--steel); color: #fff; }
.nav-solid:hover { background: var(--steel2); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: 12px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink50); border-radius: 2px; transition: all 0.22s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Drawer */
.nav-drawer {
  position: fixed; top: 60px; left: 0; right: 0; z-index: 199;
  background: var(--bg2); border-bottom: 1px solid var(--edge2);
  padding: 16px 20px 28px;
  transform: translateY(-110%); opacity: 0;
  transition: transform 0.26s ease, opacity 0.26s ease;
  pointer-events: none;
}
.nav-drawer.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav-drawer ul  { list-style: none; }
.nav-drawer a {
  display: block; padding: 12px 0;
  font-size: 15px; color: var(--ink50);
  text-decoration: none; border-bottom: 1px solid var(--edge);
  transition: color 0.15s;
}
.nav-drawer a:hover { color: var(--ink); }
.drawer-divider { height: 10px; }
.drawer-cta {
  display: block; margin-top: 14px;
  background: var(--steel) !important; color: #fff !important;
  border: none !important; border-radius: 4px;
  padding: 12px 20px !important; text-align: center;
  font-weight: 600 !important; font-size: 15px !important;
}
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 198;
  background: rgba(0,0,0,0.55);
}
.nav-overlay.open { display: block; }

/* ════════════════════════════════
   HOMEPAGE HERO
════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 120px 52px 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(77,150,192,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 0% 80%, rgba(77,150,192,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(0,0,0,0.4) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, #0f1219 100%);
}
.hero-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.03) 79px, rgba(255,255,255,0.03) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.015) 79px, rgba(255,255,255,0.015) 80px);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 25%, rgba(0,0,0,0.6) 75%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 1100px; }
.hero-kicker {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  animation: riseIn 0.6s ease both;
}
.kicker-bar { width: 28px; height: 1px; background: var(--steel2); }
.kicker-text { font-size: 11.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel2); }
.kicker-sep { color: var(--ink15); font-size: 10px; }
.kicker-status { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.status-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); animation: pulse 2.5s infinite; }
.hero-h1 {
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 32px;
  animation: riseIn 0.6s 0.1s ease both; opacity: 0;
}
.h1-row1 { display: block; color: var(--ink); }
.h1-row2 { display: block; color: var(--ink50); }
.h1-row3 { display: block; background: linear-gradient(100deg, #5ab8e0 0%, #8cd4f0 50%, var(--steel2) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 20px rgba(77,150,192,0.3)); }
.hero-body { display: flex; align-items: flex-start; gap: 64px; flex-wrap: wrap; animation: riseIn 0.6s 0.2s ease both; opacity: 0; }
.hero-desc { font-size: 17px; font-weight: 300; color: var(--ink75); max-width: 420px; line-height: 1.75; }
.hero-desc strong { color: var(--ink); font-weight: 500; }
.hero-metrics { display: flex; gap: 40px; padding-top: 6px; }
.metric-num { font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1; letter-spacing: -0.025em; }
.metric-num span { color: var(--steel2); }
.metric-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink30); margin-top: 4px; }

/* ════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */
.page-hero {
  padding: 108px 52px 68px;
  background: var(--bg2);
  border-bottom: 1px solid var(--edge);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 90% at 100% 50%, rgba(74,141,181,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1100px; }

.ph-kicker {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.ph-kicker-line { width: 22px; height: 1px; background: var(--steel2); }
.ph-kicker-text {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel2);
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.05;
  color: var(--ink); margin-bottom: 18px;
}
.page-hero h1 span { color: var(--steel2); }
.page-hero .lead {
  font-size: 17px; font-weight: 300; color: var(--ink75);
  max-width: 520px; line-height: 1.75;
}

/* ════════════════════════════════
   SECTION LABELS
════════════════════════════════ */
.sec-label {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--steel2); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.sec-label::before {
  content: ''; display: inline-block;
  width: 22px; height: 1px; background: var(--steel2);
}

.sec-h {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.08; color: var(--ink); margin-bottom: 18px;
}
.sec-h span {
  background: linear-gradient(120deg, var(--steel2), #8cd4f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  letter-spacing: 0.03em; text-decoration: none;
  padding: 12px 28px; border-radius: 4px;
  border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--steel) 0%, var(--steel3) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(77,150,192,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--steel2) 0%, var(--steel) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(77,150,192,0.32), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-ghost {
  border: 1px solid var(--edge2);
  color: var(--ink75); background: transparent;
}
.btn-ghost:hover {
  border-color: rgba(77,150,192,0.35);
  color: var(--ink);
  background: rgba(77,150,192,0.06);
  box-shadow: 0 0 0 1px rgba(77,150,192,0.12);
}
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #3d9969; }
.btn-sm { font-size: 12.5px; padding: 8px 20px; }
.btn-lg { font-size: 15px; padding: 14px 34px; }

/* ════════════════════════════════
   PRICING CARDS
════════════════════════════════ */
.pricing-section { padding: 80px 52px; background: var(--bg); }
.pricing-section .inner { max-width: 1100px; margin: 0 auto; }

/* India/US toggle */
.pricing-toggle {
  display: flex; gap: 0; margin-bottom: 40px; margin-top: 24px;
  border: 1px solid var(--edge2); border-radius: 5px; width: fit-content;
}
.toggle-btn {
  padding: 8px 28px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: none; border: none; cursor: pointer;
  color: var(--ink50); font-family: var(--font);
  border-radius: 4px; transition: all 0.18s;
}
.toggle-btn.active { background: var(--steel); color: #fff; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; background: var(--edge); border: 1px solid rgba(77,150,192,0.12);
  box-shadow: 0 1px 0 rgba(77,150,192,0.06);
}
.price-card {
  background: var(--bg); padding: 36px 32px;
  position: relative; transition: background 0.2s;
}
.price-card:hover { background: var(--steel-glow); }
.price-card.featured {
  background: linear-gradient(180deg, rgba(77,150,192,0.07) 0%, var(--panel) 100%);
  border-left: 1px solid rgba(77,150,192,0.2);
  border-right: 1px solid rgba(77,150,192,0.2);
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--steel); color: #fff;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 0 0 5px 5px;
}
.price-name {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink50); margin-bottom: 8px;
}
.price-amount {
  font-size: 46px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--ink); line-height: 1; margin-bottom: 2px;
}
.price-amount sup { font-size: 22px; vertical-align: top; margin-top: 10px; display: inline-block; }
.price-cycle { font-size: 12px; color: var(--ink30); margin-bottom: 20px; }
.price-desc {
  font-size: 13.5px; color: var(--ink50); font-weight: 300;
  line-height: 1.6; margin-bottom: 22px;
  padding-bottom: 22px; border-bottom: 1px solid var(--edge);
}
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  font-size: 13.5px; color: var(--ink75); font-weight: 300;
  padding: 8px 0; border-bottom: 1px solid var(--edge);
  display: flex; align-items: flex-start; gap: 9px; line-height: 1.45;
}
.price-features li::before { content: '✓'; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.price-btn {
  display: block; width: 100%; text-align: center;
  padding: 12px; border-radius: 4px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.2s; letter-spacing: 0.03em;
  font-family: var(--font);
}
.price-btn-fill { background: var(--steel); color: #fff; }
.price-btn-fill:hover { background: var(--steel2); }
.price-btn-outline { border: 1px solid var(--edge2); color: var(--ink75); }
.price-btn-outline:hover { border-color: var(--edge3); background: var(--edge); }

/* ════════════════════════════════
   DOMAIN SEARCH
════════════════════════════════ */
.search-section {
  background: var(--bg2);
  border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge);
  padding: 52px 52px 40px;
}
.search-inner { max-width: 900px; margin: 0 auto; }
.search-title {
  font-size: clamp(22px, 3vw, 34px); font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 6px;
}
.search-title span { color: var(--steel2); }
.search-sub { font-size: 14px; color: var(--ink50); font-weight: 300; margin-bottom: 22px; }

/* Search bar */
.search-wrap {
  display: flex; overflow: hidden;
  background: var(--bg3); border: 1px solid var(--edge2); border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s; margin-bottom: 0;
}
.search-wrap:focus-within {
  border-color: var(--steel2);
  box-shadow: 0 0 0 3px rgba(77,150,192,0.12), 0 0 0 1px rgba(77,150,192,0.4);
}
.search-www {
  display: flex; align-items: center; padding: 0 16px; flex-shrink: 0;
  background: rgba(255,255,255,0.03); border-right: 1px solid var(--edge);
  font-family: var(--mono); font-size: 14px; color: var(--ink30);
}
#domainInput {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: var(--font); font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 600; letter-spacing: -0.02em; color: var(--ink);
  padding: 18px 20px;
}
#domainInput::placeholder { color: var(--ink15); font-weight: 300; }
.search-go {
  background: var(--steel); color: #fff; border: none; cursor: pointer;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0 32px; display: flex; align-items: center; gap: 8px;
  transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.search-go:hover { background: var(--steel2); }
.search-go svg { width: 17px; height: 17px; }

/* ── Domainr-style inline list ── */
.dr-demo-note {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); padding: 10px 0 4px;
}
.dr-list {
  border: 1px solid var(--edge);
  border-top: none;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}
.dr-row {
  display: grid;
  grid-template-columns: 16px 1fr 100px 100px 110px;
  align-items: center; gap: 12px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--edge);
  text-decoration: none; color: inherit;
  transition: background 0.15s;
}
.dr-row:last-child { border-bottom: none; }
.dr-row.avail  { background: rgba(76,175,125,0.04); cursor: pointer; }
.dr-row.avail:hover { background: rgba(76,175,125,0.09); }
.dr-row.taken  { opacity: 0.4; }
.dr-row.premium { background: rgba(201,146,42,0.04); }
.dr-row.skeleton { pointer-events: none; }

/* Status dot */
.dr-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.dr-dot.avail   { background: var(--green); box-shadow: 0 0 6px rgba(76,175,125,0.6); }
.dr-dot.taken   { background: var(--ink15); }
.dr-dot.premium { background: var(--amber); box-shadow: 0 0 6px rgba(201,146,42,0.5); }
.dr-dot.sk      { background: var(--edge2); animation: pulse 1.2s infinite; }

/* Domain name */
.dr-domain {
  font-size: 15px; font-weight: 400; color: var(--ink50); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.dr-domain strong { font-weight: 700; color: var(--ink); }
.dr-domain.taken strong { color: var(--ink30); }

/* Status label */
.dr-status-text {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-align: center;
}
.dr-status-text.avail   { color: var(--green); }
.dr-status-text.taken   { color: var(--ink15); }
.dr-status-text.premium { color: var(--amber); }
.sk-text { height: 10px; background: var(--edge); border-radius: 3px; animation: pulse 1.2s infinite; }

/* Price */
.dr-price {
  font-size: 15px; font-weight: 700; color: var(--steel2);
  text-align: right; white-space: nowrap;
}
.dr-price sub { font-size: 10px; color: var(--ink30); font-weight: 400; }
.sk-price { height: 14px; background: var(--edge); border-radius: 3px; animation: pulse 1.2s infinite; width: 70px; margin-left: auto; }

/* CTA */
.dr-cta {
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  text-align: center; padding: 6px 14px; border-radius: 4px;
  border: none; cursor: pointer; font-family: var(--font);
  white-space: nowrap; transition: all 0.15s;
}
.dr-cta.avail   { background: var(--green); color: #fff; }
.dr-cta.avail:hover { background: #3d9969; }
.dr-cta.premium { background: rgba(201,146,42,0.15); color: var(--amber); border: 1px solid rgba(201,146,42,0.3); }
.dr-cta.premium:hover { background: rgba(201,146,42,0.25); }
.dr-cta.taken   { opacity: 0; pointer-events: none; }
.sk-cta { height: 28px; background: var(--edge); border-radius: 4px; animation: pulse 1.2s infinite; }

/* ── Premium modal ── */
#premiumModal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
}
.pm-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
}
.pm-box {
  position: relative; z-index: 1;
  background: var(--bg2); border: 1px solid var(--edge2);
  border-radius: 8px; padding: 40px 44px; width: 100%; max-width: 460px;
  margin: 20px;
  transform: translateY(12px) scale(0.98); opacity: 0;
  transition: all 0.22s ease;
}
.pm-box.open { transform: translateY(0) scale(1); opacity: 1; }
.pm-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--ink30); transition: color 0.15s;
}
.pm-close:hover { color: var(--ink); }
.pm-kicker {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 8px;
}
.pm-domain {
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 12px;
}
.pm-note {
  font-size: 13.5px; color: var(--ink50); font-weight: 300;
  line-height: 1.7; margin-bottom: 24px;
}
.pm-form { display: flex; flex-direction: column; gap: 10px; }
.pm-form input {
  background: var(--bg3); border: 1px solid var(--edge2); border-radius: 4px;
  padding: 11px 16px; font-family: var(--font); font-size: 14px;
  color: var(--ink); outline: none; transition: border-color 0.2s;
}
.pm-form input:focus { border-color: var(--steel); }
.pm-form input::placeholder { color: var(--ink30); }
.pm-submit {
  background: var(--amber); color: #fff; border: none; border-radius: 4px;
  padding: 13px; font-family: var(--font); font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; cursor: pointer; transition: background 0.18s; margin-top: 4px;
}
.pm-submit:hover { background: #b8841f; }
.pm-submit:disabled { opacity: 0.6; cursor: default; }
.pm-success { text-align: center; padding: 20px 0; }
.pm-tick { font-size: 44px; color: var(--green); margin-bottom: 12px; }
.pm-success p { font-size: 15px; color: var(--ink75); line-height: 1.6; }

/* ════════════════════════════════
   SERVICE GRID (homepage)
════════════════════════════════ */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--edge); border: 1px solid var(--edge); max-width: 1200px;
}
.svc-card {
  background: var(--bg); padding: 36px 32px;
  text-decoration: none; color: inherit; display: block;
  position: relative; transition: background 0.2s; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel2), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.svc-card:hover {
  background: rgba(77,150,192,0.06);
  box-shadow: inset 0 0 0 1px rgba(77,150,192,0.12);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-n { font-family: var(--mono); font-size: 10px; color: var(--ink15); margin-bottom: 18px; }
.svc-title { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.015em; }
.svc-desc { font-size: 14px; color: var(--ink50); line-height: 1.65; font-weight: 300; margin-bottom: 22px; }
.svc-pills { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 22px; }
.pill { font-family: var(--mono); font-size: 10px; color: var(--ink30); background: var(--edge); border-radius: 3px; padding: 3px 9px; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--steel2); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.svc-card:hover .svc-link { gap: 10px; }

/* ════════════════════════════════
   TICKER
════════════════════════════════ */
.ticker {
  background: var(--bg); border-bottom: 1px solid var(--edge);
  padding: 11px 0; overflow: hidden; white-space: nowrap;
}
.ticker-track { display: inline-flex; animation: ticker 30s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 26px; padding: 0 26px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink30);
}
.ticker-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--steel); opacity: 0.5; }

/* ════════════════════════════════
   CTA STRIP (reusable)
════════════════════════════════ */
.cta-strip {
  background: var(--panel); border: 1px solid var(--edge2); border-radius: 6px;
  padding: 44px 52px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-strip h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.cta-strip p  { font-size: 15px; color: var(--ink50); font-weight: 300; }
.cta-strip-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: linear-gradient(180deg, #0f1219 0%, #0c0f16 100%);
  border-top: 1px solid rgba(77,150,192,0.1);
  padding: 64px 52px 28px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,150,192,0.4), transparent);
}
.foot-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px; max-width: 1200px; margin: 0 auto;
  padding-bottom: 48px; border-bottom: 1px solid var(--edge); margin-bottom: 24px;
}
.foot-logo {
  font-size: 20px; font-weight: 700; color: var(--ink);
  text-decoration: none; display: block; margin-bottom: 12px; letter-spacing: -0.01em;
}
.foot-logo span { color: var(--steel2); }
.foot-brand p {
  font-size: 13.5px; color: var(--ink30); line-height: 1.75;
  max-width: 260px; font-weight: 300; margin-bottom: 18px;
}
.foot-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.foot-badge {
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink30); border: 1px solid var(--edge2); padding: 3px 9px; border-radius: 3px;
}
.foot-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink15); margin-bottom: 18px;
}
.foot-col a {
  display: block; font-size: 13.5px; color: var(--ink30);
  text-decoration: none; padding: 4px 0; font-weight: 300; transition: color 0.15s;
}
.foot-col a:hover { color: var(--ink75); }
.foot-bot {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--ink15);
}
.foot-links { display: flex; gap: 20px; }
.foot-links a { color: var(--ink15); text-decoration: none; transition: color 0.15s; }
.foot-links a:hover { color: var(--ink50); }

/* ════════════════════════════════
   ANIMATIONS
════════════════════════════════ */
@keyframes riseIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }
@keyframes spin   { to{transform:rotate(360deg)} }
@keyframes pulse  { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 960px) {
  #main-nav { padding: 0 20px; }
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-body { gap: 28px; }
  .hero-metrics { gap: 20px; }
  .hero-h1 { font-size: clamp(44px, 12vw, 72px); }
  .page-hero, .search-section, .pricing-section, #services { padding-left: 20px !important; padding-right: 20px !important; }
  .page-hero { padding-top: 88px; padding-bottom: 52px; }

  .svc-grid, .pricing-grid { grid-template-columns: 1fr; }

  .cta-strip { padding: 28px 24px; flex-direction: column; align-items: flex-start; }

  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 48px 20px 24px; }
}

@media (max-width: 560px) {
  .foot-top  { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

/* dr-row mobile */
@media (max-width: 600px) {
  .dr-row {
    grid-template-columns: 12px 1fr 80px 90px;
  }
  .dr-status-text { display: none; }
  .dr-row { padding: 10px 14px; gap: 8px; }
}
/* ═══════════════════════════════════════════════════════════════════════════
   BAGFUL BLOG STYLES — append to assets/css/bagful.css
   v4 "suits" aesthetic — dark charcoal / steel blue / Outfit font
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Blog Hero ─────────────────────────────────────────────────────────── */

.blog-hero {
  background: var(--color-bg, #161a22);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 64px 0 48px;
}

.blog-hero__inner {
  max-width: 720px;
}

.blog-hero__label {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent, #4a8db5);
  margin-bottom: 16px;
}

.blog-hero__label a {
  color: inherit;
  text-decoration: none;
}

.blog-hero__label a:hover {
  text-decoration: underline;
}

.blog-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.blog-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  margin: 0 0 20px;
  line-height: 1.6;
  max-width: 580px;
}

.blog-hero__meta {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-hero__meta .sep {
  opacity: .4;
}

.rss-link {
  color: var(--color-accent, #4a8db5);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .05em;
}

.rss-link:hover {
  text-decoration: underline;
}

/* ─── Blog Layout ────────────────────────────────────────────────────────── */

.blog-listing {
  min-height: 70vh;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ─── Category Filter (mobile) ───────────────────────────────────────────── */

.cat-filter--mobile {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .cat-filter--mobile {
    display: flex;
  }
}

.cat-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}

.cat-pill:hover,
.cat-pill--active {
  background: var(--color-accent, #4a8db5);
  border-color: var(--color-accent, #4a8db5);
  color: #fff;
}

.cat-count {
  opacity: .65;
  font-size: 11px;
}

/* ─── Featured Post ──────────────────────────────────────────────────────── */

.post-featured {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding-bottom: 40px;
}

.post-featured__inner {
  display: block;
  text-decoration: none;
  padding: 32px;
  background: rgba(74,141,181,.05);
  border: 1px solid rgba(74,141,181,.15);
  border-radius: 4px;
  transition: border-color .2s, background .2s;
}

.post-featured__inner:hover {
  background: rgba(74,141,181,.09);
  border-color: rgba(74,141,181,.35);
}

.post-featured__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin: 10px 0 14px;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.post-featured__excerpt {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 680px;
}

.post-featured__cta {
  font-size: 13px;
  color: var(--color-accent, #4a8db5);
  letter-spacing: .04em;
  font-weight: 600;
}

/* ─── Post Grid ──────────────────────────────────────────────────────────── */

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.post-grid--related {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 700px) {
  .post-grid,
  .post-grid--related {
    grid-template-columns: 1fr;
  }
}

/* ─── Post Card ──────────────────────────────────────────────────────────── */

.post-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  transition: border-color .2s, background .2s, transform .15s;
}

.post-card:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

.post-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 22px;
  text-decoration: none;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.post-cat {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent, #4a8db5);
  font-weight: 600;
}

.post-read {
  font-size: 11px;
  color: rgba(255,255,255,.3);
}

.post-date {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

.post-card__title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  line-height: 1.35;
  margin: 0 0 10px;
  flex-grow: 0;
}

.post-card__excerpt {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.post-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.post-card__arrow {
  font-size: 14px;
  color: var(--color-accent, #4a8db5);
  opacity: 0;
  transition: opacity .2s, transform .2s;
}

.post-card:hover .post-card__arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ─── Pagination ─────────────────────────────────────────────────────────── */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.pag-btn {
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: all .15s;
}

.pag-btn:hover {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}

.pag-pages {
  display: flex;
  gap: 4px;
}

.pag-num {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 13px;
  text-decoration: none;
  color: rgba(255,255,255,.5);
  border: 1px solid transparent;
  transition: all .15s;
}

.pag-num:hover {
  border-color: rgba(255,255,255,.15);
  color: #fff;
}

.pag-num--active {
  background: var(--color-accent, #4a8db5);
  color: #fff;
  border-color: var(--color-accent, #4a8db5);
  cursor: default;
}

/* ─── Sidebar ────────────────────────────────────────────────────────────── */

.blog-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 900px) {
  .blog-sidebar {
    position: static;
  }
}

.sidebar-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 20px;
}

.sidebar-block__title {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin: 0 0 14px;
  font-weight: 600;
}

.sidebar-cats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  border-radius: 3px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: all .15s;
}

.sidebar-cat:hover,
.sidebar-cat--active {
  background: rgba(74,141,181,.1);
  color: #fff;
}

.sidebar-cat--active {
  color: var(--color-accent, #4a8db5);
}

.sidebar-cat__count {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  padding: 1px 7px;
  border-radius: 10px;
}

.sidebar-cta {
  background: rgba(74,141,181,.07);
  border-color: rgba(74,141,181,.2);
}

.sidebar-cta__label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent, #4a8db5);
  margin-bottom: 8px;
}

.sidebar-cta__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.sidebar-cta__text {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin: 0 0 16px;
  line-height: 1.6;
}

.sidebar-recent {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-recent__item {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  gap: 3px;
  transition: padding-left .15s;
}

.sidebar-recent__item:last-child {
  border-bottom: none;
}

.sidebar-recent__item:hover {
  padding-left: 4px;
}

.sidebar-recent__cat {
  font-size: 10px;
  color: var(--color-accent, #4a8db5);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sidebar-recent__title {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}

.sidebar-recent__date {
  font-size: 11px;
  color: rgba(255,255,255,.28);
}

/* ─── Single Post Header ──────────────────────────────────────────────────── */

.breadcrumb-bar {
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 12px 0;
}

.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.breadcrumb a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: rgba(255,255,255,.75);
}

.bc-sep {
  color: rgba(255,255,255,.2);
  font-size: 14px;
}

.post-header {
  padding: 48px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.post-header__inner {
  max-width: 800px;
}

.post-header__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.post-header__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.025em;
  margin: 0 0 18px;
}

.post-header__excerpt {
  font-size: 18px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 680px;
}

.post-header__byline {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.byline-author {
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

/* ─── Post Layout (single post) ─────────────────────────────────────────── */

.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}

@media (max-width: 960px) {
  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    display: none;
  }
}

/* ─── Post Content (typography) ─────────────────────────────────────────── */

.post-body {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  line-height: 1.8;
  max-width: 720px;
}

.post-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 44px 0 16px;
  letter-spacing: -.02em;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.post-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin: 30px 0 12px;
}

.post-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin: 24px 0 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.post-body p {
  margin: 0 0 20px;
}

.post-body p.lead {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  border-left: 3px solid var(--color-accent, #4a8db5);
  padding-left: 20px;
  margin-bottom: 28px;
}

.post-body ul,
.post-body ol {
  margin: 0 0 20px 20px;
  padding: 0;
}

.post-body li {
  margin-bottom: 8px;
}

.post-body strong {
  color: #fff;
  font-weight: 600;
}

.post-body a {
  color: var(--color-accent, #4a8db5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body a:hover {
  color: #6baed4;
}

.post-body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  background: rgba(255,255,255,.07);
  padding: 2px 6px;
  border-radius: 3px;
  color: #b8d4e8;
}

.post-body pre {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 20px;
  overflow-x: auto;
  margin: 24px 0;
}

.post-body pre code {
  background: none;
  padding: 0;
  font-size: 13px;
}

.post-body blockquote {
  border-left: 3px solid var(--color-accent, #4a8db5);
  margin: 24px 0;
  padding: 16px 24px;
  background: rgba(74,141,181,.05);
  font-style: italic;
  color: rgba(255,255,255,.6);
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.post-body th {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.post-body td {
  border: 1px solid rgba(255,255,255,.07);
  padding: 10px 14px;
  color: rgba(255,255,255,.65);
  vertical-align: top;
}

.post-body tr:hover td {
  background: rgba(255,255,255,.02);
}

/* ─── Table of Contents ──────────────────────────────────────────────────── */

.toc {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 18px 20px;
  margin-bottom: 36px;
  max-width: 480px;
}

.toc__header {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 12px;
  font-weight: 600;
}

.toc__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.toc-link {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: color .15s, border-color .15s;
  line-height: 1.4;
}

.toc-link--h3 {
  font-size: 12px;
  padding-left: 22px;
  color: rgba(255,255,255,.35);
}

.toc-link:hover,
.toc-link--active {
  color: rgba(255,255,255,.85);
  border-left-color: var(--color-accent, #4a8db5);
}

/* Sticky TOC in sidebar */
.post-toc-sticky {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 18px 20px;
}

/* ─── Reading Progress ───────────────────────────────────────────────────── */

.reading-progress {
  height: 2px;
  background: rgba(255,255,255,.06);
  border-radius: 1px;
  margin-bottom: 24px;
  overflow: hidden;
}

.reading-progress__bar {
  height: 100%;
  background: var(--color-accent, #4a8db5);
  width: 0%;
  transition: width .1s linear;
  border-radius: 1px;
}

/* ─── Post Sidebar ───────────────────────────────────────────────────────── */

.post-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-cta--post {
  margin-top: 12px;
}

/* ─── FAQ Section ────────────────────────────────────────────────────────── */

.post-faq {
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 36px;
}

.post-faq h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  transition: border-color .2s;
}

.faq-item[open] {
  border-color: rgba(74,141,181,.2);
}

.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  color: var(--color-accent, #4a8db5);
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
}

.faq-item[open] .faq-q::after {
  content: '−';
}

.faq-a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  padding: 0 20px 16px;
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 14px;
}

/* ─── Post Tags ──────────────────────────────────────────────────────────── */

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  letter-spacing: .05em;
  text-transform: lowercase;
}

/* ─── Inline CTA ─────────────────────────────────────────────────────────── */

.inline-cta {
  background: rgba(74,141,181,.07);
  border: 1px solid rgba(74,141,181,.2);
  border-radius: 4px;
  padding: 24px 28px;
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.inline-cta__text {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.inline-cta__text strong {
  display: block;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}

/* ─── Related Posts ──────────────────────────────────────────────────────── */

.related-posts {
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 56px 0;
}

.related-posts__title {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 28px;
  font-weight: 600;
}

/* ─── No posts ───────────────────────────────────────────────────────────── */

.no-posts {
  color: rgba(255,255,255,.35);
  font-size: 15px;
  padding: 40px 0;
}

/* ─── btn full width ─────────────────────────────────────────────────────── */

.btn--full {
  width: 100%;
  text-align: center;
  display: block;
}
/* Blog layout fixes */
.post-header__inner,
.post-layout,
.blog-layout,
.blog-hero__inner,
.related-posts .container,
.breadcrumb-bar .container {
  padding-left: 24px;
  padding-right: 24px;
}

.post-header {
  padding-top: 40px;
}

.post-header__title {
  margin-top: 12px;
}

/* Ensure container has padding everywhere */
.container {
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* Post body left bleed fix */
.post-content {
  min-width: 0;
  overflow: hidden;
}

.post-body {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Breadcrumb spacing */
.breadcrumb-bar {
  padding-left: 0;
  padding-right: 0;
}

/* Table of contents inline hide if < 3 headings (handled by JS, but fallback) */
.toc:empty {
  display: none;
}


/* ════════════════════════════════
   METAL / AI FINESSE LAYER
   Global utilities for all pages
════════════════════════════════ */

/* Scroll reveal — used across all pages */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Metal surface cards — used in any grid */
.metal-card {
  background: var(--bg2);
  border: 1px solid var(--edge);
  border-radius: 5px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.metal-card:hover {
  border-color: rgba(77,150,192,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3), 0 0 0 1px rgba(77,150,192,0.08);
}

/* Precision line accent — horizontal */
.line-accent {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,150,192,0.5), transparent);
  border: none; margin: 0;
}

/* AI glow dot — live indicator */
.glow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--steel2);
  box-shadow: 0 0 0 3px rgba(77,150,192,0.15), 0 0 8px rgba(77,150,192,0.4);
  animation: glow-pulse 2.5s ease-in-out infinite;
  display: inline-block; flex-shrink: 0;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(77,150,192,0.15), 0 0 8px rgba(77,150,192,0.4); }
  50%       { box-shadow: 0 0 0 5px rgba(77,150,192,0.08), 0 0 16px rgba(77,150,192,0.6); }
}

/* Mono data label — specs, numbers, IDs */
.mono-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--metal);
  letter-spacing: 0.05em;
}

/* Spec tag — for hardware/cloud specs */
.spec-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--steel2);
  background: rgba(77,150,192,0.08);
  border: 1px solid rgba(77,150,192,0.15);
  border-radius: 3px;
  padding: 2px 7px;
  display: inline-block;
  letter-spacing: 0.04em;
}

/* Steel gradient heading accent */
.gradient-text {
  background: linear-gradient(120deg, var(--steel2) 0%, #a0d8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Counter number — metallic */
.counter-num {
  background: linear-gradient(135deg, var(--ink) 40%, var(--steel2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Section separator — precision line with dot */
.section-sep {
  display: flex; align-items: center; gap: 12px;
  margin: 48px 0;
}
.section-sep::before,
.section-sep::after {
  content: ''; flex: 1; height: 1px;
  background: var(--edge2);
}
.section-sep-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--steel2); opacity: 0.5;
}

/* Ghost panel — subtle surface for callouts */
.ghost-panel {
  background: rgba(77,150,192,0.04);
  border: 1px solid rgba(77,150,192,0.12);
  border-radius: 5px;
  padding: 20px 24px;
}

/* ═══════════════════════════════════════════════════════════
   consult.css — Shared styles for consultation template pages
   Used by: aws-cloud, microsoft-azure, akamai-linode, microservices
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.consult-hero {
  padding: 100px 52px 60px;
  position: relative;
}
.consult-hero .container { max-width: 900px; }
.consult-hero .hero-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--steel2);
  margin-bottom: 20px;
}
.consult-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 20px;
}
.consult-hero .hero-tagline {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink75);
  max-width: 720px;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Proof numbers ────────────────────────────────────── */
.proof-section {
  padding: 48px 52px;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}
.proof-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.proof-item { text-align: center; }
.proof-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.proof-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink50);
}

/* ── Services grid ────────────────────────────────────── */
.services-section {
  padding: 80px 52px;
}
.services-section .container { max-width: 1100px; margin: 0 auto; }
.services-section h2 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink50);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.services-section h2::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--steel2);
}
.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-block {
  background: var(--bg2);
  border: 1px solid var(--edge);
  border-radius: 6px;
  padding: 32px 28px;
  transition: border-color .25s ease;
}
.service-block:hover {
  border-color: rgba(74, 141, 181, .3);
}
.service-number {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--steel2);
  margin-bottom: 14px;
  opacity: .6;
}
.service-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.service-block p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink75);
  margin-bottom: 16px;
}
.service-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-tags li {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--steel2);
  background: rgba(74, 141, 181, .08);
  border: 1px solid rgba(74, 141, 181, .15);
  border-radius: 3px;
  padding: 3px 8px;
}

/* ── Process steps ────────────────────────────────────── */
.process-section {
  padding: 80px 52px;
  background: var(--bg2);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}
.process-section .container { max-width: 1100px; margin: 0 auto; }
.process-section h2 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink50);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.process-section h2::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--steel2);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding-left: 0;
}
.step-num {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 800;
  color: rgba(74, 141, 181, .15);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.step p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink75);
}

/* ── Related cards ────────────────────────────────────── */
.related-section {
  padding: 80px 52px;
}
.related-section .container { max-width: 1100px; margin: 0 auto; }
.related-section h2 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink50);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.related-section h2::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--steel2);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  display: block;
  background: var(--bg2);
  border: 1px solid var(--edge);
  border-radius: 6px;
  padding: 28px 24px;
  text-decoration: none;
  transition: border-color .25s ease, transform .25s ease;
}
.related-card:hover {
  border-color: rgba(74, 141, 181, .3);
  transform: translateY(-2px);
}
.related-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel2);
  margin-bottom: 10px;
}
.related-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.related-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink50);
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq-section {
  padding: 80px 52px;
  background: var(--bg2);
  border-top: 1px solid var(--edge);
}
.faq-section .container { max-width: 760px; margin: 0 auto; }
.faq-section > .container > h2 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink50);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.faq-section > .container > h2::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--steel2);
}
.faq-item {
  border-bottom: 1px solid var(--edge);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--steel2); }
.faq-icon {
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink75);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 0 0 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 0 20px 0;
}

/* ── Final CTA ────────────────────────────────────────── */
.final-cta {
  padding: 80px 52px;
  text-align: center;
  border-top: 1px solid var(--edge);
}
.final-cta .container { max-width: 680px; margin: 0 auto; }
.final-cta h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 15px;
  color: var(--ink50);
  line-height: 1.6;
  margin-bottom: 28px;
}
.final-cta .hero-cta-row {
  justify-content: center;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .consult-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-numbers { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
  .consult-hero,
  .proof-section,
  .services-section,
  .process-section,
  .related-section,
  .faq-section,
  .final-cta { padding-left: 24px; padding-right: 24px; }

  .consult-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .proof-numbers { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .proof-value { font-size: 22px; }
}
