:root {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 14%, rgba(229, 9, 20, 0.08), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.03), transparent 22%),
    radial-gradient(circle at 12% 88%, rgba(229, 9, 20, 0.04), transparent 30%),
    linear-gradient(180deg, #08090c 0%, #0c0d12 48%, #09090d 100%);
  color: #f4f4f5;
  line-height: 1.6;
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 20px 72px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.14);
  color: #ffb6bc;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.77rem;
  font-weight: 700;
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #e50914, #c40812);
  color: #fff;
  box-shadow: 0 10px 24px rgba(229, 9, 20, 0.26);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-btn:hover,
.hero-btn:focus-visible,
.related-link:hover,
.related-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-panel {
  padding: 20px;
  border-radius: 22px;
  background: rgba(10, 10, 14, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.geo-flag {
  display: block;
  width: 120px;
  max-width: 100%;
  height: auto;
  margin: 0 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.pricing-highlights {
  display: grid;
  gap: 12px;
}

.hero-panel h2 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffb6bc;
}

.hero-panel ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-panel li + li {
  margin-top: 8px;
}

.panel-callout {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.panel-callout a {
  color: #ffb6bc;
  font-weight: 700;
  text-decoration: none;
}

.panel-callout a:hover,
.panel-callout a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.fact-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 4px;
}

.fact-card strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb6bc;
}

.fact-card span {
  font-size: 1rem;
  color: #fff;
}

.section {
  margin-top: 28px;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 16px;
  align-items: start;
}

.pricing-side {
  display: grid;
  gap: 16px;
}

.content-card a:not(.hero-btn),
.contact-cta-card a:not(.hero-btn) {
  color: #ffb6bc;
  font-weight: 700;
  text-decoration: none;
}

.content-card a:not(.hero-btn):hover,
.content-card a:not(.hero-btn):focus-visible,
.contact-cta-card a:not(.hero-btn):hover,
.contact-cta-card a:not(.hero-btn):focus-visible {
  text-decoration: underline;
  outline: none;
}

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  -webkit-overflow-scrolling: touch;
}

.snippet-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  -webkit-overflow-scrolling: touch;
}

.snippet-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  margin-top: 12px;
}

.snippet-table caption {
  caption-side: top;
  text-align: left;
  padding: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.snippet-table th,
.snippet-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
  color: rgba(255, 255, 255, 0.9);
}

.snippet-table thead th {
  color: #ffb6bc;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
}

.snippet-table tbody th {
  color: #fff;
  font-weight: 700;
}

.snippet-table tbody tr:last-child th,
.snippet-table tbody tr:last-child td {
  border-bottom: 0;
}

.snippet-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: snippet-step;
  display: grid;
  gap: 12px;
}

.snippet-steps li {
  position: relative;
  padding: 16px 18px 16px 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.snippet-steps li::before {
  counter-increment: snippet-step;
  content: counter(snippet-step);
  position: absolute;
  left: 18px;
  top: 16px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.18);
  color: #ffb6bc;
  font-weight: 800;
  font-size: 0.84rem;
}

.snippet-steps strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.snippet-steps span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  display: none;
  position: absolute;
  inset: 0;
  gap: 18px;
  padding: 20px;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: linear-gradient(145deg, rgba(16, 16, 18, 0.98), rgba(8, 8, 10, 0.98));
}

.video-fallback-thumb {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-fallback-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.video-fallback-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.video-fallback-copy h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.15;
}

.video-fallback-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.6;
}

.video-fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.file-preview .video-frame iframe {
  display: none !important;
}

.file-preview .video-frame .video-fallback {
  display: grid;
}

.video-page .news-v2-hero {
  grid-template-columns: 1fr;
  gap: 28px;
}

.video-page .news-v2-rail {
  order: -1;
  display: grid;
  gap: 20px;
}

.video-page .news-v2-copy,
.video-page .news-v2-rail {
  width: 100%;
}

.video-page .content-grid {
  gap: 24px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.video-page .news-signal-grid {
  gap: 32px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.video-page .news-feature-grid {
  gap: 32px;
}

.video-page .news-side-column {
  gap: 26px;
}

.video-page .news-source-links {
  gap: 16px;
}

.video-led-page .video-led-hero {
  display: grid;
  gap: 26px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.video-led-page .video-led-media {
  width: 100%;
}

.video-led-page .video-led-copy {
  display: grid;
  gap: 14px;
}

.video-led-page .video-led-copy .news-meta {
  margin-top: 2px;
}

.video-led-page .video-led-hero .hero-actions {
  margin-top: 8px;
}

.video-led-page .video-led-hero .news-source-bar {
  margin-top: 4px;
}

.video-led-page .video-led-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.video-led-page .news-feature-grid,
.video-led-page .news-side-column,
.video-led-page .content-grid {
  gap: 32px;
}

.video-led-page .news-signal-grid {
  gap: 32px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.video-led-page .content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.video-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  -webkit-overflow-scrolling: touch;
}

.video-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
}

.video-table thead th {
  text-align: left;
  padding: 14px 16px;
  color: #ffb6bc;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
}

.video-table tbody td {
  padding: 15px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  vertical-align: top;
}

.content-card,
.faq-panel,
.related-panel {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.content-card h2,
.faq-panel h2,
.related-panel h2 {
  margin-top: 0;
}

.content-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
}

.content-card a:not(.hero-btn) {
  color: #ffb6bc;
  font-weight: 700;
  text-decoration: none;
}

.content-card a:not(.hero-btn):hover,
.content-card a:not(.hero-btn):focus-visible {
  text-decoration: underline;
  outline: none;
}

.section-list {
  margin: 0;
  padding-left: 18px;
}

.section-list li + li {
  margin-top: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 16px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.22);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 12px;
  table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  background: rgba(255, 255, 255, 0.05);
  color: #ffb6bc;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1) {
  width: 24%;
  white-space: nowrap;
}

.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
  width: 16%;
  white-space: nowrap;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
  width: 60%;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
}

.foot {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 20px;
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
}

.foot .logo {
  margin-bottom: 10px;
}

.foot small {
  color: rgba(255, 255, 255, 0.72);
}

.foot .link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.foot .link:hover,
.foot .link:focus-visible {
  color: #fff;
  outline: none;
}

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

  .pricing-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .pricing-table {
    min-width: 520px;
  }

  .pricing-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    -webkit-overflow-scrolling: touch;
  }
}

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

/* Release 3 polish overrides */
body {
  background:
    radial-gradient(circle at 18% 12%, rgba(229, 9, 20, 0.055) 0%, rgba(229, 9, 20, 0.025) 18%, transparent 34%),
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.02) 0%, transparent 20%),
    radial-gradient(circle at 14% 88%, rgba(0, 224, 255, 0.02) 0%, transparent 28%),
    linear-gradient(180deg, #07080b 0%, #090b10 46%, #08090c 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.04) 0%, transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.018) 0%, transparent 22%),
    radial-gradient(circle at 14% 84%, rgba(0, 224, 255, 0.018) 0%, transparent 30%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.92;
}

.pricing-layout {
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.85fr);
  gap: 18px;
}

.pricing-breakdown-card {
  display: grid;
  gap: 12px;
}

.pricing-breakdown-card h2 {
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  line-height: 1.08;
}

.pricing-card-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  max-width: 68ch;
}

.pricing-table-wrap {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pricing-table {
  table-layout: auto;
}

.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1) {
  width: 20%;
  white-space: nowrap;
}

.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
  width: 16%;
  white-space: nowrap;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
  width: auto;
}

.pricing-table td:nth-child(3) {
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-table tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.012);
}

.pricing-table tr:hover td {
  background: rgba(229, 9, 20, 0.045);
}

.pricing-table tr.featured-row td {
  background: rgba(229, 9, 20, 0.09);
}

.pricing-table tr.featured-row td:first-child {
  box-shadow: inset 3px 0 0 rgba(229, 9, 20, 0.9);
}

.small-cta {
  margin-top: 4px;
  width: fit-content;
}

.contact-cta-section {
  margin-top: 28px;
}

.contact-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(229, 9, 20, 0.22);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.contact-cta-card h2 {
  margin: 10px 0 10px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.08;
}

.contact-cta-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .contact-cta-card {
    grid-template-columns: 1fr;
  }

  .contact-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .pricing-table {
    min-width: 560px;
  }
}

.news-v2-shell {
  display: grid;
  gap: 24px;
}

.news-v2-shell > .news-v2-hero,
.news-v2-shell > .video-led-hero,
.news-v2-shell > .news-signal-grid,
.news-v2-shell > .news-feature-grid,
.news-v2-shell > .news-source-panel,
.news-v2-shell > .faq-panel,
.news-v2-shell > .related-panel,
.news-v2-shell > .section {
  margin-top: 0;
}

.news-v2-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 20px;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.14), rgba(255, 255, 255, 0.04) 55%, rgba(0, 224, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.36);
}

.news-v2-copy {
  display: grid;
  gap: 12px;
}

.news-v2-copy .eyebrow {
  width: fit-content;
}

.news-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.news-source-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.news-source-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.88rem;
}

.news-v2-rail {
  padding: 20px;
  border-radius: 24px;
  background: rgba(10, 10, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-v2-rail h2 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffb6bc;
}

.news-v2-rail ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.news-v2-rail li + li {
  margin-top: 8px;
}

.news-v2-rail .panel-callout {
  margin-top: 14px;
}

.news-signal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.news-signal-card {
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.news-signal-card strong {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb6bc;
}

.news-signal-card span {
  font-size: 1rem;
  color: #fff;
  line-height: 1.35;
}

.news-signal-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.news-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
}

.news-feature-card,
.news-mini-card,
.news-source-panel {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.news-feature-card {
  position: relative;
  overflow: hidden;
}

.news-feature-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(229, 9, 20, 0.92), rgba(255, 255, 255, 0.2), rgba(0, 224, 255, 0.5));
}

.news-feature-card .section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.14);
  color: #ffb6bc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 700;
}

.news-feature-card h2 {
  margin: 12px 0 14px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.08;
}

.news-feature-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
}

.news-bullet-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.news-bullet-list li + li {
  margin-top: 8px;
}

.news-cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.news-side-column {
  display: grid;
  gap: 24px;
}

.news-mini-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffb6bc;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
}

.news-mini-card h3 {
  margin: 8px 0 10px;
  font-size: 1.08rem;
  line-height: 1.15;
}

.news-mini-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.news-source-links {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.news-source-link {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.news-source-link span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.news-source-link:hover,
.news-source-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(229, 9, 20, 0.07);
  border-color: rgba(229, 9, 20, 0.18);
  outline: none;
}

.video-page .news-feature-card,
.video-page .news-mini-card,
.video-page .news-source-panel,
.video-led-page .news-feature-card,
.video-led-page .news-mini-card,
.video-led-page .news-source-panel {
  padding: 24px;
}

.video-page .news-v2-shell,
.video-led-page .news-v2-shell {
  gap: 28px;
}

.video-page .content-grid,
.video-led-page .content-grid {
  gap: 24px;
}

.video-page .news-signal-grid,
.video-led-page .news-signal-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px;
}

.video-page .news-signal-card,
.video-led-page .news-signal-card {
  align-content: start;
}

.video-page .news-feature-grid,
.video-led-page .news-feature-grid {
  gap: 32px;
}

.video-page .news-side-column,
.video-led-page .news-side-column {
  gap: 26px;
}

.video-page .news-source-links,
.video-led-page .news-source-links {
  gap: 16px;
}

@media (max-width: 900px) {
  .news-v2-hero,
  .news-feature-grid {
    grid-template-columns: 1fr;
  }

  .news-v2-hero {
    padding: 24px;
  }

  .video-led-page .video-led-hero {
    padding: 24px;
  }

  .video-fallback {
    grid-template-columns: 1fr;
  }

  .video-fallback-thumb {
    max-height: 220px;
  }

  .video-page .news-signal-grid,
  .video-led-page .news-signal-grid {
    grid-template-columns: 1fr;
  }

  .video-page .content-grid,
  .video-led-page .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .news-feature-card,
  .news-mini-card,
  .news-source-panel {
    padding: 18px;
  }
}

.opinion-hub-shell,
.opinion-shell {
  display: grid;
  gap: 28px;
}

.opinion-hub-hero,
.opinion-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 12% 18%, rgba(229, 9, 20, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.opinion-hub-copy,
.opinion-copy {
  display: grid;
  align-content: start;
}

.opinion-meta {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.opinion-hub-rail,
.opinion-rail {
  padding: 22px;
  border-radius: 24px;
  background: rgba(10, 10, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.opinion-quote {
  padding: 16px 18px;
  margin: 0 0 16px;
  border-left: 3px solid #e50914;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.12), rgba(255, 255, 255, 0.03));
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.5;
}

.opinion-hub-rail h2,
.opinion-rail h2 {
  margin: 0 0 12px;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffb6bc;
}

.opinion-hub-rail ul,
.opinion-rail ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.opinion-hub-rail li + li,
.opinion-rail li + li {
  margin-top: 8px;
}

.opinion-grid {
  gap: 16px;
}

.opinion-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(229, 9, 20, 0.04));
  border-color: rgba(255, 255, 255, 0.08);
}

.opinion-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(229, 9, 20, 0.95), rgba(255, 255, 255, 0.2), rgba(0, 224, 255, 0.35));
}

.opinion-card h2 {
  margin-top: 0;
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.opinion-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
}

.opinion-card-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffb6bc;
  font-size: 0.88rem;
  font-weight: 700;
}

.opinion-link-card:hover,
.opinion-link-card:focus-visible {
  transform: translateY(-1px);
  outline: none;
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.1), rgba(255, 255, 255, 0.04));
}

.opinion-section h2 {
  margin-top: 0;
}

.opinion-source-panel {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.opinion-source-panel .section-lead {
  margin-bottom: 18px;
}

.opinion-hub-page .related-panel,
.opinion-page .related-panel,
.opinion-hub-page .faq-panel,
.opinion-page .faq-panel {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 900px) {
  .opinion-hub-hero,
  .opinion-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .opinion-hub-hero,
  .opinion-hero {
    padding: 24px;
  }

  .opinion-source-panel {
    padding: 18px;
  }
}

/* Pricing table fix: give the comparison card the full width it needs */
.pricing-layout {
  grid-template-columns: 1fr;
}

.pricing-breakdown-card {
  width: 100%;
}

.pricing-table {
  table-layout: fixed;
}

.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1) {
  width: 18%;
}

.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
  width: 14%;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
  width: 68%;
}

.pricing-table td:nth-child(3) {
  overflow-wrap: anywhere;
}

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

@media (max-width: 980px) {
  .pricing-side {
    grid-template-columns: 1fr;
  }
}

.about-page .hero {
  align-items: stretch;
}

.about-page .about-hero > div {
  display: grid;
  gap: 18px;
  align-content: start;
}

.about-page .hero-panel {
  display: grid;
  gap: 14px;
}

.about-quote {
  margin: 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(229, 9, 20, 0.22);
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.55;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 16px;
}

.about-step {
  position: relative;
  overflow: hidden;
}

.about-step::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(229, 9, 20, 0.96), rgba(255, 255, 255, 0.2));
}

.about-step .step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(229, 9, 20, 0.14);
  color: #ffb6bc;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.about-principle h3 {
  margin: 0 0 10px;
  font-size: 1.04rem;
}

.about-principle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.about-trust-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-trust-item strong {
  display: block;
  margin-bottom: 8px;
  color: #ffb6bc;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.about-trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-story-card {
  display: grid;
  gap: 10px;
}

.about-story-card-wide {
  grid-column: 1 / -1;
}

.about-story-card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.about-story-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.story-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  letter-spacing: 0.06em;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}

.story-chip-text {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

.story-flag {
  display: block;
  width: 38px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
}

footer .foot > div:last-child {
  flex-wrap: wrap;
  row-gap: 8px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .about-story-layout {
    grid-template-columns: 1fr;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  footer .foot > div:last-child {
    justify-content: flex-start;
  }
}
