/* ── COMMON ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
}
.slabel {
  font-family: var(--fm);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}
.slabel::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--teal);
}
.stitle {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.stitle em {
  font-style: italic;
  color: var(--teal);
}
.sbody {
  font-size: 1.05rem;
  color: rgba(245, 244, 240, 0.68);
  max-width: 62ch;
  line-height: 1.75;
  font-weight: 300;
}
.bp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--black);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.bp:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}
.bg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid rgba(245, 244, 240, 0.18);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.bg:hover {
  border-color: var(--teal);
  background: var(--teal-glow);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.f1 {
  animation: fadeUp 0.7s ease both;
}
.f2 {
  animation: fadeUp 0.7s ease 0.12s both;
}
.f3 {
  animation: fadeUp 0.7s ease 0.24s both;
}
.f4 {
  animation: fadeUp 0.7s ease 0.36s both;
}

/* ── PAGE HERO ── */
#news-hero {
  padding: 9rem 4vw 5rem;
  background: radial-gradient(
      ellipse 60% 40% at 30% 60%,
      rgba(37, 99, 235, 0.1) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, #0a0a0a 0%, #0d1117 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.news-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(37, 99, 235, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 80% 100% at 50% 0%,
    black 30%,
    transparent 100%
  );
  pointer-events: none;
}
#news-hero .container {
  position: relative;
  z-index: 1;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero-meta .stat {
  font-family: var(--fm);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta .stat strong {
  color: var(--white);
  display: block;
  font-family: var(--fd);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
}

/* ── FILTER BAR ── */
.filter-bar {
  padding: 1.5rem 4vw;
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 90;
}
.filter-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.filter-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ftag {
  font-family: var(--fm);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  background: transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  font-weight: 500;
}
.ftag:hover,
.ftag.active {
  color: var(--teal);
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.07);
}
.result-count {
  font-family: var(--fm);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ── FEATURED ARTICLE ── */
#featured {
  padding: 5rem 4vw 0;
  background: var(--ink);
}
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(37, 99, 235, 0.04);
  transition: border-color 0.2s;
  cursor: pointer;
}
.featured-card:hover {
  border-color: rgba(37, 99, 235, 0.45);
}
@media (max-width: 860px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
}
.featured-img {
  background: linear-gradient(135deg, var(--slate) 0%, #0f1922 100%);
  min-height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-img .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-size: cover;
}
.featured-img svg {
  opacity: 0.15;
}
.featured-img .img-label {
  font-family: var(--fm);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(37, 99, 235, 0.6);
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
}
.featured-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--fm);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--teal);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  font-weight: 600;
}
.featured-body {
  padding: 3rem;
}
.featured-body .article-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.article-date {
  font-family: var(--fm);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.article-read {
  font-family: var(--fm);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.article-tag {
  font-family: var(--fm);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
  font-weight: 500;
}
.tag-coverage {
  background: rgba(37, 99, 235, 0.12);
  color: var(--teal);
  border: 1px solid rgba(37, 99, 235, 0.25);
}
.tag-launch {
  background: rgba(212, 136, 42, 0.12);
  color: var(--amber);
  border: 1px solid rgba(212, 136, 42, 0.3);
}
.tag-interview {
  background: rgba(224, 82, 82, 0.1);
  color: var(--red);
  border: 1px solid rgba(224, 82, 82, 0.25);
}
.tag-deployment {
  background: rgba(37, 99, 235, 0.12);
  color: var(--teal);
  border: 1px solid rgba(37, 99, 235, 0.25);
}
.featured-body h2 {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.featured-body h2 em {
  font-style: italic;
  color: var(--teal);
}
.featured-body .excerpt {
  font-size: 0.95rem;
  color: rgba(245, 244, 240, 0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.read-link {
  font-family: var(--fm);
  font-size: 0.72rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s, color 0.2s;
  font-weight: 500;
}
.read-link:hover {
  gap: 0.85rem;
  color: var(--white);
}

/* ── NEWS GRID ── */
#news-grid {
  padding: 4rem 4vw 6rem;
  background: var(--ink);
}
.grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.grid-header h3 {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 400;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: pointer;
}
.news-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-3px);
}
.card-thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-thumb::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #161c26ed 0%, #0f19222e 100%);
}
.card-thumb svg {
  opacity: 0.1;
}
.card-thumb .card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--fm);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border-radius: 2px;
  font-weight: 600;
}
.card-thumb .press-chip {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--fm);
  font-size: 0.6rem;
  color: rgba(245, 244, 240, 0.4);
  letter-spacing: 0.06em;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.card-body h3 {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.card-body p {
  font-size: 0.82rem;
  color: rgba(245, 244, 240, 0.55);
  line-height: 1.65;
  flex: 1;
}
.card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-footer .source {
  font-family: var(--fm);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.card-footer .arrow-link {
  font-family: var(--fm);
  font-size: 0.65rem;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s, color 0.2s;
}
.card-footer .arrow-link:hover {
  gap: 0.6rem;
  color: var(--white);
}

/* ── TICKER / MARQUEE ── */
.press-ticker {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
}
.press-ticker::before,
.press-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 2;
  pointer-events: none;
}
.press-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}
.press-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}
.ticker-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-item {
  font-family: var(--fm);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.35);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.ticker-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── PRESS CITATIONS ── */
#press {
  padding: 6rem 4vw;
  background: var(--black);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.press-item {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s;
}
.press-item:hover {
  border-color: rgba(37, 99, 235, 0.25);
}
.press-outlet {
  font-family: var(--fm);
  font-size: 0.65rem;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.press-item blockquote {
  font-size: 0.92rem;
  color: rgba(245, 244, 240, 0.65);
  line-height: 1.65;
  font-style: italic;
}
.press-item .press-date {
  font-family: var(--fm);
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 1rem;
  letter-spacing: 0.06em;
}

/* ── CTA STRIP ── */
#cta-strip {
  padding: 6rem 4vw;
  background: linear-gradient(
    135deg,
    #0d1117 0%,
    rgba(37, 99, 235, 0.1) 50%,
    #0d1117 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(37, 99, 235, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
#cta-strip .container {
  position: relative;
  z-index: 1;
}
.cta-acts {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .filter-bar {
    position: static;
  }
  .hero-meta {
    gap: 1.5rem;
  }
  .featured-body {
    padding: 2rem;
  }
}
@media (max-width: 560px) {
  .filter-tags {
    gap: 0.35rem;
  }
  .ftag {
    font-size: 0.6rem;
    padding: 0.28rem 0.65rem;
  }
}
