:root {
  --ink: #1d1d1b;
  --text: #464646;
  --muted: #686f79;
  --subtle: #989898;
  --paper: #ffffff;
  --surface: #f8f8f8;
  --surface-soft: #f4f4f5;
  --border: #dfdfdf;
  --border-soft: #f0f0f0;
  --accent: #8858ff;
  --accent-deep: #6b2fff;
  --accent-logo: #695cd3;
  --accent-soft: rgba(136, 88, 255, 0.13);
  --highlight: #ffd36c;
  --highlight-soft: #fff19a;
  --coral: #ff6b57;
  --success: #53da87;
  --font-headline: var(--font-inter), Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: var(--font-inter), Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1240px;
  --article: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fff 0, #fff 520px, #f8f8f8 520px, #fff 980px);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.brand-logo {
  width: 138px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav a[aria-current="page"] {
  color: var(--ink);
}

.button,
.button-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 560;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button {
  background: var(--accent);
  color: #fff;
}

.button:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(136, 88, 255, 0.35);
  color: var(--accent-deep);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 78px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.eyebrow,
.chip,
.meta,
.caption {
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 16px 0 20px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 64px;
  font-weight: 500;
  line-height: 1.02;
}

.hero-lede {
  max-width: 700px;
  margin: 0;
  color: var(--text);
  font-size: 21px;
  line-height: 1.55;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

.chip:hover,
.tab:hover,
.filter:hover,
.page-link:hover {
  border-color: rgba(136, 88, 255, 0.35);
  color: var(--accent-deep);
}

.newsletter-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

.issue-board {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(136, 88, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(136, 88, 255, 0.08), rgba(255, 211, 108, 0.18)),
    #fff;
  padding: 26px;
  box-shadow: 0 22px 70px rgba(36, 39, 47, 0.10);
}

.issue-board::before {
  content: "";
  position: absolute;
  right: -56px;
  top: 44px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(136, 88, 255, 0.18);
  border-radius: 50%;
}

.issue-topline,
.issue-metrics {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.issue-topline {
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
}

.issue-sticker {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  background: var(--highlight);
  padding: 0 14px;
  color: var(--ink);
}

.issue-cover {
  position: relative;
  z-index: 1;
  margin: 24px 0 18px;
  border: 1px solid rgba(29, 29, 27, 0.08);
  border-radius: 24px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.07);
}

.issue-label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  padding: 0 12px;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 560;
}

.issue-cover h2 {
  max-width: 340px;
  margin: 18px 0 12px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.04;
}

.issue-cover p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
}

.issue-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0 0 18px 52px;
}

.issue-stack span {
  display: block;
  height: 42px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.issue-stack span:nth-child(1) {
  width: 82%;
}

.issue-stack span:nth-child(2) {
  width: 66%;
  background: var(--surface);
}

.issue-stack span:nth-child(3) {
  width: 48%;
  background: var(--highlight-soft);
}

.issue-metrics {
  border-top: 1px solid rgba(136, 88, 255, 0.14);
  padding-top: 18px;
}

.issue-metrics div {
  display: grid;
  gap: 2px;
}

.issue-metrics strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 560;
  line-height: 1;
}

.issue-metrics span {
  color: var(--muted);
  font-size: 12px;
}

.issue-form {
  position: relative;
  z-index: 1;
  margin-top: 22px;
}

.newsletter-card h2,
.newsletter-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 520;
  line-height: 1.16;
}

.newsletter-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
}

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

.email-form input {
  min-width: 0;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.section {
  padding: 52px 0;
}

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

.section-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.08;
}

.section-note {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
}

.story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.story-card:hover {
  transform: translateY(-2px);
  border-color: rgba(136, 88, 255, 0.28);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.08);
}

.story-card.primary {
  min-height: 620px;
}

.story-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f4f4f5;
}

.primary .story-media {
  aspect-ratio: 16 / 9;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-media.is-art {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(136, 88, 255, 0.08), rgba(255, 211, 108, 0.16)),
    #f8f8f8;
}

.merch-art {
  position: relative;
  width: min(78%, 420px);
  aspect-ratio: 1.45;
  border-radius: 20px;
  background: #fff19a;
  box-shadow: 0 18px 45px rgba(136, 88, 255, 0.12);
}

.merch-art::before {
  content: "";
  position: absolute;
  inset: -24px 12% auto 12%;
  height: 54px;
  border-radius: 20px;
  background: var(--highlight);
}

.merch-art::after {
  content: "welcome pack";
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: var(--accent-deep);
  font-size: 16px;
  font-weight: 560;
}

.story-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.story-card h3 {
  margin: 12px 0 12px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.primary h3 {
  font-size: 42px;
  line-height: 1.05;
}

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

.story-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.side-stack {
  display: grid;
  gap: 28px;
}

.editor-route {
  display: grid;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface-soft);
  padding: 24px;
}

.editor-route h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 520;
  line-height: 1.15;
}

.route-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(136, 88, 255, 0.14);
  padding-top: 12px;
  color: var(--ink);
  font-size: 15px;
}

.tabs,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tab,
.filter {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  padding: 10px 15px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
}

.tab.is-active,
.filter.is-active {
  border-color: transparent;
  background: var(--accent-soft);
  color: var(--accent);
}

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

.magazine-grid-v2 {
  column-count: 3;
  column-gap: 22px;
}

.mag-card {
  position: relative;
  display: inline-flex;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  break-inside: avoid;
  margin: 0 0 22px;
  animation: rise-in 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.mag-card:hover {
  transform: translateY(-2px);
  border-color: rgba(136, 88, 255, 0.28);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.08);
}

.mag-card-feature {
  flex-direction: column;
}

.mag-card-tall {
  flex-direction: column;
}

.mag-card-cta {
  border-color: rgba(136, 88, 255, 0.18);
  background: linear-gradient(135deg, rgba(136, 88, 255, 0.08), rgba(255, 211, 108, 0.16)), #fff;
}

.mag-card-data {
  flex-direction: column;
}

.mag-card-route {
  background: var(--surface-soft);
}

.mag-card-yellow {
  background: linear-gradient(135deg, rgba(255, 211, 108, 0.30), #fff);
}

.mag-media {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface);
}

.mag-card-feature .mag-media,
.mag-card-data .mag-media {
  aspect-ratio: 16 / 9;
}

.mag-card-tall .mag-media {
  aspect-ratio: 4 / 5;
}

.mag-card-wide,
.mag-card-note,
.mag-card-mini {
  flex-direction: column;
}

.mag-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mag-media.is-art {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(136, 88, 255, 0.10), rgba(255, 211, 108, 0.22)),
    var(--surface);
}

.mag-content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.mag-card h3 {
  margin: 12px 0 10px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.16;
}

.mag-card-feature h3 {
  max-width: 760px;
  font-size: 31px;
  line-height: 1.08;
}

.mag-card-note h3,
.mag-card-mini h3 {
  font-size: 18px;
  line-height: 1.18;
}

.mag-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.mag-card-cta .button {
  align-self: flex-start;
  margin-top: auto;
}

.v2-fallback-grid {
  display: none;
}

.wow-tools {
  margin-top: 8px;
  border: 1px solid rgba(136, 88, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(125deg, rgba(136, 88, 255, 0.09), rgba(255, 211, 108, 0.18)),
    #fff;
  padding: 26px;
}

.wow-tools-head h3 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 34px;
  font-weight: 520;
  line-height: 1.1;
}

.wow-tools-head p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
}

.wow-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.tool-card {
  border: 1px solid rgba(29, 29, 27, 0.08);
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.05);
  animation: rise-in 580ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.tool-chip {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: rgba(136, 88, 255, 0.13);
  padding: 0 12px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 560;
}

.tool-card h4 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 520;
  line-height: 1.14;
}

.tool-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.wow-media-wall {
  margin-top: 26px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  padding: 24px;
}

.media-wall-head {
  margin-bottom: 20px;
}

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

.video-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0, #f8f8f8 100%);
  padding: 18px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.04);
  animation: rise-in 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.video-meta {
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 560;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.video-card h4 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 520;
  line-height: 1.15;
}

.video-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.story-wall {
  margin-top: 18px;
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
}

.story-wall-title {
  color: var(--ink);
  font-size: 22px;
  font-weight: 520;
}

.story-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.story-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(136, 88, 255, 0.2);
  border-radius: 999px;
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
  font-size: 13px;
  animation: rise-in 640ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  padding: 14px 14px 20px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.article-card:hover {
  transform: translateY(-2px);
  border-color: rgba(136, 88, 255, 0.28);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.06);
}

.article-thumb {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: #f8f8f8;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card h3 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.18;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.format-mark {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 20px;
  color: var(--accent-deep);
  font-size: 15px;
  font-weight: 560;
  text-align: center;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}

.page-link {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 14px;
}

.page-link.is-current {
  border-color: transparent;
  background: var(--accent-soft);
  color: var(--accent);
}

.wide-newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(136, 88, 255, 0.16);
  border-radius: 28px;
  background: var(--surface-soft);
  padding: 36px;
}

.wide-newsletter h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.08;
}

.wide-newsletter p {
  margin: 0;
  color: var(--muted);
}

.article-hero {
  padding: 44px 0 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0, #fff 72%, #f8f8f8 72%);
}

.breadcrumbs {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 54px;
  align-items: center;
}

.article-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 13px;
}

.article-kicker span:last-child {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: var(--surface);
  padding: 0 12px;
}

.article-hero h1 {
  max-width: 850px;
  margin: 14px 0 20px;
  color: var(--ink);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.08;
}

.article-lede {
  max-width: 780px;
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.5;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.author-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.author-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 560;
}

.article-cover-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(136, 88, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(136, 88, 255, 0.08), rgba(255, 211, 108, 0.20)),
    #fff;
  padding: 22px;
  box-shadow: 0 22px 70px rgba(36, 39, 47, 0.10);
}

.article-cover-media {
  overflow: hidden;
  margin: 18px 0;
  border: 1px solid rgba(29, 29, 27, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.07);
}

.article-cover-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-cover-body h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 520;
}

.cover-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cover-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  padding: 0 12px;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 560;
}

.article-context-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: 24px 24px 0 0;
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.article-context-bar div {
  min-width: 0;
  border-right: 1px solid var(--border-soft);
  padding-right: 18px;
}

.article-context-bar div:last-child {
  border-right: 0;
}

.article-context-bar span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.article-context-bar strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 560;
}

.article-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, var(--article)) 280px;
  gap: 42px;
  align-items: start;
  padding: 52px 0;
}

.toc,
.right-rail {
  position: sticky;
  top: 98px;
}

.toc h2,
.rail-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 560;
}

.toc a {
  display: block;
  border-left: 2px solid var(--border);
  padding: 8px 0 8px 12px;
  color: var(--muted);
  font-size: 14px;
}

.toc a:first-of-type {
  border-left-color: var(--accent);
  color: var(--ink);
}

.article-body {
  color: var(--text);
  font-size: 18px;
  line-height: 1.68;
}

.article-body h2 {
  margin: 42px 0 16px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.14;
}

.article-body h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 520;
}

.article-body p {
  margin: 0 0 20px;
}

.lead-paragraph {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.55;
}

.summary-box,
.fact-card,
.hub-bridge,
.quote-box,
.checklist,
.faq-block {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  padding: 24px;
  margin: 30px 0;
}

.summary-box {
  border-color: rgba(255, 211, 108, 0.7);
  background: linear-gradient(135deg, rgba(255, 211, 108, 0.24), rgba(255, 255, 255, 0.92));
}

.summary-box h2,
.fact-card h3,
.hub-bridge h3,
.checklist h3,
.faq-block h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 520;
}

.summary-box ul,
.checklist ol {
  margin: 0;
  padding-left: 22px;
}

.summary-box li,
.checklist li {
  margin: 8px 0;
}

.fact-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-deep);
  font-size: 44px;
  font-weight: 520;
  line-height: 1;
}

.fact-card-split {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
}

.quote-box {
  background: #fff;
}

.quote-box blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  font-weight: 450;
  line-height: 1.35;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}

.comparison th,
.comparison td {
  border-bottom: 1px solid var(--border);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: var(--ink);
  font-weight: 560;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.product {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  font-size: 14px;
}

.product b {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 560;
}

.hub-bridge {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  border-color: rgba(136, 88, 255, 0.20);
  background: linear-gradient(135deg, rgba(136, 88, 255, 0.08), rgba(255, 211, 108, 0.13)), #fff;
}

.rail-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  margin-bottom: 18px;
}

.rail-accent {
  border-color: rgba(136, 88, 255, 0.18);
  background: linear-gradient(135deg, rgba(136, 88, 255, 0.08), rgba(255, 211, 108, 0.12)), #fff;
}

.rail-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.related-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-list a {
  display: block;
  border-top: 1px solid var(--border-soft);
  padding-top: 12px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.article-next {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

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

.next-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.next-card:hover {
  transform: translateY(-2px);
  border-color: rgba(136, 88, 255, 0.28);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.08);
}

.next-card h3 {
  margin: 14px 0 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 520;
  line-height: 1.15;
}

.next-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.next-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.next-card-cta {
  border-color: rgba(136, 88, 255, 0.18);
  background: linear-gradient(135deg, rgba(136, 88, 255, 0.08), rgba(255, 211, 108, 0.16)), #fff;
}

.site-footer {
  background: #24272f;
  color: rgba(255, 255, 255, 0.82);
  padding: 42px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  font-size: 14px;
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .article-hero-grid,
  .featured-grid,
  .wide-newsletter,
  .article-layout,
  .hub-bridge {
    grid-template-columns: 1fr;
  }

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

  .magazine-grid-v2 {
    column-count: 2;
  }

  .wow-tools-grid,
  .media-wall-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-context-bar,
  .next-grid {
    grid-template-columns: 1fr;
  }

  .article-context-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--border-soft);
    padding-right: 0;
    padding-bottom: 14px;
  }

  .article-context-bar div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .toc,
  .right-rail {
    position: static;
  }

  .toc {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
  }
}

@media (max-width: 700px) {
  .header-inner,
  .wrap,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .section-title,
  .primary h3,
  .wide-newsletter h2 {
    font-size: 32px;
  }

  .article-hero h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .header-inner {
    height: 62px;
  }

  .header-inner > .button {
    display: none;
  }

  .email-form,
  .article-grid,
  .product-strip,
  .fact-card-split {
    grid-template-columns: 1fr;
  }

  .magazine-grid-v2 {
    column-count: 1;
  }

  .wow-tools,
  .wow-media-wall {
    border-radius: 20px;
    padding: 18px;
  }

  .wow-tools-head h3 {
    font-size: 28px;
  }

  .wow-tools-grid,
  .media-wall-grid {
    grid-template-columns: 1fr;
  }

  .mag-card-feature h3 {
    font-size: 26px;
  }

  .featured-grid,
  .side-stack {
    gap: 18px;
  }

  .story-card.primary {
    min-height: 0;
  }

  .story-body,
  .newsletter-card,
  .issue-board,
  .wide-newsletter,
  .summary-box,
  .fact-card,
  .hub-bridge,
  .quote-box,
  .checklist,
  .faq-block,
  .article-cover-card,
  .next-card {
    padding: 18px;
  }

  .article-body {
    font-size: 17px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Designer pass for Journal v2: independent media landing, colors only from Helen Gifts. */
.journal-designer {
  background:
    linear-gradient(180deg, #ffffff 0, #f8f8fa 620px, #ffffff 1180px, #f4f4f5 100%);
  color: var(--ink);
}

.journal-designer-header {
  background: rgba(248, 248, 250, 0.94);
}

.journal-designer-hero {
  position: relative;
  display: grid;
  min-height: min(900px, calc(100vh - 72px));
  overflow: hidden;
  background: #f8f8fa;
  color: var(--ink);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    linear-gradient(rgba(29, 29, 27, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 27, 0.055) 1px, transparent 1px),
    #f8f8f8;
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(255, 241, 154, 0.32), transparent 38%),
    linear-gradient(300deg, rgba(136, 88, 255, 0.11), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 248, 250, 0.92));
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(136, 88, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136, 88, 255, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.22;
}

.wow-masthead {
  position: absolute;
  right: -3vw;
  bottom: 128px;
  z-index: -1;
  color: rgba(105, 92, 211, 0.105);
  font-family: var(--font-headline);
  font-size: clamp(106px, 19vw, 286px);
  font-weight: 500;
  line-height: 0.78;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.wow-ticker {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  gap: 10px;
  width: max-content;
  min-width: 100%;
  border-top: 1px solid rgba(29, 29, 27, 0.10);
  border-bottom: 1px solid rgba(29, 29, 27, 0.10);
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(14px);
  animation: ticker-slide 22s linear infinite;
}

.wow-ticker-top {
  top: 0;
}

.wow-ticker span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: #24272F;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wow-ticker span::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 18px;
  border-radius: 999px;
  background: var(--highlight);
  box-shadow: 0 0 0 5px rgba(255, 211, 108, 0.25);
}

.designer-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(420px, 0.48fr);
  gap: 58px;
  align-items: center;
  padding: 118px 0 152px;
}

.designer-kicker,
.designer-section-head > span,
.designer-story-body > span,
.wall-video > span,
.subscribe-line span {
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 640;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.designer-hero-copy h1 {
  max-width: 880px;
  margin: 18px 0 20px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 104px;
  font-weight: 500;
  line-height: 0.92;
}

.designer-hero-copy h1 span {
  display: block;
}

.designer-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: #404956;
  font-size: 23px;
  line-height: 1.42;
}

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

.designer-hero-actions .button-secondary {
  border-color: rgba(136, 88, 255, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-deep);
}

.designer-hero-index {
  display: grid;
  gap: 12px;
  align-self: end;
  color: #404956;
  font-size: 14px;
}

.designer-hero-index span {
  border-top: 1px solid rgba(136, 88, 255, 0.18);
  padding-top: 12px;
}

.wow-cover-stage {
  position: relative;
  min-height: 560px;
  align-self: center;
}

.wow-cover-stage span {
  border-top: 0;
  padding-top: 0;
}

.wow-cover {
  position: absolute;
  inset: 44px 70px 34px 20px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: rgba(5, 5, 5, 0.08) 0 2px 24px 0;
  animation: cover-rise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.wow-cover::before {
  content: "HG JOURNAL";
  position: absolute;
  top: 16px;
  right: 18px;
  left: 18px;
  z-index: 2;
  border-bottom: 1px solid rgba(29, 29, 27, 0.16);
  padding-bottom: 8px;
  color: #1D1D1B;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.16em;
}

.wow-cover-meta {
  position: absolute;
  top: 56px;
  right: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #24272F;
}

.wow-cover-meta span,
.wow-proof-card span {
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wow-cover-meta strong {
  font-family: var(--font-headline);
  font-size: 42px;
  font-weight: 500;
  line-height: 0.8;
}

.wow-cover img {
  width: 100%;
  height: 58%;
  object-fit: cover;
  border-bottom: 1px solid #e2e2e2;
}

.wow-cover h2 {
  margin: 24px 24px 10px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.wow-cover p {
  margin: 0 24px;
  color: #686F79;
  font-size: 15px;
}

.wow-proof-card {
  position: absolute;
  z-index: 3;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: rgba(5, 5, 5, 0.08) 0 2px 24px 0;
  backdrop-filter: blur(16px);
  padding: 16px;
  animation: proof-float 5.5s ease-in-out infinite;
}

.wow-proof-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 42px;
  font-weight: 500;
  line-height: 0.95;
}

.wow-proof-card p {
  margin: 8px 0 0;
  color: #404956;
  font-size: 14px;
  line-height: 1.35;
}

.proof-a {
  top: 0;
  right: 0;
  width: 178px;
}

.proof-b {
  right: 6px;
  bottom: 78px;
  width: 224px;
  animation-delay: -1.8s;
}

.proof-c {
  bottom: 0;
  left: 0;
  width: 154px;
  background: #fff19a;
  animation-delay: -3.4s;
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes cover-rise {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(-1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes proof-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.designer-issue-strip {
  position: absolute;
  right: 40px;
  bottom: 28px;
  left: 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(136, 88, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.designer-issue-strip div {
  background: rgba(255, 255, 255, 0.72);
  padding: 16px 18px;
}

.designer-issue-strip span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 640;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.designer-issue-strip strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 520;
}

.designer-section {
  padding: 86px 0;
}

.designer-section-head {
  display: grid;
  max-width: 880px;
  gap: 14px;
  margin-bottom: 34px;
}

.designer-section-head.compact {
  max-width: none;
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
  align-items: end;
}

.designer-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
}

.system-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(29, 29, 27, 0.16);
  border-bottom: 1px solid rgba(29, 29, 27, 0.16);
}

.system-lanes article {
  min-height: 280px;
  border-right: 1px solid rgba(29, 29, 27, 0.16);
  padding: 26px 24px;
}

.system-lanes article:last-child {
  border-right: 0;
}

.system-lanes span,
.lab-tools article > span {
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 640;
}

.system-lanes h3,
.lab-tools h3,
.wall-video h3 {
  margin: 56px 0 12px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 520;
  line-height: 1.08;
}

.system-lanes p,
.lab-tools p,
.wall-video p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.designer-latest {
  background: #fff;
}

.designer-feed {
  column-count: 3;
  column-gap: 22px;
}

.designer-story {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  break-inside: avoid;
  box-shadow: 0 12px 42px rgba(29, 29, 27, 0.05);
  animation: rise-in 540ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.designer-story.lead {
  background: #f8f8f8;
}

.designer-story.dark {
  border-color: rgba(105, 92, 211, 0.20);
  background:
    linear-gradient(135deg, rgba(248, 248, 250, 0.94), rgba(255, 241, 154, 0.20)),
    #ffffff;
  color: var(--ink);
}

.designer-story.accent {
  border-color: rgba(136, 88, 255, 0.26);
  background:
    linear-gradient(135deg, rgba(136, 88, 255, 0.12), rgba(255, 211, 108, 0.24)),
    #fff;
}

.designer-story.yellow {
  border-color: rgba(255, 211, 108, 0.72);
  background: #fff19a;
}

.designer-story-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface);
}

.designer-story.tall .designer-card-art {
  min-height: 310px;
}

.designer-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.designer-story-body {
  padding: 22px;
}

.designer-story-body h3 {
  margin: 12px 0 10px;
  color: inherit;
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.12;
}

.designer-story.lead h3 {
  font-size: 32px;
  line-height: 1.05;
}

.designer-story.note h3 {
  font-size: 20px;
}

.designer-story-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.designer-story.dark .designer-story-body p {
  color: var(--muted);
}

.designer-story.accent .button {
  margin-top: 18px;
}

.designer-card-art {
  display: grid;
  min-height: 190px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(136, 88, 255, 0.18), rgba(255, 229, 146, 0.54)),
    var(--surface);
  color: var(--accent-deep);
  font-family: var(--font-headline);
  font-size: 58px;
  font-weight: 520;
  text-transform: uppercase;
}

.podcast-art {
  font-size: 42px;
  letter-spacing: 0.08em;
}

.designer-lab {
  background: #f4f4f5;
}

.lab-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 56px;
  align-items: start;
}

.lab-tools {
  display: grid;
  gap: 14px;
}

.lab-tools article {
  border: 1px solid rgba(29, 29, 27, 0.14);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(29, 29, 27, 0.05);
}

.lab-tools h3 {
  margin-top: 28px;
}

.designer-wall {
  background: #f8f8fa;
  color: var(--ink);
}

.designer-wall .designer-section-head h2 {
  color: var(--ink);
}

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

.wall-video {
  min-height: 300px;
  border: 1px solid rgba(136, 88, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(136, 88, 255, 0.09), rgba(255, 211, 108, 0.14)),
    #ffffff;
  padding: 24px;
}

.wall-video h3 {
  margin-top: 74px;
  color: var(--ink);
}

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

.history-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.history-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(136, 88, 255, 0.18);
  border-radius: 999px;
  padding: 0 15px;
  background: #ffffff;
  color: #404956;
  font-size: 13px;
}

.designer-subscribe {
  background: #fff;
}

.journal-designer + .site-footer {
  border-top: 1px solid var(--border-soft);
  background: #f8f8fa;
  color: #404956;
}

/* Restored intermediate classic variants from the 2026-05-13 design pass. */
.journal-classic-dark {
  background: #1d1d1b;
  color: #fff;
}

.journal-classic-dark .journal-designer-hero,
.journal-classic-light .journal-designer-hero {
  min-height: min(860px, calc(100vh - 72px));
}

.journal-classic-dark .hero-bg {
  background:
    url("assets/welcome-pack-preview.png") center / cover no-repeat,
    #24272f;
  background-size: cover, auto;
  transform: scale(1.02);
}

.journal-classic-dark .hero-overlay {
  background:
    linear-gradient(90deg, rgba(29, 29, 27, 0.92), rgba(29, 29, 27, 0.70) 42%, rgba(136, 88, 255, 0.34)),
    linear-gradient(0deg, rgba(29, 29, 27, 0.94), rgba(29, 29, 27, 0.08) 44%, rgba(29, 29, 27, 0.86));
}

.journal-classic-dark .hero-overlay::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
}

.journal-classic-dark .designer-hero-inner,
.journal-classic-light .designer-hero-inner {
  grid-template-columns: minmax(0, 1fr) 280px;
  padding: 86px 0 132px;
}

.journal-classic-dark .designer-kicker,
.journal-classic-dark .designer-section-head > span,
.journal-classic-dark .designer-story-body > span,
.journal-classic-dark .wall-video > span,
.journal-classic-dark .subscribe-line span {
  color: var(--highlight);
}

.journal-classic-dark .designer-hero-copy h1 {
  color: #fff;
  font-size: 96px;
}

.journal-classic-dark .designer-hero-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.journal-classic-dark .designer-hero-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.journal-classic-dark .designer-hero-index {
  color: rgba(255, 255, 255, 0.76);
}

.journal-classic-dark .designer-hero-index span {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.journal-classic-dark .designer-issue-strip {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
}

.journal-classic-dark .designer-issue-strip div {
  background: rgba(29, 29, 27, 0.48);
}

.journal-classic-dark .designer-issue-strip span {
  color: var(--highlight);
}

.journal-classic-dark .designer-issue-strip strong {
  color: #fff;
}

.journal-classic-dark .designer-system,
.journal-classic-dark .designer-lab,
.journal-classic-dark .designer-subscribe {
  background: #f7f5f0;
  color: var(--ink);
}

.journal-classic-dark .designer-latest {
  background: #fff;
  color: var(--ink);
}

.journal-classic-dark .designer-story.dark {
  border-color: #24272f;
  background: #24272f;
  color: #fff;
}

.journal-classic-dark .designer-story.dark .designer-story-body p {
  color: rgba(255, 255, 255, 0.76);
}

.journal-classic-dark .designer-wall {
  background: #1d1d1b;
  color: #fff;
}

.journal-classic-dark .designer-wall .designer-section-head h2,
.journal-classic-dark .wall-video h3 {
  color: #fff;
}

.journal-classic-dark .wall-video {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(136, 88, 255, 0.22), rgba(255, 255, 255, 0.06)),
    #24272f;
}

.journal-classic-dark .wall-video p {
  color: rgba(255, 255, 255, 0.74);
}

.journal-classic-dark .history-row span {
  border-color: rgba(255, 211, 108, 0.42);
  background: transparent;
  color: #fff;
}

.journal-classic-dark + .site-footer {
  background: #24272f;
  color: rgba(255, 255, 255, 0.82);
}

.journal-classic-light {
  background:
    linear-gradient(180deg, #ffffff 0, #f8f8fa 620px, #ffffff 1180px, #f4f4f5 100%);
}

.journal-classic-light .hero-bg {
  background:
    url("assets/welcome-pack-preview.png") center / cover no-repeat,
    #f8f8f8;
  transform: scale(1.02);
}

.journal-classic-light .hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 250, 0.92) 42%, rgba(255, 255, 255, 0.42)),
    linear-gradient(0deg, rgba(248, 248, 250, 0.96), rgba(255, 241, 154, 0.18) 48%, rgba(255, 255, 255, 0.74));
}

.journal-classic-light .designer-hero-copy h1 {
  font-size: 96px;
}

.journal-classic-light .designer-lab,
.journal-classic-light .designer-wall {
  background: #f4f4f5;
}

.journal-classic-light .designer-story.dark {
  border-color: rgba(105, 92, 211, 0.20);
  background:
    linear-gradient(135deg, rgba(248, 248, 250, 0.94), rgba(255, 241, 154, 0.20)),
    #ffffff;
  color: var(--ink);
}

/* Journal v3: light MotionSites-inspired background, based on White Wave Motion / Glass Fluid Abstract. */
.journal-v3-light-motion {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 211, 108, 0.30), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(136, 88, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0, #f8f8fa 46%, #ffffff 100%);
  color: var(--ink);
}

.journal-v3-light-motion .journal-designer-hero {
  min-height: min(880px, calc(100vh - 72px));
  background: #000000;
  color: var(--ink);
}

.journal-v3-light-motion .hero-bg {
  background: #000000;
  background-size: auto;
  transform: none;
}

.journal-v3-light-motion .v3-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-v3-light-motion .v3-video-bg::before,
.journal-v3-light-motion .v3-video-bg::after {
  display: none;
}

.journal-v3-light-motion .hero-bg::before,
.journal-v3-light-motion .hero-bg::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
}

.journal-v3-light-motion .hero-bg::before {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.98) 0 22%, rgba(255, 241, 154, 0.38) 32%, rgba(136, 88, 255, 0.16) 48%, transparent 70%),
    conic-gradient(from 210deg at 52% 48%, transparent 0 12%, rgba(255, 255, 255, 0.90) 18%, rgba(255, 229, 146, 0.42) 28%, transparent 42%, rgba(105, 92, 211, 0.18) 58%, transparent 78%);
  filter: blur(10px);
  opacity: 0.96;
  transform: rotate(-11deg) translate3d(0, 0, 0) scale(1.12);
  animation: v3-wave-drift 16s ease-in-out infinite alternate;
}

.journal-v3-light-motion .hero-bg::after {
  background:
    repeating-linear-gradient(90deg, rgba(29, 29, 27, 0.055) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(29, 29, 27, 0.042) 0 1px, transparent 1px 64px),
    linear-gradient(118deg, transparent 0 22%, rgba(255, 255, 255, 0.86) 34%, rgba(255, 241, 154, 0.28) 43%, transparent 58%),
    linear-gradient(76deg, transparent 0 42%, rgba(136, 88, 255, 0.16) 54%, transparent 70%);
  opacity: 0.82;
  transform: rotate(7deg);
  animation: v3-glass-shift 13s ease-in-out infinite alternate;
}

.journal-v3-light-motion .hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.58) 40%, rgba(255, 255, 255, 0.02) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(248, 248, 250, 0.36) 72%, rgba(248, 248, 250, 0.78));
}

.journal-v3-light-motion .hero-overlay::after {
  background-image:
    radial-gradient(ellipse at 72% 44%, transparent 0 42%, rgba(255, 255, 255, 0.24) 68%, rgba(255, 255, 255, 0.46) 100%),
    linear-gradient(rgba(29, 29, 27, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 27, 0.045) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  opacity: 0.34;
}

.journal-v3-light-motion .designer-kicker,
.journal-v3-light-motion .designer-section-head > span,
.journal-v3-light-motion .designer-story-body > span,
.journal-v3-light-motion .wall-video > span,
.journal-v3-light-motion .subscribe-line span {
  color: var(--accent-deep);
}

.journal-v3-light-motion .designer-hero-copy h1 {
  color: var(--ink);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 70px rgba(136, 88, 255, 0.18);
}

.journal-v3-light-motion .designer-hero-copy p,
.journal-v3-light-motion .designer-hero-index {
  color: #404956;
}

.journal-v3-light-motion .designer-hero-copy {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18));
  box-shadow: 0 24px 90px rgba(29, 29, 27, 0.08);
  backdrop-filter: blur(8px);
  padding: 28px;
}

.journal-v3-light-motion .designer-hero-actions .button-secondary {
  border-color: rgba(136, 88, 255, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-deep);
}

.journal-v3-light-motion .designer-hero-index span {
  border-top-color: rgba(136, 88, 255, 0.18);
}

.journal-v3-light-motion .designer-issue-strip {
  border-color: rgba(136, 88, 255, 0.16);
  background: rgba(255, 255, 255, 0.58);
}

.journal-v3-light-motion .designer-issue-strip div {
  background: rgba(255, 255, 255, 0.40);
}

.journal-v3-light-motion .designer-issue-strip span {
  color: var(--accent-deep);
}

.journal-v3-light-motion .designer-issue-strip strong {
  color: var(--ink);
}

.journal-v3-light-motion .designer-system,
.journal-v3-light-motion .designer-lab,
.journal-v3-light-motion .designer-wall {
  background: #f8f8fa;
  color: var(--ink);
}

.journal-v3-light-motion .designer-latest,
.journal-v3-light-motion .designer-subscribe {
  background: #ffffff;
  color: var(--ink);
}

.journal-v3-light-motion .designer-wall .designer-section-head h2,
.journal-v3-light-motion .wall-video h3 {
  color: var(--ink);
}

.journal-v3-light-motion .wall-video {
  border-color: rgba(136, 88, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(136, 88, 255, 0.09), rgba(255, 211, 108, 0.14)),
    #ffffff;
}

.journal-v3-light-motion .wall-video p {
  color: var(--muted);
}

.journal-v3-light-motion .designer-story.dark {
  border-color: rgba(105, 92, 211, 0.20);
  background:
    linear-gradient(135deg, rgba(248, 248, 250, 0.94), rgba(255, 241, 154, 0.22)),
    #ffffff;
  color: var(--ink);
}

.journal-v3-light-motion .designer-story.dark .designer-story-body p {
  color: var(--muted);
}

.journal-v3-light-motion .history-row span {
  border-color: rgba(136, 88, 255, 0.18);
  background: #ffffff;
  color: #404956;
}

.journal-v3-light-motion + .site-footer {
  border-top: 1px solid var(--border-soft);
  background: #f8f8fa;
  color: #404956;
}

@keyframes v3-wave-drift {
  from {
    transform: rotate(-8deg) translate3d(-24px, -8px, 0) scale(1);
  }
  to {
    transform: rotate(-6deg) translate3d(32px, 12px, 0) scale(1.04);
  }
}

@keyframes v3-glass-shift {
  from {
    transform: rotate(10deg) translate3d(24px, 0, 0);
  }
  to {
    transform: rotate(8deg) translate3d(-34px, 18px, 0);
  }
}

/* Journal v4: DesignPro-style full-screen video hero. */
.journal-v4-designpro-hero {
  background: #ffffff;
  color: var(--ink);
}

.journal-v4-designpro-hero .journal-designer-hero {
  min-height: calc(100vh - 72px);
  background: #000000;
  color: #ffffff;
}

.journal-v4-designpro-hero .v3-video-bg {
  background: #000000;
  transform: none;
}

.journal-v4-designpro-hero .v3-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-v4-designpro-hero .v3-video-bg::before,
.journal-v4-designpro-hero .v3-video-bg::after {
  display: none;
}

.journal-v4-designpro-hero .hero-overlay {
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 255, 255, 0.10), transparent 36%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.02) 38%, rgba(0, 0, 0, 0.56));
}

.journal-v4-designpro-hero .hero-overlay::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 112px 112px;
  opacity: 0.12;
}

.v4-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - 72px);
  grid-template-rows: auto 1fr auto;
  gap: 48px;
  padding: 62px 0 34px;
}

.v4-hero-top {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: 48px;
  align-items: start;
}

.v4-hero-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.v4-hero-top p:last-child {
  justify-self: end;
  max-width: 320px;
  text-align: right;
}

.v4-hero-center {
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.journal-v4-designpro-hero .designer-kicker {
  color: rgba(255, 255, 255, 0.80);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.v4-hero-center h1 {
  display: grid;
  margin: 18px 0 28px;
  overflow: visible;
  padding: 0 0.12em 0.08em;
  color: #ffffff;
  font-family: var(--font-headline);
  font-size: clamp(64px, 11vw, 142px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.v4-hero-center h1 span {
  display: block;
  overflow: visible;
  padding-inline: 0.04em;
}

.v4-hero-center h1 span:last-child {
  background: linear-gradient(100deg, #64CEFB 0%, #ffffff 38%, #FFD36C 58%, #64CEFB 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: v4-shiny-text 3s linear infinite;
}

.shiny-word {
  display: inline-block;
  background: linear-gradient(100deg, #8858FF 0%, #64CEFB 24%, #FFFFFF 42%, #FFD36C 58%, #64CEFB 76%, #8858FF 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: v4-shiny-text 3.4s linear infinite;
  text-shadow: none;
}

.v4-hero-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  color: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.v4-hero-button:hover {
  background: #111111;
}

.v4-hero-button span {
  display: inline-block;
  transition: transform 180ms ease;
}

.v4-hero-button:hover span {
  transform: translateX(4px);
}

.v4-hero-bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.journal-hero-glass-nav {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 48px rgba(0, 0, 0, 0.12);
}

.journal-hero-glass-nav-tooltip {
  padding: 12px 14px 12px 16px !important;
  border: 1px solid rgba(136, 88, 255, 0.2) !important;
  border-radius: 16px !important;
  background:
    linear-gradient(180deg, rgba(249, 245, 255, 0.96), rgba(237, 229, 255, 0.92)),
    #f4eeff !important;
  color: #3f168f !important;
  box-shadow:
    0 18px 42px rgba(80, 55, 160, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.journal-hero-glass-nav-tooltip::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 8px;
  width: 3px;
  border-radius: 999px;
  background: #ffd36c;
}

.journal-hero-glass-nav-tooltip-excerpt {
  color: #3f168f !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.34 !important;
}

.v4-hero-bottom div {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
}

.v4-hero-bottom div:last-child {
  border-right: 0;
}

.v4-hero-bottom span {
  color: var(--highlight);
  font-size: 12px;
  font-weight: 650;
}

.v4-hero-bottom strong {
  font-size: 14px;
  font-weight: 520;
}

.journal-v5-client-copy .v4-hero-top p:first-child {
  max-width: 680px;
}

.journal-v5-client-copy .v4-hero-center h1 {
  padding-right: 0.18em;
  padding-left: 0.18em;
}

.journal-v5-client-copy .designer-section-head h2 {
  max-width: 1040px;
}

.journal-v5-client-copy .v5-role-routes {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0, #f8f8fa 100%);
}

.journal-v5-client-copy .v5-role-routes::before {
  content: "HG ROUTES";
  position: absolute;
  right: -0.2em;
  bottom: -0.23em;
  color: rgba(136, 88, 255, 0.06);
  font-family: var(--font-headline);
  font-size: clamp(92px, 18vw, 230px);
  font-weight: 520;
  line-height: 0.82;
  pointer-events: none;
}

.journal-v5-client-copy .route-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  gap: 22px;
  align-items: stretch;
}

.journal-v5-client-copy .route-intro,
.journal-v5-client-copy .route-grid article {
  border-radius: 8px;
}

.journal-v5-client-copy .route-intro {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 211, 108, 0.34), transparent 34%),
    linear-gradient(145deg, #1d1d1b, #24272f 58%, #35245e);
  color: #ffffff;
  padding: 32px;
  box-shadow: 0 22px 70px rgba(29, 29, 27, 0.18);
}

.journal-v5-client-copy .route-intro span,
.journal-v5-client-copy .route-grid span {
  color: var(--highlight);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-v5-client-copy .route-intro h2 {
  max-width: 520px;
  margin: 70px 0 0;
  font-family: var(--font-headline);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 0.96;
}

.journal-v5-client-copy .route-intro p {
  max-width: 480px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.journal-v5-client-copy .route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.journal-v5-client-copy .route-grid article {
  display: flex;
  min-height: 252px;
  flex-direction: column;
  border: 1px solid rgba(136, 88, 255, 0.16);
  background: rgba(255, 255, 255, 0.86);
  padding: 24px;
  box-shadow: 0 16px 54px rgba(29, 29, 27, 0.055);
}

.journal-v5-client-copy .route-grid article:nth-child(2) {
  background:
    linear-gradient(140deg, rgba(255, 241, 154, 0.34), rgba(255, 255, 255, 0.88)),
    #fff;
}

.journal-v5-client-copy .route-grid article:nth-child(4) {
  background:
    linear-gradient(140deg, rgba(136, 88, 255, 0.10), rgba(255, 255, 255, 0.92)),
    #fff;
}

.journal-v5-client-copy .route-grid .route-wide {
  grid-column: 1 / -1;
  min-height: 214px;
  background:
    linear-gradient(110deg, rgba(255, 211, 108, 0.22), rgba(136, 88, 255, 0.10)),
    #ffffff;
}

.journal-v5-client-copy .route-grid h3 {
  margin: 42px 0 12px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 520;
  line-height: 1.06;
}

.journal-v5-client-copy .route-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.journal-v5-client-copy .route-grid a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 560;
}

.journal-v5-full {
  overflow: hidden;
  background: #ffffff;
  color: var(--ink);
}

.journal-v5-full .wrap {
  width: min(var(--max), calc(100% - 40px));
}

.v5-kicker {
  color: var(--highlight);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v5-kicker.dark {
  color: var(--accent-deep);
}

.v5-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  isolation: isolate;
}

.v5-hero-video,
.v5-hero-shade {
  position: absolute;
  inset: 0;
}

.v5-hero-video {
  z-index: -3;
}

.v5-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v5-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.22)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.72));
}

.v5-hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 112px 112px;
  opacity: 0.16;
}

.v5-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - 170px);
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  gap: 54px;
  align-items: center;
  padding: 74px 0 36px;
}

.v5-hero-copy h1 {
  max-width: 900px;
  margin: 18px 0 24px;
  color: #ffffff;
  font-family: var(--font-headline);
  font-size: clamp(58px, 8.5vw, 128px);
  font-weight: 500;
  line-height: 0.88;
}

.v5-hero-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  line-height: 1.52;
}

.v5-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}

.v5-text-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 560;
}

.v5-text-link:hover {
  color: #ffffff;
}

.v5-issue-panel {
  display: grid;
  gap: 14px;
  align-self: stretch;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  padding: 18px;
}

.v5-issue-top,
.v5-issue-lead,
.v5-issue-mini a {
  border-radius: 8px;
}

.v5-issue-top {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
}

.v5-issue-top span,
.v5-issue-lead span,
.v5-issue-mini span,
.v5-card span,
.v5-proof-grid span {
  color: var(--highlight);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v5-issue-top strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 520;
}

.v5-issue-lead {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 310px;
  background:
    linear-gradient(180deg, rgba(255, 211, 108, 0.12), rgba(136, 88, 255, 0.20)),
    rgba(255, 255, 255, 0.08);
  padding: 22px;
}

.v5-issue-lead h2 {
  margin: 18px 0 12px;
  color: #ffffff;
  font-family: var(--font-headline);
  font-size: 34px;
  font-weight: 500;
  line-height: 0.98;
}

.v5-issue-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

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

.v5-issue-mini a {
  display: grid;
  gap: 12px;
  min-height: 126px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px;
}

.v5-issue-mini strong {
  color: #ffffff;
  font-family: var(--font-headline);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.06;
}

.v5-hero-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px 8px 0 0;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.v5-hero-rail a {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 560;
}

.v5-hero-rail a:last-child {
  border-right: 0;
}

.v5-hero-rail span {
  color: var(--highlight);
  font-size: 12px;
  font-weight: 650;
}

.v5-manifest,
.v5-routes,
.v5-latest,
.v5-lab,
.v5-proof,
.v5-subscribe {
  padding: 92px 0;
}

.v5-manifest {
  background: #ffffff;
}

.v5-manifest-grid,
.v5-lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 56px;
  align-items: start;
}

.v5-manifest h2,
.v5-section-head h2,
.v5-lab h2,
.v5-subscribe h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 500;
  line-height: 0.98;
}

.v5-system-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(29, 29, 27, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(29, 29, 27, 0.14);
}

.v5-system-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  background: #ffffff;
  padding: 22px;
}

.v5-system-list span,
.v5-lab-tools span {
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 650;
}

.v5-system-list p,
.v5-section-head p,
.v5-card p,
.v5-lab-tools p,
.v5-proof-grid p,
.v5-subscribe p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.v5-routes {
  background: #f8f8fa;
}

.v5-section-head {
  max-width: 920px;
  margin-bottom: 34px;
}

.v5-section-head.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: 42px;
  align-items: end;
}

.v5-route-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 1px;
  overflow: auto;
  border: 1px solid rgba(29, 29, 27, 0.14);
  border-radius: 8px;
  background: rgba(29, 29, 27, 0.14);
}

.v5-route-strip a {
  display: flex;
  min-height: 310px;
  min-width: 220px;
  flex-direction: column;
  background: #ffffff;
  padding: 22px;
}

.v5-route-strip a:nth-child(1),
.v5-route-strip a:nth-child(5) {
  background:
    linear-gradient(180deg, rgba(136, 88, 255, 0.10), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.v5-route-strip a:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 211, 108, 0.24), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.v5-route-strip span {
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v5-route-strip strong {
  margin-top: 50px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.02;
}

.v5-route-strip em {
  margin-top: auto;
  color: var(--accent-deep);
  font-size: 14px;
  font-style: normal;
  font-weight: 560;
}

.v5-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.v5-card {
  grid-column: span 4;
  min-height: 280px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 16px 54px rgba(29, 29, 27, 0.055);
}

.v5-card h3 {
  margin: 14px 0 12px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.06;
}

.v5-card-lead {
  display: grid;
  grid-column: span 7;
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  background: #f8f8f8;
}

.v5-card-lead h3 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 0.98;
}

.v5-card-lead > div {
  padding: 28px;
}

.v5-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--border-soft);
  background: #f4f4f5;
}

.v5-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.v5-card-yellow {
  grid-column: span 5;
  background: #fff19a;
  border-color: rgba(255, 211, 108, 0.72);
}

.v5-card-accent {
  grid-column: span 5;
  background:
    linear-gradient(135deg, rgba(136, 88, 255, 0.13), rgba(255, 211, 108, 0.22)),
    #ffffff;
  border-color: rgba(136, 88, 255, 0.24);
}

.v5-card-accent .button {
  margin-top: 22px;
}

.v5-card-data {
  grid-column: span 4;
  background:
    linear-gradient(180deg, rgba(136, 88, 255, 0.11), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.v5-card-mark {
  display: grid;
  min-height: 138px;
  place-items: center;
  margin: -24px -24px 24px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--accent-deep);
  font-family: var(--font-headline);
  font-size: 74px;
  font-weight: 520;
}

.v5-card-image,
.v5-card-research {
  grid-column: span 4;
  padding: 0;
  overflow: hidden;
}

.v5-card-image > span,
.v5-card-image h3,
.v5-card-image p,
.v5-card-research > span,
.v5-card-research h3,
.v5-card-research p {
  margin-right: 24px;
  margin-left: 24px;
}

.v5-card-image > span,
.v5-card-research > span {
  display: block;
  margin-top: 22px;
}

.v5-card-research {
  grid-column: span 8;
  background:
    linear-gradient(135deg, rgba(248, 248, 250, 0.94), rgba(255, 241, 154, 0.20)),
    #ffffff;
}

.v5-lab {
  background: #f4f4f5;
}

.v5-lab-note {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

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

.v5-lab-tools article {
  display: flex;
  min-height: 236px;
  flex-direction: column;
  border: 1px solid rgba(29, 29, 27, 0.13);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 14px 46px rgba(29, 29, 27, 0.045);
}

.v5-lab-tools article:nth-child(1),
.v5-lab-tools article:nth-child(4),
.v5-lab-tools article:nth-child(8),
.v5-lab-tools article:nth-child(11) {
  background:
    linear-gradient(145deg, rgba(136, 88, 255, 0.10), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.v5-lab-tools article:nth-child(3),
.v5-lab-tools article:nth-child(7) {
  background:
    linear-gradient(145deg, rgba(255, 211, 108, 0.24), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.v5-lab-tools h3 {
  margin: 46px 0 12px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.05;
}

.v5-proof {
  background: #1d1d1b;
  color: #ffffff;
}

.v5-proof .v5-section-head h2 {
  color: #ffffff;
}

.v5-proof .v5-section-head p {
  color: rgba(255, 255, 255, 0.72);
}

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

.v5-proof-grid article {
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(136, 88, 255, 0.22), rgba(255, 255, 255, 0.06)),
    #24272f;
  padding: 24px;
}

.v5-proof-grid h3 {
  margin: 86px 0 12px;
  color: #ffffff;
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.v5-proof-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.v5-history {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.v5-history span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 211, 108, 0.42);
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.v5-subscribe {
  background: #ffffff;
}

.v5-subscribe-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
  border-top: 1px solid rgba(29, 29, 27, 0.16);
  border-bottom: 1px solid rgba(29, 29, 27, 0.16);
  padding: 34px 0;
}

.v5-subscribe p {
  max-width: 700px;
  margin-top: 14px;
}

.journal-v5-full + .site-footer {
  border-top: 1px solid var(--border-soft);
  background: #f8f8fa;
  color: #404956;
}

@media (max-width: 1040px) {
  .v5-hero-grid,
  .v5-manifest-grid,
  .v5-lab-grid,
  .v5-section-head.split,
  .v5-subscribe-line {
    grid-template-columns: 1fr;
  }

  .v5-hero-grid {
    min-height: auto;
    padding-top: 54px;
  }

  .v5-issue-panel {
    min-height: 0;
  }

  .v5-hero-rail,
  .v5-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .v5-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .v5-card,
  .v5-card-lead,
  .v5-card-yellow,
  .v5-card-accent,
  .v5-card-data,
  .v5-card-image,
  .v5-card-research {
    grid-column: span 3;
  }

  .v5-card-lead,
  .v5-card-research {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .v5-hero,
  .v5-hero-grid {
    min-height: auto;
  }

  .v5-hero-copy h1 {
    font-size: 48px;
    line-height: 0.94;
  }

  .v5-hero-copy p {
    font-size: 16px;
  }

  .v5-issue-lead h2 {
    font-size: 28px;
  }

  .v5-issue-mini,
  .v5-hero-rail,
  .v5-proof-grid,
  .v5-lab-tools,
  .v5-lab-tools article,
  .v5-system-list article {
    grid-template-columns: 1fr;
  }

  .v5-hero-rail a {
    min-height: 58px;
  }

  .v5-manifest,
  .v5-routes,
  .v5-latest,
  .v5-lab,
  .v5-proof,
  .v5-subscribe {
    padding: 62px 0;
  }

  .v5-route-strip {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .v5-route-strip a {
    min-height: 230px;
  }

  .v5-route-strip strong {
    margin-top: 34px;
  }

  .v5-bento {
    grid-template-columns: 1fr;
  }

  .v5-card,
  .v5-card-lead,
  .v5-card-yellow,
  .v5-card-accent,
  .v5-card-data,
  .v5-card-image,
  .v5-card-research {
    grid-column: auto;
  }

  .v5-card-lead h3 {
    font-size: 31px;
  }

  .v5-card h3,
  .v5-proof-grid h3 {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journal-v5-full .shiny-word {
    animation: none;
  }
}

.journal-v5-client-copy .designer-story-body h3 {
  font-size: 21px;
  line-height: 1.12;
}

.journal-v5-client-copy .designer-story.lead h3 {
  font-size: 30px;
  line-height: 1.06;
}

.journal-v5-client-copy .designer-story.lead .designer-story-media img {
  object-position: top center;
}

.journal-v5-client-copy .designer-story.note h3 {
  font-size: 20px;
}

.journal-v5-client-copy .designer-story-body p,
.journal-v5-client-copy .system-lanes p,
.journal-v5-client-copy .lab-tools p,
.journal-v5-client-copy .wall-video p {
  line-height: 1.48;
}

.journal-v5-client-copy .subscribe-line p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .journal-v5-client-copy .shiny-word,
  .journal-v5-client-copy .v4-hero-center h1 span:last-child,
  .journal-v5-client-copy .designer-story {
    animation: none;
  }

  .journal-v5-client-copy .button:hover,
  .journal-v5-client-copy .v4-hero-button:hover span {
    transform: none;
  }
}

@media (max-width: 1040px) {
  .journal-v5-client-copy .route-board {
    grid-template-columns: 1fr;
  }

  .journal-v5-client-copy .route-intro {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .journal-v5-client-copy .route-grid {
    grid-template-columns: 1fr;
  }

  .journal-v5-client-copy .route-grid .route-wide {
    grid-column: auto;
  }

  .journal-v5-client-copy .route-intro,
  .journal-v5-client-copy .route-grid article {
    padding: 22px;
  }

  .journal-v5-client-copy .route-intro h2 {
    margin-top: 54px;
  }
}

@keyframes v4-shiny-text {
  from {
    background-position: 180% 0;
  }
  to {
    background-position: -40% 0;
  }
}

@media (max-width: 900px) {
  .v4-hero-layout {
    min-height: auto;
    padding: 42px 0 28px;
  }

  .v4-hero-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .v4-hero-top p:last-child {
    justify-self: start;
    text-align: left;
  }

  .v4-hero-center {
    min-height: 440px;
  }

  .v4-hero-bottom {
    grid-template-columns: 1fr 1fr;
    border-radius: 8px;
  }

}

.bg-options-page {
  min-height: 100vh;
  background: #f8f8fa;
  color: var(--ink);
  padding: 48px;
}

.bg-options-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto 34px;
}

.bg-options-hero span,
.bg-option-sample span {
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bg-options-hero h1 {
  max-width: 820px;
  margin: 10px 0 10px;
  font-family: var(--font-headline);
  font-size: 58px;
  font-weight: 500;
  line-height: 0.98;
}

.bg-options-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.bg-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1320px;
  margin: 0 auto;
}

.bg-option-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 16px 60px rgba(29, 29, 27, 0.06);
}

.bg-option-preview {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.bg-option-preview video,
.bg-option-preview img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.bg-option-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.54)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(248, 248, 250, 0.72));
}

.bg-option-sample {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.bg-option-sample strong {
  max-width: 420px;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 46px;
  font-weight: 500;
  line-height: 0.94;
}

.bg-option-card h2 {
  margin: 18px 0 8px;
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 520;
}

.bg-option-card p {
  margin: 0;
  color: var(--muted);
}

.own-image-motion img {
  transform: scale(1.08);
  filter: saturate(1.05) brightness(1.05);
}

.own-image-glass {
  position: absolute;
  inset: -22%;
  z-index: 1;
  background:
    linear-gradient(112deg, transparent 0 22%, rgba(255, 255, 255, 0.78) 34%, rgba(255, 241, 154, 0.36) 46%, transparent 62%),
    radial-gradient(ellipse at 72% 26%, rgba(136, 88, 255, 0.20), transparent 42%);
  filter: blur(4px);
  animation: v3-glass-shift 10s ease-in-out infinite alternate;
}

@media (max-width: 820px) {
  .bg-options-page {
    padding: 24px;
  }

  .bg-options-hero,
  .bg-options-grid {
    grid-template-columns: 1fr;
  }

  .bg-options-hero {
    display: grid;
  }

  .bg-options-hero h1 {
    font-size: 40px;
  }
}

.subscribe-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
  border-top: 1px solid rgba(29, 29, 27, 0.16);
  border-bottom: 1px solid rgba(29, 29, 27, 0.16);
  padding: 34px 0;
}

.subscribe-line h2 {
  max-width: 820px;
  margin: 10px 0 0;
  color: var(--ink);
  font-family: var(--font-headline);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.05;
}

@media (max-width: 1040px) {
  .designer-hero-inner,
  .lab-layout,
  .subscribe-line {
    grid-template-columns: 1fr;
  }

  .journal-wow-hero .designer-hero-inner {
    gap: 34px;
  }

  .designer-hero-copy h1 {
    font-size: 76px;
  }

  .wow-cover-stage {
    min-height: 520px;
  }

  .designer-issue-strip,
  .system-lanes,
  .wall-grid {
    grid-template-columns: 1fr 1fr;
  }

  .designer-feed {
    column-count: 2;
  }
}

@media (max-width: 700px) {
  .journal-designer-hero {
    min-height: auto;
  }

  .designer-hero-inner {
    padding: 56px 0 210px;
  }

  .journal-wow-hero .designer-hero-inner {
    padding: 76px 0 300px;
  }

  .designer-hero-copy h1 {
    font-size: 48px;
    line-height: 0.98;
  }

  .designer-hero-copy p {
    font-size: 18px;
  }

  .wow-masthead {
    right: -18px;
    bottom: auto;
    top: 88px;
    font-size: 92px;
  }

  .wow-ticker {
    animation-duration: 18s;
  }

  .wow-cover-stage {
    min-height: 470px;
  }

  .wow-cover {
    inset: 42px 16px 74px 16px;
  }

  .wow-cover img {
    height: 50%;
  }

  .wow-cover h2 {
    margin: 18px 18px 8px;
    font-size: 25px;
  }

  .wow-cover p {
    margin: 0 18px;
    font-size: 14px;
  }

  .wow-proof-card {
    padding: 13px;
  }

  .proof-a {
    right: 0;
    width: 140px;
  }

  .proof-b {
    right: 0;
    bottom: 36px;
    width: 188px;
  }

  .proof-c {
    bottom: 0;
    width: 132px;
  }

  .designer-issue-strip {
    right: 14px;
    left: 14px;
    grid-template-columns: 1fr;
  }

  .designer-section {
    padding: 58px 0;
  }

  .designer-section-head,
  .designer-section-head.compact,
  .system-lanes,
  .wall-grid {
    grid-template-columns: 1fr;
  }

  .designer-section-head h2,
  .subscribe-line h2 {
    font-size: 34px;
  }

  .system-lanes article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(29, 29, 27, 0.16);
  }

  .designer-feed {
    column-count: 1;
  }

  .designer-story.lead h3 {
    font-size: 25px;
  }
}
