/* ===================================================================
   AiESL — shared stylesheet (styles.css)
   Linear x Stripe dark tech aesthetic
   =================================================================== */
:root {
  --bg: #070a10;
  --bg-soft: #0d1119;
  --bg-card: #11161f;
  --bg-elev: #161c27;
  --line: #1f2733;
  --line-soft: #161d27;
  --ink: #f3f5f8;
  --ink-mid: #9aa6b6;
  --ink-dim: #5d6878;
  --blue: #4d7cff;
  --blue-hi: #7aa1ff;
  --amber: #f5b13d;
  --radius: 14px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Instrument Sans', 'Plus Jakarta Sans', sans-serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1.16; }
.mono { font-family: 'JetBrains Mono', monospace; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.blue { color: var(--blue-hi); }
button { font-family: inherit; }

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,10,16,0.82); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: 'Instrument Sans', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -0.03em; }
.logo span { color: var(--blue-hi); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--ink-mid); transition: color 0.2s;
  background: none; border: none; cursor: pointer;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--blue-hi); }
.btn {
  display: inline-block; font-size: 14px; font-weight: 600;
  padding: 11px 22px; border-radius: 10px; cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 20px rgba(77,124,255,0.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(77,124,255,0.5); background: var(--blue-hi); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-hi); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s; }

.drawer {
  position: fixed; inset: 0; z-index: 200; background: rgba(7,10,16,0.97);
  backdrop-filter: blur(8px); display: none; flex-direction: column; padding: 90px 32px 32px;
}
.drawer.open { display: flex; }
.drawer a {
  font-family: 'Instrument Sans', sans-serif; font-size: 22px; color: var(--ink);
  background: none; border: none; text-align: left; padding: 16px 0;
  border-bottom: 1px solid var(--line-soft); cursor: pointer;
}
.drawer-close { position: absolute; top: 26px; right: 28px; font-size: 30px !important; border: none !important; padding: 0 !important; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ===== HERO ===== */
.hero { position: relative; padding: 100px 0 88px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -260px; right: -160px;
  width: 660px; height: 660px; border-radius: 50%;
  background: radial-gradient(circle, rgba(77,124,255,0.18), transparent 68%); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -180px; left: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,177,61,0.07), transparent 70%); pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 28%, #000, transparent 80%);
  opacity: 0.55; pointer-events: none;
}
.hero-in { position: relative; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--blue-hi); background: rgba(77,124,255,0.1);
  border: 1px solid rgba(77,124,255,0.24); padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-hi); }
h1.hero-title { font-size: 57px; margin-bottom: 22px; }
.hero-sub { font-size: 18px; color: var(--ink-mid); max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-stats { display: flex; gap: 36px; }
.hs-num { font-family: 'Instrument Sans', sans-serif; font-size: 30px; font-weight: 700; }
.hs-lbl { font-size: 12.5px; color: var(--ink-dim); }

.tag-stage { position: relative; }
.tag-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 18px; padding: 26px; box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  transform: perspective(1200px) rotateY(-9deg) rotateX(3deg); transition: transform 0.4s;
}
.tag-card:hover { transform: perspective(1200px) rotateY(-4deg) rotateX(1deg); }
.tag-card-photo { padding: 18px; }
.tag-card-photo img {
  display: block; width: 100%; border-radius: 12px;
  background: #fff; border: 1px solid rgba(255,255,255,0.08);
}
.tag-screen { background: #f4f1e8; color: #15171c; border-radius: 9px; padding: 18px 20px; font-family: 'Instrument Sans', sans-serif; }
.tag-screen .tname { font-size: 13px; font-weight: 500; color: #555; }
.tag-screen .tprice { font-size: 42px; font-weight: 700; letter-spacing: -0.03em; }
.tag-screen .tprice small { font-size: 18px; }
.tag-screen .told { font-size: 14px; color: #999; text-decoration: line-through; }
.tag-screen .ttag {
  display: inline-block; background: #15171c; color: #fff; font-size: 10px;
  padding: 3px 9px; border-radius: 4px; margin-top: 6px;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.02em;
}
.tag-meta { display: flex; justify-content: space-between; margin-top: 18px; font-size: 11px; color: var(--ink-dim); }
.live-dot { display: inline-flex; align-items: center; gap: 6px; color: var(--blue-hi); }
.live-dot::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-hi); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.chip {
  position: absolute; background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 9px; padding: 8px 12px; font-size: 11px; color: var(--ink-mid);
  font-family: 'JetBrains Mono', monospace; box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
}
.chip b { color: var(--blue-hi); }
.chip-1 { top: -16px; left: -28px; }
.chip-2 { bottom: 34px; left: -40px; animation-delay: 1.3s; }
.chip-3 { top: 90px; right: -36px; animation-delay: 2.4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 600px) { .chip { display: none; } }

.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 22px; }
.signal { background: var(--bg-card); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.signal .slbl { font-size: 10px; color: var(--ink-dim); letter-spacing: 0.05em; font-family: 'JetBrains Mono', monospace; }
.signal .sval { font-family: 'Instrument Sans', sans-serif; font-size: 18px; font-weight: 700; margin-top: 3px; }
.signal .sval.up { color: var(--blue-hi); }
.signal .sval.amb { color: var(--amber); }

/* ===== TRUST BAR ===== */
.trust { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.marquee { overflow: hidden; padding: 24px 0; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll 26s linear infinite; }
.marquee-track span { font-family: 'Instrument Sans', sans-serif; font-size: 18px; font-weight: 600; color: var(--ink-dim); white-space: nowrap; }
@keyframes scroll { to { transform: translateX(-50%); } }
.compliance {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; padding: 22px 0; border-top: 1px solid var(--line-soft);
}
.comp-label { font-size: 11.5px; color: var(--ink-dim); letter-spacing: 0.05em; }
.comp-badge {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600;
  color: var(--ink-mid); border: 1px solid var(--line); padding: 7px 15px; border-radius: 7px;
}

/* ===== SECTIONS ===== */
section { padding: 92px 0; }
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-tag { font-size: 12.5px; font-weight: 600; color: var(--blue-hi); letter-spacing: 0.05em; margin-bottom: 14px; font-family: 'JetBrains Mono', monospace; }
.sec-head h2 { font-size: 40px; margin-bottom: 16px; }
.sec-head p { font-size: 17px; color: var(--ink-mid); }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; transition: border-color 0.25s, transform 0.25s;
}
.feat:hover { border-color: rgba(77,124,255,0.42); transform: translateY(-4px); }
.feat-ic {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(77,124,255,0.1); border: 1px solid rgba(77,124,255,0.24);
  display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 18px;
}
.feat h3 { font-size: 19px; margin-bottom: 9px; }
.feat p { font-size: 14.5px; color: var(--ink-mid); }

.size-table {
  width: 100%; border-collapse: collapse; background: var(--bg-card);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.size-table thead th {
  background: var(--bg-soft); text-align: left;
  font-family: 'JetBrains Mono', monospace; font-size: 11.5px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-dim);
  padding: 16px 22px; font-weight: 600;
}
.size-table tbody td { padding: 22px; border-top: 1px solid var(--line-soft); vertical-align: top; font-size: 14.5px; }
.size-table tbody tr:hover { background: rgba(77,124,255,0.03); }
.size-badge {
  display: inline-block; font-family: 'JetBrains Mono', monospace;
  font-size: 15px; font-weight: 700; color: var(--blue-hi);
  background: rgba(77,124,255,0.09); border: 1px solid rgba(77,124,255,0.24);
  padding: 6px 12px; border-radius: 8px; white-space: nowrap;
}
.size-table .app { color: var(--ink); font-weight: 500; }
.size-table .adv { color: var(--ink-mid); }
@media (max-width: 760px) {
  .size-table thead { display: none; }
  .size-table tbody td { display: block; padding: 8px 18px; }
  .size-table tbody tr { display: block; border-top: 1px solid var(--line); padding: 14px 0; }
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); }
.step { padding: 0 26px; position: relative; }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 20px; right: -1px;
  width: 1px; height: calc(100% - 20px); background: var(--line);
}
.step-n {
  font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 700;
  color: var(--blue-hi); border: 1px solid rgba(77,124,255,0.32);
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 9px; }
.step p { font-size: 14.5px; color: var(--ink-mid); }

/* ROI */
.roi {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
}
.roi-inputs { padding: 44px; border-right: 1px solid var(--line); }
.roi-inputs h3 { font-size: 23px; margin-bottom: 6px; }
.roi-inputs > p { font-size: 14px; color: var(--ink-dim); margin-bottom: 28px; }
.field { margin-bottom: 24px; }
.field label { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; }
.field label b { font-family: 'JetBrains Mono', monospace; color: var(--blue-hi); font-weight: 700; }
input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 5px;
  background: var(--line); border-radius: 4px; outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 19px; height: 19px;
  border-radius: 50%; background: var(--blue); cursor: pointer;
  border: 3px solid var(--bg-soft); box-shadow: 0 0 0 1px var(--blue);
}
input[type=range]::-moz-range-thumb {
  width: 19px; height: 19px; border-radius: 50%; background: var(--blue);
  cursor: pointer; border: 3px solid var(--bg-soft); box-shadow: 0 0 0 1px var(--blue);
}
.roi-results { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.roi-results .rlabel { font-size: 12px; color: var(--ink-dim); letter-spacing: 0.04em; font-family: 'JetBrains Mono', monospace; }
.roi-contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0 4px; }
.roi-cbox { border-radius: 11px; padding: 16px 18px; border: 1px solid var(--line); }
.roi-cbox.invest { background: rgba(245,177,61,0.06); border-color: rgba(245,177,61,0.26); }
.roi-cbox.payback { background: rgba(77,124,255,0.08); border-color: rgba(77,124,255,0.32); }
.roi-cbox .clabel { font-size: 10.5px; letter-spacing: 0.04em; color: var(--ink-dim); font-family: 'JetBrains Mono', monospace; }
.roi-cbox .cval { font-family: 'Instrument Sans', sans-serif; font-size: 27px; font-weight: 700; margin-top: 4px; line-height: 1; }
.roi-cbox.invest .cval { color: var(--amber); }
.roi-cbox.payback .cval { color: var(--blue-hi); }
.roi-cbox .chint { font-size: 11px; color: var(--ink-dim); margin-top: 5px; }
.roi-row {
  display: flex; justify-content: space-between; padding: 14px 0;
  border-top: 1px solid var(--line-soft); font-size: 14.5px;
}
.roi-row span:first-child { color: var(--ink-mid); }
.roi-row span:last-child { font-family: 'JetBrains Mono', monospace; font-weight: 600; }
.roi-note { font-size: 11px; color: var(--ink-dim); margin-top: 18px; }
.flash { animation: flashUp 0.4s ease; }
@keyframes flashUp { 0% { transform: scale(1); } 40% { transform: scale(1.08); } 100% { transform: scale(1); } }

/* FAQ */
.faq-2col { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.faq-sticky { position: sticky; top: 110px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--ink);
  font-family: 'Instrument Sans', sans-serif; font-size: 17px; font-weight: 500;
  text-align: left; padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-q .chev { color: var(--blue-hi); transition: transform 0.25s; flex-shrink: 0; font-size: 22px; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 0 22px; font-size: 15px; color: var(--ink-mid); max-width: 620px; }
@media (max-width: 820px) { .faq-2col { grid-template-columns: 1fr; gap: 24px; } .faq-sticky { position: static; } }

/* CTA */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(77,124,255,0.12), rgba(77,124,255,0.02));
  border: 1px solid rgba(77,124,255,0.28); border-radius: 20px; padding: 58px; text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 480px; height: 280px; background: radial-gradient(ellipse, rgba(77,124,255,0.22), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { font-size: 36px; margin-bottom: 14px; position: relative; }
.cta-band p { font-size: 17px; color: var(--ink-mid); margin-bottom: 28px; position: relative; }
.cta-band .btn { position: relative; }

/* FOOTER */
footer { border-top: 1px solid var(--line-soft); padding: 56px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.foot-grid p { font-size: 14px; color: var(--ink-dim); max-width: 280px; margin-top: 14px; }
.foot-col h4 { font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 16px; }
.foot-col a {
  display: block; font-size: 14px; color: var(--ink-mid); margin-bottom: 11px;
  transition: color 0.2s; background: none; border: none; cursor: pointer; text-align: left; padding: 0;
}
.foot-col a:hover { color: var(--blue-hi); }
.foot-contact { font-size: 13.5px; color: var(--ink-mid); line-height: 1.7; }
.foot-contact b { color: var(--ink); font-weight: 600; display: block; font-size: 12px; letter-spacing: 0.03em; text-transform: uppercase; margin-top: 12px; }
.foot-bot {
  border-top: 1px solid var(--line-soft); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: var(--ink-dim);
}

/* PAGE HERO (sub-pages) */
.page-hero { padding: 76px 0 48px; border-bottom: 1px solid var(--line-soft); position: relative; overflow: hidden; }
.page-hero h1 { font-size: 46px; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--ink-mid); max-width: 600px; }

/* PRODUCTS */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prod-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
}
.prod-card:hover { border-color: rgba(77,124,255,0.42); transform: translateY(-4px); }
.prod-visual {
  height: 190px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line); overflow: hidden; position: relative;
}
.prod-visual img { width: 100%; height: 100%; object-fit: contain; padding: 14px; background: #fff; }
.prod-tag {
  background: #f4f1e8; color: #15171c; border-radius: 7px; font-family: 'Instrument Sans', sans-serif;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.prod-tag .pp { font-weight: 700; letter-spacing: -0.02em; }
.prod-placeholder {
  position: absolute; bottom: 8px; right: 10px; font-size: 9px;
  font-family: 'JetBrains Mono', monospace; color: var(--ink-dim);
  background: rgba(7,10,16,0.7); padding: 2px 7px; border-radius: 4px;
}
.prod-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.prod-body .pcat { font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--blue-hi); letter-spacing: 0.04em; }
.prod-body h3 { font-size: 19px; margin: 6px 0 8px; }
.prod-body p { font-size: 14px; color: var(--ink-mid); margin-bottom: 16px; }
.prod-specs { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.prod-specs div { display: flex; justify-content: space-between; font-size: 13px; }
.prod-specs div span:first-child { color: var(--ink-dim); }
.prod-specs div span:last-child { font-family: 'JetBrains Mono', monospace; }
.prod-link {
  margin-top: auto; font-size: 13px; font-weight: 600; color: var(--blue-hi);
  display: inline-flex; align-items: center; gap: 6px;
}
.prod-card:hover .prod-link { gap: 10px; }
.prod-link { transition: gap 0.2s; }
@media (max-width: 900px) { .prod-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .prod-grid { grid-template-columns: 1fr; } }

.cmp-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cmp-table th, .cmp-table td { padding: 16px 20px; text-align: left; font-size: 14px; border-top: 1px solid var(--line-soft); }
.cmp-table thead th { background: var(--bg-soft); font-family: 'JetBrains Mono', monospace; font-size: 11.5px; text-transform: uppercase; color: var(--ink-dim); border-top: none; }
.cmp-table td:first-child { color: var(--ink-mid); }
.cmp-table .yes { color: var(--blue-hi); font-family: 'JetBrains Mono', monospace; }
.cmp-table .no { color: var(--ink-dim); }
@media (max-width: 700px) { .cmp-table { font-size: 12px; } .cmp-table th, .cmp-table td { padding: 11px 12px; } }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s, transform 0.25s;
  cursor: pointer; display: flex; flex-direction: column;
}
.blog-card:hover { border-color: rgba(77,124,255,0.42); transform: translateY(-4px); }
.blog-thumb { height: 130px; position: relative; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-thumb.t1 { background: linear-gradient(135deg, #1a2742, #0d1119); }
.blog-thumb.t2 { background: linear-gradient(135deg, #2a2238, #0d1119); }
.blog-thumb.t3 { background: linear-gradient(135deg, #14322c, #0d1119); }
.blog-thumb.t4 { background: linear-gradient(135deg, #2d2818, #0d1119); }
.blog-thumb.t5 { background: linear-gradient(135deg, #1a2742, #0d1119); }
.blog-thumb.t6 { background: linear-gradient(135deg, #14322c, #0d1119); }
.blog-thumb span {
  position: absolute; bottom: 12px; left: 14px; font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; color: var(--ink-mid); background: rgba(7,10,16,0.6);
  padding: 3px 9px; border-radius: 5px;
}
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-body .bcat { font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--blue-hi); letter-spacing: 0.04em; }
.blog-body h3 { font-size: 17px; margin: 7px 0 8px; line-height: 1.3; }
.blog-body p { font-size: 13.5px; color: var(--ink-mid); flex: 1; }
.blog-body .bmeta { font-size: 12px; color: var(--ink-dim); margin-top: 14px; }
.blog-featured {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 32px;
}
.blog-featured .bf-text { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured .bf-text .bcat { font-size: 11.5px; font-family: 'JetBrains Mono', monospace; color: var(--blue-hi); }
.blog-featured .bf-text h2 { font-size: 30px; margin: 12px 0 14px; }
.blog-featured .bf-text p { font-size: 15px; color: var(--ink-mid); margin-bottom: 22px; }
.blog-featured .bf-visual { background: linear-gradient(135deg, #1a2742, #0d1119); min-height: 280px; position: relative; }
.blog-featured .bf-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } .blog-featured { grid-template-columns: 1fr; } .blog-featured .bf-visual { min-height: 160px; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ABOUT */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.about-stat {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.about-stat .as-num { font-family: 'Instrument Sans', sans-serif; font-size: 36px; font-weight: 700; color: var(--blue-hi); }
.about-stat .as-lbl { font-size: 13px; color: var(--ink-mid); margin-top: 6px; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-split h2 { font-size: 34px; margin-bottom: 16px; }
.about-split p { font-size: 15.5px; color: var(--ink-mid); margin-bottom: 14px; }
.about-visual {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  min-height: 320px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.timeline { max-width: 720px; }
.tl-item { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid var(--line-soft); }
.tl-year { font-family: 'JetBrains Mono', monospace; font-size: 17px; font-weight: 700; color: var(--blue-hi); }
.tl-item h3 { font-size: 17px; margin-bottom: 5px; }
.tl-item p { font-size: 14px; color: var(--ink-mid); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.value-card .vc-ic {
  width: 44px; height: 44px; border-radius: 11px; background: rgba(77,124,255,0.1);
  border: 1px solid rgba(77,124,255,0.24); display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--ink-mid); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
}
.contact-card .cc-lbl { font-size: 11.5px; font-family: 'JetBrains Mono', monospace; color: var(--blue-hi); letter-spacing: 0.04em; margin-bottom: 10px; }
.contact-card .cc-val { font-size: 15px; color: var(--ink); line-height: 1.6; }
.contact-card a { color: var(--ink); }
.contact-card a:hover { color: var(--blue-hi); }
@media (max-width: 900px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-split, .faq-2col { grid-template-columns: 1fr; gap: 28px; }
  .value-grid, .contact-grid { grid-template-columns: 1fr; }
}

/* ===== QUOTE MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(7,10,16,0.8);
  backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 18px;
  width: 100%; max-width: 540px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 90px rgba(0,0,0,0.7);
}
.modal-head { padding: 28px 32px 0; position: relative; }
.modal-head h3 { font-size: 23px; margin-bottom: 6px; }
.modal-head p { font-size: 14px; color: var(--ink-mid); }
.modal-close {
  position: absolute; top: 22px; right: 24px; background: none; border: none;
  color: var(--ink-dim); font-size: 26px; cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--ink); }
.modal-body { padding: 24px 32px 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; color: var(--ink-mid); margin-bottom: 6px; }
.form-field label .req { color: var(--blue-hi); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 9px; padding: 11px 13px; color: var(--ink); font-size: 14px;
  font-family: inherit; transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue);
}
.form-field input.err, .form-field select.err { border-color: #e5484d; }
.form-field textarea { resize: vertical; min-height: 76px; }
.form-err { font-size: 11.5px; color: #e5708a; margin-top: 4px; display: none; }
.form-err.show { display: block; }
.modal .btn-primary { width: 100%; margin-top: 6px; padding: 13px; }
.form-success { text-align: center; padding: 40px 32px; }
.form-success .ok-ic {
  width: 60px; height: 60px; border-radius: 50%; background: rgba(77,124,255,0.12);
  border: 1px solid rgba(77,124,255,0.35); display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 18px; color: var(--blue-hi);
}
.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--ink-mid); margin-bottom: 22px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero-in, .roi { grid-template-columns: 1fr; }
  .feat-grid, .steps, .signal-grid, .value-grid { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .roi-inputs { border-right: none; border-bottom: 1px solid var(--line); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  h1.hero-title { font-size: 40px; }
  .sec-head h2 { font-size: 30px; }
}
@media (max-width: 560px) { .feat-grid, .steps, .signal-grid, .form-row { grid-template-columns: 1fr; } }
