:root {
  --gx-bg: #0b0e11;
  --gx-bg-soft: #12161c;
  --gx-panel: #161b22;
  --gx-panel-2: #1d2430;
  --gx-line: rgba(255,255,255,.08);
  --gx-text: #f5f7fb;
  --gx-muted: #a7b0bf;
  --gx-brand: #f3ba2f;
  --gx-brand-2: #ffd666;
  --gx-shadow: 0 14px 40px rgba(0,0,0,.32);
  --gx-radius: 20px;
  --gx-shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gx-text);
  background:
    radial-gradient(circle at 10% 5%, rgba(243,186,47,.14), transparent 24%),
    radial-gradient(circle at 90% 8%, rgba(255,214,102,.08), transparent 22%),
    linear-gradient(180deg, #080a0f 0%, #0c1016 45%, #0b0e11 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.72;
}

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

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

.gh-content,
.gh-content p,
.gh-content li,
.gh-content blockquote,
.gh-content figcaption {
  color: var(--gx-text);
}

.gh-content a {
  color: #ffe39b;
}

.gh-content h2,
.gh-content h3,
.gh-content h4 {
  margin-top: 2.1rem;
  margin-bottom: .9rem;
  line-height: 1.3;
}

.gh-content img,
.gh-content .kg-image {
  border-radius: 18px;
}

.gh-content blockquote {
  margin: 1.6rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--gx-brand);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
}

.gx-shell {
  width: min(var(--gx-shell), calc(100% - 32px));
  margin: 0 auto;
}

.gx-site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11,14,17,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gx-line);
}

.gx-nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gx-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}

.gx-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gx-brand), var(--gx-brand-2));
  box-shadow: 0 10px 24px rgba(243,186,47,.26);
}

.gx-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.gx-nav .nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gx-nav .nav li {
  margin: 0;
  padding: 0;
}

.gx-nav .nav a {
  font-size: 14px;
  color: var(--gx-muted);
}

.gx-nav .nav a:hover,
.gx-nav .nav .nav-current a {
  color: var(--gx-text);
}

.gx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid var(--gx-line);
  background: rgba(255,255,255,.03);
  color: var(--gx-text);
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.gx-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.16);
}

.gx-btn-primary {
  color: #111;
  border: none;
  background: linear-gradient(135deg, var(--gx-brand), #ffcf54);
  box-shadow: 0 12px 26px rgba(243,186,47,.2);
}

.gx-btn-secondary {
  color: #ffe39b;
  background: rgba(243,186,47,.08);
  border-color: rgba(243,186,47,.2);
}

.gx-nav-cta {
  white-space: nowrap;
}

.gx-site-main,
.gx-page-home,
.gx-page-listing,
.gx-page-post,
.gx-page-tag {
  display: block;
}

.gx-hero,
.gx-page-hero {
  padding: 52px 0 28px;
}

.gx-hero-grid,
.gx-content-layout {
  display: grid;
  gap: 28px;
}

.gx-hero-grid {
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
}

.gx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--gx-line);
  color: #e7e0b9;
  font-size: 13px;
}

.gx-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gx-brand);
  box-shadow: 0 0 14px rgba(243,186,47,.85);
}

.gx-hero-title,
.gx-page-hero h1,
.gx-post-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.4px;
}

.gx-hero-desc,
.gx-page-hero p,
.gx-post-hero-meta {
  margin: 0;
  color: var(--gx-muted);
  font-size: 17px;
}

.gx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 18px;
}

.gx-label {
  font-size: 13px;
  color: var(--gx-muted);
}

.gx-panel,
.gx-info-card,
.gx-article-card,
.gx-post-card,
.gx-promo-card,
.gx-metric-card,
.gx-invite-box,
.gx-latest-item,
.gx-feature-item {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--gx-line);
  box-shadow: var(--gx-shadow);
}

.gx-panel,
.gx-info-card,
.gx-article-card,
.gx-post-card,
.gx-promo-card {
  border-radius: 22px;
}

.gx-panel {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.gx-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,186,47,.18), transparent 60%);
}

.gx-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.gx-metric-card {
  border-radius: 18px;
  padding: 18px;
}

.gx-metric-num {
  font-size: 24px;
  font-weight: 800;
}

.gx-metric-label {
  margin-top: 4px;
  font-size: 13px;
  color: var(--gx-muted);
}

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

.gx-feature-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
}

.gx-feature-item strong,
.gx-feature-item span {
  display: block;
}

.gx-step-url {
  color: #ffe39b;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.gx-feature-item em {
  display: block;
}

.gx-feature-item strong {
  font-size: 15px;
}

.gx-feature-item span,
.gx-feature-item em {
  font-size: 13px;
  color: var(--gx-muted);
}

.gx-feature-item em {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(243,186,47,.14);
  color: #ffe39b;
  font-style: normal;
  white-space: nowrap;
}

.gx-invite-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(243,186,47,.08);
  border-color: rgba(243,186,47,.18);
}

.gx-invite-code,
.gx-promo-code {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffe39b;
  word-break: break-all;
}

.gx-invite-note {
  color: var(--gx-muted);
  font-size: 14px;
}

.gx-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.gx-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--gx-line);
  color: #d7def0;
}

.gx-section {
  padding: 26px 0 34px;
}

.gx-section-soft {
  padding-top: 8px;
}

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

.gx-section-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
}

.gx-section-head p,
.gx-text-link {
  margin: 0;
  color: var(--gx-muted);
}

.gx-text-link {
  white-space: nowrap;
}

.gx-latest-list {
  display: grid;
  gap: 14px;
}

.gx-latest-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  border-radius: 20px;
}

.gx-latest-main h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.35;
}

.gx-latest-main p {
  margin: 0;
  color: var(--gx-muted);
}


.gx-latest-list--media {
  display: grid;
  gap: 22px;
}

.gx-latest-item--media {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 24px;
  gap: 28px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 24px;
}

.gx-latest-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.gx-latest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gx-latest-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.05);
}

.gx-arrow {
  font-size: 20px;
  color: #ffe39b;
}

.gx-grid {
  display: grid;
  gap: 18px;
}

.gx-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.gx-info-card {
  padding: 22px;
}

.gx-info-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.gx-info-card p {
  margin: 0;
  color: var(--gx-muted);
}

.gx-content-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
}

.gx-sticky-box {
  position: sticky;
  top: 96px;
}

.gx-post-card {
  overflow: hidden;
}

.gx-post-card-cover {
  display: block;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,.03);
}

.gx-post-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gx-post-card-body {
  padding: 20px 20px 22px;
}

.gx-post-kicker,
.gx-post-kicker-large {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--gx-muted);
  font-size: 13px;
}

.gx-post-kicker a,
.gx-post-kicker-large a {
  color: #ffe39b;
}

.gx-post-card-title {
  margin: 12px 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.gx-post-card-excerpt {
  margin: 0;
  color: var(--gx-muted);
  font-size: 14px;
}

.gx-promo-card {
  padding: 22px;
}

.gx-promo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(243,186,47,.14);
  color: #ffe39b;
  font-size: 12px;
  font-weight: 800;
}

.gx-promo-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.3;
}

.gx-promo-card p,
.gx-promo-list {
  color: var(--gx-muted);
}

.gx-promo-code-box {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(243,186,47,.08);
  border: 1px solid rgba(243,186,47,.16);
}

.gx-promo-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

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

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

.gx-article-card {
  padding: 22px;
}

.gx-post-cover-wrap {
  margin: 0 0 22px;
}

.gx-post-cover {
  width: 100%;
  border-radius: 18px;
}

.gx-post-content {
  font-size: 17px;
}

.gx-post-content > *:first-child {
  margin-top: 0;
}

.gx-page-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

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

.gx-sep {
  color: rgba(255,255,255,.22);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 28px 0 0;
  color: var(--gx-muted);
}

.pagination a {
  color: #ffe39b;
}

.gx-site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--gx-line);
  padding: 36px 0 54px;
}

.gx-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 20px;
}

.gx-site-footer h3,
.gx-site-footer h4 {
  margin: 0 0 12px;
}

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

.gx-footer-nav .nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.gx-footer-nav .nav a {
  color: var(--gx-muted);
}

.gx-footer-nav .nav a:hover,
.gx-footer-nav .nav .nav-current a {
  color: var(--gx-text);
}

@media (max-width: 1100px) {
  .gx-nav .nav {
    gap: 14px;
  }

  .gx-content-layout {
    grid-template-columns: 1fr 310px;
  }
}

@media (max-width: 980px) {
  .gx-hero-grid,
  .gx-content-layout,
  .gx-footer-grid,
  .gx-page-hero-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .gx-grid-3,
  .gx-grid-2,
  .gx-metrics {
    grid-template-columns: 1fr;
  }

  .gx-nav {
    display: none;
  }

  .gx-nav-wrap {
    min-height: 66px;
  }

  .gx-sticky-box {
    position: static;
  }

  .gx-side-col {
    order: -1;
  }
}

@media (max-width: 640px) {
  .gx-shell {
    width: min(var(--gx-shell), calc(100% - 22px));
  }

  .gx-hero,
  .gx-page-hero {
    padding: 38px 0 20px;
  }

  .gx-hero-title,
  .gx-page-hero h1,
  .gx-post-hero h1 {
    letter-spacing: -1px;
  }

  .gx-hero-actions,
  .gx-promo-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .gx-btn,
  .gx-nav-cta {
    width: 100%;
  }

  .gx-nav-wrap {
    align-items: stretch;
    padding: 12px 0;
  }

  .gx-brand {
    min-width: 0;
  }

  .gx-brand-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .gx-invite-box,
  .gx-latest-item,
  .gx-latest-item--media {
    grid-template-columns: 1fr;
    display: grid;
  }

  .gx-latest-item,
  .gx-latest-item--media {
    gap: 10px;
  }

  .gx-arrow {
    display: none;
  }

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


.gx-promo-offer {
  margin: 14px 0 0;
  color: var(--gx-muted);
  font-size: 14px;
}


/* Ghost editor required width classes */
.gh-content .kg-width-wide,
.gx-post-content .kg-width-wide {
  position: relative;
  width: min(1200px, 85vw);
  max-width: 1200px;
  min-width: 100%;
  margin: 2rem auto;
}

.gh-content .kg-width-full,
.gx-post-content .kg-width-full {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 2rem calc(50% - 50vw);
}

.gh-content .kg-width-wide img,
.gh-content .kg-width-full img,
.gx-post-content .kg-width-wide img,
.gx-post-content .kg-width-full img {
  width: 100%;
  height: auto;
}

.gh-content figure,
.gx-post-content figure {
  margin: 1.6rem 0;
}

.gh-content figcaption,
.gx-post-content figcaption {
  margin-top: .65rem;
  text-align: center;
  color: var(--gx-muted);
  font-size: 13px;
}

.gx-page-builder-mode .gx-page-section {
  padding-top: 0;
}

.gx-page-builder-shell {
  width: min(100%, 100%);
}

@media (max-width: 820px) {
  .gh-content .kg-width-wide,
  .gh-content .kg-width-full,
  .gx-post-content .kg-width-wide,
  .gx-post-content .kg-width-full {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 1.5rem 0;
    left: auto;
    right: auto;
    transform: none;
  }
}


.gx-copy-btn {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .gx-copy-btn {
    justify-self: stretch;
  }
}
