:root {
  --ink: #151514;
  --muted: #67645d;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dedbd1;
  --teal: #0f766e;
  --teal-dark: #0a4f49;
  --brick: #b4442e;
  --gold: #d99a2b;
  --sage: #88a46a;
  --blue: #2e607f;
  --night: #071513;
  --shadow: 0 18px 48px rgba(31, 35, 30, 0.13);
  --header-bg: rgba(251, 250, 247, 0.92);
  --header-line: rgba(21, 21, 20, 0.1);
  --nav-muted: rgba(21, 21, 20, 0.72);
  --nav-active: #151514;
  --control-bg: #ebe7dc;
  --media-bg: #f0ede6;
  --inverse-bg: #151514;
  --inverse-fg: #ffffff;
  color-scheme: light;
}

body.logikpress-hub-active #masthead,
body.logikpress-hub-active #colophon,
body.logikpress-hub-active .ast-primary-header-bar,
body.logikpress-hub-active .site-below-footer-wrap,
body.logikpress-hub-active .entry-header,
body.logikpress-hub-active .entry-title {
  display: none !important;
}

body.logikpress-hub-active #page,
body.logikpress-hub-active .site-content,
body.logikpress-hub-active .site-main,
body.logikpress-hub-active .content-area,
body.logikpress-hub-active .ast-container,
body.logikpress-hub-active .entry-content,
body.logikpress-hub-active .wp-site-blocks {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.logikpress-hub-page {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--paper);
  color: var(--ink);
}

body[data-theme="dark"] {
  --ink: #f6f1e8;
  --muted: #b8b0a3;
  --paper: #081211;
  --surface: #101b19;
  --line: rgba(246, 241, 232, 0.16);
  --teal: #47c5ba;
  --teal-dark: #7be1d7;
  --brick: #e07b62;
  --gold: #e4aa45;
  --sage: #a7c684;
  --blue: #78aaca;
  --night: #020605;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  --header-bg: rgba(8, 18, 17, 0.92);
  --header-line: rgba(246, 241, 232, 0.14);
  --nav-muted: rgba(246, 241, 232, 0.72);
  --nav-active: #ffffff;
  --control-bg: #17231f;
  --media-bg: #17231f;
  --inverse-bg: #050b0a;
  --inverse-fg: #f6f1e8;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-line);
  display: flex;
  height: 64px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

body.scrolled .site-header {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.brand-mark {
  transition: transform 220ms ease;
}

body.scrolled .brand-mark {
  transform: scale(0.92);
}

.scroll-progress {
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--brick));
  box-shadow: 0 0 24px rgba(217, 154, 43, 0.32);
  height: 3px;
  left: 0;
  position: fixed;
  right: auto;
  top: 64px;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  width: 100%;
  z-index: 21;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(217, 154, 43, 0.42);
  border-radius: 50%;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  overflow: hidden;
  width: 38px;
}

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

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--nav-muted);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--nav-active);
}

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

.header-social,
.header-cta {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 900;
  min-height: 38px;
  padding: 0 15px;
  text-decoration: none;
  white-space: nowrap;
}

.header-social {
  border: 1px solid var(--line);
  color: var(--nav-active);
}

.header-cta {
  background: var(--gold);
  color: #151514;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.theme-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  padding: 0;
}

.theme-toggle-track {
  align-items: center;
  background: var(--control-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  height: 28px;
  padding: 3px;
  width: 52px;
}

.theme-toggle-knob {
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  display: block;
  height: 20px;
  transform: translateX(22px);
  transition: transform 160ms ease, background-color 160ms ease;
  width: 20px;
}

body[data-theme="light"] .theme-toggle-knob {
  background: var(--teal-dark);
  transform: translateX(0);
}

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

.hero {
  background: #071513;
  --hero-primary-x: 0px;
  --hero-primary-y: 0px;
  --hero-secondary-x: 0px;
  --hero-secondary-y: 0px;
  --hero-scroll-y: 0px;
  --hero-scroll-y-inverse: 0px;
  --hero-scroll-scale: 1;
  --hero-content-y: 0px;
  --hero-content-opacity: 1;
  isolation: isolate;
  min-height: 76svh;
  overflow: hidden;
  padding: 112px clamp(20px, 5vw, 72px) 38px;
  position: relative;
}

.hero-book-backdrop {
  background:
    linear-gradient(135deg, #071513 0%, #10231f 46%, #30211a 100%);
  inset: 0;
  position: absolute;
  overflow: hidden;
  z-index: -3;
}

.hero-book-backdrop::before {
  animation: railGlide 22s linear infinite;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(115deg, transparent 0 46px, rgba(228, 170, 69, 0.11) 47px 48px, transparent 49px 92px);
  background-size: auto, auto, 220px 220px;
  content: "";
  inset: 0;
  opacity: 0.42;
  position: absolute;
}

.hero-book-backdrop::after {
  background: linear-gradient(0deg, rgba(2, 6, 5, 0.72), rgba(2, 6, 5, 0));
  bottom: 0;
  content: "";
  height: 44%;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-cover-track {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, minmax(112px, 1fr));
  position: absolute;
  right: -14vw;
  width: min(82vw, 1180px);
}

.hero-cover-track img {
  animation: coverFloat 9s ease-in-out infinite;
  aspect-ratio: 2 / 3;
  background: rgba(246, 241, 232, 0.08);
  border: 1px solid rgba(246, 241, 232, 0.22);
  border-radius: 6px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-cover-track-primary {
  animation: coverDriftPrimary 22s ease-in-out infinite;
  opacity: 0.82;
  top: 74px;
  transform: rotate(-6deg);
}

.hero-cover-track-primary img:nth-child(even) {
  transform: translateY(28px);
}

.hero-cover-track-secondary {
  animation: coverDriftSecondary 26s ease-in-out infinite;
  opacity: 0.62;
  right: -8vw;
  top: 390px;
  transform: rotate(4deg);
}

.hero-cover-track-secondary img:nth-child(odd) {
  transform: translateY(24px);
}

.hero-cover-track img:nth-child(2) {
  animation-delay: -1.5s;
}

.hero-cover-track img:nth-child(3) {
  animation-delay: -3s;
}

.hero-cover-track img:nth-child(4) {
  animation-delay: -4.5s;
}

.hero-cover-track img:nth-child(5) {
  animation-delay: -6s;
}

.hero-cover-track img:nth-child(6) {
  animation-delay: -7.5s;
}

.hero-motion-canvas {
  height: 100%;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.68;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -2;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 6, 5, 0.96) 0%, rgba(7, 21, 19, 0.84) 45%, rgba(7, 21, 19, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 6, 5, 0.46), rgba(2, 6, 5, 0.08));
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-content {
  color: #f6f1e8;
  max-width: 760px;
  min-width: 0;
  opacity: var(--hero-content-opacity);
  position: relative;
  transform: translateY(var(--hero-content-y));
  width: 100%;
  z-index: 1;
}

.hero-brand-lockup {
  animation: heroRise 760ms cubic-bezier(0.16, 1, 0.3, 1) 80ms both, logoHover 6s ease-in-out 1.2s infinite;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 154, 43, 0.38);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  margin: 0 0 22px;
  max-width: 420px;
  padding: 12px 16px;
}

.hero-brand-lockup img {
  height: auto;
  width: 100%;
}

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

.hero .eyebrow {
  animation: heroRise 700ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
  color: #f2bd5b;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(4rem, 10.5vw, 9rem);
  line-height: 0.88;
  margin-bottom: 22px;
}

.hero h1 {
  animation: titleReveal 920ms cubic-bezier(0.16, 1, 0.3, 1) 260ms both;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.35rem);
  line-height: 0.98;
  margin-bottom: 0;
  max-width: 980px;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-copy {
  animation: heroRise 760ms cubic-bezier(0.16, 1, 0.3, 1) 390ms both;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.65vw, 1.38rem);
  max-width: 690px;
}

.hero-actions {
  animation: heroRise 760ms cubic-bezier(0.16, 1, 0.3, 1) 500ms both;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 30px;
}

.button,
.text-button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button {
  border-radius: 6px;
}

.button.primary {
  background: var(--gold);
  color: #17130c;
  box-shadow: 0 16px 38px rgba(217, 154, 43, 0.2);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.36);
  color: #f6f1e8;
}

.button.ghost {
  background: rgba(7, 21, 19, 0.34);
  border-color: rgba(242, 189, 91, 0.54);
  color: #f6f1e8;
}

.button:hover,
.button:focus-visible,
.text-button:hover,
.text-button:focus-visible,
.segment:hover,
.segment:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
}

.hero .button:hover,
.hero .button:focus-visible {
  box-shadow: 0 20px 54px rgba(217, 154, 43, 0.26);
  transform: translateY(-2px) scale(1.015);
}

.hero-stats {
  animation: heroRise 760ms cubic-bezier(0.16, 1, 0.3, 1) 610ms both;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  max-width: 620px;
  padding-top: 18px;
}

.hero-stats div {
  min-width: 0;
}

.hero-stats dt {
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0 0;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleReveal {
  from {
    letter-spacing: 0.035em;
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    letter-spacing: 0;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoHover {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes railGlide {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 0 0, 0 0, 220px -220px;
  }
}

@keyframes coverDriftPrimary {
  0%,
  100% {
    transform: translate3d(var(--hero-primary-x), calc(var(--hero-primary-y) + var(--hero-scroll-y)), 0) rotate(-6deg) scale(var(--hero-scroll-scale));
  }
  50% {
    transform: translate3d(calc(var(--hero-primary-x) - 24px), calc(var(--hero-primary-y) + var(--hero-scroll-y) + 12px), 0) rotate(-4.5deg) scale(var(--hero-scroll-scale));
  }
}

@keyframes coverDriftSecondary {
  0%,
  100% {
    transform: translate3d(var(--hero-secondary-x), calc(var(--hero-secondary-y) + var(--hero-scroll-y-inverse)), 0) rotate(4deg) scale(var(--hero-scroll-scale));
  }
  50% {
    transform: translate3d(calc(var(--hero-secondary-x) + 24px), calc(var(--hero-secondary-y) + var(--hero-scroll-y-inverse) - 14px), 0) rotate(2.5deg) scale(var(--hero-scroll-scale));
  }
}

@keyframes coverFloat {
  0%,
  100% {
    filter: saturate(0.88) brightness(0.88);
  }
  50% {
    filter: saturate(1.04) brightness(1);
  }
}

.section {
  --section-bg-y: 0px;
  --section-glow-opacity: 0;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}

.section::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(228, 170, 69, 0.2), transparent 28%),
    radial-gradient(circle at 88% 42%, rgba(71, 197, 186, 0.16), transparent 26%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 45%, transparent 58%);
  content: "";
  inset: -20%;
  opacity: var(--section-glow-opacity);
  pointer-events: none;
  position: absolute;
  transform: translateY(var(--section-bg-y));
  transition: opacity 160ms linear, transform 160ms linear;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  margin: 0 auto 34px;
  max-width: 1200px;
}

.section-heading.split {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

.section-note {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 390px;
}

.universe-section {
  background:
    linear-gradient(180deg, rgba(7, 21, 19, 0.96), rgba(21, 21, 20, 0.94)),
    linear-gradient(90deg, rgba(217, 154, 43, 0.1), rgba(7, 21, 19, 0.16) 48%, rgba(7, 21, 19, 0.72)),
    url("website-assets/aldermere/aldermere-archive-catalog-bg-desktop.jpg") center / cover,
    var(--night);
  color: var(--inverse-fg);
}

.universe-section .section-note {
  color: rgba(255, 255, 255, 0.7);
}

.universe-section h2,
.universe-section h3 {
  color: var(--inverse-fg);
}

.aldermere-feature {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  margin: 0 auto 18px;
  max-width: 1200px;
  min-width: 0;
  overflow: hidden;
}

.aldermere-feature-media {
  margin: 0;
  min-height: 420px;
  overflow: hidden;
}

.aldermere-feature-media img,
.aldermere-gallery-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.aldermere-feature-media img {
  filter: contrast(1.04) saturate(0.92);
  object-position: center;
}

.aldermere-feature-copy {
  align-content: center;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 52px);
}

.aldermere-feature-copy h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.98;
  margin: 0;
}

.aldermere-feature-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  margin: 0;
  max-width: 450px;
}

.aldermere-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto 18px;
  max-width: 1200px;
}

.aldermere-gallery-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.aldermere-gallery-card img {
  aspect-ratio: 16 / 10;
  filter: contrast(1.03) saturate(0.9);
}

.aldermere-gallery-card:nth-child(2) img,
.aldermere-gallery-card:nth-child(3) img {
  object-position: center 24%;
}

.aldermere-gallery-card figcaption {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  padding: 12px 14px 14px;
  text-transform: uppercase;
}

.intro {
  background: var(--surface);
}

.intro-grid {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  margin: 0 auto;
  max-width: 1200px;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.rule-list {
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

.rule-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 0.55fr 1fr;
  padding: 18px 0;
}

.rule-list strong {
  color: var(--ink);
}

.engine-figure,
.proof-grid figure {
  margin: 0;
}

.engine-figure img,
.proof-grid img {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  width: 100%;
}

figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

.ownership-section {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), transparent 42%),
    linear-gradient(225deg, rgba(180, 68, 46, 0.09), transparent 46%),
    var(--paper);
}

.ownership-layout {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.28fr) minmax(310px, 0.72fr);
  margin: 0 auto;
  max-width: 1200px;
}

.path-panel {
  background: var(--night);
  color: var(--surface);
  padding: clamp(20px, 3vw, 32px);
}

.path-steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.path-steps li {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 18px;
}

.path-steps span {
  color: #f2bd5b;
  font-size: 0.78rem;
  font-weight: 900;
}

.path-steps strong {
  font-size: 1.08rem;
}

.path-steps p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.channel-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
}

.channel-panel h3,
.storefront-products-header h3 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  margin: 0;
}

.channel-panel p {
  color: var(--muted);
  margin: 0;
}

.channel-buttons {
  display: grid;
  gap: 10px;
}

.button.secondary.light {
  background: var(--inverse-bg);
  border-color: var(--inverse-bg);
  color: var(--inverse-fg);
}

.email-capture {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.email-capture label {
  display: grid;
  gap: 7px;
}

.email-capture span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.capture-button {
  background: var(--teal-dark);
  color: var(--surface);
  min-width: 84px;
}

.form-status {
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
  min-height: 22px;
}

.subscribe-card {
  background: color-mix(in srgb, var(--surface) 86%, var(--paper));
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.subscribe-card a {
  color: inherit;
  font-weight: 900;
}

.storefront-products-header {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 34px auto 18px;
  max-width: 1200px;
}

.storefront-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1200px;
}

.storefront-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 20px;
}

.storefront-card .realm-label {
  color: var(--teal-dark);
}

.storefront-card h3,
.storefront-card p {
  margin: 0;
}

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

.storefront-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.storefront-card dl div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
  padding-top: 10px;
}

.storefront-card dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.storefront-card dd {
  margin: 0;
}

.storefront-paths {
  display: grid;
  gap: 8px;
}

.path-button {
  align-items: center;
  border-radius: 6px;
  display: flex;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  text-align: center;
  text-decoration: none;
}

.path-button.direct {
  background: rgba(217, 154, 43, 0.18);
  border: 1px solid rgba(217, 154, 43, 0.55);
  color: #6f4300;
}

.path-button.marketplace {
  background: rgba(21, 21, 20, 0.06);
  border: 1px solid rgba(21, 21, 20, 0.16);
  color: var(--ink);
}

.path-status {
  align-items: center;
  background: rgba(21, 21, 20, 0.05);
  border: 1px dashed rgba(21, 21, 20, 0.24);
  border-radius: 6px;
  color: var(--muted);
  display: flex;
  font-size: 0.88rem;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  text-align: center;
}

.bookstore-section {
  background:
    linear-gradient(135deg, rgba(217, 154, 43, 0.12), transparent 38%),
    linear-gradient(225deg, rgba(46, 96, 127, 0.09), transparent 42%),
    var(--surface);
}

.content-card-grid {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 1200px;
}

.book-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-card-grid,
.freebie-card-grid,
.lane-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lane-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card {
  --hover-y: 0px;
  --motion-y: 0px;
  --scroll-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  min-width: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 34px rgba(31, 35, 30, 0.08);
  transform: translateY(calc(var(--motion-y) + var(--hover-y) + var(--scroll-lift))) perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: box-shadow 220ms ease, opacity 760ms ease, transform 240ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.content-card::after,
.idea-card::after {
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 44%, transparent 62%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-120%);
  transition: opacity 180ms ease, transform 620ms ease;
}

.content-card:hover::after,
.idea-card:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.content-card:hover {
  --hover-y: -4px;
  box-shadow: 0 20px 48px rgba(31, 35, 30, 0.14);
}

.content-card-media {
  align-items: center;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(217, 154, 43, 0.09)),
    var(--media-bg);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 14px;
}

.book-card .content-card-media {
  aspect-ratio: 2 / 3;
  padding: 0;
}

.content-card-media img {
  border-radius: 4px;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.book-card .content-card-media img {
  border-radius: 0;
}

.content-placeholder {
  align-items: center;
  border: 1px dashed rgba(21, 21, 20, 0.2);
  border-radius: 8px;
  color: var(--teal-dark);
  display: flex;
  font-size: 0.82rem;
  font-weight: 900;
  height: 100%;
  justify-content: center;
  text-transform: uppercase;
  width: 100%;
}

.content-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.content-card-top {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.status-badge,
.content-type {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  min-height: 26px;
  padding: 0 10px;
  text-transform: uppercase;
}

.status-badge {
  background: rgba(21, 21, 20, 0.07);
  color: var(--ink);
}

.status-published {
  background: rgba(15, 118, 110, 0.14);
  color: var(--teal-dark);
}

.status-draft-ready {
  background: rgba(46, 96, 127, 0.14);
  color: var(--blue);
}

.status-kdp-packet-ready {
  background: rgba(217, 154, 43, 0.2);
  color: #7a4a00;
}

.status-in-production,
.status-outlined {
  background: rgba(136, 164, 106, 0.22);
  color: #455f2b;
}

.status-live-v1,
.status-ready-lane,
.status-available-now {
  background: rgba(15, 118, 110, 0.16);
  color: var(--teal-dark);
}

.status-planned,
.status-idea,
.status-coming-soon {
  background: rgba(180, 68, 46, 0.12);
  color: var(--brick);
}

.content-type {
  background: rgba(21, 21, 20, 0.05);
  color: var(--muted);
}

.content-category {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.content-card h3,
.content-card p {
  margin: 0;
}

.content-card h3 {
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
}

.content-card-body > p:not(.content-category) {
  color: var(--muted);
  font-size: 0.95rem;
}

.content-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.content-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 8px;
}

.content-card-actions,
.commerce-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 4px;
}

.card-button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 900;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  text-align: center;
  text-decoration: none;
}

.card-button.primary {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.card-button.secondary {
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.26);
  color: var(--teal-dark);
}

.card-button.direct {
  background: rgba(217, 154, 43, 0.18);
  border: 1px solid rgba(217, 154, 43, 0.52);
  color: #6f4300;
}

.card-button.marketplace {
  background: rgba(21, 21, 20, 0.06);
  border: 1px solid rgba(21, 21, 20, 0.16);
  color: var(--ink);
}

.motion-ready .section-heading,
.motion-ready .storefront-card,
.motion-ready .aldermere-feature,
.motion-ready .aldermere-gallery-card,
.motion-ready .station-card,
.motion-ready .workflow-list li,
.motion-ready .path-steps li,
.motion-ready .freebie-cta,
.motion-ready .radio-main,
.motion-ready .pilot-panel,
.motion-ready .engine-figure,
.motion-ready .proof-grid img {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 780ms ease, transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .content-card,
.motion-ready .idea-card {
  --motion-y: 26px;
  opacity: 0;
}

.motion-ready .section-heading.is-visible,
.motion-ready .storefront-card.is-visible,
.motion-ready .aldermere-feature.is-visible,
.motion-ready .aldermere-gallery-card.is-visible,
.motion-ready .station-card.is-visible,
.motion-ready .workflow-list li.is-visible,
.motion-ready .path-steps li.is-visible,
.motion-ready .freebie-cta.is-visible,
.motion-ready .radio-main.is-visible,
.motion-ready .pilot-panel.is-visible,
.motion-ready .engine-figure.is-visible,
.motion-ready .proof-grid img.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .content-card.is-visible,
.motion-ready .idea-card.is-visible {
  --motion-y: 0px;
  opacity: 1;
}

.media-section {
  background:
    linear-gradient(90deg, rgba(136, 164, 106, 0.14), transparent 36%),
    var(--paper);
}

.podcast-section {
  background:
    linear-gradient(135deg, rgba(46, 96, 127, 0.12), transparent 40%),
    var(--surface);
}

.pinterest-section {
  background:
    linear-gradient(90deg, rgba(180, 68, 46, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(217, 154, 43, 0.08), transparent 28%),
    var(--paper);
}

.offers-section {
  background:
    linear-gradient(135deg, rgba(217, 154, 43, 0.11), transparent 38%),
    linear-gradient(225deg, rgba(15, 118, 110, 0.1), transparent 42%),
    var(--surface);
}

.offer-single {
  margin: 0 auto;
  max-width: 1200px;
}

.mini-heading {
  margin-bottom: 16px;
}

.mini-heading h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  margin: 0;
  max-width: 540px;
}

.offer-card-grid {
  grid-template-columns: 1fr;
}

#affiliate-card-grid {
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.affiliate-card {
  box-shadow: 0 10px 24px rgba(31, 35, 30, 0.07);
}

.affiliate-card .content-card-media {
  aspect-ratio: auto;
  min-height: 54px;
  padding: 10px;
}

.affiliate-card .content-placeholder {
  border-radius: 6px;
  font-size: 0.72rem;
  min-height: 36px;
}

.affiliate-card .content-card-body {
  gap: 8px;
  padding: 14px;
}

.affiliate-card .status-badge,
.affiliate-card .content-type {
  font-size: 0.64rem;
  min-height: 22px;
  padding: 0 8px;
}

.affiliate-card .content-category {
  font-size: 0.7rem;
}

.affiliate-card h3 {
  font-size: 0.98rem;
}

.affiliate-card .content-card-body > p:not(.content-category) {
  font-size: 0.86rem;
}

.affiliate-card .content-tags {
  gap: 5px;
}

.affiliate-card .content-tags span {
  font-size: 0.68rem;
  padding: 4px 7px;
}

.affiliate-card .card-button {
  font-size: 0.8rem;
  min-height: 36px;
  padding: 0 8px;
}

.media-block-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 32px auto 18px;
  max-width: 1200px;
}

.media-block-heading h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  margin: 0;
}

.light-link {
  color: #f2bd5b;
}

.radio-section .content-card {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.radio-section .content-placeholder {
  background: rgba(255, 255, 255, 0.62);
}

.freebies-section {
  background:
    linear-gradient(135deg, rgba(180, 68, 46, 0.08), transparent 38%),
    linear-gradient(225deg, rgba(15, 118, 110, 0.1), transparent 42%),
    var(--surface);
}

.freebie-cta {
  align-items: center;
  background: var(--night);
  color: var(--surface);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 22px auto 0;
  max-width: 1200px;
  padding: 20px;
}

.freebie-cta p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
  max-width: 720px;
}

.platform-section {
  background:
    linear-gradient(180deg, rgba(7, 21, 19, 0.96), rgba(12, 24, 22, 0.94)),
    var(--night);
  color: var(--surface);
}

body[data-theme="dark"] .platform-section {
  color: var(--ink);
}

body[data-theme="dark"] .path-button.marketplace,
body[data-theme="dark"] .path-status,
body[data-theme="dark"] .content-type,
body[data-theme="dark"] .card-button.marketplace {
  background: rgba(246, 241, 232, 0.08);
  border-color: rgba(246, 241, 232, 0.18);
  color: var(--ink);
}

body[data-theme="dark"] .content-tags span {
  background: rgba(246, 241, 232, 0.04);
}

body[data-theme="dark"] .content-placeholder {
  border-color: rgba(246, 241, 232, 0.2);
}

.platform-section .section-note {
  color: rgba(255, 255, 255, 0.72);
}

.radio-section {
  background:
    linear-gradient(180deg, rgba(7, 21, 19, 0.96), rgba(12, 24, 22, 0.94)),
    var(--night);
  color: var(--surface);
}

body[data-theme="dark"] .logikpress-hub-page .podcast-section h2,
body[data-theme="dark"] .logikpress-hub-page .podcast-section .content-card h3,
body[data-theme="dark"] .logikpress-hub-page .radio-section h2,
body[data-theme="dark"] .logikpress-hub-page .radio-section .content-card h3 {
  color: var(--inverse-fg) !important;
}

.radio-section .section-note {
  color: rgba(255, 255, 255, 0.72);
}

.radio-layout {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.44fr);
  margin: 0 auto 22px;
  max-width: 1200px;
}

.radio-main {
  align-content: space-between;
  background:
    linear-gradient(135deg, rgba(217, 154, 43, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 28px;
  min-height: 360px;
  padding: clamp(22px, 4vw, 36px);
}

.radio-positioning {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.16rem, 2vw, 1.55rem);
  line-height: 1.42;
  margin: 0;
  max-width: 860px;
}

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

.episode-frame span {
  border: 1px solid rgba(242, 189, 91, 0.28);
  border-radius: 6px;
  color: #f2bd5b;
  font-size: 0.84rem;
  font-weight: 900;
  min-height: 46px;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
}

.pilot-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
}

.pilot-panel h3 {
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  margin: 0;
}

.pilot-panel p {
  color: var(--muted);
  margin: 0;
}

.pilot-panel blockquote {
  border-left: 4px solid var(--gold);
  font-size: 1.08rem;
  font-weight: 900;
  margin: 0;
  padding-left: 14px;
}

.station-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1200px;
}

.station-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 18px;
}

.station-card span {
  color: #f2bd5b;
  font-weight: 900;
}

.station-card p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.catalog-section {
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(217, 154, 43, 0.08), transparent 30%),
    var(--paper);
}

.scale-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto 26px;
  max-width: 1200px;
}

.scale-strip div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.scale-strip strong {
  color: var(--teal-dark);
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.scale-strip span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  margin-top: 8px;
}

.catalog-tools {
  align-items: end;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(240px, 1fr) minmax(220px, 320px) auto;
  margin: 0 auto 22px;
  max-width: 1200px;
}

.search-field,
.select-field {
  display: grid;
  gap: 7px;
}

.search-field span,
.select-field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  min-height: 46px;
  padding: 0 12px;
  width: 100%;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(217, 154, 43, 0.45);
  outline-offset: 2px;
}

.segments {
  background: var(--control-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(4, auto);
  min-height: 46px;
  padding: 4px;
}

.segment {
  background: transparent;
  border: 0;
  border-radius: 5px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  padding: 0 12px;
  white-space: nowrap;
}

.segment.active {
  background: var(--surface);
  color: var(--teal-dark);
  box-shadow: 0 4px 12px rgba(21, 21, 20, 0.1);
}

.catalog-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1200px;
}

.category-panel {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
  padding: 22px;
  position: sticky;
  top: 84px;
}

.category-panel h3 {
  margin-bottom: 18px;
}

.category-spotlight {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 16px;
  padding-bottom: 18px;
}

.category-spotlight p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  margin-bottom: 10px;
}

.category-spotlight strong {
  color: #f2bd5b;
  display: block;
  margin-bottom: 6px;
}

.realm-label {
  color: rgba(255, 255, 255, 0.56);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.category-list {
  display: grid;
  gap: 8px;
  max-height: 55vh;
  overflow: auto;
  padding-right: 4px;
}

.category-choice {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  padding: 10px 11px;
  text-align: left;
}

.category-choice.active {
  background: #f2bd5b;
  color: var(--ink);
}

.results-panel {
  min-width: 0;
}

.results-bar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.results-bar p {
  color: var(--muted);
  margin: 0;
}

.text-button {
  background: transparent;
  border-color: var(--line);
  border-radius: 6px;
  color: var(--teal-dark);
  min-height: 38px;
}

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

.idea-card {
  --hover-y: 0px;
  --motion-y: 0px;
  --scroll-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transform: translateY(calc(var(--motion-y) + var(--hover-y) + var(--scroll-lift))) perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: box-shadow 220ms ease, opacity 760ms ease, transform 240ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.idea-card:hover {
  --hover-y: -4px;
  box-shadow: 0 20px 48px rgba(31, 35, 30, 0.12);
}

.idea-card::before {
  background: var(--card-accent, var(--teal));
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
}

.card-kicker {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-kicker span {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 6px;
}

.card-kicker .research {
  background: rgba(15, 118, 110, 0.1);
  border-color: rgba(15, 118, 110, 0.3);
  color: var(--teal-dark);
}

.idea-card h3 {
  margin: 0;
}

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

.idea-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.idea-meta div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: 86px 1fr;
  padding-top: 10px;
}

.idea-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.idea-meta dd {
  margin: 0;
}

.warning {
  border-left: 3px solid var(--brick);
  padding-left: 10px;
}

.load-more {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
  margin: 22px auto 0;
}

.load-more[hidden] {
  display: none;
}

.proof-section {
  background: var(--surface);
}

.proof-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 0.75fr;
  margin: 0 auto;
  max-width: 1200px;
}

.workflow-section {
  background:
    linear-gradient(135deg, rgba(180, 68, 46, 0.08), transparent 42%),
    linear-gradient(45deg, rgba(46, 96, 127, 0.08), transparent 52%),
    var(--paper);
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
}

.workflow-list {
  counter-reset: workflow;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}

.workflow-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: 20px;
}

.workflow-list li::before {
  color: var(--brick);
  content: counter(workflow, decimal-leading-zero);
  counter-increment: workflow;
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.workflow-list strong,
.workflow-list span {
  display: block;
}

.workflow-list span {
  color: var(--muted);
  margin-top: 8px;
}

.site-footer {
  align-items: center;
  background: var(--inverse-bg);
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  padding: 26px clamp(20px, 5vw, 72px);
}

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

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: end;
}

.footer-links a {
  color: var(--inverse-fg);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  grid-column: 1 / -1;
  line-height: 1.5;
  margin: 0;
  max-width: 940px;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-motion-canvas {
    display: none;
  }

  .hero-cover-track,
  .hero-cover-track img,
  .content-card,
  .idea-card,
  .motion-ready .section-heading,
  .motion-ready .storefront-card,
  .motion-ready .station-card,
  .motion-ready .workflow-list li,
  .motion-ready .path-steps li,
  .motion-ready .freebie-cta,
  .motion-ready .radio-main,
  .motion-ready .pilot-panel,
  .motion-ready .engine-figure,
  .motion-ready .proof-grid img {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .book-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-card-grid,
  .freebie-card-grid,
  .lane-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-cover-track {
    gap: 14px;
    grid-template-columns: repeat(4, minmax(96px, 1fr));
    right: -32vw;
    width: min(120vw, 880px);
  }

  .hero-cover-track-primary {
    opacity: 0.56;
    top: 120px;
  }

  .hero-cover-track-secondary {
    opacity: 0.36;
    right: -24vw;
    top: 410px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 6, 5, 0.98) 0%, rgba(7, 21, 19, 0.92) 58%, rgba(7, 21, 19, 0.68) 100%),
      linear-gradient(0deg, rgba(2, 6, 5, 0.78), rgba(2, 6, 5, 0.26));
  }

  .section-heading.split,
  .intro-grid,
  .ownership-layout,
  .radio-layout,
  .offer-columns,
  .catalog-layout,
  .proof-grid,
  .workflow-list,
  .aldermere-feature,
  .aldermere-gallery,
  .storefront-grid,
  .station-grid {
    grid-template-columns: 1fr;
  }

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

  .catalog-tools {
    grid-template-columns: 1fr;
  }

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

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

  .category-panel {
    position: static;
  }

  .category-list {
    max-height: 260px;
  }

  .idea-grid {
    grid-template-columns: 1fr;
  }

  .storefront-products-header {
    align-items: start;
    display: grid;
  }

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

  .book-card-grid,
  .media-card-grid,
  .freebie-card-grid,
  .lane-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-block-heading,
  .freebie-cta {
    align-items: start;
    display: grid;
  }

  .aldermere-feature-media {
    min-height: 340px;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: start;
    display: grid;
    gap: 10px;
    height: auto;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .scroll-progress {
    top: 104px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.86rem;
  }

  .header-actions {
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }

  .header-social,
  .header-cta {
    min-height: 34px;
    padding: 0 12px;
  }

  .hero {
    min-height: auto;
    padding: 144px 20px 44px;
  }

  .hero-cover-track {
    gap: 10px;
    grid-template-columns: repeat(3, minmax(88px, 1fr));
    left: 20px;
    right: auto;
    width: calc(100vw - 40px);
  }

  .hero-cover-track-primary {
    animation: none;
    opacity: 0.44;
    top: 165px;
    transform: rotate(-3deg);
  }

  .hero-cover-track-secondary {
    display: none;
  }

  .hero-brand-lockup {
    margin-bottom: 18px;
    max-width: min(320px, calc(100vw - 40px));
  }

  .hero-content,
  .hero-copy {
    max-width: min(320px, calc(100vw - 40px));
    width: min(320px, calc(100vw - 40px));
  }

  .hero-content {
    opacity: 1;
    transform: none;
  }

  h1 {
    font-size: clamp(2rem, 9.8vw, 2.45rem);
    line-height: 0.95;
    overflow-wrap: anywhere;
  }

  .hero-brand-lockup,
  .hero .eyebrow,
  .hero h1,
  .hero-copy,
  .hero-actions,
  .hero-stats {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    margin-bottom: 22px;
  }

  .hero-stats {
    gap: 12px;
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .scale-strip {
    grid-template-columns: 1fr;
  }

  .aldermere-feature-media {
    min-height: 280px;
  }

  .aldermere-feature-copy {
    padding: 24px;
  }

  .aldermere-gallery-card img {
    aspect-ratio: 4 / 3;
  }

  .path-steps,
  .episode-frame,
  .email-capture {
    grid-template-columns: 1fr;
  }

  .rule-list div,
  .idea-meta div {
    grid-template-columns: 1fr;
  }

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

  .book-card-grid,
  .media-card-grid,
  .freebie-card-grid,
  .lane-card-grid,
  #affiliate-card-grid,
  .content-card-actions,
  .commerce-actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: start;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }
}
