:root {
  --ink: #0a0f18;
  --panel: #101827;
  --panel-2: #172033;
  --muted: #8d9aae;
  --line: rgba(255, 255, 255, 0.12);
  --paper: #f5f7fb;
  --white: #ffffff;
  --cyan: #12c7ff;
  --lime: #a7ff4f;
  --coral: #ff6b5f;
  --violet: #8d7cff;
  --gold: #ffbf45;
  --shadow: 0 24px 70px rgba(5, 10, 18, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--white);
  background: var(--ink);
  min-height: 100vh;
  padding-bottom: 84px;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

main > .section:first-child {
  padding-top: 112px;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(10, 15, 24, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: min(64vw, 680px);
  gap: 10px;
  font-weight: 900;
}

.brand > span:nth-child(2) {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
}

.brand-tagline {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 430px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid rgba(18, 199, 255, 0.42);
  border-radius: 50%;
  background: #05080e;
  box-shadow: 0 0 18px rgba(18, 199, 255, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  font-size: 0.88rem;
  font-weight: 800;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.74);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--white);
}

.header-actions,
.filters {
  display: inline-flex;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn,
.filter-btn {
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.lang-btn {
  width: 42px;
  height: 34px;
  font-size: 0.78rem;
  font-weight: 900;
}

.lang-btn.is-active,
.filter-btn.is-active {
  color: var(--ink);
  background: var(--lime);
}

.hero {
  position: relative;
  min-height: clamp(520px, 66vh, 650px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 24% 72%, rgba(18, 199, 255, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(10, 15, 24, 0.95) 0%, rgba(10, 15, 24, 0.82) 38%, rgba(10, 15, 24, 0.18) 82%),
    linear-gradient(0deg, rgba(10, 15, 24, 0.82), rgba(10, 15, 24, 0.08));
}

.hero-animation {
  position: absolute;
  inset: 76px 0 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0.72;
}

.hero-animation span {
  position: absolute;
  left: -18%;
  width: 36%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--lime), transparent);
  animation: signalSweep 5.8s linear infinite;
}

.hero-animation span:nth-child(1) {
  top: 28%;
}

.hero-animation span:nth-child(2) {
  top: 46%;
  animation-delay: 1.8s;
  background: linear-gradient(90deg, transparent, var(--violet), var(--cyan), transparent);
}

.hero-animation span:nth-child(3) {
  top: 64%;
  animation-delay: 3.4s;
  background: linear-gradient(90deg, transparent, var(--lime), var(--coral), transparent);
}

@keyframes signalSweep {
  0% {
    transform: translateX(0) scaleX(0.5);
    opacity: 0;
  }
  12%,
  78% {
    opacity: 1;
  }
  100% {
    transform: translateX(360%) scaleX(1.2);
    opacity: 0;
  }
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 84px);
  padding-top: 66px;
}

.visual-banner {
  position: relative;
  height: 300px;
  margin-top: 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #05080e;
}

.visual-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.6vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 900;
}

.button.primary {
  color: var(--ink);
  background: var(--lime);
}

.button.secondary {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

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

.section,
.feature-band {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: 36px 0;
}

.section-heading > p,
.section-subtitle,
.feature-copy p,
.channel-card p,
.promise-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.section-subtitle {
  margin: 10px 0 0;
  font-weight: 700;
}

.channel-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--lime);
  font-weight: 900;
}

.section-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--lime);
  font-weight: 900;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 20px;
}

.filters {
  flex-wrap: wrap;
  position: relative;
}

.filter-btn {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.8rem;
  font-weight: 900;
}

.tag-menu {
  position: relative;
  display: inline-flex;
}

.tag-menu-button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
}

.tag-menu:hover .tag-menu-button,
.tag-menu:focus-within .tag-menu-button,
.tag-menu-button.is-active {
  color: var(--ink);
  background: var(--lime);
}

.tag-filters {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: none;
  min-width: 230px;
  max-height: 330px;
  overflow: auto;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.tag-menu:hover .tag-filters,
.tag-menu:focus-within .tag-filters {
  display: flex;
}

.tag-btn,
.post-tags button {
  min-height: 30px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: left;
}

.post-tags button,
.article-tags a {
  text-transform: uppercase;
}

.article-tags a:nth-child(3n + 1) {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}

.article-tags a:nth-child(3n + 2) {
  color: var(--ink);
  border-color: var(--cyan);
  background: var(--cyan);
}

.article-tags a:nth-child(3n) {
  color: var(--white);
  border-color: var(--coral);
  background: var(--coral);
}

.tag-btn.is-active,
.tag-btn:hover,
.tag-btn:focus-visible,
.post-tags button:hover,
.post-tags button:focus-visible {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

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

.post-grid.is-sectioned {
  grid-template-columns: 1fr;
  gap: 28px;
}

.category-block {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.category-header h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  text-transform: uppercase;
}

.category-more {
  min-width: 72px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ink);
  border: 0;
  background: var(--lime);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-carousel {
  min-width: 0;
  position: relative;
}

.category-posts {
  min-width: 0;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.category-posts::-webkit-scrollbar {
  display: none;
}

.category-carousel.has-overflow .category-posts {
  width: calc(100% - 76px);
}

.category-posts .post-card {
  min-width: 0;
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
}

.category-carousel.has-overflow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 118px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 15, 24, 0), rgba(10, 15, 24, 0.94));
}

.category-carousel.has-overflow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 76px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 15, 24, 0.94), rgba(10, 15, 24, 0));
  opacity: 0;
  transition: opacity 160ms ease;
}

.category-carousel.is-scrolled::before {
  opacity: 1;
}

.category-carousel.is-at-end::after {
  opacity: 0;
}

.category-arrow,
.category-next {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 58px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(167, 255, 79, 0.6);
  border-radius: 0;
  background: var(--lime);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.category-prev {
  left: 6px;
}

.category-next {
  right: 6px;
}

.category-arrow:disabled,
.category-next:disabled {
  pointer-events: none;
  opacity: 0;
}

.category-arrow svg,
.category-next svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  animation: category-arrow-nudge 1.15s ease-in-out infinite;
}

.category-arrow:hover,
.category-arrow:focus-visible,
.category-next:hover,
.category-next:focus-visible {
  background: #ffbf45;
}

.category-arrow:hover,
.category-arrow:focus-visible {
  transform: translate(-6px, -50%);
}

.category-next:hover,
.category-next:focus-visible {
  transform: translate(6px, -50%);
}

@keyframes category-arrow-nudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(7px);
  }
}

.post-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, border-color 180ms ease;
}

.post-card:hover {
  border-color: rgba(18, 199, 255, 0.45);
}

.post-visual {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(18, 199, 255, 0.95), rgba(141, 124, 255, 0.9)),
    linear-gradient(45deg, transparent 25%, rgba(255, 255, 255, 0.12) 25%, rgba(255, 255, 255, 0.12) 50%, transparent 50%);
  background-size: auto, 28px 28px;
}

.post-visual.gaming {
  background:
    linear-gradient(135deg, rgba(167, 255, 79, 0.95), rgba(18, 199, 255, 0.78)),
    linear-gradient(45deg, transparent 25%, rgba(10, 15, 24, 0.18) 25%, rgba(10, 15, 24, 0.18) 50%, transparent 50%);
  background-size: auto, 28px 28px;
}

.post-visual.reviews {
  background:
    linear-gradient(135deg, rgba(255, 107, 95, 0.95), rgba(255, 191, 69, 0.86)),
    linear-gradient(45deg, transparent 25%, rgba(10, 15, 24, 0.16) 25%, rgba(10, 15, 24, 0.16) 50%, transparent 50%);
  background-size: auto, 28px 28px;
}

.post-visual.tutorials {
  background:
    linear-gradient(135deg, rgba(141, 124, 255, 0.95), rgba(18, 199, 255, 0.82)),
    linear-gradient(45deg, transparent 25%, rgba(255, 255, 255, 0.13) 25%, rgba(255, 255, 255, 0.13) 50%, transparent 50%);
  background-size: auto, 28px 28px;
}

.post-visual.diy {
  background:
    linear-gradient(135deg, rgba(167, 255, 79, 0.92), rgba(255, 191, 69, 0.86)),
    linear-gradient(45deg, transparent 25%, rgba(10, 15, 24, 0.18) 25%, rgba(10, 15, 24, 0.18) 50%, transparent 50%);
  background-size: auto, 28px 28px;
}

.post-visual span {
  position: relative;
  z-index: 1;
  color: var(--ink);
  background: var(--white);
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.post-visual .post-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(5, 8, 14, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), inset 0 0 24px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.post-visual .post-play svg {
  width: 31px;
  height: 31px;
  margin-left: 3px;
  fill: currentColor;
}

.post-card:hover .post-play,
.post-visual:focus-visible .post-play {
  color: var(--ink);
  border-color: var(--lime);
  background: rgba(167, 255, 79, 0.92);
  transform: translate(-50%, -50%) scale(1.06);
}

.post-visual.image-card {
  min-height: 176px;
  overflow: hidden;
  background: #05080e;
}

.post-visual.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 8, 14, 0.64), rgba(5, 8, 14, 0.05));
}

.post-visual.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.post-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.post-meta span {
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  padding: 5px 7px;
  font-size: 0.68rem;
  font-weight: 900;
}

.post-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.28;
}

.post-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.52;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.article-tags a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.post-body > a {
  margin-top: auto;
  color: var(--lime);
  font-weight: 900;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 160px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--panel);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(18, 199, 255, 0.12), transparent 38%),
    var(--panel);
  box-shadow: var(--shadow);
}

.updates-band {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  margin: 24px auto 36px;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid rgba(167, 255, 79, 0.28);
  background:
    linear-gradient(135deg, rgba(167, 255, 79, 0.13), transparent 42%),
    linear-gradient(315deg, rgba(18, 199, 255, 0.1), transparent 46%),
    var(--panel);
  box-shadow: var(--shadow);
}

.updates-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.65;
}

.updates-form {
  display: grid;
  gap: 12px;
}

.updates-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.updates-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
}

.updates-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(18, 199, 255, 0.14);
}

.updates-form input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.updates-form .button {
  width: 100%;
  cursor: pointer;
}

.mailer-lite-card {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.mailer-lite-card .ml-embedded {
  min-height: 160px;
}

.newsletter-card .ml-embedded {
  min-height: 260px;
}

.updates-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.updates-status.is-error {
  color: var(--coral);
}

.signup-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.video-panel {
  display: grid;
  gap: 16px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #05080e;
}

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

.video-placeholder {
  height: 100%;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(18, 199, 255, 0.24), rgba(167, 255, 79, 0.12)),
    #05080e;
}

.video-placeholder span {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
}

.video-placeholder strong {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.video-label {
  margin: 0 0 8px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-panel h3 {
  margin: 0;
  font-size: 1.35rem;
}

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

.promise-grid article,
.channel-card {
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.promise-grid article {
  background:
    linear-gradient(135deg, rgba(18, 199, 255, 0.1), transparent 52%),
    var(--panel);
}

.promise-grid span,
.icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--cyan);
  font-weight: 900;
}

.promise-grid article:nth-child(2) span,
.channel-card:nth-child(2) .icon {
  background: var(--coral);
}

.promise-grid article:nth-child(3) span {
  background: var(--lime);
}

.promise-grid h3,
.channel-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.promise-grid p,
.channel-card p {
  margin: 0;
}

.promise {
  padding-top: 26px;
}

.promise .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: end;
}

.promise .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  overflow-wrap: normal;
  word-break: normal;
}

.network {
  padding-top: 10px;
}

.publication-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
  padding-top: 12px;
  padding-bottom: 8px;
}

.publication-note h1 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  white-space: nowrap;
  overflow-wrap: normal;
  min-width: max-content;
}

.publication-note p {
  max-width: 840px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

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

.channels {
  padding-bottom: 18px;
}

.channel-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 6px 14px;
  align-items: start;
}

.channel-card .icon {
  grid-row: 1 / 4;
  margin: 0;
}

.channel-card a {
  margin-top: 2px;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.network-grid a {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 180ms ease, border-color 180ms ease;
}

.network-grid a:hover,
.network-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(167, 255, 79, 0.45);
}

.network-grid span {
  color: var(--cyan);
  font-size: 1.02rem;
  font-weight: 900;
  text-transform: uppercase;
}

.network-grid .network-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 0.78rem;
}

.network-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.network-grid a:hover .network-icon,
.network-grid a:focus-visible .network-icon {
  color: var(--lime);
}

.network-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-footer {
  position: fixed;
  z-index: 19;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--muted);
  font-size: 0.86rem;
  border-top: 1px solid var(--line);
  background: rgba(7, 11, 18, 0.88);
  backdrop-filter: blur(18px);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

.footer-links {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a + a::before {
  content: "-";
  margin-right: 14px;
  color: var(--muted);
}

.footer-links a {
  color: var(--lime);
  font-weight: 900;
}

.affiliate-disclosure {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.affiliate-disclosure p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.affiliate-disclosure a {
  color: var(--lime);
  font-weight: 900;
}

.legal-page {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 80px;
}

.legal-page h1 {
  max-width: 16ch;
}

.legal-page section {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.legal-page h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-links {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-links a {
  color: var(--lime);
  overflow-wrap: anywhere;
}

.contact-shell {
  width: min(980px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  margin: 0 auto;
  padding: 132px 0 92px;
}

.newsletter-shell {
  align-items: center;
}

.contact-shell h1 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 4.2vw, 3.7rem);
  line-height: 1.04;
}

.contact-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(18, 199, 255, 0.12), transparent 48%),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-form label,
.verify-row {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-form textarea {
  min-height: 140px;
  padding: 13px;
  resize: vertical;
  line-height: 1.5;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(18, 199, 255, 0.14);
}

.verify-row {
  grid-template-columns: auto minmax(90px, 150px);
  align-items: center;
  text-transform: none;
}

.verify-row strong {
  color: var(--white);
}

.contact-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-status.is-error {
  color: var(--coral);
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(167, 255, 79, 0.24);
  background: rgba(167, 255, 79, 0.06);
}

.contact-direct strong {
  color: var(--white);
  font-size: 0.95rem;
}

.contact-direct p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-status.is-success {
  color: var(--lime);
}

.apps-coming-soon {
  width: min(980px, calc(100% - 36px));
  display: grid;
  gap: 28px;
  margin: 0 auto;
  padding: 132px 0 86px;
}

.apps-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.64fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.apps-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  line-height: 1;
}

.apps-hero .article-dek {
  max-width: 680px;
}

.app-preview-device {
  min-height: 420px;
  padding: 18px;
  border: 1px solid rgba(18, 199, 255, 0.32);
  background:
    radial-gradient(circle at 20% 18%, rgba(167, 255, 79, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(18, 199, 255, 0.16), rgba(141, 124, 255, 0.1)),
    #05080e;
  box-shadow: var(--shadow);
}

.app-screen {
  height: 100%;
  min-height: 380px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(10, 15, 24, 0.86);
}

.app-screen-top,
.app-screen-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 20px rgba(167, 255, 79, 0.56);
}

.app-screen h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.app-screen p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.app-screen-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.app-screen-card strong {
  color: var(--white);
}

.app-screen-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.app-preview-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 180ms ease, border-color 180ms ease;
}

.app-preview-card:hover,
.app-preview-card:focus-visible {
  border-color: rgba(167, 255, 79, 0.46);
  transform: translateY(-2px);
}

.app-preview-card span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-preview-card h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.18;
}

.app-preview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.app-preview-card strong {
  margin-top: auto;
  color: var(--lime);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.about-page {
  background:
    radial-gradient(circle at 82% 18%, rgba(18, 199, 255, 0.16), transparent 32%),
    radial-gradient(circle at 12% 62%, rgba(167, 255, 79, 0.08), transparent 34%),
    #080d15;
}

.about-hero {
  width: min(1180px, calc(100% - 36px));
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.58fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  margin: 0 auto;
  padding: 126px 0 56px;
}

.about-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  line-height: 1;
}

.about-hero .article-dek {
  margin-bottom: 0;
}

.about-signal {
  position: relative;
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(18, 199, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(18, 199, 255, 0.14), transparent 46%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.about-signal::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(167, 255, 79, 0.22);
  pointer-events: none;
}

.about-signal span {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid var(--line);
  background: rgba(10, 15, 24, 0.78);
  font-size: clamp(0.98rem, 1.45vw, 1.16rem);
  font-weight: 900;
}

.about-signal span:nth-child(2) {
  border-color: rgba(255, 107, 95, 0.36);
}

.about-signal span:nth-child(3) {
  border-color: rgba(167, 255, 79, 0.34);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding-top: 24px;
}

.about-story h2,
.about-cta h2 {
  max-width: 760px;
}

.about-story-copy p,
.about-cta p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.about-story-copy p:first-child {
  margin-top: 0;
}

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

.about-pillars article {
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(141, 124, 255, 0.12), transparent 52%),
    var(--panel);
}

.about-pillars span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--cyan);
  font-weight: 900;
}

.about-pillars article:nth-child(2) span {
  background: var(--coral);
}

.about-pillars article:nth-child(3) span {
  background: var(--lime);
}

.about-pillars h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.about-pillars p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-channels {
  padding-top: 18px;
}

.about-cta {
  margin-bottom: 24px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(167, 255, 79, 0.24);
  background:
    linear-gradient(90deg, rgba(167, 255, 79, 0.12), transparent 56%),
    var(--panel);
}

.about-cta p {
  max-width: 680px;
}

.article-page {
  background: #080d15;
}

.article-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0 80px;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  min-height: 620px;
}

.article-copy h1 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 3.6vw, 3.55rem);
  line-height: 1.04;
}

.article-dek {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.6;
}

.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.article-meta span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
}

.article-hero picture,
.article-hero img {
  display: block;
}

.article-hero img {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.article-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.article-toc p {
  margin: 0 0 4px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-toc a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.article-body {
  display: grid;
  gap: 56px;
}

.article-body section {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.comments-section {
  margin-top: clamp(38px, 6vw, 72px);
  padding: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(18, 199, 255, 0.1), transparent 42%),
    var(--panel);
}

.share-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: clamp(38px, 6vw, 72px);
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(167, 255, 79, 0.12), transparent 48%),
    var(--panel);
}

.related-post-promo {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: clamp(38px, 6vw, 72px);
  padding: 24px;
  border: 1px solid rgba(167, 255, 79, 0.32);
  background:
    linear-gradient(135deg, rgba(167, 255, 79, 0.14), transparent 44%),
    var(--panel);
}

.related-post-promo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #05080e;
}

.related-post-promo h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.related-post-promo p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.6;
}

.related-post-promo a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.share-copy h2,
.share-copy p {
  margin: 0;
}

.share-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.share-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
}

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

.share-primary,
.share-network {
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
}

.share-primary {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

.share-network:hover,
.share-network:focus-visible {
  color: var(--ink);
  border-color: var(--cyan);
  background: var(--cyan);
}

.comments-inner {
  display: grid;
  gap: 12px;
}

.comments-inner h2,
.comments-inner p {
  margin: 0;
}

.comments-inner h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.comments-inner > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.65;
}

.giscus {
  margin-top: 10px;
}

.section-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.article-body h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.notice,
.warning {
  margin-top: 20px;
  padding: 18px;
  border-left: 4px solid var(--coral);
  background: rgba(255, 107, 95, 0.08);
}

.notice strong {
  color: var(--white);
}

.notice p,
.warning {
  margin-bottom: 0;
}

.compare-grid,
.requirement-list,
.process-lanes,
.dual-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.compare-grid article,
.requirement-list article,
.process-lanes div,
.dual-video-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.mode-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.link-list a {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 14px;
  color: var(--lime);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.parts-list a {
  color: var(--white);
}

.single-video {
  margin-top: 18px;
}

.requirement-list span {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.requirement-list strong {
  display: block;
  line-height: 1.45;
}

.step-list {
  display: grid;
  gap: 14px;
  padding-left: 22px;
}

.step-list li::marker {
  color: var(--lime);
  font-weight: 900;
}

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

.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px;
  color: var(--white);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

@media (max-width: 1060px) {
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-posts .post-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 88px;
  }

  main > .section:first-child {
    padding-top: 104px;
  }

  .site-header {
    align-items: center;
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding: 96px 0 42px;
  }

  .visual-banner {
    height: 220px;
  }

  .visual-banner img {
    object-position: center;
  }

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

  h1 {
    max-width: 9.5ch;
  }

  .article-hero,
  .article-grid,
  .about-hero,
  .about-story,
  .about-pillars,
  .contact-shell,
  .related-post-promo,
  .share-section,
  .feature-band,
  .updates-band,
  .promise-grid,
  .channels .channel-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .promise .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .promise .section-heading h2 {
    max-width: 100%;
    font-size: clamp(2.1rem, 8vw, 3rem);
    line-height: 1.05;
  }

  .feature-band {
    padding: 28px 20px;
  }

  .updates-band {
    padding: 28px 20px;
  }

  .article-toc {
    position: static;
  }

  .about-hero {
    min-height: auto;
    padding-top: 116px;
  }

  .about-hero h1 {
    max-width: 100%;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    min-height: 76px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 86px;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 12px 10px;
  }

  .brand {
    flex-wrap: wrap;
    max-width: calc(100% - 92px);
    gap: 8px;
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand > span:nth-child(2) {
    max-width: calc(100% - 42px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-tagline {
    order: 3;
    width: 100%;
    max-width: none;
    font-size: 0.58rem;
  }

  .lang-btn {
    width: 38px;
    height: 32px;
    font-size: 0.72rem;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
    font-size: 0.55rem;
  }

  main > .section:first-child {
    padding-top: 126px;
  }

  .main-nav a {
    min-height: 24px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 15, 24, 0.96), rgba(10, 15, 24, 0.62)),
      linear-gradient(0deg, rgba(10, 15, 24, 0.78), rgba(10, 15, 24, 0.08));
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero {
    padding: 106px 0 34px;
  }

  .visual-banner {
    height: 176px;
    margin-top: 86px;
  }

  .visual-banner img {
    object-position: center;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding-top: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.8vw, 3rem);
    line-height: 1;
  }

  .article-copy h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 9vw, 2.75rem);
    line-height: 1.05;
  }

  .hero-copy {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .section {
    padding: 36px 0;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .post-grid {
    width: 100%;
  }

  .post-grid,
  .about-pillars,
  .compare-grid,
  .requirement-list,
  .process-lanes,
  .mode-grid,
  .dual-video-grid,
  .link-list,
  .network-grid {
    grid-template-columns: 1fr;
  }

  .category-posts .post-card {
    flex-basis: 86%;
  }

  .category-carousel.has-overflow .category-posts {
    width: calc(100% - 56px);
  }

  .category-carousel.has-overflow::after {
    width: 74px;
  }

  .category-carousel.has-overflow::before {
    width: 58px;
  }

  .category-arrow,
  .category-next {
    width: 48px;
    height: 64px;
  }

  .category-prev {
    left: 0;
  }

  .category-next {
    right: 0;
  }

  .post-grid.is-sectioned {
    gap: 24px;
  }

  .category-header {
    align-items: center;
  }

  .filters {
    width: 100%;
    flex-wrap: wrap;
  }

  .filter-btn {
    flex: 1 1 30%;
    min-width: 0;
    padding: 0 6px;
    font-size: 0.72rem;
  }

  .tag-menu {
    flex: 1 1 100%;
  }

  .tag-menu-button {
    width: 100%;
    font-size: 0.72rem;
  }

  .tag-filters {
    left: 0;
    right: auto;
    width: 100%;
  }

  .network-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
  }

  .publication-note {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 8px;
  }

  .about-hero {
    padding-top: 136px;
  }

  .about-signal {
    padding: 14px;
  }

  .about-signal::before {
    inset: 10px;
  }

  .about-signal span {
    min-height: 52px;
    font-size: 0.95rem;
  }

  .about-cta {
    padding: 24px 18px;
  }

  .contact-shell {
    padding-top: 136px;
  }

  .apps-coming-soon {
    padding-top: 136px;
  }

  .apps-hero,
  .apps-preview-grid {
    grid-template-columns: 1fr;
  }

  .app-preview-device {
    min-height: 340px;
  }

  .app-screen {
    min-height: 300px;
  }

  .contact-form {
    padding: 18px;
  }

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

  .network-grid a {
    min-height: 48px;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    padding: 0;
  }

  .network-grid .network-icon {
    width: 42px;
    height: 42px;
    font-size: 0.68rem;
  }

  .network-icon svg {
    width: 22px;
    height: 22px;
  }

  .channels .channel-grid,
  .about-channels .channel-grid {
    display: block;
    border: 1px solid var(--line);
    background: var(--panel);
  }

  .channels .channel-card,
  .about-channels .channel-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 6px;
    padding: 14px;
    border: 0;
    background: transparent;
  }

  .channels .channel-card + .channel-card,
  .about-channels .channel-card + .channel-card {
    border-top: 1px solid var(--line);
  }

  .channels .channel-card .icon,
  .about-channels .channel-card .icon {
    width: 36px;
    height: 36px;
    margin: 0;
    grid-row: 1 / 4;
    font-size: 0.7rem;
  }

  .channels .channel-card h3,
  .about-channels .channel-card h3 {
    margin: 0;
    font-size: 1rem;
  }

  .channels .channel-card p,
  .about-channels .channel-card p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .channels .channel-card a,
  .about-channels .channel-card a {
    margin-top: 0;
    font-size: 0.78rem;
  }

  .promise .section-heading {
    margin-bottom: 16px;
  }

  .promise .section-heading > p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .promise-grid {
    display: block;
    border: 1px solid var(--line);
    background: var(--panel);
  }

  .promise-grid article {
    min-height: auto;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 4px 12px;
    padding: 14px;
    border: 0;
    background: transparent;
  }

  .promise-grid article + article {
    border-top: 1px solid var(--line);
  }

  .promise-grid span {
    width: 36px;
    height: 36px;
    margin: 0;
    grid-row: 1 / 3;
    font-size: 0.68rem;
  }

  .promise-grid h3 {
    margin: 0;
    font-size: 1rem;
  }

  .promise-grid p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .site-footer {
    min-height: 64px;
    padding: 10px 14px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .site-footer span:first-child,
  .footer-links a {
    font-weight: 800;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a + a::before {
    margin-right: 10px;
  }
}
