:root {
  color-scheme: dark;
  --bg: #070806;
  --panel: #11140f;
  --panel-2: #171b14;
  --text: #f7f8f2;
  --muted: #aeb5a8;
  --line: #2c3328;
  --red: #f10e16;
  --accent: #76ff03;
  --accent-strong: #54e600;
  --accent-soft: rgba(118, 255, 3, .12);
  --cyan: var(--accent);
  --green: var(--accent);
  --amber: #f0c75e;
  --max: 1200px;
}

@page {
  size: A4 portrait;
  margin: 14mm;
}

@media print {
  body.printing-guide-checklist {
    min-width: 0;
    background: #fff !important;
    color: #111 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body.printing-guide-checklist .site-header,
  body.printing-guide-checklist .site-footer {
    display: none !important;
  }

  body.printing-guide-checklist .legal-page {
    display: block !important;
    padding: 0 !important;
  }

  body.printing-guide-checklist .article-content {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
  }

  body.printing-guide-checklist .article-content > * {
    display: none !important;
  }

  body.printing-guide-checklist .article-content > .guide-quick-tool {
    display: grid !important;
  }

  body.printing-guide-checklist .guide-quick-tool {
    gap: 18px;
    margin: 0;
    border: 2px solid #151715;
    border-top: 8px solid #76ff03;
    border-radius: 0;
    padding: 18px 20px 20px;
    background: #fff !important;
    color: #111 !important;
    box-shadow: none;
    break-inside: avoid;
  }

  body.printing-guide-checklist .guide-print-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #aeb4aa;
    padding-bottom: 14px;
  }

  body.printing-guide-checklist .guide-print-brand img {
    width: 154px;
    height: 54px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: #080a08;
    padding: 0;
    object-fit: contain;
    object-position: center;
  }

  body.printing-guide-checklist .guide-print-brand div {
    text-align: right;
  }

  body.printing-guide-checklist .guide-print-brand span {
    display: block;
    color: #485047;
    font-size: 9pt;
    font-weight: 800;
    text-transform: uppercase;
  }

  body.printing-guide-checklist .guide-print-brand strong {
    display: block;
    max-width: 130mm;
    margin-top: 4px;
    color: #111;
    font-size: 16pt;
    line-height: 1.1;
  }

  body.printing-guide-checklist .guide-quick-tool-header {
    display: block;
  }

  body.printing-guide-checklist .guide-quick-tool-header .eyebrow {
    color: #317500 !important;
  }

  body.printing-guide-checklist .guide-quick-tool-header h2 {
    margin-top: 3px;
    color: #111;
    font-size: 22pt;
  }

  body.printing-guide-checklist .guide-print-button {
    display: none !important;
  }

  body.printing-guide-checklist .guide-facts {
    grid-template-columns: repeat(3, 1fr);
    border-color: #aeb4aa;
  }

  body.printing-guide-checklist .guide-facts div {
    border-color: #aeb4aa;
    padding: 10px 12px;
  }

  body.printing-guide-checklist .guide-facts span {
    color: #317500;
    font-size: 8pt;
  }

  body.printing-guide-checklist .guide-facts strong {
    color: #111;
    font-size: 10pt;
  }

  body.printing-guide-checklist .guide-quick-checklist {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid #aeb4aa;
  }

  body.printing-guide-checklist .guide-quick-checklist label {
    min-height: 13mm;
    align-items: center;
    border-bottom: 1px solid #c8ccc5;
    padding: 8px 2px;
    color: #111;
    font-size: 10.5pt;
    line-height: 1.35;
    break-inside: avoid;
  }

  body.printing-guide-checklist .guide-quick-checklist input {
    flex-basis: 17px;
    width: 17px;
    height: 17px;
    accent-color: #317500;
  }

  body.printing-guide-checklist .guide-print-notes {
    display: grid;
    gap: 9mm;
    margin-top: 2mm;
    color: #485047;
    font-size: 9pt;
  }

  body.printing-guide-checklist .guide-print-notes span {
    display: block;
    border-bottom: 1px solid #aeb4aa;
    padding-bottom: 2mm;
  }
}

[hidden] {
  display: none !important;
}

body[data-page="admin"] {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(118, 255, 3, .035), transparent 260px),
    var(--bg);
}

.admin-header {
  justify-content: space-between;
}

.admin-back-link {
  min-height: 42px;
}

.admin-page {
  width: min(1120px, calc(100% - 36px));
  min-height: calc(100vh - 110px);
  margin: 0 auto;
  padding: 72px 0 120px;
}

.admin-login {
  width: min(100%, 560px);
  margin: 8vh auto 0;
  padding: 38px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 6px;
  background: var(--panel);
}

.admin-login h1,
.admin-editor-heading h2 {
  margin: 8px 0 24px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.admin-login label,
.admin-product-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-login-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.admin-login input,
.admin-product-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: 0;
  background: #0c0e0c;
  color: var(--text);
  font: inherit;
}

.admin-login input {
  padding: 0 14px;
}

.admin-login input:focus,
.admin-product-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.admin-editor-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.admin-editor-heading h2 {
  margin-bottom: 0;
}

.admin-product-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.admin-product-row {
  display: grid;
  grid-template-columns: 112px minmax(190px, .7fr) minmax(300px, 1.3fr);
  align-items: center;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.admin-product-row img {
  width: 112px;
  height: 84px;
  border: 1px solid var(--line);
  border-radius: 4px;
  object-fit: cover;
}

.admin-product-copy span {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-product-copy h2 {
  margin: 7px 0 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.admin-product-field > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-product-field input {
  padding: 0 12px;
  border-radius: 4px 0 0 4px;
}

.admin-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 4px 4px 0;
  color: var(--text);
  font-size: .82rem;
  font-weight: 800;
}

.admin-open-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.admin-save-bar {
  position: sticky;
  bottom: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-height: 78px;
  margin-top: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  background: rgba(5, 7, 5, .94);
  backdrop-filter: blur(14px);
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.admin-save-bar .form-status {
  margin: 0 auto 0 0;
}

.form-status[data-state="saved"] {
  color: var(--accent);
}

.form-status[data-state="pending"] {
  color: #f6d35d;
}

.form-status[data-state="error"] {
  color: #ff8585;
}

@media (max-width: 760px) {
  .admin-header {
    min-height: 92px;
  }

  .admin-header .brand img {
    width: 128px;
  }

  .admin-back-link {
    padding-inline: 12px;
    font-size: .76rem;
  }

  .admin-page {
    width: min(100% - 28px, 1120px);
    padding-top: 42px;
  }

  .admin-login {
    margin-top: 2vh;
    padding: 26px 20px;
  }

  .admin-login-row {
    grid-template-columns: 1fr;
  }

  .admin-editor-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-product-row {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
  }

  .admin-product-row img {
    width: 76px;
    height: 62px;
  }

  .admin-product-field {
    grid-column: 1 / -1;
  }

  .admin-product-field > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .admin-product-field input,
  .admin-open-link {
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .admin-open-link {
    min-height: 40px;
  }

  .admin-save-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 18px;
  }

  .admin-save-bar .form-status {
    margin: 0;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(184px, 1fr) auto minmax(184px, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(7, 8, 6, .9);
  border-bottom: 1px solid rgba(118, 255, 3, .22);
  backdrop-filter: blur(20px);
}

.brand {
  justify-self: start;
}

.brand img {
  display: block;
  width: 184px;
  height: 54px;
  object-fit: contain;
  object-position: center;
}

.site-footer img {
  display: block;
  width: 178px;
  height: 52px;
  object-fit: contain;
  object-position: center;
}

.brand,
.header-actions {
  flex: 0 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(10px, 1.4vw, 20px);
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 30px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 820;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.language-switch a.active {
  background: var(--accent);
  color: #080a06;
  box-shadow: 0 8px 22px rgba(118, 255, 3, .18);
}

.language-switch a:hover {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.top-nav a:hover,
.nav-action:hover {
  color: var(--text);
}

.top-nav a {
  position: relative;
  padding-block: 10px;
}

.top-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.top-nav a:hover::after,
.top-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-action,
.primary-button,
.secondary-button,
.product-link,
.section-link,
.signup-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 760;
}

.nav-action,
.primary-button,
.signup-form button {
  background: var(--accent);
  color: #090b07;
  transition: background .18s ease, transform .18s ease;
}

.nav-action:hover,
.primary-button:hover,
.signup-form button:hover {
  background: var(--accent-strong);
  color: #050604;
  transform: translateY(-1px);
}

.secondary-button,
.product-link,
.section-link {
  border: 1px solid rgba(255, 255, 255, .24);
  color: var(--text);
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.secondary-button:hover,
.product-link:hover,
.section-link:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: min(840px, calc(100svh - 18px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(118, 255, 3, .18);
}

.page-hero {
  padding-top: 78px;
  background:
    linear-gradient(90deg, rgba(7, 8, 6, .96), rgba(7, 8, 6, .58)),
    url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1800&q=80") center / cover;
  border-bottom: 1px solid var(--line);
}

.page-hero .section-shell {
  padding: 112px 0 84px;
}

body[data-page="news"] .page-hero .section-shell {
  padding: 88px 0 54px;
}

body[data-page="news"] .page-hero {
  background:
    linear-gradient(90deg, rgba(7, 8, 6, .97), rgba(7, 8, 6, .72) 48%, rgba(7, 8, 6, .18)),
    url("assets/generated/congress-av-editorial.webp") center / cover;
}

.page-hero h1 {
  font-size: clamp(3.4rem, 9vw, 7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #e2e4e8;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.tech-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, .96), rgba(7, 7, 7, .56), rgba(7, 7, 7, .2)),
    url("assets/generated/hero-tech-workbench.webp") center right / cover;
}

.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slides {
  overflow: hidden;
}

.hero-slide {
  background-position: 62% center;
  background-size: cover;
  filter: saturate(.88) contrast(1.06);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.01);
}

.hero-slide-live {
  background-image: url("assets/generated/hero-live-events.webp");
}

.hero-slide-broadcast {
  background-image: url("assets/generated/broadcast-control-editorial.webp");
}

.hero-slide-sound {
  background-image: url("assets/generated/live-sound-editorial.webp");
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 4, .98) 0%, rgba(5, 6, 4, .8) 42%, rgba(5, 6, 4, .18) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(7, 8, 6, .12) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 142px 0 82px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(4.8rem, 14vw, 10.5rem);
  line-height: .8;
}

.hero h1 {
  max-width: 940px;
  font-size: 4.35rem;
  line-height: .96;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.15rem, 4.5vw, 4.25rem);
  line-height: .98;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #e2e4e8;
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  max-width: 820px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(118, 255, 3, .28);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  color: #e8ebef;
  font-size: .84rem;
  font-weight: 760;
}

.hero-proof span::before {
  width: 7px;
  height: 7px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(118, 255, 3, .72);
  content: "";
}

.hero-carousel-controls {
  position: absolute;
  right: max(18px, calc((100% - var(--max)) / 2));
  bottom: 38px;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(5, 6, 4, .72);
  backdrop-filter: blur(14px);
}

.hero-carousel-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .72rem;
  font-weight: 850;
  cursor: pointer;
}

.hero-carousel-controls button:hover {
  border-color: rgba(118, 255, 3, .44);
  color: var(--text);
}

.hero-carousel-toggle {
  position: relative;
}

.hero-carousel-toggle span::before,
.hero-carousel-toggle span::after {
  position: absolute;
  top: 10px;
  width: 3px;
  height: 13px;
  background: currentColor;
  content: "";
}

.hero-carousel-toggle span::before {
  left: 12px;
}

.hero-carousel-toggle span::after {
  right: 12px;
}

.hero-carousel-toggle.is-paused span::before {
  top: 9px;
  left: 13px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  background: transparent;
}

.hero-carousel-toggle.is-paused span::after {
  display: none;
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.section-heading-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.section-heading-row > div {
  display: grid;
  gap: 14px;
}

.section-heading-row .section-link {
  margin-bottom: 2px;
}

.section-heading p,
.split-section > p,
.newsletter p,
.lead-story p,
.story-card p,
.route-card p,
.editorial-grid p,
.editorial-grid li,
.trend-card p,
.product-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.audience-routes {
  padding-top: 72px;
  padding-bottom: 72px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.route-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.route-card:hover {
  border-color: rgba(118, 255, 3, .58);
  background: var(--panel-2);
  transform: translateY(-2px);
}

.route-card span,
.editorial-mark {
  width: fit-content;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.route-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.audience-profiles {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.profile-grid article {
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    #0d1014;
}

.profile-grid span {
  color: var(--amber);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.profile-grid p {
  color: var(--muted);
  line-height: 1.62;
}

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

.home-news-block {
  padding-top: 88px;
}

.featured-news {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 18px;
}

.featured-news .story-card:first-child {
  min-height: 100%;
}

.featured-news .story-card:first-child h3 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.featured-news .story-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

body[data-page="home"] .featured-news {
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, .9fr);
  grid-template-rows: repeat(2, auto);
}

body[data-page="home"] .featured-news .story-card:first-child {
  grid-row: 1 / 3;
}

body[data-page="home"] .featured-news .story-card:not(:first-child) {
  grid-template-columns: minmax(148px, 38%) minmax(0, 1fr);
}

body[data-page="home"] .featured-news .story-card:not(:first-child) img,
body[data-page="home"] .featured-news .story-card:not(:first-child) .news-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

body[data-page="home"] .featured-news .story-card:not(:first-child) .story-body {
  padding: 18px;
}

body[data-page="home"] .featured-news .story-card:not(:first-child) h3 {
  font-size: 1.05rem;
}

body[data-page="home"] .featured-news .story-card:not(:first-child) p {
  font-size: .9rem;
  line-height: 1.5;
}

.news-placeholder {
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: clamp(220px, 32vw, 380px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #10140d;
  overflow: hidden;
}

.story-card > .news-placeholder,
.featured-news .news-placeholder {
  min-height: auto;
  aspect-ratio: 16 / 9;
  border-width: 0 0 1px;
  border-radius: 0;
}

body[data-page="news"] .featured-news .news-placeholder {
  aspect-ratio: 16 / 7;
}

.news-placeholder-brand {
  color: var(--accent);
  font-size: clamp(1.25rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: .02em;
}

.news-placeholder-line,
.news-placeholder-source {
  width: fit-content;
  color: var(--text);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.news-placeholder-source {
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: none;
}

body[data-page="news"] .featured-news .story-card img {
  aspect-ratio: 16 / 7;
}

.more-news-heading {
  display: grid;
  gap: 6px;
  margin-top: 24px;
}

.more-news-heading h3 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.editorial-code {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.editorial-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel);
}

.editorial-grid article:nth-child(2) {
  background: var(--panel-2);
}

.editorial-mark.muted {
  color: var(--amber);
}

.editorial-grid h3 {
  margin-top: 12px;
}

.editorial-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.story-card,
.trend-card,
.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color .18s ease, transform .18s ease;
}

.story-card:hover,
.guide-card:hover,
.product-card:hover {
  border-color: rgba(118, 255, 3, .5);
  transform: translateY(-2px);
}

.story-card,
.trend-card,
.product-card {
  padding: 22px;
}

.featured-news .story-card {
  padding: 0;
  overflow: hidden;
}

.story-body {
  padding: 22px;
  min-width: 0;
}

.story-body p,
.story-card > p {
  margin-bottom: 0;
}

.story-read-more {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  color: var(--accent);
  font-size: .86rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.story-read-more:hover {
  color: var(--text);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: .82rem;
}

.tag {
  color: var(--accent);
  background: rgba(118, 255, 3, .08);
  border: 1px solid rgba(118, 255, 3, .34);
  border-radius: 999px;
  padding: 3px 9px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filter-chip {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, .06);
  color: var(--muted);
  font: inherit;
  font-size: .88rem;
  font-weight: 720;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: rgba(118, 255, 3, .72);
  background: rgba(118, 255, 3, .12);
  color: var(--accent);
}

.story-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

body[data-page="news"] .story-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="news"] .story-list .story-card {
  padding: 0;
  overflow: hidden;
}

body[data-page="news"] .story-list .story-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.section-link {
  width: fit-content;
  margin-top: 4px;
}

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

.split-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 34px;
  align-items: start;
  border-top: 1px solid var(--line);
}

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

.trend-card {
  min-height: 188px;
  border-top: 4px solid var(--cyan);
}

.trend-card:nth-child(2) {
  border-top-color: var(--green);
}

.trend-card:nth-child(3) {
  border-top-color: var(--amber);
}

.trend-card:nth-child(4) {
  border-top-color: #dce6d1;
}

.tech-corner {
  background: #0d100b;
  border-block: 1px solid rgba(118, 255, 3, .18);
}

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

.resource-grid a {
  min-height: 74px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--panel);
  color: var(--text);
  font-weight: 780;
}

.resource-grid a:hover {
  border-color: rgba(118, 255, 3, .6);
  background: rgba(118, 255, 3, .08);
}

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

.guide-grid.compact {
  margin-bottom: 18px;
}

.guide-hub-hero {
  display: grid;
  gap: 18px;
  padding-bottom: 64px;
}

.guide-hub-hero h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 8vw, 7.3rem);
  line-height: .9;
}

.guide-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.guide-route-grid a {
  display: grid;
  gap: 8px;
  min-height: 152px;
  align-content: start;
  border-top: 2px solid var(--accent);
  padding: 18px 16px;
  background: var(--panel);
  transition: background .18s ease, transform .18s ease;
}

.guide-route-grid a:hover {
  background: var(--panel-2);
  transform: translateY(-2px);
}

.guide-route-grid span {
  color: var(--accent);
  font-size: .74rem;
  font-weight: 900;
}

.guide-route-grid strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.guide-route-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.guide-library {
  border-top: 1px solid var(--line);
}

.guide-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  min-height: 100%;
  transition: border-color .18s ease, transform .18s ease;
}

.guide-card img {
  width: 100%;
  height: clamp(150px, 15vw, 210px);
  object-fit: cover;
}

.guide-grid.compact .guide-card img {
  height: clamp(130px, 12vw, 175px);
}

.guide-card span,
.guide-card h2,
.guide-card h3,
.guide-card p {
  margin-inline: 18px;
}

.guide-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 18px 0;
}

.guide-card-meta span {
  margin: 0;
}

.guide-card-meta small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 780;
}

.guide-card span {
  width: fit-content;
  margin-top: 16px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field-checklist-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.field-checklist-section > div:first-child {
  display: grid;
  gap: 16px;
}

.field-checklist-section p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.field-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.field-checklist label {
  display: flex;
  min-height: 78px;
  align-items: flex-start;
  gap: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 17px;
  background: var(--panel);
  color: #e7eadf;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
}

.field-checklist label:nth-child(even) {
  border-right: 0;
}

.field-checklist input,
.guide-quick-checklist input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.guide-quick-tool {
  display: grid;
  gap: 22px;
  margin: 28px 0 34px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
}

.guide-quick-tool-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.guide-quick-tool-header h2 {
  margin: 6px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.guide-print-button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 5px;
  padding: 0 14px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: .86rem;
  font-weight: 800;
  cursor: pointer;
}

.guide-print-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.guide-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.guide-facts div {
  display: grid;
  gap: 5px;
  border-right: 1px solid var(--line);
  padding: 14px;
}

.guide-facts div:last-child {
  border-right: 0;
}

.guide-facts span {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guide-facts strong {
  font-size: .94rem;
  line-height: 1.35;
}

.guide-quick-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.guide-quick-checklist label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  padding: 10px 0 13px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}

.guide-print-brand,
.guide-print-notes {
  display: none;
}

.guide-points {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.guide-note {
  margin: 30px 0;
  border-left: 3px solid var(--accent);
  padding: 18px 20px;
  background: rgba(118, 255, 3, .055);
}

.guide-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.guide-note p {
  margin: 0;
}

.guide-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 6px;
}

.guide-decision-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.guide-decision-grid h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.08rem;
}

.guide-decision-grid p {
  margin: 0;
  font-size: .96rem;
  line-height: 1.6;
}

.guide-table-wrap {
  margin: 22px 0 8px;
  overflow-x: auto;
}

.guide-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.5;
}

.guide-table th,
.guide-table td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.guide-table th {
  background: rgba(118, 255, 3, .08);
  color: var(--text);
}

.technical-sources {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.technical-sources h2 {
  margin-top: 0;
}

.technical-sources ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.technical-sources a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.technical-sources a:hover {
  color: var(--text);
}

.guide-card h2 {
  margin-top: 10px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.guide-card h3 {
  margin-top: 10px;
  margin-bottom: 18px;
  font-size: 1.18rem;
  line-height: 1.12;
}

.guide-card p {
  margin-top: 10px;
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.brand-watch {
  border-top: 1px solid var(--line);
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-cloud span {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 4px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, .045);
  color: #d9dde5;
  font-weight: 720;
}

.market-hub {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.market-copy {
  display: grid;
  gap: 16px;
}

.market-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.market-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

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

.brand-directory {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-directory article,
.search-result-card,
.topic-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
}

.brand-directory h2,
.search-result-card h2,
.topic-grid h2 {
  font-size: 1.35rem;
  line-height: 1.12;
}

.brand-directory p,
.search-result-card p,
.topic-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.search-panel {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.search-input.large {
  min-height: 58px;
  border-radius: 10px;
  padding-inline: 18px;
  font-size: 1.05rem;
}

.search-result-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topic-hero {
  padding-bottom: 32px;
}

.topic-links {
  margin-top: 18px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-block: clamp(42px, 5.5vw, 62px);
  padding-inline: max(18px, calc((100% - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background: var(--panel);
}

.cta-band h2 {
  max-width: 680px;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  line-height: 1.06;
}

.cta-band p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.quick-search-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.quick-search-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, .055);
  color: #dfe5ec;
  font-size: .86rem;
  font-weight: 760;
}

.quick-search-links a:hover {
  border-color: rgba(118, 255, 3, .58);
  color: var(--accent);
}

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

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

.catalog-tools {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px);
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
}

.search-input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #0b0d09;
  color: var(--text);
  font: inherit;
}

.affiliate-note {
  max-width: 760px;
  margin: -12px 0 24px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.product-card {
  display: grid;
  align-content: space-between;
  min-height: 0;
  overflow: hidden;
  background: var(--panel-2);
  padding: 0;
}

.product-top {
  display: grid;
  gap: 12px;
  padding: 20px 22px 22px;
}

.product-media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #090b09;
}

.product-media::after {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(9, 12, 8, .82));
  content: "";
  pointer-events: none;
}

.product-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(118, 255, 3, .14);
  background: #090b09;
  filter: saturate(.92) contrast(1.03);
  transition: filter .25s ease, transform .35s ease;
}

.product-card:hover .product-image {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.015);
}

.product-meta {
  color: var(--amber);
  font-size: .88rem;
  font-weight: 780;
}

.product-media .product-meta {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 12px;
  border: 1px solid rgba(118, 255, 3, .3);
  border-radius: 4px;
  padding: 6px 9px;
  background: rgba(6, 9, 6, .86);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.product-top h3 {
  margin: 0;
  line-height: 1.14;
}

.product-top > p {
  margin: 0;
}

.product-details {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
}

.product-details div {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 10px;
}

.product-details dt {
  color: var(--accent);
  font-size: .76rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-details dd {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-link {
  width: calc(100% - 44px);
  margin: 0 22px 22px;
}

body[data-page="home"] .product-details {
  display: none;
}

body[data-page="home"] .product-top {
  padding-bottom: 16px;
}

body[data-page="home"] .product-image {
  height: auto;
  aspect-ratio: 3 / 2;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 480px);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  border-top: 1px solid rgba(118, 255, 3, .22);
}

.newsletter-frequency {
  max-width: 640px;
  margin-top: 14px;
  color: #e7ebee;
  font-size: .92rem;
}

.newsletter-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.newsletter-benefits span {
  border: 1px solid rgba(118, 255, 3, .24);
  border-radius: 4px;
  padding: 8px 11px;
  background: rgba(118, 255, 3, .055);
  color: #eef1f4;
  font-size: .84rem;
  font-weight: 780;
}

.newsletter-sample {
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, .035);
}

.newsletter-sample .eyebrow {
  margin-bottom: 10px;
}

.newsletter-sample ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.signup-form {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hidden-field {
  display: none;
}

.signup-form label {
  color: var(--muted);
  font-size: .9rem;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 460px;
  margin-top: 2px;
  line-height: 1.45;
}

.signup-form .consent-row input {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 3px;
  padding: 0;
  accent-color: var(--accent);
}

.consent-row span {
  display: block;
  max-width: 390px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: .9rem;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #ff7b82;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.signup-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: #0b0d09;
  color: var(--text);
  font: inherit;
}

.signup-form textarea {
  width: 100%;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  background: #0b0d09;
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.signup-form button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.signup-form button:disabled {
  cursor: wait;
  opacity: .72;
}

.form-privacy {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.empty-state {
  margin: 0;
  color: var(--muted);
}

.legal-page {
  padding-top: 78px;
}

body[data-page="guides"] h1,
body[data-page="search"] h1,
body[data-page="brands"] h1,
body[data-page="tech-topic"] h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 7vw, 6.2rem);
  line-height: .96;
}

.legal-content {
  max-width: 880px;
}

.legal-content h1 {
  max-width: none;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: .92;
}

.legal-content h2 {
  margin-top: 54px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.legal-content p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.article-content {
  max-width: 880px;
}

.article-content h1 {
  max-width: 880px;
  font-size: clamp(2.1rem, 3.8vw, 3.8rem);
  line-height: 1.02;
}

.category-page h1 {
  max-width: 980px;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: .92;
}

.article-content img {
  width: 100%;
  height: clamp(220px, 32vw, 380px);
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 28px 0;
  background: var(--panel);
}

.article-content h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .9rem;
}

.breadcrumbs a:hover {
  color: var(--text);
}

.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: .9rem;
}

.article-meta-line span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .04);
}

.article-lede {
  color: var(--text) !important;
  font-size: clamp(1.12rem, 2vw, 1.35rem) !important;
}

.article-summary-card,
.article-key-card,
.article-source-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
  padding: 22px;
}

.article-summary-card,
.article-key-card {
  margin-top: 18px;
}

.article-summary-card h2,
.article-key-card h2,
.article-source-card h2 {
  margin-top: 8px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.article-key-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.article-source-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
}

.article-source-link {
  margin-top: 24px;
}

.article-source-card .article-source-link {
  margin-top: 0;
  white-space: nowrap;
}

.article-content p,
.category-page p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.faq-block {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.faq-block details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 10px;
  padding: 16px 18px;
  background: var(--panel);
}

.faq-block summary {
  cursor: pointer;
  font-weight: 780;
}

.related-block {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.related-block h2 {
  margin-top: 0;
}

.contact-section {
  align-items: start;
}

.contact-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 8, 6, .97), rgba(7, 8, 6, .64) 56%, rgba(7, 8, 6, .2)),
    url("assets/generated/congress-av-editorial.webp") center / cover;
}

.contact-context {
  max-width: 620px;
}

.contact-context p,
.about-editorial p,
.about-method p,
.podcast-page p,
.podcast-preview p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-response-note {
  margin-top: 24px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: #e8ecef !important;
}

.contact-form {
  width: 100%;
}

.about-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 8, 6, .98), rgba(7, 8, 6, .68) 56%, rgba(7, 8, 6, .18)),
    url("assets/generated/broadcast-control-editorial.webp") center / cover;
}

.about-page-hero h1 {
  max-width: 940px;
  font-size: 4.8rem;
  line-height: .96;
}

.about-editorial {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.about-editorial article {
  border-top: 1px solid var(--line);
  padding: 28px 30px 0 0;
}

.about-editorial article + article {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}

.about-editorial h2,
.about-method h2 {
  font-size: 2rem;
  line-height: 1.08;
}

.about-method {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-method > div {
  max-width: 590px;
}

.about-method .section-link {
  width: fit-content;
  margin-top: 22px;
}

.podcast-preview {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(118, 255, 3, .22);
  background:
    linear-gradient(90deg, rgba(5, 6, 4, .98) 0%, rgba(5, 6, 4, .83) 52%, rgba(5, 6, 4, .32) 100%),
    url("assets/generated/podcast-studio-editorial-v2.webp") center 52% / cover;
}

.podcast-preview-inner {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: end;
  gap: 42px;
  min-height: 390px;
}

.podcast-preview h2 {
  font-size: 3.45rem;
}

.podcast-detail {
  max-width: 720px;
}

.podcast-page-hero {
  display: grid;
  align-items: end;
  min-height: 680px;
  padding-top: 78px;
  border-bottom: 1px solid rgba(118, 255, 3, .22);
  background:
    linear-gradient(90deg, rgba(5, 6, 4, .99) 0%, rgba(5, 6, 4, .78) 48%, rgba(5, 6, 4, .2) 100%),
    linear-gradient(0deg, rgba(5, 6, 4, .94), transparent 58%),
    url("assets/generated/podcast-studio-editorial-v2.webp") center 52% / cover;
}

.podcast-page-intro {
  padding-top: 138px;
  padding-bottom: 86px;
}

.podcast-page-intro h1 {
  max-width: 900px;
  font-size: 5.4rem;
  line-height: .92;
}

.podcast-page-intro .podcast-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: #f1f3f4;
  font-size: 1.28rem;
}

.podcast-page-intro > p:not(.eyebrow, .podcast-status, .podcast-lead) {
  max-width: 700px;
}

.podcast-page-intro .primary-button {
  margin-top: 26px;
}

.podcast-status {
  width: fit-content;
  margin: 0 0 20px;
  border: 1px solid rgba(118, 255, 3, .42);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(118, 255, 3, .09);
  color: var(--accent) !important;
  font-size: .78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.podcast-topics {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: start;
}

.podcast-topic-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: podcast-topics;
}

.podcast-topic-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
  color: #eef1f3;
  font-size: 1.08rem;
  font-weight: 740;
  line-height: 1.45;
  counter-increment: podcast-topics;
}

.podcast-topic-list li::before {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 850;
  content: "0" counter(podcast-topics);
}

.podcast-archive {
  border-top: 1px solid var(--line);
}

.podcast-archive p:last-child {
  max-width: 680px;
}

.affiliate-note.subdued {
  padding-left: 14px;
  border-left: 2px solid rgba(118, 255, 3, .4);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 54px);
  border-top: 1px solid rgba(118, 255, 3, .2);
  background: #050604;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  color: var(--muted);
  font-size: .9rem;
}

.footer-links a:hover {
  color: var(--text);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  color: var(--accent);
  font-size: .86rem;
  font-weight: 760;
}

.social-links[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    position: sticky;
    grid-template-columns: auto 1fr;
    gap: 8px 18px;
    padding-block: 8px;
  }

  .brand {
    grid-row: 1;
    grid-column: 1;
  }

  .top-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .top-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .header-actions {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
  }
}

@media (max-width: 880px) {
  .site-header {
    position: sticky;
    grid-template-columns: auto 1fr;
    gap: 8px 18px;
    padding-block: 8px;
  }

  .brand {
    grid-row: 1;
    grid-column: 1;
  }

  .top-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin: 0;
    justify-content: flex-start;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .top-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .language-switch {
    margin-left: 0;
  }

  .header-actions {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
  }

  .nav-action {
    display: none;
  }

  .split-section,
  .catalog-tools,
  .cta-band,
  .newsletter,
  .article-source-card,
  .market-hub,
  .section-heading-row,
  .field-checklist-section {
    grid-template-columns: 1fr;
  }

  .about-editorial,
  .podcast-preview-inner,
  .podcast-topics {
    grid-template-columns: 1fr;
  }

  .about-editorial article + article {
    border-left: 0;
    padding-left: 0;
  }

  .podcast-preview-inner {
    align-items: start;
    min-height: 0;
  }

  .podcast-page-hero {
    min-height: 620px;
    padding-top: 0;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .about-page-hero h1 {
    font-size: 3.8rem;
  }

  .article-source-card .article-source-link {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

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

  .cta-band {
    align-items: start;
    padding-block: 38px;
  }

  .cta-band h2 {
    max-width: 100%;
  }

  .featured-news,
  .product-grid,
  .guide-grid,
  .guide-decision-grid,
  .resource-grid,
  .route-grid,
  .profile-grid,
  .editorial-grid,
  .brand-directory,
  .search-results,
  .topic-grid,
  .trend-grid,
  .story-list,
  body[data-page="news"] .story-list {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .featured-news {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  body[data-page="home"] .featured-news .story-card:first-child {
    grid-row: auto;
  }

  .hero {
    min-height: min(740px, calc(100svh - 118px));
  }

  .route-card {
    min-height: auto;
  }

  .guide-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-page {
    padding-top: 0;
  }

  .page-hero {
    padding-top: 0;
  }
}

@media (max-width: 540px) {
  .site-header {
    gap: 6px 14px;
    padding-inline: 14px;
  }

  .brand img {
    width: 148px;
    height: 44px;
  }

  .site-footer img {
    width: 160px;
    height: 48px;
  }

  .hero-content,
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: min(660px, calc(100svh - 108px));
  }

  .hero-content {
    padding: 70px 0 48px;
  }

  .hero-carousel-controls {
    right: 14px;
    top: 14px;
    bottom: auto;
  }

  .hero-proof {
    gap: 8px;
    margin-top: 26px;
  }

  .hero-proof span,
  .newsletter-benefits span {
    width: auto;
    justify-content: flex-start;
    text-align: left;
  }

  .audience-routes {
    padding-top: 58px;
  }

  body[data-page="home"] .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body[data-page="home"] .route-card {
    min-height: 152px;
    padding: 17px 15px;
  }

  body[data-page="home"] .route-card p {
    display: none;
  }

  body[data-page="home"] .route-card h3 {
    font-size: 1.05rem;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .hero h1 {
    font-size: 2.7rem;
    line-height: 1;
  }

  .about-page-hero h1 {
    font-size: 2.75rem;
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.9rem, 11vw, 3.1rem);
  }

  .cta-band {
    width: 100%;
    padding-inline: 14px;
    gap: 18px;
    padding-block: 34px;
  }

  .cta-band h2 {
    font-size: clamp(1.65rem, 9vw, 2.35rem);
  }

  .guide-card img,
  .guide-grid.compact .guide-card img {
    height: 145px;
  }

  .guide-hub-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .field-checklist,
  .guide-quick-checklist {
    grid-template-columns: 1fr;
  }

  .field-checklist label,
  .field-checklist label:nth-child(even) {
    border-right: 0;
  }

  .guide-quick-tool-header {
    align-items: flex-start;
    flex-direction: column;
  }

  body[data-page="home"] .guide-grid,
  body[data-page="home"] .product-grid {
    grid-auto-columns: min(82vw, 320px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    margin-right: -14px;
    padding-right: 14px;
    padding-bottom: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body[data-page="home"] .guide-card,
  body[data-page="home"] .product-card {
    scroll-snap-align: start;
  }

  body[data-page="home"] .featured-news .story-card:not(:first-child) {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .featured-news .story-card:not(:first-child) img,
  body[data-page="home"] .featured-news .story-card:not(:first-child) .news-placeholder {
    height: auto;
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-shell {
    padding-block: 60px;
  }

  .section-heading-row {
    align-items: start;
  }

  .market-actions,
  .hero-actions {
    align-items: stretch;
  }

  .market-actions a,
  .hero-actions a {
    flex: 1 1 160px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .podcast-preview h2 {
    font-size: 2.35rem;
  }

  .podcast-page-intro h1 {
    font-size: 3.2rem;
  }

  .podcast-page-intro .podcast-lead {
    font-size: 1.08rem;
  }

  .podcast-topic-list li {
    grid-template-columns: 34px 1fr;
  }
}

/* Final density and mobile navigation pass. */
.nav-menu-toggle,
.mobile-contact-link {
  display: none;
}

.nav-menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  cursor: pointer;
  place-items: center;
}

.nav-menu-toggle span {
  grid-column: 1;
  grid-row: 1;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: opacity .18s ease, transform .18s ease;
}

.nav-menu-toggle span:first-child {
  transform: translateY(-6px);
}

.nav-menu-toggle span:last-child {
  transform: translateY(6px);
}

.site-header.menu-open .nav-menu-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.menu-open .nav-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  min-height: min(760px, calc(100svh - 78px));
}

.hero-content {
  padding: 128px 0 64px;
}

.home-news-block {
  padding-top: 72px;
}

.audience-routes {
  padding-top: 56px;
  padding-bottom: 56px;
}

.featured-news .story-body p,
body[data-page="news"] .story-list .story-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

body[data-page="home"] .featured-news .story-card:first-child .story-body p {
  -webkit-line-clamp: 5;
}

body[data-page="tech"] .tech-page-hero .section-shell {
  padding: 88px 0 62px;
}

body[data-page="tech"] .tech-page-hero h1 {
  font-size: clamp(3.4rem, 8vw, 6.2rem);
}

body[data-page="tech"] #gadgets {
  padding-top: 70px;
}

@media (max-width: 1040px) {
  .site-header {
    position: sticky;
    grid-template-columns: auto 1fr;
    gap: 10px;
    min-height: 70px;
    padding: 8px clamp(14px, 4vw, 24px);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand img {
    width: 154px;
    height: 46px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    gap: 8px;
  }

  .nav-action {
    display: none;
  }

  .nav-menu-toggle {
    display: grid;
  }

  .top-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    grid-column: auto;
    grid-row: auto;
    display: none;
    width: 100%;
    max-height: calc(100svh - 70px);
    margin: 0;
    padding: 8px clamp(18px, 5vw, 32px) 18px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    border-bottom: 1px solid rgba(118, 255, 3, .28);
    background: rgba(7, 8, 6, .98);
    box-shadow: 0 22px 46px rgba(0, 0, 0, .42);
    overflow-x: hidden;
    overflow-y: auto;
  }

  .site-header.menu-open .top-nav {
    display: grid;
  }

  .top-nav a {
    min-height: 44px;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    white-space: normal;
  }

  .top-nav a::after {
    bottom: -1px;
  }

  .top-nav .mobile-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding-inline: 18px;
    border: 0;
    border-radius: 6px;
    background: var(--accent);
    color: #080a06;
  }

  .top-nav .mobile-contact-link::after {
    display: none;
  }

  .hero {
    min-height: min(680px, calc(100svh - 70px));
  }

  .hero-content {
    padding: 82px 0 52px;
  }

  body[data-page="tech"] .tech-page-hero .section-shell {
    padding: 72px 0 50px;
  }

  body[data-page="tech"] #gadgets {
    padding-top: 56px;
  }
}

@media (max-width: 540px) {
  .site-header {
    min-height: 68px;
    padding: 7px 14px;
  }

  .brand img {
    width: 142px;
    height: 42px;
  }

  .language-switch a {
    min-width: 34px;
    min-height: 29px;
  }

  .nav-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .top-nav {
    max-height: calc(100svh - 68px);
  }

  .hero {
    min-height: min(620px, calc(100svh - 68px));
  }

  .hero-content {
    padding: 62px 0 44px;
  }

  .home-news-block {
    padding-top: 52px;
  }

  .audience-routes {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .story-body {
    padding: 18px;
  }

  .featured-news .story-body p,
  body[data-page="news"] .story-list .story-body p,
  body[data-page="home"] .featured-news .story-card:first-child .story-body p {
    -webkit-line-clamp: 4;
  }

  body[data-page="tech"] .tech-page-hero .section-shell {
    padding: 58px 0 42px;
  }

  body[data-page="tech"] .tech-page-hero h1 {
    font-size: 3rem;
  }

  body[data-page="tech"] #gadgets {
    padding-top: 46px;
  }

  body[data-page="tech"] #gadgets .section-heading h2 {
    font-size: 2.2rem;
  }

  body[data-page="tech"] #product-filters {
    flex-wrap: nowrap;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body[data-page="tech"] #product-filters .filter-chip {
    flex: 0 0 auto;
  }
}
