/* ============================================================
   INNOV8AV NEWSROOM — Press page styles
   Extracted from inline <style> for maintainability.
   Uses existing design tokens from it-business.css:
     --base-color, --dark-gray, --medium-gray, --very-light-gray, --primary-font
   Brand colors: Navy #0b1f4b, Orange #f7693c, Gradient flamingo-amethyst-green
   ============================================================ */

/* ----- Sticky sub-navigation ----- */
.newsroom-subnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .2s;
}
.newsroom-subnav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.newsroom-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}
.newsroom-subnav-inner::-webkit-scrollbar { display: none; }
.newsroom-subnav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.newsroom-subnav-links a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  border-radius: 999px;
  transition: all .2s;
}
.newsroom-subnav-links a:hover,
.newsroom-subnav-links a.active {
  color: #0b1f4b;
  background: rgba(11,31,75,.06);
}
.newsroom-subnav-cta {
  flex-shrink: 0;
}
.newsroom-subnav-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #0b1f4b;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s;
}
.newsroom-subnav-cta a:hover {
  background: #1a3a7a;
  color: #fff;
}

/* ----- Section shared ----- */
.newsroom-section {
  padding: 64px 0;
}
.newsroom-section.alt {
  background: #f7f8fa;
}
.newsroom-section .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f7693c;
  margin-bottom: 12px;
}
.newsroom-section .section-title {
  font-size: 28px;
  font-weight: 800;
  color: #0b1f4b;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.newsroom-section .section-deck {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 680px;
}

/* ----- Featured release ----- */
.featured-release {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
}
.featured-release::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,#f7693c,#c84d9d,#7d5bd1,#4588b0,#01a89e);
}
.featured-release .release-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.featured-release .release-date {
  font-size: 13px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.featured-release .release-tag {
  display: inline-block;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 999px;
  background: rgba(247,105,60,.1);
  color: #f7693c;
}
.featured-release h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0b1f4b;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -.3px;
}
.featured-release .release-deck {
  font-size: 16px;
  color: #444;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 720px;
}
.featured-release .release-keyfacts {
  background: #f7f8fa;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.featured-release .release-keyfacts h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0b1f4b;
  margin-bottom: 10px;
}
.featured-release .release-keyfacts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.featured-release .release-keyfacts li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
  line-height: 1.55;
}
.featured-release .release-keyfacts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f7693c;
}

/* ----- Stats row ----- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
}
.stats-row .stat-cell {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(0,0,0,.06);
}
.stats-row .stat-cell:last-child { border-right: none; }
.stats-row .stat-value {
  font-size: 36px;
  font-weight: 800;
  color: #0b1f4b;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.stats-row .stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ----- Fact sheet ----- */
.fact-sheet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.fact-sheet .fact-row {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.fact-sheet .fact-row:nth-last-child(-n+2) { border-bottom: none; }
.fact-sheet .fact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #999;
  margin-bottom: 2px;
}
.fact-sheet .fact-value {
  font-size: 15px;
  font-weight: 600;
  color: #0b1f4b;
}
.fact-sheet .fact-value a { color: #0b1f4b; text-decoration: underline; text-underline-offset: 2px; }

/* ----- Copy-ready blocks ----- */
.copy-block {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
}
.copy-block .copy-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f7693c;
  margin-bottom: 8px;
}
.copy-block p {
  font-size: 15px;
  color: #333;
  line-height: 1.65;
  margin-bottom: 0;
}
.copy-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  background: #f0f0f0;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
}
.copy-btn:hover { background: #e4e4e4; color: #333; }
.copy-btn.copied { background: #0b1f4b; color: #fff; border-color: #0b1f4b; }

/* ----- Press release cards ----- */
.release-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.release-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.release-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
}
.release-card .release-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.release-card .release-date {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.release-card .release-tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 999px;
}
.release-tag.tag-company { background: rgba(11,31,75,.08); color: #0b1f4b; }
.release-tag.tag-product { background: rgba(247,105,60,.1); color: #f7693c; }
.release-tag.tag-community { background: rgba(1,168,158,.1); color: #01a89e; }
.release-tag.tag-partnership { background: rgba(125,91,209,.1); color: #7d5bd1; }
.release-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0b1f4b;
  line-height: 1.4;
  margin-bottom: 10px;
}
.release-card .release-excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.release-card .release-link {
  font-size: 13px;
  font-weight: 700;
  color: #0b1f4b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.release-card .release-link:hover { color: #f7693c; }

/* ----- Category filter ----- */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.category-filter button {
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.category-filter button:hover { border-color: #0b1f4b; color: #0b1f4b; }
.category-filter button.active {
  background: #0b1f4b;
  color: #fff;
  border-color: #0b1f4b;
}

/* ----- Asset download grid ----- */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.asset-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  background: #fff;
}
.asset-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}
.asset-tile .asset-preview {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.asset-tile .asset-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.asset-tile .asset-preview.logo-preview {
  padding: 20px;
}
.asset-tile .asset-preview.logo-preview img {
  object-fit: contain;
  max-height: 44px;
  width: auto;
  height: auto;
}
.asset-tile .asset-preview.dark-bg {
  background: #0b1f4b;
}
.asset-tile .asset-info {
  padding: 12px 14px;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,.06);
}
.asset-tile .asset-name {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}
.asset-tile .asset-format {
  font-size: 11px;
  color: #999;
}
.asset-tile .download-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,31,75,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.asset-tile:hover .download-overlay { opacity: 1; }
.download-overlay i {
  font-size: 24px;
  color: #fff;
}

/* ----- Logo download grid ----- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}
.logo-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.logo-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.logo-tile.dark-variant {
  background: #0b1f4b;
}
.logo-tile .logo-img {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-tile .logo-img img { max-height: 32px; width: auto; }
.logo-tile .logo-meta {
  flex: 1;
}
.logo-tile .logo-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}
.logo-tile.dark-variant .logo-name { color: #fff; }
.logo-tile .logo-format {
  font-size: 12px;
  color: #999;
}
.logo-tile.dark-variant .logo-format { color: rgba(255,255,255,.6); }
.logo-tile .logo-dl {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
}
.logo-tile.dark-variant .logo-dl {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* ----- Download banner ----- */
.download-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 14px;
  background: linear-gradient(135deg,#0b1f4b,#1a3a7a);
  color: #fff;
  flex-wrap: wrap;
}
.download-banner h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.download-banner p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 0;
}
.download-banner .dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #f7693c;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s;
  flex-shrink: 0;
}
.download-banner .dl-btn:hover { background: #e55a2d; color: #fff; }

/* ----- Spokesperson / leadership ----- */
.spokesperson-card {
  display: flex;
  gap: 28px;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.04);
}
.spokesperson-card .sp-photo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  background: linear-gradient(135deg,rgba(11,31,75,.08),rgba(247,105,60,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #0b1f4b;
}
.spokesperson-card .sp-info { flex: 1; }
.spokesperson-card .sp-name {
  font-size: 20px;
  font-weight: 700;
  color: #0b1f4b;
  margin-bottom: 2px;
}
.spokesperson-card .sp-role {
  font-size: 14px;
  font-weight: 600;
  color: #f7693c;
  margin-bottom: 12px;
}
.spokesperson-card .sp-bio {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 14px;
}
.spokesperson-card .sp-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.spokesperson-card .sp-topics span {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  background: #f0f2f8;
  border-radius: 999px;
}

/* ----- Story angle cards ----- */
.angle-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.angle-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  border-left: 4px solid #f7693c;
  transition: transform .2s, box-shadow .2s;
}
.angle-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
}
.angle-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0b1f4b;
  margin-bottom: 8px;
}
.angle-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ----- Timeline ----- */
.newsroom-timeline { position: relative; padding-left: 40px; }
.newsroom-timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,#f7693c,#c84d9d,#7d5bd1,#4588b0,#01a89e);
}
.timeline-item { position: relative; margin-bottom: 24px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px; top: 5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #0b1f4b;
  border: 3px solid #f7693c;
  z-index: 1;
}
.timeline-item .t-year {
  font-weight: 800;
  font-size: 14px;
  color: #f7693c;
  letter-spacing: .5px;
  margin-bottom: 2px;
}
.timeline-item .t-text {
  font-size: 14px;
  color: #444;
  line-height: 1.55;
}

/* ----- Boilerplate block ----- */
.boilerplate-block {
  background: linear-gradient(135deg,#0b1f4b,#1a3a7a);
  border-radius: 16px;
  padding: 40px;
  color: #fff;
  position: relative;
}
.boilerplate-block h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.boilerplate-block p { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.65; }
.boilerplate-block .copy-btn {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.2);
  position: static;
  margin-top: 16px;
}
.boilerplate-block .copy-btn:hover { background: rgba(255,255,255,.25); }
.boilerplate-block .copy-btn.copied { background: #f7693c; border-color: #f7693c; color: #fff; }

/* ----- Source notes ----- */
.source-notes {
  padding: 20px 24px;
  background: #f7f8fa;
  border-radius: 10px;
  border-left: 3px solid rgba(0,0,0,.1);
  margin-top: 20px;
}
.source-notes h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 8px;
}
.source-notes p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ----- Press contact ----- */
.press-contact-bar {
  background: linear-gradient(135deg,#0b1f4b,#1a3a7a);
  border-radius: 16px;
  padding: 44px;
  color: #fff;
}
.press-contact-bar h2 { color: #fff; }
.press-contact-bar a { color: #f7693c; }
.press-contact-bar a:hover { color: #ff8c5a; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  margin-top: 28px;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  overflow: hidden;
}
.contact-grid .contact-cell {
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.contact-grid .contact-cell:last-child { border-right: none; }
.contact-grid .contact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}
.contact-grid .contact-value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.contact-grid .contact-value a { color: #f7693c; font-weight: 700; }

/* ----- Brand guidelines inline ----- */
.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.brand-swatch {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.06);
}
.brand-swatch-wide {
  width: 160px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}
.brand-detail {
  font-size: 14px;
  color: #333;
}
.brand-detail strong { color: #0b1f4b; }

/* ----- Quote block ----- */
.newsroom-quote {
  border-left: 4px solid #f7693c;
  padding: 20px 24px;
  background: #fff;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
  margin-bottom: 16px;
}
.newsroom-quote p {
  font-size: 16px;
  font-style: italic;
  color: #333;
  line-height: 1.65;
  margin-bottom: 6px;
}
.newsroom-quote .quote-attr {
  font-size: 13px;
  font-weight: 700;
  color: #0b1f4b;
  font-style: normal;
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stats-row .stat-cell:nth-child(2) { border-right: none; }
  .fact-sheet { grid-template-columns: 1fr; }
  .release-grid { grid-template-columns: 1fr; }
  .asset-grid { grid-template-columns: repeat(2,1fr); }
  .logo-grid { grid-template-columns: 1fr; }
  .angle-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid .contact-cell:nth-child(2) { border-right: none; }
  .spokesperson-card { flex-direction: column; gap: 20px; }
  .download-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 575px) {
  .newsroom-section { padding: 44px 0; }
  .stats-row .stat-value { font-size: 28px; }
  .featured-release { padding: 28px; }
  .featured-release h3 { font-size: 20px; }
  .asset-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .contact-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .press-contact-bar { padding: 28px; }
  .boilerplate-block { padding: 28px; }
  .newsroom-subnav-links a { padding: 6px 10px; font-size: 12px; }
}

/* ----- Skip link (a11y) ----- */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}
.skip-to-content:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 24px;
  background: #0b1f4b;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  z-index: 99999;
}
