:root {
  --home-ink: #f5f5f5;
  --home-bg: #000000;
  --home-bg-soft: #0a0a0a;
  --home-paper: #111111;
  --home-paper-soft: #a3a3a3;
  --home-paper-line: #2a2a2a;
  --home-text: #fbf8ef;
  --home-muted: #a3a3a3;
  --home-subtle: #737373;
  --home-line: #1a1a1a;
  --home-line-strong: #3a3a3a;
  --home-brand: #f4c430;
  --home-brand-strong: #ffd24d;
  --home-coral: #a3a3a3;
  --home-blue: #a3a3a3;
  --home-mint: #a3a3a3;
  --home-radius: 8px;
  --home-max: 1220px;
  --home-nav-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[x-cloak] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body.home-page {
  min-height: 100vh;
  margin: 0;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
  letter-spacing: 0;
  overflow-x: hidden;
}

.home-page a {
  color: inherit;
  text-decoration: none;
}

.home-page img,
.home-page svg {
  display: block;
}

.skip-nav {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border: 1px solid var(--home-paper-line);
  border-radius: var(--home-radius);
  background: var(--home-paper);
  color: var(--home-ink);
  padding: 10px 14px;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-nav:focus {
  transform: translateY(0);
}

.home-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  color: var(--home-text);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.home-nav-scrolled {
  border-bottom-color: var(--home-line);
  background: #0a0a0a;
  backdrop-filter: none;
}

.home-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--home-max));
  min-height: var(--home-nav-height);
  margin: 0 auto;
  gap: 24px;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.home-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.home-brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  max-width: 170px;
  overflow: hidden;
  color: var(--home-text);
  font-size: 1.05rem;
  line-height: 1;
  transform-origin: left center;
  white-space: nowrap;
  will-change: max-width, opacity, transform;
}

.home-brand-wordmark strong {
  color: var(--home-brand-strong);
}

.home-brand-wordmark span {
  color: var(--home-muted);
  font-weight: 650;
}

.home-nav-brand-compact .home-brand {
  gap: 0;
}

.home-nav-brand-compact .home-brand-wordmark {
  animation: home-brand-wordmark-collapse 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.home-nav-brand-expanded .home-brand-wordmark {
  animation: home-brand-wordmark-expand 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes home-brand-wordmark-collapse {
  from {
    max-width: 170px;
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    max-width: 0;
    opacity: 0;
    transform: translateX(-14px) scale(0.88);
  }
}

@keyframes home-brand-wordmark-expand {
  from {
    max-width: 0;
    opacity: 0;
    transform: translateX(-14px) scale(0.88);
  }
  to {
    max-width: 170px;
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.home-nav-links,
.home-nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.home-nav-links {
  margin-left: auto;
}

.home-nav-link {
  color: var(--home-muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  transition: color 160ms ease;
}

.home-nav-link:hover,
.home-nav-link:focus-visible {
  color: var(--home-text);
}

.home-nav-more {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.home-nav-more-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  border: 0;
  background: transparent;
  color: var(--home-muted);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease;
}

.home-nav-more-toggle:hover,
.home-nav-more-toggle:focus-visible,
.home-nav-more-toggle[aria-expanded="true"] {
  color: var(--home-text);
}

.home-nav-more-toggle svg {
  transition: transform 160ms ease;
}

.home-nav-more-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.home-nav-more-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 45;
  display: none;
  min-width: 230px;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: #0a0a0a;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.home-nav-more-menu.is-open {
  display: flex;
}

.home-nav-more-link {
  display: flex;
  align-items: center;
  min-height: 36px;
  border-radius: 6px;
  color: var(--home-muted);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0 10px;
}

.home-nav-more-link:hover,
.home-nav-more-link:focus-visible {
  background: rgba(251, 248, 239, 0.08);
  color: var(--home-text);
}

.home-nav-button,
.home-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  overflow: hidden;
  border-radius: var(--home-radius);
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.home-nav-button {
  border: 1px solid #2a2a2a;
  background: #111111;
  color: var(--home-brand-strong);
  padding: 0 16px;
  font-size: 0.9rem;
}

.home-nav-button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 5px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.65));
}

.home-nav-button-subtle {
  border-color: var(--home-paper-line);
  background: transparent;
  color: var(--home-brand-strong);
}

.home-profile-button {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 180px;
  min-height: 36px;
  gap: 0.5rem;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  background: #111111;
  color: var(--home-text);
  padding: 0.25rem 0.625rem 0.25rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  transition:
    background 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}
.home-profile-button[hidden] {
  display: none !important;
}

[data-ge-auth-anonymous][hidden],
[data-ge-auth-user][hidden] {
  display: none !important;
}

.home-profile-button:hover,
.home-profile-button:focus-visible {
  border-color: #3a3a3a;
  background: #111111;
}

.home-profile-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  background: #111111;
  color: var(--home-brand-strong);
  font-size: 0.72rem;
  font-weight: 700;
}
.home-profile-initial[hidden],
.home-profile-avatar[hidden] {
  display: none !important;
}
.home-profile-avatar-wrap {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}
.home-profile-avatar-wrap .home-profile-initial {
  width: 100%;
  height: 100%;
}
.home-profile-avatar-wrap .home-profile-avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #2a2a2a;
  z-index: 1;
}

.home-profile-button.ge-supporter-tier-pro,
[data-ge-supporter-frame].ge-supporter-tier-pro {
  border-color: #3a3a3a;
  background: #111111;
}

.home-profile-button.ge-supporter-tier-master,
[data-ge-supporter-frame].ge-supporter-tier-master {
  border-color: rgba(255, 209, 91, 0.74);
  background: #111111;
  box-shadow: none;
}

.home-newsletter-form {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin-top: 22px;
}

.home-newsletter-form label {
  color: var(--home-brand-strong);
  font-family: var(--font-mono, "JetBrains Mono", Consolas, monospace);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-newsletter-row {
  display: flex;
  gap: 8px;
}

.home-newsletter-row input {
  min-width: 0;
  flex: 1;
  min-height: 42px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: #111111;
  color: var(--home-text);
  padding: 0 12px;
  font: inherit;
}

.home-newsletter-row input::placeholder {
  color: var(--home-subtle);
}

.home-newsletter-row button {
  min-height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(244, 196, 48, 0.42);
  border-radius: var(--home-radius);
  background: rgba(244, 196, 48, 0.12);
  color: var(--home-text);
  padding: 0 13px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}

.home-newsletter-row button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.home-newsletter-form p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.home-newsletter-form p[data-tone="success"] {
  color: #a8e7ba;
}

.home-newsletter-form p[data-tone="error"] {
  color: #ffb4a2;
}

.home-blog-main {
  min-height: 100vh;
  padding-top: calc(var(--home-nav-height) + 34px);
}

.home-blog-hero {
  padding-bottom: 30px;
}

.home-blog-hero > .home-section-heading {
  width: min(100% - 48px, var(--home-max));
  margin-right: auto;
  margin-left: auto;
}

.home-blog-hero h1,
.home-blog-article header h1 {
  margin: 0;
  color: var(--home-text);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.home-blog-list-section {
  padding-top: 12px;
}

.home-update-section-band {
  background: var(--home-paper);
  color: var(--home-ink);
}

.home-update-index-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 56px;
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto;
}

.home-update-index-content {
  min-width: 0;
}

.home-update-index-toc,
.home-update-toc {
  position: sticky;
  top: calc(var(--home-nav-height) + 24px);
  align-self: start;
  border-top: 1px solid var(--home-paper-line);
  border-bottom: 1px solid var(--home-paper-line);
  padding: 18px 0;
}

.home-update-index-toc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-update-index-toc p,
.home-update-toc p,
.home-update-section-heading span {
  margin: 0 0 12px;
  color: #77664a;
  font-family: var(--font-mono, "JetBrains Mono", Consolas, monospace);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-update-index-toc a,
.home-update-toc a {
  border-radius: var(--home-radius);
  color: #514b40;
  padding: 9px 10px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.home-update-index-toc a:hover,
.home-update-index-toc a:focus-visible,
.home-update-toc a:hover,
.home-update-toc a:focus-visible {
  background: rgba(18, 18, 15, 0.06);
  color: var(--home-ink);
}

.home-update-category-section,
.home-update-section-block {
  scroll-margin-top: calc(var(--home-nav-height) + 24px);
  border-top: 1px solid var(--home-paper-line);
  padding: 28px 0;
}

.home-update-category-section:first-child,
.home-update-section-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.home-update-section-heading {
  margin: 0 0 20px;
}

.home-update-section-heading h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: 1.45rem;
  line-height: 1.25;
}

.home-update-section-band .home-blog-card,
.home-update-section-band .home-updates-grid,
.home-update-related .home-updates-grid {
  width: 100%;
  border-color: var(--home-paper-line);
}

.home-update-section-band .home-blog-card {
  padding: 0 0 28px;
}

.home-update-section-band .home-blog-card figure {
  border-color: var(--home-paper-line);
}

.home-update-section-band .home-blog-card h2,
.home-update-section-band .home-update-card h2,
.home-update-prose h2,
.home-update-prose h3,
.home-update-related .home-update-card h2,
.home-update-related .home-update-section-heading h2 {
  color: var(--home-ink);
}

.home-update-section-band .home-blog-card p,
.home-update-section-band .home-update-card p,
.home-update-prose p,
.home-update-prose li,
.home-update-related .home-update-card p {
  color: #4f493f;
}

.home-update-section-band .home-blog-card span,
.home-update-section-band .home-update-card span,
.home-update-related .home-update-card span {
  color: #7b5608;
  border-color: var(--home-paper-line);
}

.home-update-section-band .home-blog-card time,
.home-update-section-band .home-update-card time,
.home-update-related .home-update-card time {
  border-color: var(--home-paper-line);
  color: #77664a;
}

.home-update-section-band .home-update-card,
.home-update-related .home-update-card {
  border-color: var(--home-paper-line);
}

.home-update-section-band .home-button-secondary,
.home-update-related .home-button-secondary {
  border-color: rgba(18, 18, 15, 0.22);
  background:
    linear-gradient(180deg, rgba(18, 18, 15, 0.07), rgba(18, 18, 15, 0.025)),
    rgba(255, 255, 255, 0.28);
  color: var(--home-ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -1px 0 rgba(18, 18, 15, 0.08);
}

.home-update-section-band .home-button-secondary:hover,
.home-update-section-band .home-button-secondary:focus-visible,
.home-update-related .home-button-secondary:hover,
.home-update-related .home-button-secondary:focus-visible {
  border-color: rgba(18, 18, 15, 0.34);
  background:
    linear-gradient(180deg, rgba(18, 18, 15, 0.095), rgba(18, 18, 15, 0.035)),
    rgba(255, 255, 255, 0.36);
}

.home-blog-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: 28px;
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  padding: 28px 0;
}

.home-blog-card figure,
.home-blog-article figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: #111111;
}

.home-update-card figure {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--home-paper-line);
  border-radius: var(--home-radius);
  background: #111111;
}

.home-blog-card img,
.home-blog-article img,
.home-update-card img,
.home-update-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-blog-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.home-blog-card span {
  color: var(--home-brand-strong);
  font-family: var(--font-mono, "JetBrains Mono", Consolas, monospace);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-blog-card time,
.home-blog-article time,
.home-update-card time {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  color: var(--home-muted);
  padding: 5px 9px;
  font-family: var(--font-mono, "JetBrains Mono", Consolas, monospace);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.home-blog-card h2 {
  margin: 10px 0 0;
  color: var(--home-text);
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 1.02;
}

.home-blog-card p,
.home-blog-article p {
  color: var(--home-paper-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.home-blog-article {
  display: grid;
  gap: 26px;
  width: min(100% - 48px, 920px);
  margin: 0 auto;
  padding: 58px 0 80px;
}

.home-blog-article--post {
  width: min(100% - 48px, var(--home-max));
}

.home-blog-article header p:not(.home-eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--home-paper-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.home-blog-article section {
  border-top: 1px solid var(--home-line);
  padding-top: 22px;
}

.home-blog-article h2 {
  margin: 0;
  color: var(--home-text);
  font-size: 1.45rem;
  line-height: 1.15;
}

.home-blog-article .home-update-prose {
  border-top: 0;
  padding-top: 0;
}

.home-blog-article .home-update-section-block {
  border-top: 1px solid var(--home-paper-line);
  padding: 28px 0;
}

.home-blog-article .home-update-section-block:first-child {
  border-top: 0;
  padding-top: 0;
}

.home-blog-article .home-update-prose h2,
.home-blog-article .home-update-prose h3,
.home-blog-article .home-update-related h2,
.home-blog-article .home-update-related .home-update-card h2 {
  color: var(--home-ink);
}

.home-blog-article .home-update-prose p,
.home-blog-article .home-update-prose li,
.home-blog-article .home-update-related .home-update-card p {
  color: #4f493f;
}

.home-blog-article .home-update-related {
  border-top: 1px solid var(--home-paper-line);
  border-bottom: 1px solid var(--home-paper-line);
  padding: 34px 0;
}

.home-blog-article footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--home-line);
  padding-top: 24px;
}

.home-blog-article .home-update-post-content {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 0;
  background: var(--home-paper);
  color: var(--home-ink);
  padding: 72px 0 80px;
}

.home-blog-article .home-update-post-actions {
  width: min(100% - 48px, var(--home-max));
  margin: 28px auto 0;
  border-top: 1px solid var(--home-paper-line);
  padding-top: 24px;
}

.home-blog-article .home-update-post-content .home-update-related {
  width: min(100% - 48px, var(--home-max));
  margin: 34px auto 0;
  background: transparent;
}

.home-update-categories,
.home-updates-grid,
.home-update-article-layout {
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto;
}

.home-update-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.home-update-categories span,
.home-update-card span {
  border: 1px solid var(--home-line);
  border-radius: 999px;
  color: var(--home-brand-strong);
  padding: 6px 10px;
  font-family: var(--font-mono, "JetBrains Mono", Consolas, monospace);
  font-size: 0.72rem;
  font-weight: 850;
}

.home-updates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-update-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  border-right: 1px solid var(--home-line);
  padding: 26px;
}

.home-update-card:nth-child(2n),
.home-update-card:last-child {
  border-right: 0;
}

.home-update-card h2 {
  margin: 14px 0 0;
  color: var(--home-text);
  font-size: 1.45rem;
  line-height: 1.16;
}

.home-update-card p {
  color: var(--home-paper-soft);
  line-height: 1.68;
}

.home-update-article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
}

.home-update-toc {
  display: grid;
  gap: 8px;
}

.home-update-toc:empty {
  display: none;
}

.home-update-prose {
  min-width: 0;
  max-width: 840px;
}

.home-update-prose ul,
.home-update-prose ol {
  display: grid;
  gap: 8px;
  color: var(--home-paper-soft);
  line-height: 1.72;
}

.home-blog-callout {
  border-left: 3px solid var(--home-brand);
  background: #111111;
  color: var(--home-paper-soft);
  padding: 16px 18px;
  line-height: 1.66;
}

.home-update-prose .home-blog-callout {
  border-left-color: #b68a22;
  background: rgba(18, 18, 15, 0.04);
  color: #4f493f;
}

.home-update-related {
  border-top: 1px solid var(--home-paper-line);
  border-bottom: 1px solid var(--home-paper-line);
  background: var(--home-paper);
  color: var(--home-ink);
  padding: 34px 0;
}

.home-update-related--article {
  margin-top: 18px;
}

.home-updates-section--featured {
  padding-top: 76px;
  padding-bottom: 76px;
}

.home-updates-section--featured .home-section-heading p:not(.home-eyebrow) {
  max-width: 720px;
  margin-top: 12px;
}

.home-update-feature-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  align-items: stretch;
  border-top: 1px solid rgba(18, 18, 15, 0.16);
  padding: 20px 0;
}

.home-updates-list .home-update-feature-card {
  grid-template-columns: minmax(220px, 0.44fr) minmax(0, 0.56fr);
  gap: 24px;
  padding: 22px 0;
}

.home-update-feature-card:first-child {
  padding-top: 0;
  border-top: 0;
}

.home-update-feature-card figure {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 15, 0.16);
  border-radius: var(--home-radius);
  background: #11110f;
}

.home-update-feature-card div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  grid-column: auto;
}

.home-footer-link-button {
  border: 0;
  background: transparent;
  color: var(--home-muted);
  padding: 0;
  font: inherit;
  font-size: 0.94rem;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease;
}

.home-footer-link-button:hover,
.home-footer-link-button:focus-visible {
  color: var(--home-text);
}

.home-profile-avatar-wrap.ge-supporter-tier-pro::after,
.home-profile-avatar.ge-supporter-tier-pro,
.home-profile-initial.ge-supporter-tier-pro,
.profile-avatar.ge-supporter-tier-pro {
  border-color: #3a3a3a;
  box-shadow: none;
}

.home-profile-avatar-wrap.ge-supporter-tier-master::after,
.home-profile-avatar.ge-supporter-tier-master,
.home-profile-initial.ge-supporter-tier-master,
.profile-avatar.ge-supporter-tier-master {
  border-color: rgba(255, 209, 91, 0.92);
  box-shadow: none;
}

.home-profile-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-drawer-button,
.home-mobile-drawer-link {
  align-items: center;
  justify-content: center;
  border: 1px solid #2a2a2a;
  border-radius: var(--home-radius);
  background: #111111;
  color: var(--home-brand-strong);
  cursor: pointer;
}

.home-drawer-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
}

.home-nav-actions .home-drawer-button {
  order: 30;
}

.home-nav-actions > .home-nav-button:not(.home-nav-button-subtle) {
  order: 20;
}

.home-drawer-button[hidden] {
  display: none !important;
}

@media (min-width: 981px) {
  .home-nav-actions .home-drawer-button {
    display: none !important;
  }
}

.home-mobile-profile-link,
.home-mobile-drawer-link {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.home-mobile-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #2a2a2a;
  border-radius: var(--home-radius);
  background: #111111;
  color: var(--home-brand-strong);
}
.home-mobile-profile-link[hidden] {
  display: none !important;
}

.home-mobile-drawer-link {
  display: inline-flex;
  color: var(--home-brand-strong);
}
.home-mobile-drawer-link[hidden] {
  display: none !important;
}

.home-nav-button:hover,
.home-nav-button:focus-visible,
.home-button:hover,
.home-button:focus-visible {
  transform: translateY(-1px);
}

.home-button:focus-visible,
.home-nav-button:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(244, 196, 48, 0.18),
    0 16px 34px rgba(0, 0, 0, 0.24);
}

.home-button:disabled,
button.home-button[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.home-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: #111111;
  color: var(--home-text);
}

.home-mobile-menu {
  display: none;
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  padding: 112px 0 44px;
  overflow: hidden;
  background: #000000;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: none;
  background-size: 56px 56px;
  mask-image: none;
  pointer-events: none;
}

.home-gradient-background-root {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000000;
  pointer-events: none;
}

.home-gradient-background-root::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at 48% 54%,
      rgba(0, 0, 0, 0.44),
      rgba(0, 0, 0, 0.36) 34%,
      rgba(0, 0, 0, 0.14) 62%,
      rgba(0, 0, 0, 0.36) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.12) 45%,
      rgba(0, 0, 0, 0.34)
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.home-gradient-background {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
  filter: blur(0.8px) saturate(1.02) brightness(0.96);
  transform: scale(1.006);
  transform-origin: center;
}

.home-gradient-background [data-ge-home-hero-shader],
.home-gradient-background [data-paper-shader] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-gradient-background canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.home-gradient-background [data-ge-home-hero-shader] canvas,
.home-gradient-background [data-paper-shader] canvas {
  z-index: 0;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: 42px;
  width: min(100% - 48px, var(--home-max));
  min-height: min(720px, calc(100vh - 170px));
  margin: 0 auto;
}

.home-hero-copy {
  max-width: 650px;
}

.home-eyebrow {
  margin: 0 0 18px;
  color: var(--home-brand-strong);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero h1,
.home-section-heading h2 {
  margin: 0;
  color: var(--home-text);
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
  font-weight: 880;
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: 680px;
  font-size: 4.1rem;
  line-height: 1;
}

.home-hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--home-paper-soft);
  font-size: 1.13rem;
  line-height: 1.68;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home-button {
  min-width: 190px;
  padding: 0 20px;
  font-size: 0.98rem;
}

.home-button-primary {
  border: 1px solid rgba(244, 196, 48, 0.46);
  background:
    linear-gradient(180deg, rgba(244, 196, 48, 0.2), rgba(244, 196, 48, 0.075)),
    linear-gradient(180deg, #20190f, #11100d);
  color: var(--home-text);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 203, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42),
    0 14px 30px rgba(0, 0, 0, 0.26);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55);
}

.home-page .home-button-primary {
  color: var(--home-text);
}

.home-button-primary:hover,
.home-button-primary:focus-visible {
  border-color: rgba(255, 209, 91, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 209, 91, 0.26), rgba(244, 196, 48, 0.1)),
    linear-gradient(180deg, #261e12, #13110d);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 203, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.44),
    0 18px 38px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(244, 196, 48, 0.08);
}

.home-button-secondary {
  border: 1px solid rgba(251, 248, 239, 0.22);
  background:
    linear-gradient(180deg, rgba(251, 248, 239, 0.07), rgba(251, 248, 239, 0.025)),
    rgba(17, 17, 17, 0.72);
  color: var(--home-text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.36);
}

.home-button-secondary:hover,
.home-button-secondary:focus-visible {
  border-color: rgba(251, 248, 239, 0.38);
  background:
    linear-gradient(180deg, rgba(251, 248, 239, 0.105), rgba(251, 248, 239, 0.035)),
    rgba(22, 22, 20, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.38),
    0 14px 28px rgba(0, 0, 0, 0.18);
}

.home-button-primary:focus-visible,
.home-button-secondary:focus-visible {
  box-shadow:
    0 0 0 3px rgba(244, 196, 48, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.38),
    0 18px 38px rgba(0, 0, 0, 0.3);
}

.home-codex-preview {
  align-self: center;
  width: 100%;
  border: 1px solid var(--home-line-strong);
  border-radius: var(--home-radius);
  background: #111111;
  box-shadow: none;
  overflow: hidden;
}

.home-product-carousel-card {
  position: relative;
  border-color: #2a2a2a;
  background: #050505;
}

.home-product-carousel-stage {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 9;
  background: #050505;
  overflow: hidden;
}

.home-product-carousel-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  margin: 0;
  opacity: 0;
  transform: translateX(10px) scale(1.006);
  animation: home-product-carousel-fade 18s linear infinite;
}

.home-product-carousel-slide::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 32%, rgba(0, 0, 0, 0.14));
  content: "";
  pointer-events: none;
}

.home-product-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  background: #050505;
  object-fit: cover;
  object-position: center;
}

.home-product-carousel-slide-market {
  animation-delay: 0s;
}

.home-product-carousel-slide-tooltip {
  animation-delay: 6s;
}

.home-product-carousel-slide-item {
  animation-delay: 12s;
}

.home-product-carousel-card[data-ge-carousel-ready] .home-product-carousel-slide {
  opacity: 0;
  transform: translateX(10px) scale(1.006);
  animation: none;
  transition:
    opacity 360ms ease,
    transform 720ms ease;
}

.home-product-carousel-card[data-ge-carousel-ready] .home-product-carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateX(0) scale(1);
}

.home-product-carousel-progress {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 7px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(10px);
}

.home-product-carousel-progress span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.home-product-carousel-progress span::before {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--home-brand);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  animation: home-product-carousel-progress 18s linear infinite;
}

.home-product-carousel-progress span:nth-child(2)::before {
  animation-delay: 6s;
}

.home-product-carousel-progress span:nth-child(3)::before {
  animation-delay: 12s;
}

.home-product-carousel-card[data-ge-carousel-ready] .home-product-carousel-progress span::before {
  animation: none;
}

.home-product-carousel-card[data-ge-carousel-ready]
  .home-product-carousel-progress
  span.is-active::before {
  animation: home-product-carousel-progress-active var(--home-product-carousel-interval, 6000ms)
    linear forwards;
}

.home-frame-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--home-line);
  padding: 14px 18px;
  color: var(--home-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.home-frame-caption span {
  min-width: 0;
}

.home-frame-caption a {
  flex: 0 0 auto;
  border: 1px solid #2a2a2a;
  border-radius: var(--home-radius);
  color: var(--home-brand-strong);
  padding: 9px 12px;
  font-weight: 850;
}

.home-product-carousel-caption {
  background: #050505;
}

@keyframes home-product-carousel-fade {
  0%,
  30% {
    z-index: 1;
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  35%,
  100% {
    z-index: 0;
    opacity: 0;
    transform: translateX(-8px) scale(1.006);
  }
}

@keyframes home-product-carousel-progress {
  0% {
    transform: scaleX(0);
  }

  30% {
    transform: scaleX(1);
  }

  35%,
  100% {
    transform: scaleX(0);
  }
}

@keyframes home-product-carousel-progress-active {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.home-language-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: #000000;
  padding: 9px 0;
  box-shadow:
    inset 0 16px 28px rgba(255, 255, 255, 0.035),
    inset 0 -20px 34px rgba(0, 0, 0, 0.92),
    0 -18px 44px rgba(0, 0, 0, 0.42),
    0 18px 48px rgba(0, 0, 0, 0.58);
}

.home-language-strip::before,
.home-language-strip::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.home-language-strip::before {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 42%, rgba(255, 255, 255, 0.025)),
    radial-gradient(ellipse at 50% 0%, rgba(236, 204, 130, 0.14), transparent 52%);
  opacity: 0.78;
}

.home-language-strip::after {
  z-index: 2;
  background: linear-gradient(90deg, #000000, rgba(0, 0, 0, 0) 34px, rgba(0, 0, 0, 0) calc(100% - 34px), #000000);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.home-language-strip-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 0;
  margin: 0;
}

.home-language-marquee {
  position: relative;
  width: 100%;
  min-height: 36px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: inset 0 8px 18px rgba(255, 255, 255, 0.025);
}

.home-language-marquee::before,
.home-language-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 34px;
  content: "";
  pointer-events: none;
}

.home-language-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #000000, rgba(0, 0, 0, 0));
}

.home-language-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #000000, rgba(0, 0, 0, 0));
}

.home-language-marquee-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  align-items: center;
  min-height: 36px;
  gap: 0;
  padding: 0;
  animation: home-language-marquee 24s linear infinite;
  will-change: transform;
}

.home-language-marquee-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
}

.home-language-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  padding: 0 13px 0 9px;
  border: 1px solid rgba(251, 248, 239, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #f6ecd7;
  font-size: 0.88rem;
  font-weight: 780;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -8px 18px rgba(0, 0, 0, 0.24),
    0 7px 18px rgba(0, 0, 0, 0.34);
}

.home-language-chip img {
  width: 24px;
  height: 17px;
  flex: 0 0 24px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

@keyframes home-language-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-language-marquee-track {
    animation: none;
    transform: none;
  }
}

.home-section {
  padding: 92px 0;
}

.home-section-heading {
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto 44px;
  text-align: center;
}

.home-section-heading-left {
  width: auto;
  margin: 0;
  text-align: left;
}

.home-section-heading h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: 3rem;
  line-height: 1.07;
}

.home-section-heading-left h2 {
  margin: 0;
}

.home-section-heading p:not(.home-eyebrow) {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--home-muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.home-section-heading-left p:not(.home-eyebrow) {
  margin-left: 0;
}

.home-company-section,
.home-updates-section {
  background: var(--home-paper);
  color: var(--home-ink);
}

.home-company-section .home-eyebrow,
.home-updates-section .home-eyebrow,
.home-principles-section .home-eyebrow {
  color: #f4c430;
}

.home-company-section .home-section-heading h2,
.home-updates-section .home-section-heading h2,
.home-principles-section .home-section-heading h2 {
  color: var(--home-ink);
}

.home-company-section .home-section-heading p,
.home-updates-section .home-section-heading p,
.home-principles-section .home-section-heading p {
  color: #a3a3a3;
}

.home-editorial-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto;
}

.home-company-media,
.home-principles-stack {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.home-illustration-card,
.home-updates-illustration {
  position: relative;
  margin: 0;
  border: 1px solid rgba(18, 18, 15, 0.18);
  border-radius: var(--home-radius);
  background: #111111;
  box-shadow: none;
  overflow: hidden;
}

.home-illustration-card img,
.home-updates-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-company-illustration {
  aspect-ratio: 16 / 10;
}

.home-principles-illustration {
  aspect-ratio: 16 / 7.4;
  border-color: rgba(18, 18, 15, 0.2);
}

.home-principles-illustration img {
  object-position: center 64%;
}

.home-company-media .home-company-panel {
  min-height: 278px;
}

.home-company-panel,
.home-updates-aside {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--home-paper-line);
  border-radius: var(--home-radius);
  background: #111111;
  padding: 30px;
}

.home-company-panel span,
.home-updates-aside span {
  color: #a3a3a3;
  font-family: var(--font-mono, "JetBrains Mono", Consolas, monospace);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-company-panel strong,
.home-updates-aside strong {
  display: block;
  margin-top: 16px;
  color: var(--home-ink);
  font-size: 3rem;
  line-height: 0.95;
}

.home-company-panel p,
.home-updates-aside p {
  margin: 22px 0 0;
  color: #a3a3a3;
  font-size: 1.05rem;
  line-height: 1.65;
}

.home-company-panel ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.home-company-panel li {
  border-top: 1px solid var(--home-paper-line);
  padding-top: 10px;
  color: var(--home-ink);
  font-weight: 750;
}

.home-company-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--home-paper-line);
  border-bottom: 1px solid var(--home-paper-line);
}

.home-company-points article {
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--home-paper-line);
}

.home-company-points article:last-child {
  border-right: 0;
  padding-left: 24px;
}

.home-company-points span,
.home-principles-list span,
.home-updates-list span {
  color: #a3a3a3;
  font-family: var(--font-mono, "JetBrains Mono", Consolas, monospace);
  font-size: 0.78rem;
  font-weight: 850;
}

.home-company-points h3,
.home-principles-list h3 {
  margin: 14px 0 10px;
  color: var(--home-ink);
  font-size: 1.15rem;
}

.home-company-points p,
.home-principles-list p,
.home-updates-list p {
  margin: 0;
  color: #a3a3a3;
  line-height: 1.62;
}

.home-goldmaking-section {
  position: relative;
  overflow: hidden;
  background: #111111;
}

.home-goldmaking-section::before {
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: 54px 54px;
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

.home-goldmaking-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto;
}

.home-goldmaking-section .home-section-heading h2 {
  color: var(--home-text);
}

.home-goldmaking-section .home-section-heading p:not(.home-eyebrow) {
  color: var(--home-muted);
}

.home-goldmaking-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-goldmaking-points article {
  padding: 22px 22px 22px 0;
  border-right: 1px solid var(--home-line);
}

.home-goldmaking-points article:last-child {
  border-right: 0;
  padding-left: 22px;
}

.home-goldmaking-points span {
  color: var(--home-brand-strong);
  font-family: var(--font-mono, "JetBrains Mono", Consolas, monospace);
  font-size: 0.78rem;
  font-weight: 850;
}

.home-goldmaking-points h3 {
  margin: 14px 0 10px;
  color: var(--home-text);
  font-size: 1.12rem;
}

.home-goldmaking-points p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.58;
}

.home-brutosaur-stage {
  min-width: 0;
  margin: 0;
  border: 1px solid #2a2a2a;
  border-radius: var(--home-radius);
  background: #111111;
  box-shadow: none;
  overflow: hidden;
}

.home-brutosaur-stage canvas {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(180deg, rgba(17, 17, 15, 0.14), rgba(17, 17, 15, 0.22)),
    url("/ui/images/home/brutosaur-caravan.webp") center / cover no-repeat;
}

.home-brutosaur-stage figcaption {
  border-top: 1px solid #1a1a1a;
  color: var(--home-muted);
  padding: 14px 16px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.home-product-section {
  background: var(--home-bg);
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto;
}

.home-product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: #111111;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.home-product-card:hover,
.home-product-card:focus-visible {
  border-color: #3a3a3a;
  background: #111111;
  transform: translateY(-2px);
}

.home-product-shot {
  margin: 0;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  overflow: hidden;
}

.home-product-shot img {
  width: 100%;
  height: 100%;
  border-bottom: 1px solid var(--home-line);
  object-fit: contain;
  object-position: center;
}

.home-product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.home-product-copy span {
  color: var(--home-subtle);
  font-family: var(--font-mono, "JetBrains Mono", Consolas, monospace);
  font-size: 0.75rem;
  font-weight: 850;
}

.home-product-copy h3,
.home-faq-item h3 {
  margin: 0;
  color: var(--home-text);
  font-size: 1.2rem;
  line-height: 1.25;
}

.home-product-copy p,
.home-faq-item p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.home-plans-section {
  background: var(--home-bg);
}

.plans-limited-offer {
  display: grid;
  gap: 6px;
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto 22px;
  border: 1px solid rgba(125, 92, 255, 0.58);
  border-radius: var(--home-radius);
  background:
    linear-gradient(135deg, rgba(31, 111, 235, 0.28), rgba(125, 92, 255, 0.22)),
    #101018;
  padding: 18px 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 54px rgba(54, 91, 255, 0.18);
}

.plans-limited-offer span {
  color: #AFC8FF;
  font-family: var(--font-mono, "JetBrains Mono", Consolas, monospace);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plans-limited-offer strong {
  color: var(--home-text);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.18;
}

.plans-limited-offer p {
  max-width: 760px;
  margin: 0;
  color: #D9E4FF;
  font-size: 0.98rem;
  line-height: 1.5;
}

.home-plans-section .plans-limited-offer {
  margin-bottom: 18px;
}

.home-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto;
}

.home-plan {
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  padding: 24px;
  background: #111111;
}

.home-plan-badge {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.3));
}

.home-plan.featured {
  border-color: #3a3a3a;
  background: #111111;
}

.home-plan > span {
  color: var(--home-subtle);
  font-family: var(--font-mono, "JetBrains Mono", Consolas, monospace);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-plan > strong {
  color: var(--home-text);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.home-plan p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.home-plan ul {
  display: grid;
  gap: 10px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.home-plan li {
  position: relative;
  padding-left: 18px;
  color: var(--home-text);
  font-size: 0.94rem;
}

.home-plan li::before {
  position: absolute;
  left: 0;
  color: var(--home-brand);
  content: "✓";
}

.home-plan .home-button {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.home-principles-section {
  background: #0a0a0a;
  color: var(--home-ink);
}

.home-principles-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto;
}

.home-principles-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--home-paper-line);
  border-bottom: 1px solid var(--home-paper-line);
}

.home-principles-list article {
  padding: 26px 22px;
  border-right: 1px solid var(--home-paper-line);
}

.home-principles-list article:last-child {
  border-right: 0;
}

.home-updates-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto;
}

.home-updates-section > .home-section-heading {
  width: min(100% - 48px, var(--home-max));
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 28px;
}

.home-updates-list {
  border-top: 1px solid var(--home-paper-line);
}

.home-updates-list article {
  display: grid;
  grid-template-columns: 120px minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--home-paper-line);
  padding: 22px 0;
}

.home-updates-list strong {
  min-width: 0;
  max-width: 100%;
  color: var(--home-ink);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.home-updates-list strong a {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.home-updates-aside {
  min-height: auto;
  background: #111111;
}

.home-updates-illustration {
  aspect-ratio: 16 / 10;
  margin: -10px -10px 24px;
}

.home-updates-illustration img {
  object-position: center 58%;
}

.home-updates-aside a {
  align-self: flex-start;
  margin-top: 24px;
  border: 1px solid rgba(18, 18, 15, 0.28);
  border-radius: var(--home-radius);
  color: var(--home-ink);
  padding: 10px 12px;
  font-weight: 850;
}

.home-faq-section {
  background: #111111;
}

.home-faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-faq-item {
  min-width: 0;
  padding: 28px 26px;
  border-right: 1px solid var(--home-line);
}

.home-faq-item:last-child {
  border-right: 0;
}

.home-faq-item p {
  margin-top: 14px;
}

.home-footer {
  border-top: 1px solid var(--home-line);
  background: #0a0a0a;
  color: var(--home-muted);
}

.home-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.4fr) minmax(160px, 0.4fr);
  gap: 42px;
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto;
  padding: 48px 0;
}

.home-footer-brand p {
  max-width: 440px;
  margin: 20px 0 0;
  color: var(--home-muted);
  line-height: 1.7;
}

.home-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-footer-links h2 {
  margin: 0 0 8px;
  color: var(--home-text);
  font-size: 0.86rem;
}

.home-footer-links a {
  color: var(--home-muted);
  font-size: 0.94rem;
  transition: color 160ms ease;
}

.home-footer-links a:hover,
.home-footer-links a:focus-visible {
  color: var(--home-text);
}

.home-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 48px, var(--home-max));
  margin: 0 auto;
  padding: 22px 0 30px;
  border-top: 1px solid var(--home-line);
  color: var(--home-subtle);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .home-hero-inner,
  .home-editorial-layout,
  .home-goldmaking-layout,
  .home-principles-layout,
  .home-updates-layout {
    grid-template-columns: 1fr;
  }

  .home-hero-inner {
    min-height: auto;
  }

  .home-codex-preview {
    max-width: 760px;
  }

  .home-updates-aside {
    min-height: 280px;
  }
}

@media (max-width: 980px) {
  .home-nav-links {
    display: none;
  }

  .home-nav-actions {
    display: flex;
    margin-left: auto;
    gap: 10px;
  }

  .home-nav-actions > :not(.lang-switcher-wrap):not(.home-drawer-button) {
    display: none !important;
  }

  .home-nav-actions .home-drawer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .home-menu-button {
    display: none;
  }

  .home-mobile-menu {
    position: fixed;
    top: var(--home-nav-height);
    left: 16px;
    right: 16px;
    z-index: 39;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius);
    background: #0a0a0a;
    padding: 18px;
    box-shadow: none;
  }

  .home-mobile-menu a {
    color: var(--home-text);
    font-weight: 750;
  }

  .home-mobile-divider {
    height: 1px;
    background: var(--home-line);
  }

  .home-mobile-language {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-mobile-language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius);
    background: #111111;
    color: var(--home-text);
    padding: 10px;
    font: inherit;
  }

  .home-mobile-language-option.active {
    border-color: #3a3a3a;
    color: var(--home-brand-strong);
  }

  .home-hero h1 {
    font-size: 3.35rem;
  }

  .home-product-grid,
  .home-blog-card,
  .home-plan-grid,
  .home-goldmaking-points,
  .home-principles-list,
  .home-update-index-layout,
  .home-updates-grid,
  .home-update-article-layout,
  .home-faq-list,
  .home-footer-inner {
    grid-template-columns: 1fr;
  }

  .home-company-points {
    grid-template-columns: 1fr;
  }

  .home-company-points article,
  .home-company-points article:last-child,
  .home-goldmaking-points article,
  .home-goldmaking-points article:last-child,
  .home-principles-list article,
  .home-faq-item {
    border-right: 0;
    border-bottom: 1px solid var(--home-paper-line);
    padding-left: 0;
  }

  .home-faq-item {
    border-bottom-color: var(--home-line);
  }

  .home-update-card {
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .home-update-card:last-child {
    border-bottom: 0;
  }

  .home-update-index-toc,
  .home-update-toc {
    position: static;
  }

  .home-blog-card {
    gap: 18px;
  }

  .home-update-feature-card {
    grid-template-columns: 1fr;
  }

  .home-updates-list .home-update-feature-card {
    grid-template-columns: 1fr;
  }

  .home-blog-card figure {
    aspect-ratio: 16 / 10;
  }

  .home-company-points article:last-child,
  .home-goldmaking-points article:last-child,
  .home-principles-list article:last-child,
  .home-faq-item:last-child {
    border-bottom: 0;
  }

  .home-updates-list article {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .home-updates-list article p {
    grid-column: 2;
  }

  .home-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --home-nav-height: 68px;
  }

  .home-nav-inner,
  .home-hero-inner,
  .home-section-heading,
  .home-blog-hero > .home-section-heading,
  .home-update-index-layout,
  .home-update-categories,
  .home-updates-grid,
  .home-update-article-layout,
  .home-editorial-layout,
  .home-product-grid,
  .plans-limited-offer,
  .home-plan-grid,
  .home-principles-layout,
  .home-updates-layout,
  .home-faq-list,
  .home-footer-inner,
  .home-footer-bottom {
    width: min(100% - 32px, var(--home-max));
  }

  .home-hero {
    padding: 104px 0 40px;
  }

  .home-hero h1 {
    font-size: 2.48rem;
    line-height: 1.05;
  }

  .home-hero-lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .home-hero-actions,
  .home-frame-caption {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero-actions {
    display: flex;
  }

  .home-button,
  .home-frame-caption a {
    width: 100%;
    min-width: 0;
  }

  .home-section {
    padding: 64px 0;
  }

  .home-language-strip {
    padding: 8px 0;
  }

  .home-section-heading h2 {
    font-size: 2.05rem;
    line-height: 1.12;
  }

  .home-company-panel,
  .home-updates-aside {
    min-height: 250px;
  }

  .home-company-media .home-company-panel {
    min-height: 250px;
  }

  .home-principles-illustration {
    aspect-ratio: 16 / 10;
  }

  .home-product-copy,
  .home-faq-item {
    padding: 20px;
  }

  .home-updates-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-updates-list article p {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .home-product-carousel-slide {
    opacity: 0;
    transform: none;
    animation: none !important;
  }

  .home-product-carousel-slide-market {
    opacity: 1;
  }

  .home-product-carousel-progress span::before {
    animation: none !important;
    transform: scaleX(0);
  }
}
