@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;650;750;800;900&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --space: #050816;
  --card: #08111f;
  --ink: #f8fafc;
  --muted: #aab8c8;
  --line: rgba(56, 189, 248, .22);
  --paper: #050816;
  --soft: #08111f;
  --night: #08111f;
  --cyan: #22d3ee;
  --blue: #38bdf8;
  --violet: #8b5cf6;
  --green: #38d996;
  --gold: #f6c453;
  --rose: #a78bfa;
  --shadow: 0 18px 60px rgba(0, 0, 0, .34);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, .28);
  --shadow-lift: 0 22px 54px rgba(34, 211, 238, .12);
}

* { box-sizing: border-box; }

[hidden] {
  display: none !important;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(139, 92, 246, .24), transparent 30rem),
    radial-gradient(circle at 88% 14%, rgba(34, 211, 238, .18), transparent 28rem),
    linear-gradient(180deg, var(--space) 0%, #071021 48%, var(--space) 100%);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
}

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

p {
  color: var(--muted);
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 6vw;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 22, .84);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  width: auto;
  min-height: 72px;
  font-weight: 800;
  color: var(--ink);
}

.brand-logo {
  width: 108px;
  height: 58px;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 0 14px rgba(34, 211, 238, .34));
}

.brand-text {
  display: grid;
  gap: 1px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

.brand-text strong {
  display: block;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
}

.brand-text span {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--space);
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 28px rgba(34, 211, 238, .24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #d9e7f7;
  font-size: 15px;
  font-weight: 650;
}

.site-nav a:hover { color: var(--cyan); }

.nav-modal-button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(34, 211, 238, .28);
  border-radius: 8px;
  padding: 0 12px;
  color: #d9e7f7;
  background: rgba(8, 17, 31, .72);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.account-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #03111a;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(34, 211, 238, .16);
}

.nav-modal-button:hover,
.account-trigger:hover {
  color: #03111a;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

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

.category-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  width: 220px;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, .3);
  border-radius: 8px;
  background: rgba(5, 8, 22, .98);
  box-shadow: var(--shadow);
}

.category-menu-panel a {
  padding: 12px 14px;
  color: #d9e7f7;
  font-weight: 850;
}

.category-menu-panel a + a {
  border-top: 1px solid rgba(56, 189, 248, .14);
}

.category-menu-panel a:hover {
  color: #03111a;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

body.modal-open {
  overflow: hidden;
}

.category-modal[hidden] {
  display: none;
}

.account-modal[hidden] {
  display: none;
}

.category-modal,
.account-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 8, 22, .82);
  backdrop-filter: blur(10px);
}

.category-modal-dialog,
.account-dialog {
  position: relative;
  width: min(980px, 96vw);
  max-height: 88vh;
  overflow: auto;
  border: 1px solid rgba(34, 211, 238, .34);
  border-radius: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at 86% 0%, rgba(139, 92, 246, .2), transparent 22rem),
    linear-gradient(135deg, rgba(8, 17, 31, .98), rgba(5, 8, 22, .98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .48);
}

.account-dialog {
  width: min(520px, 94vw);
  display: grid;
  gap: 16px;
}

.account-dialog h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.account-dialog p {
  margin: 0;
}

.account-panel {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 8, 22, .72);
}

.account-panel strong {
  font-size: 18px;
}

.account-panel span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.account-page main {
  width: min(1120px, 88vw);
  margin: 0 auto;
  padding: 70px 0 82px;
}

.account-page-shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr);
  gap: 24px;
  align-items: start;
}

.account-card,
.account-aside {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 0%, rgba(139, 92, 246, .16), transparent 16rem),
    rgba(8, 17, 31, .92);
  box-shadow: var(--shadow-soft);
}

.account-card {
  display: grid;
  gap: 20px;
  padding: 30px;
}

.account-card h1 {
  font-size: clamp(36px, 5vw, 58px);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.account-card > p {
  max-width: 62ch;
  overflow-wrap: anywhere;
}

.account-card .auth-tabs {
  margin-top: 4px;
}

.account-aside {
  padding: 24px;
  position: sticky;
  top: 96px;
}

.account-aside h2 {
  font-size: 26px;
}

.account-aside ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.account-page .account-panel {
  padding: 20px;
}

.profile-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.profile-card h2 {
  margin: 0 0 4px;
  font-size: clamp(26px, 3vw, 38px);
}

.profile-card strong,
.comment-card strong,
.comment-user strong {
  color: var(--cyan);
}

.profile-card small,
.comment-card small {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.profile-avatar,
.comment-avatar {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, .34);
  border-radius: 50%;
  color: #03111a;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-weight: 900;
}

.profile-avatar {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.profile-avatar.large {
  width: 88px;
  height: 88px;
  font-size: 26px;
}

.comment-avatar {
  width: 42px;
  height: 42px;
  object-fit: cover;
  font-size: 14px;
}

.profile-form textarea {
  min-height: 110px;
  resize: vertical;
}

.profile-form input[type="file"] {
  padding: 10px;
}

.member-card,
.post-like-bar {
  margin-top: 18px;
}

.member-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(139, 92, 246, .34);
  border-radius: 8px;
  padding: 18px;
  background: rgba(139, 92, 246, .08);
}

.member-card h2,
.member-card p {
  margin: 0;
}

.account-section-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.category-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.category-modal-head h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.modal-close {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(5, 8, 22, .72);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}

.modal-close:hover {
  color: #03111a;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

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

.modal-category-card {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 8, 22, .58);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.modal-category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, .62);
  box-shadow: var(--shadow-lift);
}

.modal-category-card strong {
  color: var(--ink);
  font-size: 20px;
}

.modal-category-card span {
  color: var(--muted);
  line-height: 1.55;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  padding: 110px 6vw 72px;
  overflow: hidden;
  background: var(--space);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(139, 92, 246, .24), transparent 26rem),
    linear-gradient(90deg, rgba(5, 8, 22, .98) 0%, rgba(8, 17, 31, .82) 48%, rgba(5, 8, 22, .42) 100%),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.nebula-enterprise-hero {
  min-height: 660px;
  align-items: center;
  padding-bottom: 74px;
  border-bottom: 1px solid var(--line);
}

.nebula-enterprise-hero .hero-media {
  background:
    radial-gradient(circle at 72% 16%, rgba(34, 211, 238, .16), transparent 25rem),
    radial-gradient(circle at 88% 44%, rgba(139, 92, 246, .2), transparent 25rem),
    linear-gradient(90deg, rgba(5, 8, 22, .98) 0%, rgba(5, 8, 22, .9) 46%, rgba(8, 17, 31, .54) 100%),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1900&q=82") center/cover;
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  min-width: 0;
}

.enterprise-home .hero-content,
.enterprise-home .hero-copy,
.enterprise-home h1 {
  overflow-wrap: anywhere;
}

.kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
  font-family: "Space Grotesk", Manrope, ui-sans-serif, system-ui, sans-serif;
}

h1 {
  color: white;
  font-size: clamp(42px, 7vw, 82px);
  max-width: 920px;
}

h2 { font-size: clamp(30px, 4vw, 52px); }

h3 { font-size: 23px; }

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: #e4e7ec;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-quicklinks a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, .28);
  border-radius: 8px;
  padding: 0 12px;
  color: #d9e7f7;
  background: rgba(8, 17, 31, .72);
  font-size: 13px;
  font-weight: 850;
}

.hero-quicklinks a:hover {
  color: #03111a;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 181, 203, .24);
}

.button.primary {
  color: #03111a;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 0 1px rgba(248, 250, 252, .08), 0 12px 30px rgba(34, 211, 238, .18);
}

.button.secondary {
  color: white;
  border-color: rgba(34, 211, 238, .36);
  background: rgba(8, 17, 31, .74);
}

.section,
.newsletter {
  padding: 76px 6vw;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 900;
}

.text-link::after {
  content: "->";
  font-size: 20px;
  line-height: 1;
}

.home-news {
  background: linear-gradient(180deg, rgba(8, 17, 31, .98), rgba(5, 8, 22, .96));
  border-bottom: 1px solid var(--line);
}

.home-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, .82fr));
  gap: 18px;
}

.home-news-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid rgba(34, 211, 238, .22);
  border-radius: 8px;
  padding: 24px;
  background: rgba(5, 8, 22, .72);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-news-media {
  width: calc(100% + 48px);
  max-width: none;
  height: 166px;
  margin: -24px -24px 4px;
  object-fit: cover;
  border-bottom: 1px solid rgba(34, 211, 238, .18);
  opacity: .92;
  filter: saturate(1.08) contrast(1.04);
  transition: transform .35s ease, opacity .35s ease;
}

.home-news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, .52);
  box-shadow: var(--shadow-lift);
}

.home-news-card:hover .home-news-media {
  transform: scale(1.035);
  opacity: 1;
}

.home-news-card-large {
  grid-row: span 2;
  padding: 30px;
  background:
    radial-gradient(circle at 88% 0%, rgba(139, 92, 246, .18), transparent 16rem),
    linear-gradient(180deg, rgba(8, 17, 31, .96), rgba(5, 8, 22, .98));
}

.home-news-card-large .home-news-media {
  width: calc(100% + 60px);
  height: 272px;
  margin: -30px -30px 8px;
}

.home-news-card h3 {
  font-size: clamp(24px, 3vw, 42px);
}

.home-news-card:not(.home-news-card-large) h3 {
  font-size: clamp(21px, 2vw, 28px);
}

.home-news-card p {
  margin: 0;
}

.home-news-card .button {
  width: fit-content;
  position: relative;
  z-index: 2;
  justify-self: start;
  align-self: end;
}

.home-news-card a:not(.button)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.portal-areas {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 211, 238, .1), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(139, 92, 246, .14), transparent 26rem),
    rgba(5, 8, 22, .8);
}

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

.portal-area-card {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(34, 211, 238, .22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(8, 17, 31, .98), rgba(5, 8, 22, .96));
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.portal-area-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, .56);
  box-shadow: var(--shadow-lift);
}

.portal-area-card img {
  height: 178px;
  object-fit: cover;
  border-bottom: 1px solid rgba(34, 211, 238, .16);
  transition: transform .35s ease, filter .35s ease;
}

.portal-area-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.portal-area-card span {
  padding: 0 22px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.portal-area-card h3 {
  padding: 0 22px;
  font-size: clamp(22px, 2vw, 28px);
}

.portal-area-card p {
  margin: 0 0 22px;
  padding: 0 22px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.topic-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-search {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  width: min(560px, 100%);
  padding: 10px;
  border: 1px solid rgba(34, 211, 238, .24);
  border-radius: 8px;
  background: rgba(5, 8, 22, .72);
}

.site-search input {
  min-width: 0;
  height: 46px;
  border: 1px solid rgba(56, 189, 248, .28);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(8, 17, 31, .92);
  font: inherit;
}

.site-search input:focus {
  border-color: var(--cyan);
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, .12);
}

.filter {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(8, 17, 31, .8);
  font-weight: 750;
  cursor: pointer;
}

.filter.active {
  color: #03111a;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

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

.article-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(8, 17, 31, .98), rgba(8, 17, 31, .9));
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, .56);
  box-shadow: var(--shadow-lift);
}

.article-card img {
  height: 230px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.article-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.article-body {
  padding: 24px;
}

.article-body h3 a:hover { color: var(--cyan); }

.article-body h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tag {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.categories {
  background: radial-gradient(circle at 12% 0%, rgba(139, 92, 246, .22), transparent 28rem), var(--card);
  color: white;
}

.categories p { color: var(--muted); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(56, 189, 248, .18);
  border: 1px solid var(--line);
}

.category-tile {
  min-height: 260px;
  padding: 28px;
  background: var(--card);
}

.category-tile:hover { background: #0b1830; }

.category-tile span {
  color: var(--cyan);
  font-weight: 900;
}

.category-tile h3 {
  margin: 28px 0 14px;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 520px);
  gap: 36px;
  align-items: center;
  background:
    radial-gradient(circle at 90% 0%, rgba(139, 92, 246, .2), transparent 24rem),
    var(--card);
}

.signup {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 8, 22, .74);
}

.signup label {
  display: block;
  margin-bottom: 12px;
  font-weight: 850;
}

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

.signup input {
  min-width: 0;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: #050816;
}

.commerce-strip {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px 6vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(8, 17, 31, .98), rgba(12, 22, 44, .98)),
    radial-gradient(circle at 78% 0%, rgba(34, 211, 238, .16), transparent 20rem);
}

.commerce-strip h2 {
  font-size: clamp(26px, 3vw, 40px);
}

.commerce-strip p:last-child {
  margin-bottom: 0;
}

.commerce-hero {
  display: grid;
  min-height: 430px;
  align-items: end;
  padding: 96px 6vw 64px;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(139, 92, 246, .24), transparent 26rem),
    linear-gradient(90deg, rgba(5, 8, 22, .96), rgba(8, 17, 31, .64)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.commerce-hero div {
  width: min(850px, 100%);
}

.commerce-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.commerce-hero p {
  max-width: 720px;
  color: #e4e7ec;
  font-size: 19px;
}

.affiliate-notice {
  margin: 28px 6vw 0;
  padding: 18px 20px;
  border: 1px solid rgba(34, 211, 238, .28);
  border-radius: 8px;
  color: #d9e7f7;
  background: rgba(8, 17, 31, .88);
  line-height: 1.7;
}

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

.catalog-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.catalog-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(8, 17, 31, .78);
  font-weight: 800;
}

.catalog-nav a:hover {
  color: #03111a;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.catalog-group + .catalog-group {
  margin-top: 56px;
}

.catalog-group > p {
  width: min(860px, 100%);
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(8, 17, 31, .98), rgba(8, 17, 31, .9));
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, .56);
  box-shadow: var(--shadow-lift);
}

.product-card img {
  height: 240px;
  object-fit: cover;
  background: #f8fafc;
  transition: transform .35s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.product-body p,
.product-body ul {
  margin: 0;
}

.product-body ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.product-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, .26);
  border-radius: 8px;
  padding: 0 9px;
  color: #d9e7f7;
  background: rgba(5, 8, 22, .64);
  font-size: 13px;
  font-weight: 800;
}

.affiliate-link {
  width: 100%;
  margin-top: 6px;
}

.product-card .affiliate-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-card .affiliate-link {
  position: static;
}

.product-card .product-body,
.product-card img {
  position: relative;
  z-index: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 6vw;
  color: #cbd5e1;
  border-top: 1px solid var(--line);
  background: #050816;
}

.site-footer p { margin-bottom: 0; color: var(--muted); }

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

.site-footer a:hover { color: white; }

.article-page main {
  display: block;
  width: min(88vw, 980px);
  margin: 0 auto;
  padding: 56px 0 76px;
}

.article-hero {
  margin-bottom: 34px;
  padding: 0;
  min-width: 0;
}

.article-hero img {
  height: min(46vw, 430px);
  object-fit: cover;
  border-radius: 8px;
}

.article-content,
.sidebar {
  min-width: 0;
}

.article-content h1 {
  color: var(--ink);
  font-size: clamp(36px, 5vw, 64px);
  overflow-wrap: anywhere;
}

.article-content h2 {
  margin-top: 42px;
  font-size: 30px;
  line-height: 1.14;
}

.article-content p,
.article-content li {
  color: #c5d2e0;
  font-size: 18px;
  line-height: 1.8;
}

.article-content a {
  color: var(--cyan);
  font-weight: 800;
}

.article-note,
.affiliate-panel,
.article-gallery,
.answer-box,
.mini-toc,
.faq-list,
.related-links,
.comparison-table {
  margin: 34px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 17, 31, .92);
  box-shadow: var(--shadow-soft);
}

.article-note,
.affiliate-panel,
.answer-box,
.mini-toc,
.faq-list,
.related-links {
  padding: 24px;
}

.article-note h2,
.affiliate-panel h2,
.answer-box h2,
.mini-toc h2,
.faq-list h2,
.related-links h2 {
  margin-top: 0;
}

.answer-box {
  background:
    radial-gradient(circle at 92% 0%, rgba(34, 211, 238, .16), transparent 14rem),
    linear-gradient(135deg, rgba(8, 17, 31, .98), rgba(5, 8, 22, .96));
}

.answer-box p:last-child,
.faq-list p:last-child,
.related-links p:last-child {
  margin-bottom: 0;
}

.mini-toc ol,
.faq-list ol,
.related-links ul {
  margin: 0;
  padding-left: 22px;
}

.mini-toc li + li,
.faq-list li + li,
.related-links li + li {
  margin-top: 10px;
}

.community-cta {
  display: grid;
  gap: 18px;
  margin: 38px 0;
  padding: 24px;
  border: 1px solid rgba(34, 211, 238, .32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 0%, rgba(139, 92, 246, .18), transparent 16rem),
    linear-gradient(135deg, rgba(8, 17, 31, .98), rgba(5, 8, 22, .94));
  box-shadow: var(--shadow-soft);
}

.community-cta h2 {
  margin-top: 0;
}

.community-actions,
.tool-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.community-page {
  width: min(1180px, 88vw);
  margin: 0 auto;
  padding: 70px 0;
}

.community-hero-box h1 {
  max-width: 820px;
}

.community-submit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 24px;
  align-items: start;
  margin: 34px 0;
}

.community-form,
.community-guidelines {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 17, 31, .92);
  box-shadow: var(--shadow-soft);
}

.community-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.community-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 850;
}

.community-form input,
.community-form select,
.community-form textarea {
  width: 100%;
  border: 1px solid rgba(56, 189, 248, .24);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(5, 8, 22, .74);
  font: inherit;
  outline: none;
}

.community-form textarea {
  resize: vertical;
}

.community-form input:focus,
.community-form select:focus,
.community-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, .13);
}

.community-guidelines {
  padding: 24px;
  position: sticky;
  top: 96px;
}

.community-guidelines h2 {
  margin-top: 0;
}

.community-guidelines ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.community-guidelines li + li {
  margin-top: 10px;
}

.tool-link-grid a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(8, 17, 31, .78);
  font-weight: 850;
}

.tool-link-grid a:hover {
  color: #03111a;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.stat-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.stat-card,
.step-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 17, 31, .86);
}

.stat-card strong,
.step-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 18px;
}

.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: #c5d2e0;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--ink);
  background: rgba(34, 211, 238, .08);
  font-weight: 900;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.article-gallery figure {
  margin: 0;
}

.article-gallery img {
  height: 260px;
  object-fit: cover;
}

.article-gallery figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

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

.affiliate-item {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  overflow: hidden;
  padding: 0 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 8, 22, .78);
  box-shadow: 0 8px 22px rgba(16, 24, 40, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.affiliate-item:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, .58);
  box-shadow: var(--shadow-lift);
}

.affiliate-thumb {
  width: 100%;
  height: 132px;
  object-fit: contain;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, #f8fafc, #e8f6ff);
}

.affiliate-item strong {
  display: block;
  padding: 0 12px;
  font-size: 15px;
  line-height: 1.25;
}

.affiliate-item p {
  padding: 0 12px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.affiliate-item .button {
  position: static;
  z-index: 2;
  width: calc(100% - 24px);
  min-height: 38px;
  margin: 4px 12px 0;
  font-size: 13px;
}

.affiliate-item .button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.commerce-note {
  display: grid;
  gap: 12px;
}

.commerce-note .button {
  justify-self: start;
  width: auto;
}

.product-context-panel {
  display: none !important;
}

.nebula-comments {
  margin: 48px 0 0;
  padding: 26px;
  border: 1px solid rgba(34, 211, 238, .3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 0%, rgba(139, 92, 246, .16), transparent 14rem),
    rgba(8, 17, 31, .92);
  box-shadow: var(--shadow-soft);
}

.comments-head h2 {
  margin-top: 0;
}

.comments-status {
  margin: 14px 0;
  color: var(--muted);
  font-weight: 800;
}

.comments-status[data-tone="ok"] { color: var(--green); }
.comments-status[data-tone="warn"] { color: var(--gold); }
.comments-status[data-tone="error"] { color: #fb7185; }

.comments-auth,
.comment-composer {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.nebula-comments [hidden] {
  display: none !important;
}

.auth-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.auth-form,
.comment-form {
  display: grid;
  gap: 14px;
}

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

.auth-form label,
.comment-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.auth-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid rgba(56, 189, 248, .28);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(5, 8, 22, .88);
  font: inherit;
}

.captcha-field span {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.captcha-field strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, .26);
  border-radius: 8px;
  padding: 0 10px;
  color: var(--cyan);
  background: rgba(5, 8, 22, .68);
  font-family: "Space Grotesk", Manrope, sans-serif;
}

.comment-form textarea {
  min-height: 56px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.comment-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 8, 22, .7);
}

.comment-input-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.comment-form-inline .button {
  justify-self: end;
  width: auto;
  min-width: 132px;
}

.text-button {
  border: 0;
  color: var(--cyan);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.comments-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.comment-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 8, 22, .74);
}

.comment-card header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comment-card span,
.empty-comments {
  color: var(--muted);
}

.comment-card p {
  margin: 8px 0 0;
}

.like-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  margin-top: 12px;
  border: 1px solid rgba(34, 211, 238, .3);
  border-radius: 8px;
  padding: 0 12px;
  color: #d9e7f7;
  background: rgba(5, 8, 22, .72);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.like-button span {
  color: var(--cyan);
}

.like-button:hover,
.like-button.active {
  color: #03111a;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.like-button:hover span,
.like-button.active span {
  color: #03111a;
}

.nebula-offer-rotator {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  margin: 28px 0;
  padding: 16px;
  border: 1px solid rgba(34, 211, 238, .26);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 0%, rgba(139, 92, 246, .2), transparent 16rem),
    linear-gradient(135deg, rgba(8, 17, 31, .98), rgba(5, 8, 22, .96));
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.nebula-offer-rotator:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, .58);
  box-shadow: var(--shadow-lift);
}

.nebula-offer-rotator img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  padding: 12px;
  border-radius: 8px;
  background: #f8fafc;
}

.nebula-offer-rotator h2 {
  margin-top: 0;
  font-size: clamp(18px, 2.1vw, 24px);
}

.nebula-offer-rotator p:not(.kicker) {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.nebula-offer-rotator span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 13px;
  color: #03111a;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 900;
}

.nebula-offer-rotator a {
  position: absolute;
  inset: 0;
  z-index: 2;
}


.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 30px;
  color: var(--muted);
}

.sidebar {
  display: none;
}

.side-box {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 17, 31, .86);
}

.side-box + .side-box { margin-top: 18px; }

.side-box h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.side-box ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.side-offer {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(34, 211, 238, .3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 0%, rgba(139, 92, 246, .18), transparent 12rem),
    rgba(8, 17, 31, .9);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.side-offer + .side-offer {
  margin-top: 18px;
}

.side-offer:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, .62);
  box-shadow: var(--shadow-lift);
}

.side-offer img {
  height: 170px;
  object-fit: contain;
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fafc, #e8f6ff);
}

.side-offer h2 {
  margin: 0;
  font-size: 21px;
}

.side-offer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.side-offer .button {
  width: 100%;
  min-height: 42px;
  margin-top: 4px;
  font-size: 14px;
}

.side-offer .button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.side-offer img,
.side-offer h2,
.side-offer p,
.side-offer .button {
  position: relative;
  z-index: 0;
}

.side-product-rail {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.side-product-rail > h2 {
  margin: 0;
  font-size: 22px;
}

.side-product-card {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(34, 211, 238, .3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(139, 92, 246, .18), transparent 12rem),
    rgba(8, 17, 31, .92);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.side-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, .62);
  box-shadow: var(--shadow-lift);
}

.side-product-card img {
  height: 108px;
  object-fit: contain;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fafc, #e8f6ff);
}

.side-product-card h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}

.side-product-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.side-product-card strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--cyan);
  font-size: 14px;
}

.side-product-card .button {
  width: 100%;
  min-height: 36px;
  font-size: 13px;
}

.side-product-card .button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.side-product-card img,
.side-product-card h2,
.side-product-card p,
.side-product-card strong,
.side-product-card .button {
  position: relative;
  z-index: 0;
}

.legal-page main {
  width: min(860px, 88vw);
  margin: 0 auto;
  padding: 70px 0;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(36px, 6vw, 62px);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-page p,
.legal-page li {
  color: #c5d2e0;
  font-size: 18px;
  line-height: 1.8;
}

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

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 6vw 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 8, 22, .98);
  }

  .site-nav.open { display: flex; }

  .category-menu {
    width: 100%;
  }

  .category-menu-button {
    width: 100%;
    justify-content: flex-start;
  }

  .category-menu-panel {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .newsletter,
  .commerce-strip,
  .article-page main,
  .account-page-shell {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .article-grid,
  .product-grid,
  .category-grid,
  .modal-category-grid,
  .community-submit-grid,
  .article-gallery,
  .affiliate-list,
  .stat-grid,
  .step-grid,
  .nebula-offer-rotator,
  .home-news-grid,
  .portal-area-grid {
    grid-template-columns: 1fr;
  }

  .home-news-card-large {
    grid-row: auto;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .sidebar { position: static; }

  .account-aside {
    position: static;
  }

  .profile-card,
  .comment-card,
  .comment-input-row {
    grid-template-columns: 1fr;
  }

  .comment-form-inline .button {
    width: 100%;
  }

  .product-context-panel {
    padding: 16px;
  }

  .product-context-panel .kicker {
    font-size: 11px;
  }

  .product-context-panel h2 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .product-context-panel > p:not(.kicker) {
    font-size: 14px;
    line-height: 1.55;
  }

  .product-context-panel .affiliate-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-context-panel .affiliate-item:nth-child(n+3) {
    display: none;
  }

  .product-context-panel .affiliate-thumb {
    height: 104px;
    padding: 9px;
  }

  .product-context-panel .affiliate-item strong {
    font-size: 13px;
  }

  .product-context-panel .affiliate-item p {
    display: none;
  }

  .product-context-panel .affiliate-item .button {
    min-height: 36px;
    font-size: 12px;
  }

  .nebula-offer-rotator img {
    height: 96px;
  }
}

@media (max-width: 560px) {
  .section,
  .newsletter {
    overflow: hidden;
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .section h2,
  .section-head h2 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .brand {
    min-height: 58px;
    gap: 9px;
  }

  .brand-logo {
    width: 86px;
    height: 48px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text span {
    font-size: 9px;
  }

  .hero {
    min-height: 590px;
    padding-top: 86px;
  }

  .nebula-enterprise-hero {
    min-height: auto;
    padding: 92px 7vw 66px;
  }

  .enterprise-home .hero-content {
    width: 100%;
  }

  .enterprise-home .hero h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.04;
    max-width: 9.8ch;
  }

  .enterprise-home .hero-copy {
    max-width: 29ch;
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions,
  .hero-quicklinks,
  .signup div,
  .site-search {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .account-page main {
    width: min(92vw, 1120px);
    padding-top: 44px;
  }

  .account-card,
  .account-aside {
    padding: 20px;
  }

  .account-card h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .account-card > p {
    max-width: 27ch;
  }

  .site-footer {
    flex-direction: column;
  }
}


.blog-hero {
  padding: 78px 6vw 42px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 0%, rgba(139, 92, 246, .2), transparent 22rem),
    linear-gradient(135deg, rgba(8, 17, 31, .98), rgba(5, 8, 22, .96));
}

.blog-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.blog-hero p:not(.kicker) {
  max-width: 780px;
  font-size: 18px;
}

.blog-empty {
  margin: 28px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 17, 31, .86);
  font-weight: 800;
}

.cookie-consent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100vw - 44px));
  padding: 18px;
  border: 1px solid rgba(34, 211, 238, .34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(139, 92, 246, .18), transparent 14rem),
    rgba(5, 8, 22, .98);
  box-shadow: var(--shadow);
}

.cookie-consent strong {
  display: block;
  margin-bottom: 5px;
}

.cookie-consent p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-consent a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--cyan);
  font-weight: 850;
}

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

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

.profile-form {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.account-panel .resend-verification,
.account-panel .account-logout {
  justify-self: start;
}

@media (max-width: 720px) {
  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .cookie-actions,
  .cookie-actions .button {
    width: 100%;
  }
}

/* SEO hubs and commercial pages */
.site-nav {
  gap: clamp(12px, 2vw, 22px);
}

.site-nav a,
.site-nav button {
  white-space: nowrap;
}

.cluster-grid,
.service-grid,
.sponsor-wall,
.coupon-grid,
.topic-link-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cluster-card,
.service-card,
.sponsor-card,
.coupon-card,
.topic-link-card,
.offer-card,
.pricing-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  border: 1px solid rgba(34, 211, 238, .22);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(8, 17, 31, .94), rgba(5, 8, 22, .96));
  box-shadow: var(--shadow-soft);
}

.cluster-card:hover,
.service-card:hover,
.sponsor-card:hover,
.coupon-card:hover,
.topic-link-card:hover,
.offer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, .48);
  box-shadow: var(--shadow-lift);
}

.cluster-card strong,
.service-card h2,
.sponsor-card h2,
.coupon-card h2,
.topic-link-card strong,
.offer-card h2,
.pricing-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
}

.cluster-card p,
.service-card p,
.sponsor-card p,
.coupon-card p,
.topic-link-card p,
.offer-card p,
.pricing-card p {
  margin: 0;
}

.cluster-card span,
.topic-link-card span,
.offer-card .label {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.commercial-hero,
.topic-hero {
  display: grid;
  gap: 22px;
  width: min(1120px, 88vw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0 clamp(34px, 6vw, 70px);
}

.commercial-hero h1,
.topic-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(38px, 7vw, 78px);
  line-height: .96;
  letter-spacing: 0;
}

.commercial-hero p,
.topic-hero p {
  max-width: 820px;
  margin: 0;
  font-size: clamp(17px, 2vw, 21px);
}

.commercial-actions,
.topic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topic-layout,
.commercial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 28px;
  align-items: start;
}

.topic-main,
.commercial-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.topic-sidebar,
.commercial-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.sidebar-card,
.contact-card,
.disclosure-card {
  border: 1px solid rgba(34, 211, 238, .22);
  border-radius: 8px;
  padding: 20px;
  background: rgba(8, 17, 31, .82);
}

.sidebar-card h2,
.contact-card h2,
.disclosure-card h2 {
  margin-top: 0;
  font-size: 20px;
}

.check-list,
.link-list,
.service-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.link-list li,
.service-list li {
  color: #d9e7f7;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  vertical-align: .12em;
}

.service-card .button,
.coupon-card .button,
.sponsor-card .button,
.offer-card .button,
.contact-card .button {
  width: fit-content;
}

.logo-slot {
  display: grid;
  min-height: 136px;
  place-items: center;
  border: 1px dashed rgba(56, 189, 248, .32);
  border-radius: 8px;
  background: radial-gradient(circle at 50% 30%, rgba(34, 211, 238, .16), transparent 8rem), rgba(5, 8, 22, .72);
  color: var(--cyan);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-align: center;
}

.sponsor-card img {
  width: auto;
  max-width: 190px;
  max-height: 110px;
  object-fit: contain;
}

.coupon-code {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  border: 1px solid rgba(34, 211, 238, .34);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--cyan);
  background: rgba(34, 211, 238, .08);
  font-weight: 900;
  letter-spacing: .04em;
}

.editorial-method {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(139, 92, 246, .32);
  border-radius: 8px;
  padding: 24px;
  background: radial-gradient(circle at 100% 0%, rgba(139, 92, 246, .18), transparent 18rem), rgba(8, 17, 31, .84);
}

.editorial-method h2 {
  margin: 0;
}

.pixel-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(74px, 1fr));
  grid-auto-rows: 74px;
  gap: 8px;
  border: 1px solid rgba(34, 211, 238, .22);
  border-radius: 8px;
  padding: 12px;
  background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, .14), transparent 18rem), rgba(5, 8, 22, .72);
}

.pixel-cell {
  display: grid;
  place-items: center;
  min-width: 0;
  border: 1px solid rgba(56, 189, 248, .26);
  border-radius: 8px;
  padding: 8px;
  color: #c7d7ea;
  background: rgba(8, 17, 31, .92);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.pixel-cell:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, .72);
  color: var(--ink);
  background: rgba(34, 211, 238, .14);
}

.pixel-cell.sold {
  color: #050816;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 12px 28px rgba(34, 211, 238, .16);
}

.pixel-cell.wide {
  grid-column: span 2;
}

.pixel-cell.tall {
  grid-row: span 2;
}

.pricing-card.featured {
  border-color: rgba(139, 92, 246, .58);
  background: radial-gradient(circle at 100% 0%, rgba(139, 92, 246, .22), transparent 16rem), rgba(8, 17, 31, .96);
}

.pricing-card .button {
  width: fit-content;
}

@media (max-width: 980px) {
  .cluster-grid,
  .service-grid,
  .sponsor-wall,
  .coupon-grid,
  .topic-link-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-layout,
  .commercial-layout {
    grid-template-columns: 1fr;
  }

  .topic-sidebar,
  .commercial-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .cluster-grid,
  .service-grid,
  .sponsor-wall,
  .coupon-grid,
  .topic-link-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .commercial-hero,
  .topic-hero {
    width: min(92vw, 1120px);
    padding-top: 44px;
  }

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

  .pixel-cell.wide,
  .pixel-cell.tall {
    grid-column: auto;
    grid-row: auto;
  }
}


.community-page-shell .answer-box {
  overflow: hidden;
}

.community-page .service-grid {
  margin-top: 18px;
}

.community-page .category-grid {
  border-radius: 8px;
  overflow: hidden;
}

.community-page .community-actions {
  margin-top: 18px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(500px, 38vw);
  justify-self: end;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-visual-main,
.hero-visual-strip img,
.visual-tile img {
  object-fit: cover;
  filter: grayscale(.12) saturate(.9) contrast(1.04);
}

.hero-visual-main {
  height: 330px;
  border-radius: 6px;
}

.hero-visual-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-visual-strip img {
  height: 132px;
  border-radius: 6px;
}

.visual-radar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(229, 231, 235, .86));
  border-bottom: 1px solid rgba(15, 23, 42, .12);
}

.visual-radar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, .8fr));
  gap: 18px;
}

.visual-tile {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .14);
  border-radius: 8px;
  background: #111827;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}

.visual-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.visual-tile-wide {
  grid-row: span 2;
  min-height: 658px;
}

.visual-tile img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: .78;
  transition: transform .4s ease, opacity .4s ease;
}

.visual-tile:hover img {
  transform: scale(1.04);
  opacity: .9;
}

.visual-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .76));
}

.visual-tile span,
.visual-tile strong {
  position: relative;
  z-index: 1;
  margin: 0 22px;
  color: #ffffff;
}

.visual-tile span {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visual-tile strong {
  margin-bottom: 22px;
  max-width: 12ch;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.06;
}

.visual-tile:not(.visual-tile-wide) strong {
  font-size: clamp(20px, 2vw, 28px);
}

.commercial-hero.media-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
}

.commercial-hero-copy {
  display: grid;
  gap: 22px;
}

.commercial-hero-media {
  display: grid;
  grid-template-columns: 1.2fr 0.82fr;
  gap: 10px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 50px rgba(15, 23, 42, .1);
}

.commercial-hero-media img,
.image-feature-card img,
.coupon-card img {
  display: block;
  width: 100%;
  object-fit: cover;
  background: #eef2f7;
}

.commercial-hero-media img {
  min-height: 360px;
  border-radius: 7px;
  aspect-ratio: 4 / 5;
}

.commercial-hero-media div {
  display: grid;
  gap: 10px;
}

.commercial-hero-media div img {
  min-height: 175px;
  aspect-ratio: 1 / 1;
}

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

.image-feature-card {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.image-feature-card img {
  height: 230px;
  transition: transform .35s ease;
}

.image-feature-card:hover img {
  transform: scale(1.035);
}

.image-feature-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.image-feature-card h2,
.image-feature-card p {
  margin: 0;
}

.image-feature-card h2 {
  color: var(--ink);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.05;
}

.coupon-card img {
  height: 170px;
  border-radius: 7px;
}

/* Portal Nebula monochrome theme */
:root {
  --space: #f8fafc;
  --card: #ffffff;
  --ink: #0b0f14;
  --muted: #52606d;
  --line: rgba(15, 23, 42, .14);
  --paper: #f8fafc;
  --soft: #f1f5f9;
  --night: #111827;
  --cyan: #111827;
  --blue: #6b7280;
  --violet: #0f172a;
  --green: #15803d;
  --gold: #a16207;
  --rose: #475569;
  --shadow: 0 22px 60px rgba(15, 23, 42, .14);
  --shadow-soft: 0 12px 32px rgba(15, 23, 42, .1);
  --shadow-lift: 0 18px 42px rgba(15, 23, 42, .16);
}

body {
  color: var(--ink);
  background:
    linear-gradient(135deg, #ffffff 0%, #f4f6f8 34%, #d7dce2 66%, #111827 138%);
}

p,
.commercial-hero p,
.topic-hero p,
.article-content p,
.article-content li,
.legal-page p,
.legal-page li,
.check-list li,
.link-list li,
.service-list li {
  color: var(--muted);
}

h1,
h2,
h3,
.commercial-hero h1,
.topic-hero h1,
.legal-page h1,
.article-content h1,
.article-content h2,
.cluster-card strong,
.service-card h2,
.sponsor-card h2,
.coupon-card h2,
.topic-link-card strong,
.offer-card h2,
.pricing-card h2 {
  color: var(--ink);
}

.site-header {
  border-bottom-color: rgba(15, 23, 42, .12);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

.brand,
.brand-text strong,
.site-nav {
  color: var(--ink);
}

.brand-logo {
  filter: grayscale(.38) saturate(.78) contrast(1.06) drop-shadow(0 8px 16px rgba(15, 23, 42, .14));
}

.brand-text span,
.kicker,
.tag,
.text-link,
.cluster-card span,
.topic-link-card span,
.offer-card .label,
.profile-card strong,
.comment-card strong,
.comment-user strong,
.coupon-code {
  color: #111827;
}

.nav-modal-button,
.category-menu-button,
.filter,
.hero-quicklinks a,
.like-button,
.text-button {
  color: var(--ink);
  border-color: rgba(15, 23, 42, .16);
  background: rgba(255, 255, 255, .72);
}

.nav-modal-button:hover,
.account-trigger,
.account-trigger:hover,
.button.primary,
.filter.active,
.like-button:hover,
.like-button.active,
.pixel-cell.sold {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #0b0f14, #4b5563);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .18);
}

.button.secondary,
.site-search,
.signup,
.category-menu-panel,
.account-panel,
.comment-user,
.auth-form input,
.comment-form textarea,
.site-search input,
.signup input {
  color: var(--ink);
  border-color: rgba(15, 23, 42, .16);
  background: rgba(255, 255, 255, .82);
}

.button.secondary:hover,
.hero-quicklinks a:hover,
.category-menu-panel a:hover {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #111827, #6b7280);
}

.hero,
.nebula-enterprise-hero {
  background: #f8fafc;
}

.nebula-enterprise-hero {
  grid-template-columns: minmax(0, .95fr) minmax(340px, .72fr);
  gap: clamp(24px, 5vw, 72px);
}

.hero-media,
.nebula-enterprise-hero .hero-media {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, .72), transparent 20rem),
    radial-gradient(circle at 12% 18%, rgba(15, 23, 42, .08), transparent 22rem),
    linear-gradient(118deg, rgba(255, 255, 255, .98) 0%, rgba(241, 245, 249, .96) 42%, rgba(156, 163, 175, .86) 76%, rgba(17, 24, 39, .92) 128%);
}

.hero h1,
.enterprise-home .hero h1 {
  color: #0b0f14;
}

.hero-copy {
  color: #334155;
}

.home-news,
.portal-areas,
.categories,
.newsletter,
.commercial-strip,
.blog-hero,
.commerce-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(241, 245, 249, .92));
  border-color: rgba(15, 23, 42, .12);
}

.home-news-card,
.home-news-card-large,
.portal-area-card,
.article-card,
.cluster-card,
.service-card,
.sponsor-card,
.coupon-card,
.topic-link-card,
.offer-card,
.pricing-card,
.account-card,
.account-aside,
.side-box,
.side-offer,
.side-product-card,
.sidebar-card,
.contact-card,
.disclosure-card,
.editorial-method,
.pixel-board,
.community-cta,
.nebula-comments,
.comment-card,
.member-card,
.product-context-panel,
.nebula-offer-rotator,
.blog-empty {
  border-color: rgba(15, 23, 42, .14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .94));
  box-shadow: var(--shadow-soft);
}

.home-news-card:hover,
.portal-area-card:hover,
.article-card:hover,
.cluster-card:hover,
.service-card:hover,
.sponsor-card:hover,
.coupon-card:hover,
.topic-link-card:hover,
.offer-card:hover,
.side-offer:hover,
.side-product-card:hover {
  border-color: rgba(15, 23, 42, .28);
  box-shadow: var(--shadow-lift);
}

.home-news-media,
.portal-area-card img,
.article-card img {
  border-color: rgba(15, 23, 42, .12);
  filter: grayscale(.08) saturate(.92) contrast(1.02);
}

.category-tile {
  background: #ffffff;
}

.category-tile:hover {
  background: #f1f5f9;
}

.category-grid {
  background: rgba(15, 23, 42, .12);
  border-color: rgba(15, 23, 42, .14);
}

.category-menu-panel {
  background: rgba(255, 255, 255, .98);
}

.category-menu-panel a {
  color: var(--ink);
}

.category-menu-panel a + a {
  border-top-color: rgba(15, 23, 42, .1);
}

.article-content a {
  color: #111827;
}

.article-gallery figure,
.stat-card,
.answer-box,
.product-context-panel .affiliate-item {
  border-color: rgba(15, 23, 42, .14);
  background: rgba(255, 255, 255, .92);
}

.side-offer img,
.side-product-card img,
.product-context-panel .affiliate-thumb,
.nebula-offer-rotator img {
  background: linear-gradient(135deg, #ffffff, #e5e7eb);
}

.logo-slot,
.pixel-cell,
.coupon-code,
.captcha-field strong {
  color: var(--ink);
  border-color: rgba(15, 23, 42, .2);
  background: rgba(248, 250, 252, .9);
}

.pricing-card.featured {
  border-color: rgba(15, 23, 42, .28);
  background: linear-gradient(180deg, #ffffff, #eef2f7);
}

.site-footer {
  color: #f8fafc;
  background: linear-gradient(135deg, #0b0f14, #1f2937);
}

.site-footer p {
  color: #cbd5e1;
}

.cookie-consent {
  color: var(--ink);
  border-color: rgba(15, 23, 42, .18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(241, 245, 249, .98));
  box-shadow: 0 18px 50px rgba(15, 23, 42, .18);
}

.cookie-consent p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-nav {
    background: rgba(255, 255, 255, .98);
  }

  .nav-toggle {
    background: #ffffff;
  }

  .nav-toggle span {
    background: var(--ink);
  }

  .nebula-enterprise-hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: 100%;
    justify-self: stretch;
  }

  .visual-radar-grid {
    grid-template-columns: 1fr;
  }

  .visual-tile,
  .visual-tile-wide {
    grid-row: auto;
    min-height: 320px;
  }

  .media-hero,
  .image-feature-grid {
    grid-template-columns: 1fr;
  }

  .commercial-hero-media {
    grid-template-columns: 1fr;
  }

  .commercial-hero-media img,
  .commercial-hero-media div img {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }
}
