/* Newsongbird brand-network layout. Scoped additions on top of style.css. */
.brand-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 20px 72px;
}

.brand-topology {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.brand-topology a {
  border: 1px solid rgba(102, 192, 244, .16);
  border-radius: 999px;
  color: #c8d7ea;
  display: inline-block;
  font-size: 13px;
  font-weight: 650;
  padding: 8px 13px;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.brand-topology a:hover,
.brand-topology a:focus-visible,
.brand-topology a[aria-current="page"] {
  border-color: rgba(102, 192, 244, .48);
  color: #fff;
  transform: translateY(-1px);
}

.brand-hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(102,192,244,.18), transparent 30%),
    linear-gradient(135deg, rgba(21,34,54,.96), rgba(9,15,25,.98));
  border: 1px solid rgba(102,192,244,.13);
  border-radius: 26px;
  box-shadow: 0 24px 72px rgba(2,6,12,.38);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  margin-top: 18px;
  padding: clamp(30px, 5vw, 58px);
}

.brand-kicker {
  color: #7cc7f5;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.brand-hero h1 {
  color: #fff;
  font-size: clamp(34px, 6vw, 62px);
  letter-spacing: -.045em;
  line-height: 1.02;
  margin: 0 0 16px;
}

.brand-hero > div > p,
.brand-lede {
  color: #b5c4d8;
  font-size: 17px;
  line-height: 1.72;
  margin: 0;
  max-width: 680px;
}

.brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.brand-button,
.brand-button-ghost {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 780;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.brand-button {
  background: linear-gradient(120deg, #55b7f7, #7b5bff);
  box-shadow: 0 14px 34px rgba(66,132,244,.24);
  color: white;
}

.brand-button:hover,
.brand-button:focus-visible { transform: translateY(-2px); }

.brand-button-ghost {
  border: 1px solid rgba(145,166,193,.34);
  color: #e4ecf7;
}

.brand-button-ghost:hover,
.brand-button-ghost:focus-visible {
  border-color: rgba(102,192,244,.65);
  color: #fff;
}

.brand-hero-card {
  border: 1px solid rgba(102,192,244,.12);
  border-radius: 22px;
  overflow: hidden;
}

.brand-hero-card article {
  background: rgba(10,17,28,.74);
  border-bottom: 1px solid rgba(102,192,244,.07);
  padding: 20px 22px;
}

.brand-hero-card article:last-child { border-bottom: 0; }

.brand-hero-card strong {
  color: #fff;
  display: block;
  font-size: 18px;
  margin-top: 4px;
}

.brand-hero-card p {
  color: #9badc4;
  font-size: 13px;
  line-height: 1.55;
  margin: 4px 0 0;
}

.brand-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.brand-card {
  background: linear-gradient(145deg, rgba(22,35,55,.94), rgba(10,17,28,.96));
  border: 1px solid rgba(102,192,244,.12);
  border-radius: 20px;
  color: #e9eef7;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 210px;
  padding: 24px;
  text-decoration: none;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.brand-card:hover,
.brand-card:focus-visible {
  border-color: rgba(102,192,244,.38);
  box-shadow: 0 22px 55px rgba(2,7,14,.32);
  transform: translateY(-4px);
}

.brand-card-icon {
  align-items: center;
  border: 1px solid rgba(102,192,244,.16);
  border-radius: 16px;
  display: flex;
  font-size: 26px;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.brand-card h2,
.brand-card h3 {
  color: #fff;
  font-size: 21px;
  letter-spacing: -.02em;
  margin: 0;
}

.brand-card p {
  color: #a6b7cd;
  flex: 1;
  font-size: 13.6px;
  line-height: 1.62;
  margin: 0;
}

.brand-card strong {
  color: #7cc7f5;
  font-size: 13px;
  letter-spacing: .04em;
}

.brand-section {
  margin-top: 56px;
}

.brand-section-header {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.brand-section-header h2 {
  color: #fff;
  font-size: clamp(25px, 3.5vw, 38px);
  letter-spacing: -.035em;
  margin: 0;
}

.brand-section-header p {
  color: #9dadc2;
  margin: 7px 0 0;
  max-width: 720px;
}

.brand-feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-feature {
  background: rgba(13,22,35,.82);
  border: 1px solid rgba(102,192,244,.10);
  border-radius: 20px;
  padding: 24px;
}

.brand-feature h3 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 9px;
}

.brand-feature p {
  color: #a7b8ce;
  font-size: 13.6px;
  line-height: 1.65;
  margin: 0;
}

.brand-number {
  color: #7cc7f5;
  display: block;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 12px;
}

.brand-link-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-link {
  background: rgba(11,19,31,.82);
  border: 1px solid rgba(102,192,244,.10);
  border-radius: 14px;
  color: #dbe5f1;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 17px 18px;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.brand-link:hover,
.brand-link:focus-visible {
  border-color: rgba(102,192,244,.38);
  color: #fff;
  transform: translateY(-2px);
}

.brand-link span:last-child { color: #6f819a; }

.brand-footer {
  border-top: 1px solid rgba(102,192,244,.09);
  color: #8fa0b6;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  margin-top: 66px;
  padding: 28px 0 0;
}

.brand-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.brand-footer a {
  color: #a7b8ce;
  text-decoration: none;
}

.brand-footer a:hover,
.brand-footer a:focus-visible { color: #7cc7f5; }

.brand-legal {
  color: #6f819a;
  width: 100%;
}

@media (max-width: 980px) {
  .brand-hero,
  .brand-grid,
  .brand-feature-grid,
  .brand-link-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .brand-shell { padding: 0 16px 56px; }
  .brand-hero,
  .brand-grid,
  .brand-feature-grid,
  .brand-link-list { grid-template-columns: 1fr; }
  .brand-hero { padding: 26px 22px; }
  .brand-actions .brand-button,
  .brand-actions .brand-button-ghost { width: 100%; }
}
