/* ════════════════════════════════════════════════════════════════════
   CyberXYZ — Blog Styles
   Extends styles.css · same design tokens
   Glass-morphism + brand gradients
   ════════════════════════════════════════════════════════════════════ */

/* ── Active nav link ─────────────────────────────────────────────── */
.nav__links a.is-active {
  color: var(--orange);
  font-weight: 600;
}
.nav__links a.is-active::after {
  transform: scaleX(1);
}

/* ════════════════════════════════════════════════════════════════════
   GLASS UTILITY
   ════════════════════════════════════════════════════════════════════ */
.glass {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.72) 0%,
    rgba(240,240,255,0.55) 50%,
    rgba(255,248,245,0.60) 100%);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    0 8px 32px rgba(15,15,40,.06),
    0 2px 6px rgba(15,15,40,.04),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.glass--dark {
  background: linear-gradient(135deg,
    rgba(46,46,255,0.75) 0%,
    rgba(30,30,180,0.65) 50%,
    rgba(46,46,255,0.70) 100%);
  backdrop-filter: saturate(160%) blur(24px);
  -webkit-backdrop-filter: saturate(160%) blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 8px 32px rgba(0,0,0,.2),
    0 2px 6px rgba(0,0,0,.1),
    inset 0 1px 0 rgba(255,255,255,0.05);
  color: rgba(255,255,255,.9);
}

/* ════════════════════════════════════════════════════════════════════
   BLOG HERO
   ════════════════════════════════════════════════════════════════════ */
.blog-hero {
  padding: clamp(120px, 16vw, 200px) var(--gutter) clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 20% 60%, var(--orange-soft) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 30%, var(--blue-soft) 0%, transparent 70%),
    var(--bg);
}

.blog-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.blog-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--blue);
  margin: 20px 0 24px;
}
.blog-hero__title .brand-orange {
  color: var(--orange);
}
.blog-hero__title .brand-blue {
  color: var(--blue);
}

.blog-hero__sub {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 640px;
}

/* ════════════════════════════════════════════════════════════════════
   BLOG SECTION
   ════════════════════════════════════════════════════════════════════ */
.blog-section {
  padding-top: clamp(40px, 5vw, 80px);
}

/* ════════════════════════════════════════════════════════════════════
   FEATURED POST — glass card
   ════════════════════════════════════════════════════════════════════ */
.blog-featured {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.78) 0%,
    rgba(244,245,250,0.65) 50%,
    rgba(255,248,245,0.60) 100%);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  margin-bottom: 64px;
  box-shadow:
    0 8px 32px rgba(15,15,40,.06),
    0 2px 6px rgba(15,15,40,.04),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.blog-featured:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 60px rgba(15,15,40,.10),
    0 6px 18px rgba(15,15,40,.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border-color: var(--orange-line);
}

.blog-featured__link {
  display: block;
  padding: clamp(32px, 4vw, 56px);
  text-decoration: none;
  color: inherit;
}

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

.blog-featured__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--blue);
  margin: 0 0 18px;
}
.blog-featured__title .brand-orange { color: var(--orange); }
.blog-featured__title .brand-blue { color: var(--blue); }
.blog-card__title .brand-orange { color: var(--orange); }
.blog-card__title .brand-blue { color: var(--blue); }

.blog-featured__excerpt {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink-3);
  max-width: 820px;
  margin: 0 0 28px;
}

.blog-featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── Author (branded, no avatar) ─────────────────────────────────── */
.blog-author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-author__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-author__role {
  display: block;
  font-size: 12px;
  color: var(--ink-4);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

/* ── Tags — glossy pills ─────────────────────────────────────────── */
.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.blog-tag--critical {
  background: rgba(254,242,242,0.85);
  color: var(--block);
  border-color: #fecaca;
  box-shadow: 0 2px 8px rgba(220,38,38,.1);
}

.blog-tag--high {
  background: rgba(255,241,232,0.85);
  color: var(--orange);
  border-color: var(--orange-line);
  box-shadow: 0 2px 8px rgba(245,121,59,.1);
}

.blog-tag--advisory {
  background: rgba(238,240,255,0.85);
  color: var(--blue);
  border-color: var(--blue-line);
  box-shadow: 0 2px 8px rgba(46,46,255,.08);
}

.blog-tag--research {
  background: rgba(240,253,244,0.85);
  color: var(--ok);
  border-color: #bbf7d0;
  box-shadow: 0 2px 8px rgba(22,163,74,.08);
}

.blog-tag--info {
  background: rgba(244,245,250,0.85);
  color: var(--ink-4);
  border-color: var(--line);
}

.blog-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}

.blog-read-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════════════
   POST GRID
   ════════════════════════════════════════════════════════════════════ */
.blog-grid__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── Blog Card — glass ───────────────────────────────────────────── */
.blog-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.75) 0%,
    rgba(244,245,250,0.60) 50%,
    rgba(255,248,245,0.55) 100%);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(15,15,40,.04),
    0 1px 3px rgba(15,15,40,.03),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(245,121,59,.06));
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 60px rgba(15,15,40,.10),
    0 6px 18px rgba(15,15,40,.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border-color: var(--orange-line);
}

.blog-card:hover::before { opacity: 1; }

.blog-card--coming {
  opacity: 0.6;
  cursor: default;
}

.blog-card--coming:hover {
  transform: none;
  box-shadow:
    0 4px 16px rgba(15,15,40,.04),
    0 1px 3px rgba(15,15,40,.03),
    inset 0 1px 0 rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.5);
}

.blog-card--coming:hover::before { opacity: 0; }

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

.blog-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--blue);
}

.blog-card__excerpt {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(231,231,240,0.6);
}

.blog-card__footer .blog-author__name {
  font-size: 12px;
}

.blog-card__footer .blog-read-time {
  font-size: 11px;
}

/* ════════════════════════════════════════════════════════════════════
   ARTICLE PAGE
   ════════════════════════════════════════════════════════════════════ */
.article-hero {
  padding: clamp(120px, 16vw, 200px) var(--gutter) clamp(40px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 15% 70%, #fef2f2 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 25%, var(--blue-soft) 0%, transparent 70%),
    var(--bg);
}

.article-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  margin-bottom: 28px;
  transition: color .2s ease;
}

.article-hero__back:hover { color: var(--orange); }

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.article-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--blue);
  margin: 0 0 24px;
  max-width: 900px;
}
.article-hero__title .brand-orange {
  color: var(--orange);
}
.article-hero__title .brand-blue {
  color: var(--blue);
}

.article-hero__subtitle {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 720px;
  margin: 0;
}

.article-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--gutter);
  border-bottom: 1px solid var(--line);
}

.article-info .blog-author__name {
  font-size: 15px;
}

/* ── Article Body ─────────────────────────────────────────────────── */
.article {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter);
}

.article h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--blue);
  margin: 56px 0 18px;
}

.article h2:first-child { margin-top: 0; }

.article h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
  margin: 36px 0 12px;
}

.article p {
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--ink-2);
  margin: 0 0 20px;
}

.article a {
  color: var(--orange);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--orange-line);
  transition: text-decoration-color .2s ease;
}

.article a:hover {
  text-decoration-color: var(--orange);
}

.article ul, .article ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.article li {
  margin-bottom: 8px;
  line-height: 1.65;
  color: var(--ink-2);
}

.article strong {
  font-weight: 600;
  color: var(--ink);
}

.article code {
  background: var(--bg-2);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.86em;
  color: var(--ink);
  border: 1px solid var(--line);
}

.article pre {
  background: linear-gradient(135deg, #1a1a6e 0%, #2e2eff 100%);
  color: #e4e4e7;
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  overflow-x: auto;
  margin: 0 0 24px;
  line-height: 1.6;
}

.article pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-size: 13.5px;
}

.article blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--orange);
  background: var(--orange-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article blockquote p {
  color: var(--ink-2);
  margin: 0;
  font-weight: 500;
}

.article img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  margin: 24px 0;
}

.article hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 48px 0;
}

/* ── Alert boxes — glass panels ──────────────────────────────────── */
.alert-box {
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
  border: 1px solid;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(15,15,40,.04), inset 0 1px 0 rgba(255,255,255,0.5);
}

.alert-box__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.alert-box p {
  margin: 0;
  font-size: 14.5px;
}

.alert-box--critical {
  background: rgba(254,242,242,0.70);
  border-color: rgba(254,202,202,0.6);
}

.alert-box--critical .alert-box__title { color: var(--block); }

.alert-box--warning {
  background: rgba(255,251,235,0.70);
  border-color: rgba(253,230,138,0.6);
}

.alert-box--warning .alert-box__title { color: var(--alert); }

.alert-box--info {
  background: rgba(238,240,255,0.70);
  border-color: rgba(211,216,255,0.6);
}

.alert-box--info .alert-box__title { color: var(--blue); }

/* ── Detection CTA Card ──────────────────────────────────────────── */
.detection-cta {
  margin: 40px 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.85) 0%, rgba(240,240,255,.75) 50%, rgba(255,248,245,.8) 100%);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(255,255,255,.6);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04), inset 0 1px 0 rgba(255,255,255,.6);
}

.detection-cta::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 100%);
}

.detection-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  border: 1px solid var(--orange-line);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.detection-cta__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.detection-cta__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.detection-cta__title span {
  color: var(--blue);
}

.detection-cta__subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-3);
  margin: 0 0 28px;
  line-height: 1.5;
}

.detection-cta__contrast {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.detection-cta__them,
.detection-cta__us {
  flex: 1;
  padding: 20px 24px;
}

.detection-cta__them {
  background: var(--bg-2);
}

.detection-cta__us {
  background: var(--orange-soft);
}

.detection-cta__vs {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--blue);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.detection-cta__them strong,
.detection-cta__us strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.detection-cta__them strong { color: var(--ink-3); }
.detection-cta__them p { color: var(--ink-4); font-size: 13px; margin: 0; line-height: 1.5; }
.detection-cta__us strong { color: var(--orange); }
.detection-cta__us p { color: var(--ink-2); font-size: 13px; margin: 0; line-height: 1.5; }

.detection-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.detection-cta__point {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
  transition: all 0.3s ease;
}

.detection-cta__point:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  border-color: var(--blue-line);
}

.detection-cta__point strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.detection-cta__point p {
  color: var(--ink-3);
  font-size: 13px;
  margin: 0;
  line-height: 1.45;
}

.detection-cta__actions {
  display: flex;
  gap: 14px;
}

.detection-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .25s cubic-bezier(.2,.7,.2,1);
}

.detection-cta__btn--primary {
  background: var(--blue);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(46,46,255,.22);
}

.detection-cta__btn--primary:hover {
  background: var(--orange);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245,121,59,.32);
}

.detection-cta__btn--ghost {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(245,121,59,.22);
}

.detection-cta__btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245,121,59,.32);
}

@media (max-width: 768px) {
  .detection-cta { padding: 32px 24px; }
  .detection-cta__grid { grid-template-columns: 1fr; }
  .detection-cta__contrast { flex-direction: column; }
  .detection-cta__vs { padding: 8px 16px; border-left: none; border-right: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); justify-content: center; }
  .detection-cta__actions { flex-direction: column; }
}

/* ── IOC Table — clean glass cards ────────────────────────────────── */
.ioc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin: 28px 0;
  font-size: 14px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.ioc-table thead {
  display: none;
}

.ioc-table tbody tr {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.78) 0%,
    rgba(244,245,250,0.62) 50%,
    rgba(255,248,245,0.58) 100%);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-radius: 14px;
  transition: all .3s cubic-bezier(.2,.7,.2,1);
  box-shadow:
    0 4px 16px rgba(15,15,40,.04),
    0 1px 3px rgba(15,15,40,.03),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.ioc-table tbody tr:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 36px rgba(15,15,40,.08),
    0 4px 12px rgba(15,15,40,.04),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.ioc-table td {
  padding: 18px 22px;
  border: none;
  color: var(--ink-2);
  vertical-align: middle;
  background: transparent;
}

.ioc-table td:first-child {
  border-radius: 14px 0 0 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  width: 120px;
}

.ioc-table td:nth-child(2) {
  font-weight: 700;
}

.ioc-table td:last-child {
  border-radius: 0 14px 14px 0;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
}

.ioc-table td code {
  font-size: 12.5px;
  word-break: break-all;
}

.ioc-table .ioc-highlight code {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(245,121,59,.25), 0 0 0 2px rgba(245,121,59,.15);
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(245,121,59,.25);
  display: inline-block;
}

.ioc-table .ioc-domain code {
  background: linear-gradient(135deg, var(--blue) 0%, #5555ff 100%);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(46,46,255,.18);
  display: inline-block;
}

/* ── Timeline ─────────────────────────────────────────────────────── */
.article-timeline {
  margin: 32px 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.article-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--blue));
  border-radius: 2px;
}

.article-timeline li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
}

.article-timeline li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--orange);
  box-shadow: 0 0 0 4px rgba(245,121,59,.1);
}

.article-timeline li:last-child::before {
  border-color: var(--ok);
  background: #dcfce7;
  box-shadow: 0 0 0 4px rgba(22,163,74,.1);
}

.tl-time {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-4);
  display: block;
  margin-bottom: 2px;
  letter-spacing: 0.03em;
}

.tl-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ── References — glass panel ────────────────────────────────────── */
.article-references {
  background: linear-gradient(135deg,
    rgba(244,245,250,0.75) 0%,
    rgba(238,240,255,0.50) 50%,
    rgba(255,248,245,0.45) 100%);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  padding: 28px;
  margin: 40px 0;
  box-shadow: 0 4px 16px rgba(15,15,40,.04), inset 0 1px 0 rgba(255,255,255,0.6);
}

.article-references h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 16px;
  color: var(--ink);
}

.article-references ol {
  margin: 0;
  padding-left: 22px;
}

.article-references li {
  font-size: 13.5px;
  margin-bottom: 6px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ── CTA bar — glass dark ────────────────────────────────────────── */
.article-cta {
  text-align: center;
  padding: 48px 32px;
  margin: 48px 0 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg,
    rgba(46,46,255,0.85) 0%,
    rgba(30,25,120,0.75) 50%,
    rgba(245,121,59,0.72) 100%);
  backdrop-filter: saturate(160%) blur(24px);
  -webkit-backdrop-filter: saturate(160%) blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 16px 48px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.article-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--orange));
  background-size: 200% 100%;
  animation: footerGradient 8s ease infinite;
}

.article-cta p {
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}

.article-cta .btn {
  position: relative;
  z-index: 1;
}

/* ── Accent divider ──────────────────────────────────────────────── */
.accent-divider {
  height: 3px;
  border: none;
  margin: 56px 0;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  border-radius: 3px;
  opacity: 0.3;
}

/* ════════════════════════════════════════════════════════════════════
   LET'S TALK — glossy CTA banner
   ════════════════════════════════════════════════════════════════════ */
.lets-talk {
  max-width: var(--container);
  margin: 0 auto clamp(40px, 5vw, 80px);
  padding: 0 var(--gutter);
}

.lets-talk__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(48px, 6vw, 80px) clamp(28px, 4vw, 56px);
  text-align: center;
  background: var(--blue);
  border-top: 3px solid var(--orange);
  box-shadow:
    0 24px 64px rgba(46,46,255,.18),
    0 8px 24px rgba(46,46,255,.08),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.lets-talk__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 85%, rgba(245,121,59,0.15) 0%, transparent 45%),
    radial-gradient(circle at 15% 15%, rgba(255,255,255,0.06) 0%, transparent 35%);
  pointer-events: none;
}

.lets-talk__wave {
  display: inline-block;
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
  animation: wave 2.4s ease-in-out infinite;
  transform-origin: 70% 70%;
  position: relative;
  z-index: 1;
}

@keyframes wave {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(14deg); }
  20%  { transform: rotate(-8deg); }
  30%  { transform: rotate(14deg); }
  40%  { transform: rotate(-4deg); }
  50%  { transform: rotate(10deg); }
  60%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.lets-talk__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.lets-talk__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.lets-talk__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.lets-talk__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all .3s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
}

.lets-talk__btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,121,59,.25);
}

.lets-talk__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245,121,59,.35);
}

.lets-talk__btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lets-talk__btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.50);
  transform: translateY(-3px);
}
