:root {
  --bg: #211a14;
  --bg-2: #2b2219;
  --bg-3: #382c20;
  --surface: #3a2e22;
  --surface-2: #4a3929;
  --surface-3: #5a4531;
  --text: #f4ead7;
  --text-soft: #ddcfb7;
  --muted: #b39d84;
  --lime: #a6ea63;
  --purple: #8c6a45;
  --line: rgba(244, 234, 215, 0.12);
  --line-strong: rgba(244, 234, 215, 0.22);
  --shadow: 0 18px 40px rgba(16, 11, 7, 0.36);
  --shadow-soft: 0 10px 26px rgba(16, 11, 7, 0.24);
  --shadow-deep: 0 24px 64px rgba(16, 11, 7, 0.44);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --section-divider-desktop: url("/assets/images/section-divider-desktop.svg");
  --section-divider-mobile: url("/assets/images/section-divider-mobile.svg");
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(
      circle at 78% 6%,
      rgba(166, 234, 99, 0.12),
      transparent 0 18%
    ),
    radial-gradient(
      circle at 10% 18%,
      rgba(166, 234, 99, 0.1),
      transparent 0 16%
    ),
    radial-gradient(
      circle at 50% 42%,
      rgba(63, 46, 30, 0.44),
      transparent 0 34%
    ),
    radial-gradient(
      circle at 50% 120%,
      rgba(140, 106, 69, 0.16),
      transparent 0 26%
    ),
    linear-gradient(
      180deg,
      var(--bg) 0%,
      var(--bg-2) 28%,
      #31251b 58%,
      var(--bg-3) 80%,
      #463527 100%
    );
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--text);
  text-decoration: none;
}
p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}
ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-soft);
}
strong {
  color: var(--text);
}
em {
  font-style: italic;
}
.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}
.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    180deg,
    rgba(6, 15, 26, 0.92),
    rgba(7, 16, 27, 0.84)
  );
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}
.site-header-inner {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.82rem 0;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 14px rgba(151, 255, 97, 0.14))
    drop-shadow(0 0 22px rgba(124, 143, 75, 0.14));
}
.brand-name {
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.primary-nav {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: center;
}
.nav-link {
  padding: 0.58rem 0.8rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 650;
  line-height: 1.1;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.menu-toggle {
  display: none;
  justify-self: end;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  padding: 0.75rem 1rem;
  font-weight: 700;
}
.mobile-nav {
  display: none;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto 1rem;
  flex-direction: column;
  gap: 0.7rem;
}
.mobile-nav.is-open {
  display: flex;
}
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  min-height: 3.15rem;
  padding: 0.78rem 1.3rem;
  --button-min-width: 0;
  --button-horizontal-padding: 1.3rem;
  font-size: 0.96rem;
  line-height: 1.05;
  white-space: nowrap;
}
.header-auth {
  justify-self: end;
}
.header-account {
  display: grid;
  grid-template-columns: minmax(0, auto) auto;
  grid-template-areas:
    "kicker button"
    "name button";
  align-items: center;
  column-gap: 0.8rem;
  row-gap: 0.05rem;
  min-width: 0;
}
.header-account-kicker {
  grid-area: kicker;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-account-name {
  grid-area: name;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.1;
  max-width: 10.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-account-button {
  grid-area: button;
  min-width: 0;
  min-height: 3.15rem;
  padding: 0.78rem 1.1rem;
  --button-min-width: 0;
  --button-horizontal-padding: 1.1rem;
}
.mobile-auth .header-account {
  grid-template-columns: 1fr;
  grid-template-areas:
    "kicker"
    "name"
    "button";
  gap: 0.28rem;
  align-items: stretch;
}
.mobile-auth .header-account-button {
  width: 100%;
  margin-top: 0.25rem;
}

/* Buttons */
.button {
  --button-min-width: 11.25rem;
  --button-height: 3.55rem;
  --button-horizontal-padding: 1.35rem;
  display: inline-grid;
  place-items: center;
  min-width: var(--button-min-width);
  min-height: var(--button-height);
  padding: 0.82rem var(--button-horizontal-padding);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  text-align: center;
  text-wrap: balance;
  background: linear-gradient(
    180deg,
    rgba(18, 31, 52, 0.96),
    rgba(12, 22, 37, 0.96)
  );
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text) !important;
  text-shadow: none;
}
.button:hover,
.button:focus,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}
.button:active {
  transform: translateY(0);
}
.button-primary,
.button-primary:visited,
.button-primary:hover,
.button-primary:focus {
  background: linear-gradient(
    180deg,
    rgba(151, 255, 97, 0.96),
    rgba(118, 231, 73, 0.96)
  );
  border-color: rgba(151, 255, 97, 0.42);
  color: #08120b !important;
  -webkit-text-fill-color: #08120b !important;
  font-weight: 800;
}
.button-secondary,
.button-secondary:visited,
.button-secondary:hover,
.button-secondary:focus,
.button-link,
.button-link:visited,
.button-link:hover,
.button-link:focus {
  background: linear-gradient(
    180deg,
    rgba(40, 30, 82, 0.96),
    rgba(28, 21, 58, 0.96)
  );
  border-color: rgba(125, 92, 255, 0.3);
  color: var(--lime) !important;
  -webkit-text-fill-color: var(--lime) !important;
}
.button-link {
  --button-min-width: 12rem;
}
.is-disabled {
  opacity: 0.7;
  cursor: default;
  box-shadow: none;
}

main {
  flex: 1;
}
.section,
.page-hero,
.hero {
  position: relative;
  isolation: isolate;
}
.section {
  padding: 5.9rem 0;
}
.section-tight {
  padding: 3.6rem 0;
}
.section-alt {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.012)
    ),
    radial-gradient(
      circle at 10% 0%,
      rgba(151, 255, 97, 0.04),
      transparent 0 18%
    ),
    radial-gradient(
      circle at 90% 100%,
      rgba(125, 92, 255, 0.05),
      transparent 0 22%
    );
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.section::before,
.page-hero::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(151, 255, 97, 0.045),
      transparent 0 18%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(125, 92, 255, 0.07),
      transparent 0 22%
    );
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.035);
}
.section > .container {
  position: relative;
  z-index: 2;
}
body.has-section-dividers .hero + .section,
body.has-section-dividers .page-hero + .section,
body.has-section-dividers .section + .section {
  border-top-color: transparent;
}
body.has-section-dividers .hero + .section::after,
body.has-section-dividers .page-hero + .section::after,
body.has-section-dividers .section + .section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(920px, calc(100% - 2rem));
  height: 72px;
  transform: translate(-50%, -52%);
  pointer-events: none;
  z-index: 2;
  opacity: 0.98;
  background:
    radial-gradient(
      circle at center,
      rgba(151, 255, 97, 0.18),
      transparent 0 18%
    ),
    radial-gradient(
      circle at center,
      rgba(125, 92, 255, 0.14),
      transparent 0 36%
    ),
    var(--section-divider-desktop) center/100% 100% no-repeat;
  filter: drop-shadow(0 0 18px rgba(159, 230, 90, 0.16))
    drop-shadow(0 0 28px rgba(125, 92, 255, 0.1));
}
body.has-section-dividers .hero + .section.section-tight::after,
body.has-section-dividers .page-hero + .section.section-tight::after,
body.has-section-dividers .section + .section.section-tight::after {
  height: 66px;
}

h1,
h2,
h3 {
  margin: 0 0 0.95rem;
  line-height: 1.08;
  color: var(--text);
}
h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-family: var(--serif);
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}
h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.85rem);
  font-family: var(--serif);
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}
.lead {
  font-size: 1.08rem;
  max-width: 46rem;
  line-height: 1.8;
  color: #dbe5f6;
}
.eyebrow {
  color: var(--lime);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  font-weight: 750;
}
.breadcrumbs {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumbs a {
  color: var(--muted);
}
.hero-actions,
.stack-actions,
.callout-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-actions {
  margin-top: 1.8rem;
}
.stack-actions {
  margin-top: 1.15rem;
}
.callout-strip {
  margin-top: 0.85rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.94rem;
}
.small {
  font-size: 0.93rem;
  color: var(--muted);
}

.notice {
  padding: 1.18rem 1.32rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: linear-gradient(
    180deg,
    rgba(17, 30, 49, 0.88),
    rgba(12, 22, 37, 0.92)
  );
  color: var(--text-soft);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Panels/cards */
.card,
.hero-panel,
.content-panel,
.policy-panel,
.purchase-card,
.form-shell,
.cover-placeholder {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(12, 22, 38, 0.88),
    rgba(16, 30, 49, 0.94)
  );
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3);
  backdrop-filter: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.card,
.content-panel,
.policy-panel {
  padding: 2.05rem 2.05rem 2.15rem;
}
.hero-panel {
  padding: 2.15rem 2.15rem 2.25rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.purchase-card {
  padding: 1.5rem 1.5rem 1.6rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    180deg,
    rgba(15, 27, 44, 0.94),
    rgba(11, 21, 35, 0.96)
  );
}
.form-shell {
  padding: 1rem 0.95rem 0.9rem;
  max-width: 34rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    180deg,
    rgba(15, 27, 44, 0.94),
    rgba(11, 21, 35, 0.96)
  );
}
.cover-placeholder {
  padding: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card:hover,
.content-panel:hover,
.hero-panel:hover,
.purchase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.card h3,
.content-panel h3,
.hero-panel h2,
.policy-panel h2 {
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.card p,
.content-panel p,
.policy-panel p,
.hero-panel p {
  max-width: 60ch;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
}
.split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
.product-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.7rem;
  align-items: center;
}
.purchase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.4rem 0;
  align-items: start;
}
.feature-list li {
  margin-bottom: 0.7rem;
}

/* Homepage */
.hero {
  padding: 6.9rem 0 5.2rem;
  overflow: hidden;
}
.page-home .hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(5, 10, 18, 0.94) 0%,
      rgba(5, 10, 18, 0.88) 22%,
      rgba(5, 10, 18, 0.58) 47%,
      rgba(5, 10, 18, 0.7) 100%
    ),
    radial-gradient(
      circle at 78% 28%,
      rgba(159, 230, 90, 0.16),
      transparent 18%
    ),
    radial-gradient(
      circle at 66% 18%,
      rgba(125, 92, 255, 0.15),
      transparent 20%
    ),
    url("/assets/images/hero-home-final.jpg") center center/cover no-repeat;
  opacity: 1;
}
.page-home .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 10, 18, 0.18),
    rgba(4, 10, 18, 0.18)
  );
  pointer-events: none;
  z-index: 0;
}
.page-home .hero > .container {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
  gap: 2.4rem;
  align-items: stretch;
}
.hero-copy-shell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 37rem;
  padding: 1.15rem 0 1.45rem;
}
.page-home .hero-copy-shell .lead {
  max-width: 36rem;
  color: #e4e9f6;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.page-home .hero-copy-shell .lead:first-of-type {
  font-weight: 700;
  color: #f3f6fc;
}
body.page-home .home-panel {
  --home-panel-border: rgba(151, 255, 97, 0.34);
  --home-panel-glow: rgba(151, 255, 97, 0.2);
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: clamp(1.35rem, 2.2vw, 1.95rem);
  border: 1px solid var(--home-panel-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.15), rgba(10, 18, 31, 0.15)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.08), rgba(125, 92, 255, 0.08));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 26px var(--home-panel-glow);
  backdrop-filter: blur(10px);
}
body.page-home .home-panel h2,
body.page-home .home-panel h3 {
  max-width: none;
  margin: 0 0 0.85rem;
  line-height: 1.06;
  text-wrap: pretty;
}
body.page-home .home-panel h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
}
body.page-home .home-panel h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
}
body.page-home .home-panel p {
  max-width: 60ch;
  margin: 0;
  line-height: 1.72;
}
body.page-home .home-panel--glow-lime {
  --home-panel-border: rgba(151, 255, 97, 0.4);
  --home-panel-glow: rgba(151, 255, 97, 0.22);
}
body.page-home .home-panel--glow-purple {
  --home-panel-border: rgba(125, 92, 255, 0.42);
  --home-panel-glow: rgba(125, 92, 255, 0.22);
}
body.page-home .home-panel--glow-mix {
  --home-panel-border: rgba(191, 173, 255, 0.38);
  --home-panel-glow: rgba(151, 255, 97, 0.14);
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.15), rgba(10, 18, 31, 0.15)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.08), rgba(124, 143, 75, 0.14));
}
body.page-home .home-panel--summary {
  justify-self: end;
  width: min(100%, 29.25rem);
  min-height: 100%;
  align-self: stretch;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.15rem, 2vw, 1.6rem);
}
body.page-home .home-summary-stage--top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.72rem;
  width: 100%;
}
body.page-home .home-panel--summary h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  line-height: 1.08;
  margin-bottom: 0;
}
body.page-home .home-panel--summary p {
  max-width: 29ch;
  font-size: 0.96rem;
  line-height: 1.55;
}
body.page-home .home-panel--summary .callout-strip {
  margin-top: 0.1rem;
  gap: 0.5rem;
  justify-content: center;
}
body.page-home .home-summary-stage--bottom {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 12.5rem;
}
body.page-home .home-summary-placard-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
body.page-home .home-summary-placard {
  width: min(100%, 20.5rem);
  height: auto;
  padding: 0.32rem;
  border-radius: 20px;
  border: 1px solid rgba(191, 173, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.18), rgba(10, 18, 31, 0.22)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.06), rgba(124, 143, 75, 0.12));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 24px rgba(151, 255, 97, 0.12);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
body.page-home .home-summary-placard-link:hover .home-summary-placard,
body.page-home .home-summary-placard-link:focus-visible .home-summary-placard {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 28px rgba(151, 255, 97, 0.18);
  border-color: rgba(191, 173, 255, 0.46);
}
body.page-home .home-panel--story {
  min-height: 17rem;
  justify-content: flex-end;
  gap: 0.62rem;
}
body.page-home .home-panel--story-blueprint {
  justify-content: space-between;
  gap: 1rem;
}
body.page-home .home-story-copy {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  min-height: 0;
}
body.page-home .home-story-copy h3 {
  margin-bottom: 0;
}
body.page-home .home-story-copy p {
  max-width: 26ch;
}
body.page-home .home-story-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.5rem;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%, rgba(8, 19, 31, 0.82), rgba(8, 19, 31, 0.18) 72%, transparent 100%);
}
body.page-home .home-story-art img {
  display: block;
  width: min(100%, 15.5rem);
  height: auto;
  max-height: 8.75rem;
  opacity: 0.96;
}
body.page-home .home-panel--cover,
body.page-home .home-panel--feature,
body.page-home .home-panel--follow {
  align-self: stretch;
  height: 100%;
}
body.page-home .home-panel--cover {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.2rem, 2vw, 1.6rem);
}
body.page-home .home-panel--cover img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}
body.page-home .home-panel--feature {
  min-height: 0;
  flex: 1 1 auto;
  gap: 1.1rem;
  padding: clamp(1.2rem, 2.1vw, 1.7rem);
}
body.page-home #start-here .home-panel--feature {
  justify-content: flex-start;
}
body.page-home .home-panel--compact,
body.page-home .home-panel--notice,
body.page-home .home-panel--embed {
  border-radius: 18px;
}
body.page-home .home-panel--art-banner {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}
body.page-home .home-panel--art-banner img {
  display: block;
  width: 100%;
  height: clamp(10.4rem, 18.8vw, 13.8rem);
  object-fit: cover;
  object-position: center 58%;
  opacity: 0.92;
}
body.page-home .home-panel--compact {
  min-height: 100%;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1rem 1rem 1.05rem;
}
body.page-home #start-here .home-panel--feature .purchase-grid {
  margin: 0.25rem 0 0;
  gap: 1rem;
  align-items: stretch;
}
body.page-home #start-here .product-grid {
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 1.9rem;
  align-items: stretch;
}
body.page-home #start-here .home-panel--feature > p:first-child {
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.6;
}
body.page-home .home-panel--compact h3 {
  font-size: clamp(0.98rem, 1.08vw, 1.16rem);
  line-height: 1.12;
  margin-bottom: 0.16rem;
  max-width: 14ch;
}
body.page-home .home-panel--compact p {
  font-size: 0.88rem;
  line-height: 1.42;
}
body.page-home .home-panel--compact .small {
  margin-bottom: 0;
}
body.page-home .home-panel--compact .stack-actions {
  margin-top: auto;
  padding-top: 0.3rem;
  gap: 0;
}
body.page-home .home-panel--compact .button {
  width: 100%;
  min-width: 0;
  max-width: 12.75rem;
  min-height: 2.95rem;
  --button-height: 2.95rem;
  --button-horizontal-padding: 1rem;
  font-size: 0.92rem;
  line-height: 1.1;
}
body.page-home .home-panel--notice {
  min-height: 0;
  justify-content: center;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.38;
  padding: 0.78rem 0.95rem;
}
body.page-home .home-panel--embed {
  padding: 0.85rem;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}
body.page-home .home-panel--embed[data-kit-embed] {
  min-height: 18.75rem;
}
body.page-home .home-panel--embed,
body.page-home .home-panel--embed > *,
body.page-home .home-panel--embed form,
body.page-home .home-panel--embed iframe {
  max-width: 100%;
}
body.page-home .home-panel--follow {
  width: min(100%, 38rem);
  justify-self: end;
  gap: 0.82rem;
  padding: clamp(1.2rem, 2vw, 1.6rem);
}
body.page-home .home-panel--follow h3,
body.page-home .home-panel--follow p,
body.page-home .home-panel--follow .small {
  max-width: 31rem;
}
body.page-home .home-panel--follow h3 {
  margin-bottom: 0.1rem;
}
body.page-home .home-panel--follow p {
  line-height: 1.58;
  max-width: 35ch;
}
body.page-home .home-panel--follow .small {
  margin-top: 0.12rem;
  line-height: 1.42;
}
body.page-home .footer {
  padding-bottom: 2.5rem;
}

.section-background-snippet {
  --section-snippet-opacity: 0.3;
  position: relative;
  overflow: hidden;
}
.section-background-snippet::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: var(--section-snippet-image) center/cover no-repeat;
  opacity: var(--section-snippet-opacity);
}
.section-background-snippet::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6, 15, 26, 0.1),
    rgba(6, 15, 26, 0.1) 34%,
    rgba(6, 15, 26, 0.1) 100%
  );
}
.section-background-snippet > .container,
.section-background-snippet > .container > *,
.section-background-snippet > .container .content-prose,
.section-background-snippet > .container .about-story-grid {
  position: relative;
  z-index: 1;
}
.section-background-snippet.is-subtle {
  --section-snippet-opacity: 0.3;
}
.section-background-snippet.is-subtle::after {
  background: linear-gradient(
    180deg,
    rgba(6, 15, 26, 0.1),
    rgba(6, 15, 26, 0.1) 35%,
    rgba(6, 15, 26, 0.1) 100%
  );
}
.section-background-snippet.snippet-01 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-01.webp");
}
.section-background-snippet.snippet-02 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-02.webp");
}
.section-background-snippet.snippet-03 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-03.webp");
}
.section-background-snippet.snippet-04 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-04.webp");
}
.section-background-snippet.snippet-05 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-05.webp");
}
.section-background-snippet.snippet-06 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-06.webp");
}
.section-background-snippet.snippet-07 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-07.webp");
}
.section-background-snippet.snippet-08 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-08.webp");
}
.section-background-snippet.snippet-09 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-09.webp");
}
.section-background-snippet.snippet-10 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-10.webp");
}
.section-background-snippet.snippet-11 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-11.webp");
}
.section-background-snippet.snippet-12 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-12.webp");
}
.section-background-snippet.snippet-13 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-13.webp");
}
.section-background-snippet.snippet-14 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-14.webp");
}
.section-background-snippet.snippet-15 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-15.webp");
}
.section-background-snippet.snippet-16 {
  --section-snippet-image: url("/assets/images/section-backgrounds/section-bg-16.webp");
}

@media (hover: hover) and (pointer: fine) {
  body.page-home .home-panel {
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      border-color 0.18s ease;
  }
  body.page-home .home-panel:hover {
    transform: translateY(-4px);
    box-shadow:
      0 28px 60px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset,
      0 0 34px var(--home-panel-glow);
  }
}
@media (prefers-reduced-motion: reduce) {
  body.page-home .home-panel {
    transition: none;
  }
}

/* Generic pages */
.page-hero {
  padding: 5.6rem 0 2.6rem;
}
.page-title {
  max-width: 52rem;
}
.content-prose {
  max-width: 58rem;
}
.content-prose h2,
.content-prose h3 {
  margin-top: 2.3rem;
}
.content-prose ul li {
  margin-bottom: 0.55rem;
}
.content-prose a:not(.button) {
  color: var(--lime);
}
.content-prose a.button-primary,
.content-prose a.button-primary:visited,
.content-prose a.button-primary:hover,
.content-prose a.button-primary:focus {
  color: var(--purple) !important;
  -webkit-text-fill-color: var(--purple) !important;
}
.content-prose a.button-secondary,
.content-prose a.button-link {
  color: var(--lime) !important;
  -webkit-text-fill-color: var(--lime) !important;
}
.policy-panel {
  max-width: 62rem;
}
body.page-terms .policy-panel,
body.page-community-rules .policy-panel {
  max-width: 58rem;
  margin-inline: auto;
  padding: 2.2rem 2.35rem 2.3rem;
}
body.page-terms .policy-panel h2,
body.page-community-rules .policy-panel h2 {
  font-size: clamp(1.72rem, 2.15vw, 2.4rem);
  line-height: 1.06;
}
body.page-terms .policy-panel p,
body.page-community-rules .policy-panel p,
body.page-terms .policy-panel li,
body.page-community-rules .policy-panel li {
  max-width: 62ch;
}

/* About page */
body.page-about .page-hero {
  padding: 5.2rem 0 2.5rem;
}
body.page-about .about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: 2.4rem;
  align-items: stretch;
}
body.page-about .page-title {
  max-width: 40rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.page-about .page-title .lead {
  max-width: 36rem;
}
body.page-about .about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
  align-items: stretch;
}
body.page-about .about-panel {
  --about-panel-border: rgba(151, 255, 97, 0.34);
  --about-panel-glow: rgba(151, 255, 97, 0.2);
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: clamp(1.35rem, 2.2vw, 1.95rem);
  border: 1px solid var(--about-panel-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.15), rgba(10, 18, 31, 0.15)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.08), rgba(125, 92, 255, 0.08));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 26px var(--about-panel-glow);
  backdrop-filter: blur(10px);
}
body.page-about .about-panel h2,
body.page-about .about-panel h3 {
  max-width: none;
  margin: 0 0 0.85rem;
  line-height: 1.06;
  text-wrap: pretty;
}
body.page-about .about-panel h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
}
body.page-about .about-panel h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
}
body.page-about .about-panel p,
body.page-about .about-panel li {
  max-width: 60ch;
  margin: 0;
  line-height: 1.72;
}
body.page-about .about-panel--glow-lime {
  --about-panel-border: rgba(151, 255, 97, 0.4);
  --about-panel-glow: rgba(151, 255, 97, 0.22);
}
body.page-about .about-panel--glow-purple {
  --about-panel-border: rgba(125, 92, 255, 0.42);
  --about-panel-glow: rgba(125, 92, 255, 0.22);
}
body.page-about .about-panel--glow-mix {
  --about-panel-border: rgba(191, 173, 255, 0.38);
  --about-panel-glow: rgba(151, 255, 97, 0.14);
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.15), rgba(10, 18, 31, 0.15)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.08), rgba(124, 143, 75, 0.14));
}
body.page-about .about-panel--summary {
  justify-self: end;
  width: min(100%, 29.25rem);
  min-height: 100%;
  align-self: stretch;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.15rem, 2vw, 1.6rem);
}
body.page-about .about-summary-stage--top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.72rem;
  width: 100%;
}
body.page-about .about-panel--summary h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  line-height: 1.08;
  margin-bottom: 0;
}
body.page-about .about-panel--summary p {
  max-width: 29ch;
  font-size: 0.96rem;
  line-height: 1.55;
}
body.page-about .about-panel--summary .callout-strip {
  margin-top: 0.1rem;
  gap: 0.5rem;
  justify-content: center;
}
body.page-about .about-summary-stage--bottom {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 12.5rem;
}
body.page-about .about-summary-note,
body.page-community .community-summary-note,
body.page-contact .contact-summary-note,
body.page-future .future-summary-note,
body.page-initiation .initiation-summary-note {
  width: min(100%, 20.5rem);
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(191, 173, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.18), rgba(10, 18, 31, 0.22)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.06), rgba(124, 143, 75, 0.12));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 24px rgba(151, 255, 97, 0.12);
}
body.page-about .about-summary-note h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}
body.page-about .about-summary-note p {
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.48;
}
body.page-about .about-panel--story {
  min-height: 17rem;
  justify-content: flex-end;
  gap: 0.62rem;
}
body.page-about .about-panel--story-blueprint {
  justify-content: space-between;
  gap: 1rem;
}
body.page-about .about-story-copy {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  min-height: 0;
}
body.page-about .about-story-copy h3 {
  margin-bottom: 0;
}
body.page-about .about-story-copy p {
  max-width: 26ch;
}
body.page-about .about-story-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.5rem;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%, rgba(8, 19, 31, 0.82), rgba(8, 19, 31, 0.18) 72%, transparent 100%);
}
body.page-about .about-story-art img {
  display: block;
  width: min(100%, 15.5rem);
  height: auto;
  max-height: 8.75rem;
  opacity: 0.96;
}
body.page-about .about-purpose-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}
body.page-about .about-panel--feature,
body.page-about .about-panel--follow {
  align-self: stretch;
  height: 100%;
}
body.page-about .about-panel--feature {
  min-height: 0;
  gap: 1.1rem;
  padding: clamp(1.2rem, 2.1vw, 1.7rem);
}
body.page-about .about-panel--notice {
  min-height: 0;
  justify-content: center;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.38;
  padding: 0.95rem 1rem;
  border-radius: 18px;
}
body.page-about .about-panel--follow {
  width: min(100%, 38rem);
  justify-self: end;
  gap: 0.82rem;
  padding: clamp(1.2rem, 2vw, 1.6rem);
}
body.page-about .about-panel--follow h3,
body.page-about .about-panel--follow p,
body.page-about .about-panel--follow .small {
  max-width: 31rem;
}
body.page-about .about-panel--follow h3 {
  margin-bottom: 0.1rem;
}
body.page-about .about-panel--follow p {
  line-height: 1.58;
  max-width: 35ch;
}
body.page-about .about-panel--feature .hero-actions,
body.page-about .about-panel--feature .stack-actions {
  margin-top: 1.4rem;
}

/* Bob page */
body.page-bob {
  color: #2e2318;
  background:
    radial-gradient(circle at top, rgba(255, 242, 204, 0.56), transparent 24%),
    linear-gradient(180deg, #c89a55 0%, #a46f3b 18%, #e4c07e 52%, #f4deaf 100%);
}
body.page-bob {
  --section-divider-desktop: url("/assets/images/bob-section-divider-desktop.svg");
  --section-divider-mobile: url("/assets/images/bob-section-divider-mobile.svg");
}
body.page-bob .site-shell {
  background:
    linear-gradient(180deg, rgba(60, 34, 16, 0.08), rgba(60, 34, 16, 0.04)),
    repeating-linear-gradient(
      180deg,
      rgba(108, 71, 38, 0.06) 0,
      rgba(108, 71, 38, 0.06) 2px,
      rgba(255, 255, 255, 0) 2px,
      rgba(255, 255, 255, 0) 6px
    );
}
body.page-bob .site-header {
  background: linear-gradient(180deg, rgba(59, 34, 20, 0.92), rgba(40, 22, 12, 0.9));
  border-bottom: 1px solid rgba(255, 226, 165, 0.22);
}
body.page-bob .brand-name,
body.page-bob .nav-link:hover,
body.page-bob .nav-link.is-active,
body.page-bob .button,
body.page-bob .footer,
body.page-bob .footer a {
  color: #fff7e7;
}
body.page-bob .nav-link {
  color: rgba(255, 245, 223, 0.78);
}
body.page-bob .page-hero {
  padding: 5.2rem 0 2.5rem;
}
body.page-bob .bob-main {
  position: relative;
}
body.page-bob .bob-section,
body.page-bob .bob-hero {
  position: relative;
  overflow: hidden;
}
body.page-bob .bob-hero::before {
  background:
    linear-gradient(90deg, rgba(67, 39, 18, 0.92) 0%, rgba(67, 39, 18, 0.58) 48%, rgba(67, 39, 18, 0.7) 100%),
    radial-gradient(circle at 74% 24%, rgba(86, 154, 150, 0.2), transparent 18%),
    radial-gradient(circle at 18% 14%, rgba(255, 232, 177, 0.24), transparent 22%),
    url("/assets/images/bob-hub-hero-bg.png") center center/cover no-repeat;
  opacity: 0.96;
}
body.page-bob .bob-hero::after,
body.page-bob .bob-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
body.page-bob .bob-hero::after {
  background: linear-gradient(180deg, rgba(255, 241, 207, 0.08), rgba(91, 55, 24, 0.08));
}
body.page-bob .bob-section-alt {
  background: linear-gradient(180deg, rgba(135, 85, 39, 0.12), rgba(255, 247, 231, 0.18));
}
body.page-bob .bob-section-lines::after {
  inset: auto 0 0 0;
  height: 18px;
  background:
    linear-gradient(180deg, rgba(122, 77, 40, 0), rgba(122, 77, 40, 0.24)),
    repeating-linear-gradient(
      90deg,
      rgba(92, 54, 27, 0.2) 0,
      rgba(92, 54, 27, 0.2) 16px,
      rgba(255, 255, 255, 0) 16px,
      rgba(255, 255, 255, 0) 34px
    );
}
body.page-bob .bob-hero > .container,
body.page-bob .bob-section > .container {
  position: relative;
  z-index: 1;
}
body.page-bob .breadcrumbs,
body.page-bob .breadcrumbs a,
body.page-bob .eyebrow,
body.page-bob .bob-section-eyebrow,
body.page-bob .bob-kicker,
body.page-bob .bob-panel-label,
body.page-bob .small {
  color: #6d4321;
}
body.page-bob h1,
body.page-bob h2,
body.page-bob h3,
body.page-bob strong {
  color: #3c2415;
  text-shadow: none;
}
body.page-bob h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  letter-spacing: -0.03em;
}
body.page-bob p,
body.page-bob li,
body.page-bob .lead {
  color: #4d3522;
}
body.page-bob .lead {
  max-width: 39rem;
  font-size: 1.1rem;
}
body.page-bob .bob-hero .breadcrumbs,
body.page-bob .bob-hero .breadcrumbs a {
  color: rgba(255, 242, 214, 0.82);
}
body.page-bob .bob-hero .eyebrow,
body.page-bob .bob-hero .bob-kicker {
  color: #f2d39a;
}
body.page-bob .bob-hero h1,
body.page-bob .bob-hero strong {
  color: #fff8ec;
  text-shadow: 0 3px 16px rgba(43, 24, 12, 0.34);
}
body.page-bob .bob-hero p,
body.page-bob .bob-hero li,
body.page-bob .bob-hero .lead {
  color: #fff0d4;
  text-shadow: 0 2px 12px rgba(43, 24, 12, 0.26);
}
body.page-bob .bob-kicker,
body.page-bob .bob-section-eyebrow,
body.page-bob .bob-panel-label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
body.page-bob .bob-kicker {
  margin: 0 0 0.75rem;
}
body.page-bob .bob-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 2.4rem;
  align-items: stretch;
}
body.page-bob .bob-page-title {
  max-width: 43rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.page-bob .bob-hero .bob-page-title {
  padding: 1.35rem 1.45rem 1.45rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(74, 41, 20, 0.58), rgba(74, 41, 20, 0.3));
  border: 1px solid rgba(255, 231, 184, 0.14);
  box-shadow:
    0 18px 38px rgba(47, 25, 11, 0.18),
    0 0 0 1px rgba(255, 252, 243, 0.03) inset;
  backdrop-filter: blur(3px);
}
body.page-bob .bob-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
  align-items: stretch;
}
body.page-bob .bob-capability-grid,
body.page-bob .bob-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.7rem;
  align-items: stretch;
}
body.page-bob .bob-section-heading {
  margin-bottom: 1.45rem;
}
body.page-bob .button {
  border-radius: 999px;
  border: 2px solid rgba(79, 43, 18, 0.2);
  box-shadow: 0 8px 0 rgba(84, 50, 22, 0.18), 0 14px 28px rgba(67, 38, 16, 0.16);
}
body.page-bob .button-primary,
body.page-bob .button-primary:visited,
body.page-bob .button-primary:hover,
body.page-bob .button-primary:focus {
  background: linear-gradient(180deg, #8f5f2d, #6f461f);
  border-color: rgba(92, 58, 25, 0.42);
  color: #fff5df !important;
  -webkit-text-fill-color: #fff5df !important;
}
body.page-bob .button-secondary,
body.page-bob .button-secondary:visited,
body.page-bob .button-secondary:hover,
body.page-bob .button-secondary:focus,
body.page-bob .button-link,
body.page-bob .button-link:visited,
body.page-bob .button-link:hover,
body.page-bob .button-link:focus {
  background: linear-gradient(180deg, #2f6f71, #214f53);
  border-color: rgba(28, 69, 72, 0.38);
  color: #f8efd8 !important;
  -webkit-text-fill-color: #f8efd8 !important;
}
body.page-bob .pill {
  background: rgba(255, 245, 223, 0.75);
  border: 1px solid rgba(96, 57, 26, 0.14);
  color: #5e371c;
}
body.page-bob .bob-panel {
  --bob-panel-border: rgba(115, 66, 31, 0.26);
  --bob-panel-glow: rgba(255, 210, 119, 0.12);
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: clamp(1.35rem, 2.2vw, 1.95rem);
  border: 1px solid var(--bob-panel-border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 248, 232, 0.92), rgba(247, 227, 187, 0.9));
  box-shadow:
    0 14px 0 rgba(106, 64, 31, 0.1),
    0 22px 48px rgba(92, 54, 27, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}
body.page-bob .bob-ad-card {
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.42), transparent 22%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.95), rgba(241, 215, 170, 0.94));
}
body.page-bob .bob-panel--glow-lime {
  --bob-panel-border: rgba(54, 132, 109, 0.24);
}
body.page-bob .bob-panel--glow-purple {
  --bob-panel-border: rgba(84, 57, 121, 0.24);
}
body.page-bob .bob-panel--glow-mix {
  --bob-panel-border: rgba(145, 96, 39, 0.26);
}
body.page-bob .bob-panel h2,
body.page-bob .bob-panel h3 {
  max-width: none;
  margin: 0 0 0.7rem;
  line-height: 1.05;
  text-wrap: pretty;
}
body.page-bob .bob-panel h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
}
body.page-bob .bob-panel h3 {
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
}
body.page-bob .bob-panel p,
body.page-bob .bob-panel li {
  max-width: 62ch;
  margin: 0;
  line-height: 1.7;
}
body.page-bob .bob-panel--summary {
  justify-self: end;
  width: min(100%, 29.5rem);
  min-height: 100%;
  align-self: stretch;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.2rem, 2vw, 1.7rem);
}
body.page-bob .bob-summary-stage--top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.72rem;
  width: 100%;
}
body.page-bob .bob-panel--summary p {
  max-width: 31ch;
  font-size: 1rem;
  line-height: 1.58;
  color: #47301d;
}
body.page-bob .bob-panel--summary h2 {
  color: #2f1b0f;
}
body.page-bob .bob-panel--summary .bob-panel-label {
  color: #6c4524;
}
body.page-bob .bob-panel--summary .pill {
  color: #4a2d17;
}
body.page-bob .bob-callout-strip {
  justify-content: center;
}
body.page-bob .bob-summary-stage--bottom {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 12.5rem;
}
body.page-bob .bobnet-placard-frame,
body.page-bob .bob-portrait-frame {
  width: min(100%, 20.75rem);
  padding: 0.95rem;
  border-radius: 26px;
  border: 2px solid rgba(129, 84, 41, 0.24);
  background: linear-gradient(180deg, rgba(111, 69, 34, 0.16), rgba(255, 250, 239, 0.7));
  box-shadow:
    0 12px 0 rgba(106, 64, 31, 0.1),
    0 16px 36px rgba(92, 54, 27, 0.16),
    0 0 0 1px rgba(255, 247, 230, 0.5) inset;
}
body.page-bob .bobnet-placard,
body.page-bob .bob-portrait-art {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
body.page-bob .bob-badge-panel {
  margin-top: 0.2rem;
}
body.page-bob .bob-badge-inline {
  width: min(100%, 12rem);
  margin: 0 auto;
}
body.page-bob .bob-badge-inline img {
  width: 100%;
  height: auto;
  display: block;
}
body.page-bob .bob-story-copy {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  min-height: 0;
}
body.page-bob .bob-story-copy p {
  max-width: 28ch;
}
body.page-bob .bob-panel--feature,
body.page-bob .bob-panel--follow {
  align-self: stretch;
  height: 100%;
}
body.page-bob .bob-panel--feature {
  min-height: 0;
  gap: 1.1rem;
  padding: clamp(1.2rem, 2.1vw, 1.7rem);
}
body.page-bob .bob-panel--notice,
body.page-bob .bob-ad-inset {
  min-height: 0;
  justify-content: center;
  text-align: center;
  font-size: 0.94rem;
  line-height: 1.4;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 247, 230, 0.9), rgba(232, 210, 177, 0.9));
}
body.page-bob .bob-panel--art-feature {
  justify-content: center;
}
body.page-bob .bob-art-shell {
  width: 100%;
  padding: 1rem;
  border-radius: 24px;
  border: 2px solid rgba(129, 84, 41, 0.2);
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.94), rgba(241, 219, 178, 0.94));
}
body.page-bob .bob-art-shell img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
body.page-bob .bob-art-note {
  text-align: center;
  max-width: none;
}
body.page-bob .bob-closing-copy {
  max-width: 40rem;
}
body.page-bob .bob-feature-list li {
  color: #4d3522;
}
body.page-bob .bob-panel--follow {
  width: min(100%, 38rem);
  justify-self: end;
  gap: 0.82rem;
  padding: clamp(1.2rem, 2vw, 1.6rem);
}
body.page-bob .bob-panel--follow h3,
body.page-bob .bob-panel--follow p,
body.page-bob .bob-panel--follow .small {
  max-width: 31rem;
}
body.page-bob .bob-panel--follow p {
  line-height: 1.58;
  max-width: 35ch;
}
body.page-bob .bob-panel--feature .hero-actions,
body.page-bob .bob-panel--feature .stack-actions,
body.page-bob .bob-hero-actions {
  margin-top: 1.4rem;
}

body.page-bob .bob-workflow-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.35rem;
  align-items: stretch;
}
body.page-bob .bob-workflow-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-content: center;
}
body.page-bob .bob-workflow-step {
  min-height: 4.25rem;
  padding: 0.85rem 0.8rem;
  border: 1px solid rgba(111, 67, 32, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.96), rgba(232, 204, 158, 0.9));
  color: #3b2515;
  font: inherit;
  font-weight: 850;
  line-height: 1.12;
  cursor: pointer;
  box-shadow:
    0 8px 0 rgba(106, 64, 31, 0.08),
    0 14px 24px rgba(92, 54, 27, 0.12);
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease;
}
body.page-bob .bob-workflow-step:hover,
body.page-bob .bob-workflow-step.is-active {
  border-color: rgba(54, 132, 109, 0.42);
  background:
    linear-gradient(180deg, rgba(224, 249, 228, 0.98), rgba(175, 222, 190, 0.94));
  color: #173d36;
  transform: translateY(-1px);
}
body.page-bob .bob-workflow-detail {
  justify-content: center;
}

body.page-progress .twb-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.35rem;
  align-items: stretch;
}
body.page-progress .twb-path-picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
  align-content: center;
}
body.page-progress .twb-path-button {
  min-height: 3.8rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(151, 255, 97, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 27, 45, 0.86), rgba(8, 17, 29, 0.94)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.08), rgba(125, 92, 255, 0.1));
  color: var(--text);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  transition:
    border-color 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease,
    box-shadow 0.16s ease;
}
body.page-progress .twb-path-button:hover,
body.page-progress .twb-path-button.is-active {
  border-color: rgba(151, 255, 97, 0.68);
  color: var(--lime);
  transform: translateY(-1px);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(151, 255, 97, 0.16);
}
body.page-progress .twb-path-result {
  justify-content: center;
}
body.page-progress .twb-path-result .eyebrow {
  margin-bottom: 0.1rem;
}
@media (hover: hover) and (pointer: fine) {
  body.page-bob .bob-panel {
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      border-color 0.18s ease;
  }
  body.page-bob .bob-panel:hover {
    transform: translateY(-4px);
    box-shadow:
      0 18px 0 rgba(106, 64, 31, 0.12),
      0 26px 54px rgba(92, 54, 27, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.34) inset;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.page-bob .bob-panel {
    transition: none;
  }
}

/* Art Integration 02 — inner-page atmosphere */
body.has-structure-hooks .page-hero {
  overflow: hidden;
}
body.has-structure-hooks .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 10, 18, 0.08),
    rgba(4, 10, 18, 0.12)
  );
}
body.has-structure-hooks .page-hero > .container {
  position: relative;
  z-index: 1;
}
body.has-structure-hooks .page-title,
body.has-structure-hooks .content-prose,
body.has-structure-hooks .policy-panel {
  position: relative;
  z-index: 1;
}

body.page-initiation .section.section-tight .product-grid > .content-panel,
body.page-initiation .hero-panel {
  background: linear-gradient(
    180deg,
    rgba(12, 22, 38, 0.88),
    rgba(16, 30, 49, 0.94)
  );
}

body.page-initiation .page-hero {
  padding: 5.2rem 0 2.5rem;
}
body.page-initiation .initiation-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: 2.4rem;
  align-items: stretch;
}
body.page-initiation .page-title {
  max-width: 40rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.page-initiation .page-title .lead {
  max-width: 36rem;
}
body.page-initiation .initiation-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
  align-items: stretch;
}
body.page-initiation .initiation-panel {
  --initiation-panel-border: rgba(151, 255, 97, 0.34);
  --initiation-panel-glow: rgba(151, 255, 97, 0.2);
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: clamp(1.35rem, 2.2vw, 1.95rem);
  border: 1px solid var(--initiation-panel-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.15), rgba(10, 18, 31, 0.15)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.08), rgba(125, 92, 255, 0.08));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 26px var(--initiation-panel-glow);
  backdrop-filter: blur(10px);
}
body.page-initiation .initiation-panel h2,
body.page-initiation .initiation-panel h3 {
  max-width: none;
  margin: 0 0 0.85rem;
  line-height: 1.06;
  text-wrap: pretty;
}
body.page-initiation .initiation-panel h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
}
body.page-initiation .initiation-panel h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
}
body.page-initiation .initiation-panel p,
body.page-initiation .initiation-panel li {
  max-width: 60ch;
  margin: 0;
  line-height: 1.72;
}
body.page-initiation .initiation-panel--glow-lime {
  --initiation-panel-border: rgba(151, 255, 97, 0.4);
  --initiation-panel-glow: rgba(151, 255, 97, 0.22);
}
body.page-initiation .initiation-panel--glow-purple {
  --initiation-panel-border: rgba(125, 92, 255, 0.42);
  --initiation-panel-glow: rgba(125, 92, 255, 0.22);
}
body.page-initiation .initiation-panel--glow-mix {
  --initiation-panel-border: rgba(191, 173, 255, 0.38);
  --initiation-panel-glow: rgba(151, 255, 97, 0.14);
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.15), rgba(10, 18, 31, 0.15)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.08), rgba(124, 143, 75, 0.14));
}
body.page-initiation .initiation-panel--summary {
  justify-self: end;
  width: min(100%, 29.25rem);
  min-height: 100%;
  align-self: stretch;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.15rem, 2vw, 1.6rem);
}
body.page-initiation .initiation-summary-stage--top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.72rem;
  width: 100%;
}
body.page-initiation .initiation-panel--summary h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  line-height: 1.08;
  margin-bottom: 0;
}
body.page-initiation .initiation-panel--summary p {
  max-width: 29ch;
  font-size: 0.96rem;
  line-height: 1.55;
}
body.page-initiation .initiation-panel--summary .callout-strip {
  margin-top: 0.1rem;
  gap: 0.5rem;
  justify-content: center;
}
body.page-initiation .initiation-summary-stage--bottom {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 12.5rem;
}
body.page-initiation .initiation-summary-note h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}
body.page-initiation .initiation-summary-note p {
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.48;
}
body.page-initiation .initiation-panel--story {
  min-height: 17rem;
  justify-content: flex-end;
  gap: 0.62rem;
}
body.page-initiation .initiation-panel--story-blueprint {
  justify-content: space-between;
  gap: 1rem;
}
body.page-initiation .initiation-story-copy {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  min-height: 0;
}
body.page-initiation .initiation-story-copy h3 {
  margin-bottom: 0;
}
body.page-initiation .initiation-story-copy p {
  max-width: 26ch;
}
body.page-initiation .initiation-story-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.5rem;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%, rgba(8, 19, 31, 0.82), rgba(8, 19, 31, 0.18) 72%, transparent 100%);
}
body.page-initiation .initiation-story-art img {
  display: block;
  width: min(100%, 15.5rem);
  height: auto;
  max-height: 8.75rem;
  opacity: 0.96;
}
body.page-initiation .initiation-panel--cover,
body.page-initiation .initiation-panel--feature,
body.page-initiation .initiation-panel--follow {
  align-self: stretch;
  height: 100%;
}
body.page-initiation .initiation-panel--cover {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.2rem, 2vw, 1.6rem);
}
body.page-initiation .initiation-panel--cover img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}
body.page-initiation .initiation-panel--feature {
  min-height: 0;
  flex: 1 1 auto;
  gap: 1.1rem;
  padding: clamp(1.2rem, 2.1vw, 1.7rem);
}
body.page-initiation #choose-format .initiation-panel--feature {
  justify-content: flex-start;
}
body.page-initiation .initiation-panel--compact,
body.page-initiation .initiation-panel--notice {
  border-radius: 18px;
}
body.page-initiation .initiation-panel--art-banner {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}
body.page-initiation .initiation-panel--art-banner img {
  display: block;
  width: 100%;
  height: clamp(10.4rem, 18.8vw, 13.8rem);
  object-fit: cover;
  object-position: center 58%;
  opacity: 0.92;
}
body.page-initiation .initiation-panel--compact {
  min-height: 100%;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1rem 1rem 1.05rem;
}
body.page-initiation #choose-format .initiation-panel--feature .purchase-grid {
  margin: 0.25rem 0 0;
  gap: 1rem;
  align-items: stretch;
}
body.page-initiation #choose-format .product-grid {
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 1.9rem;
  align-items: stretch;
}
body.page-initiation #choose-format .initiation-panel--feature > p:first-child {
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.6;
}
body.page-initiation .initiation-panel--compact h3 {
  font-size: clamp(0.98rem, 1.08vw, 1.16rem);
  line-height: 1.12;
  margin-bottom: 0.16rem;
  max-width: 14ch;
}
body.page-initiation .initiation-panel--compact p {
  font-size: 0.88rem;
  line-height: 1.42;
}
body.page-initiation .initiation-panel--compact .small {
  margin-bottom: 0;
}
body.page-initiation .initiation-panel--compact .stack-actions {
  margin-top: auto;
  padding-top: 0.3rem;
  gap: 0;
}
body.page-initiation .initiation-panel--compact .button {
  width: 100%;
  min-width: 0;
  max-width: 12.75rem;
  min-height: 2.95rem;
  --button-height: 2.95rem;
  --button-horizontal-padding: 1rem;
  font-size: 0.92rem;
  line-height: 1.1;
}
body.page-initiation .initiation-panel--notice {
  min-height: 0;
  justify-content: center;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.38;
  padding: 0.78rem 0.95rem;
}
body.page-initiation .initiation-panel--follow {
  width: min(100%, 38rem);
  justify-self: end;
  gap: 0.82rem;
  padding: clamp(1.2rem, 2vw, 1.6rem);
}
body.page-initiation .initiation-panel--follow h3,
body.page-initiation .initiation-panel--follow p,
body.page-initiation .initiation-panel--follow .small {
  max-width: 31rem;
}
body.page-initiation .initiation-panel--follow h3 {
  margin-bottom: 0.1rem;
}
body.page-initiation .initiation-panel--follow p {
  line-height: 1.58;
  max-width: 35ch;
}
body.page-initiation .initiation-panel--feature .hero-actions,
body.page-initiation .initiation-panel--feature .stack-actions {
  margin-top: 1.4rem;
}

body.page-about .page-hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(4, 10, 18, 0.95) 0%,
      rgba(4, 10, 18, 0.89) 28%,
      rgba(4, 10, 18, 0.74) 48%,
      rgba(4, 10, 18, 0.56) 72%,
      rgba(4, 10, 18, 0.8) 100%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(151, 255, 97, 0.1),
      transparent 0 18%
    ),
    radial-gradient(
      circle at 86% 34%,
      rgba(124, 143, 75, 0.14),
      transparent 0 22%
    ),
    radial-gradient(
      circle at 14% 20%,
      rgba(151, 255, 97, 0.04),
      transparent 0 16%
    ),
    url("/assets/images/about-hero-bg-final.jpg") center center/cover no-repeat;
  opacity: 1;
}

body.page-community .page-hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(4, 10, 18, 0.94) 0%,
      rgba(4, 10, 18, 0.87) 32%,
      rgba(4, 10, 18, 0.72) 50%,
      rgba(4, 10, 18, 0.55) 76%,
      rgba(4, 10, 18, 0.8) 100%
    ),
    radial-gradient(
      circle at 78% 18%,
      rgba(151, 255, 97, 0.1),
      transparent 0 18%
    ),
    radial-gradient(
      circle at 84% 64%,
      rgba(125, 92, 255, 0.1),
      transparent 0 24%
    ),
    url("/assets/images/community-hero-bg-final.jpg") center 42% / cover
      no-repeat;
  opacity: 1;
}

body.page-community .community-intro-grid,
body.page-future .future-intro-grid,
body.page-progress .progress-intro-grid,
body.page-contact .contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(430px, 1.02fr);
  gap: 2.4rem;
  align-items: stretch;
}

body.page-community .page-title,
body.page-future .page-title,
body.page-progress .page-title,
body.page-contact .page-title {
  max-width: 40rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-community .page-title .lead,
body.page-future .page-title .lead,
body.page-progress .page-title .lead,
body.page-contact .page-title .lead {
  max-width: 36rem;
}

body.page-community .community-card-grid,
body.page-future .future-card-grid,
body.page-contact .contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
  align-items: stretch;
}

body.page-progress .progress-card-grid,
body.page-progress .progress-lane-grid {
  display: grid;
  gap: 1.45rem;
  align-items: stretch;
}

body.page-progress .progress-card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-progress .progress-lane-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-progress .progress-highlight-grid,
body.page-progress .progress-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.45rem;
  align-items: stretch;
}

body.page-community .community-panel {
  --community-panel-border: rgba(151, 255, 97, 0.34);
  --community-panel-glow: rgba(151, 255, 97, 0.2);
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: clamp(1.35rem, 2.2vw, 1.95rem);
  border: 1px solid var(--community-panel-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.15), rgba(10, 18, 31, 0.15)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.08), rgba(125, 92, 255, 0.08));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 26px var(--community-panel-glow);
  backdrop-filter: blur(10px);
}

body.page-future .future-panel,
body.page-progress .progress-panel {
  --future-panel-border: rgba(151, 255, 97, 0.34);
  --future-panel-glow: rgba(151, 255, 97, 0.2);
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: clamp(1.35rem, 2.2vw, 1.95rem);
  border: 1px solid var(--future-panel-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.15), rgba(10, 18, 31, 0.15)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.08), rgba(125, 92, 255, 0.08));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 26px var(--future-panel-glow);
  backdrop-filter: blur(10px);
}

body.page-community .community-panel h2,
body.page-community .community-panel h3,
body.page-future .future-panel h2,
body.page-future .future-panel h3,
body.page-progress .progress-panel h2,
body.page-progress .progress-panel h3 {
  max-width: none;
  margin: 0 0 0.85rem;
  line-height: 1.06;
  text-wrap: pretty;
}

body.page-community .community-panel h2,
body.page-future .future-panel h2,
body.page-progress .progress-panel h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
}

body.page-community .community-panel h3,
body.page-future .future-panel h3,
body.page-progress .progress-panel h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
}

body.page-community .community-panel p,
body.page-community .community-panel li,
body.page-future .future-panel p,
body.page-future .future-panel li,
body.page-progress .progress-panel p,
body.page-progress .progress-panel li {
  max-width: 60ch;
  margin: 0;
  line-height: 1.72;
}

body.page-community .community-panel--glow-lime {
  --community-panel-border: rgba(151, 255, 97, 0.4);
  --community-panel-glow: rgba(151, 255, 97, 0.22);
}

body.page-community .community-panel--glow-purple {
  --community-panel-border: rgba(125, 92, 255, 0.42);
  --community-panel-glow: rgba(125, 92, 255, 0.22);
}

body.page-community .community-panel--glow-mix {
  --community-panel-border: rgba(191, 173, 255, 0.38);
  --community-panel-glow: rgba(151, 255, 97, 0.14);
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.15), rgba(10, 18, 31, 0.15)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.08), rgba(124, 143, 75, 0.14));
}

body.page-future .future-panel--glow-lime,
body.page-progress .progress-panel--glow-lime {
  --future-panel-border: rgba(151, 255, 97, 0.4);
  --future-panel-glow: rgba(151, 255, 97, 0.22);
}

body.page-future .future-panel--glow-purple,
body.page-progress .progress-panel--glow-purple {
  --future-panel-border: rgba(125, 92, 255, 0.42);
  --future-panel-glow: rgba(125, 92, 255, 0.22);
}

body.page-future .future-panel--glow-mix,
body.page-progress .progress-panel--glow-mix {
  --future-panel-border: rgba(191, 173, 255, 0.38);
  --future-panel-glow: rgba(151, 255, 97, 0.14);
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.15), rgba(10, 18, 31, 0.15)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.08), rgba(124, 143, 75, 0.14));
}

body.page-community .community-panel--summary,
body.page-future .future-panel--summary,
body.page-progress .progress-panel--summary {
  justify-self: end;
  width: min(100%, 29.25rem);
  min-height: 100%;
  align-self: stretch;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.15rem, 2vw, 1.6rem);
}

body.page-community .community-summary-stage--top,
body.page-future .future-summary-stage--top,
body.page-progress .progress-summary-stage--top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.72rem;
  width: 100%;
}

body.page-community .community-panel--summary h2,
body.page-future .future-panel--summary h2,
body.page-progress .progress-panel--summary h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  line-height: 1.08;
  margin-bottom: 0;
}

body.page-community .community-panel--summary p,
body.page-future .future-panel--summary p,
body.page-progress .progress-panel--summary p {
  max-width: 29ch;
  font-size: 0.96rem;
  line-height: 1.55;
}

body.page-community .community-panel--summary .callout-strip,
body.page-future .future-panel--summary .callout-strip,
body.page-progress .progress-panel--summary .callout-strip {
  margin-top: 0.1rem;
  gap: 0.5rem;
  justify-content: center;
}

body.page-community .community-summary-stage--bottom,
body.page-future .future-summary-stage--bottom,
body.page-progress .progress-summary-stage--bottom {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 12.5rem;
}


body.page-community .community-summary-note h3,
body.page-future .future-summary-note h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

body.page-community .community-summary-note p,
body.page-future .future-summary-note p {
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.48;
}

body.page-community .community-panel--story,
body.page-future .future-panel--story,
body.page-progress .progress-panel--story {
  min-height: 17rem;
  justify-content: flex-end;
  gap: 0.62rem;
}

body.page-community .community-panel--story-blueprint,
body.page-future .future-panel--story-blueprint {
  justify-content: space-between;
  gap: 1rem;
}

body.page-community .community-story-copy,
body.page-future .future-story-copy {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  min-height: 0;
}

body.page-community .community-story-copy h3,
body.page-future .future-story-copy h3 {
  margin-bottom: 0;
}

body.page-community .community-story-copy p,
body.page-future .future-story-copy p {
  max-width: 26ch;
}

body.page-community .community-story-art,
body.page-future .future-story-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.5rem;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%, rgba(8, 19, 31, 0.82), rgba(8, 19, 31, 0.18) 72%, transparent 100%);
}

body.page-community .community-story-art img,
body.page-future .future-story-art img {
  display: block;
  width: min(100%, 15.5rem);
  height: auto;
  max-height: 8.75rem;
  opacity: 0.96;
}

body.page-community .community-panel--feature,
body.page-community .community-panel--follow,
body.page-future .future-panel--feature,
body.page-future .future-panel--follow,
body.page-progress .progress-panel--feature,
body.page-progress .progress-panel--follow {
  align-self: stretch;
  height: 100%;
}

body.page-community .community-panel--feature,
body.page-future .future-panel--feature,
body.page-progress .progress-panel--feature {
  min-height: 0;
  flex: 1 1 auto;
  gap: 1.1rem;
  padding: clamp(1.2rem, 2.1vw, 1.7rem);
}

body.page-community .community-panel--compact,
body.page-community .community-panel--notice,
body.page-community .community-panel--embed,
body.page-future .future-panel--compact,
body.page-future .future-panel--notice,
body.page-progress .progress-panel--compact,
body.page-progress .progress-panel--notice {
  border-radius: 18px;
}

body.page-community .community-panel--art-banner,
body.page-future .future-panel--art-banner {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}

body.page-community .community-panel--art-banner img,
body.page-future .future-panel--art-banner img {
  display: block;
  width: 100%;
  height: clamp(10.4rem, 18.8vw, 13.8rem);
  object-fit: cover;
  opacity: 0.92;
}

body.page-community .community-panel--compact,
body.page-future .future-panel--compact {
  min-height: 100%;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1rem 1rem 1.05rem;
}

body.page-community .community-panel--compact h3,
body.page-future .future-panel--compact h3 {
  font-size: clamp(0.98rem, 1.08vw, 1.16rem);
  line-height: 1.12;
  margin-bottom: 0.16rem;
  max-width: 14ch;
}

body.page-community .community-panel--compact p,
body.page-future .future-panel--compact p {
  font-size: 0.88rem;
  line-height: 1.42;
}

body.page-community .community-panel--compact .small,
body.page-future .future-panel--compact .small {
  margin-bottom: 0;
}

body.page-community .community-panel--follow,
body.page-future .future-panel--follow,
body.page-progress .progress-panel--follow {
  width: min(100%, 38rem);
  justify-self: end;
  gap: 0.82rem;
  padding: clamp(1.2rem, 2vw, 1.6rem);
}

body.page-community .community-panel--follow h3,
body.page-community .community-panel--follow p,
body.page-community .community-panel--follow .small,
body.page-future .future-panel--follow h3,
body.page-future .future-panel--follow p,
body.page-future .future-panel--follow .small,
body.page-progress .progress-panel--follow h3,
body.page-progress .progress-panel--follow p,
body.page-progress .progress-panel--follow .small {
  max-width: 31rem;
}

body.page-community .community-panel--follow p,
body.page-future .future-panel--follow p,
body.page-progress .progress-panel--follow p {
  line-height: 1.58;
  max-width: 35ch;
}

body.page-community .community-panel--embed {
  padding: 0.85rem;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

body.page-community .community-panel--embed[data-kit-embed] {
  min-height: 18.75rem;
}

body.page-community .community-panel--embed,
body.page-community .community-panel--embed > *,
body.page-community .community-panel--embed form,
body.page-community .community-panel--embed iframe {
  max-width: 100%;
}

body.page-community .community-panel--feature .hero-actions,
body.page-community .community-panel--feature .stack-actions,
body.page-future .future-panel--feature .hero-actions,
body.page-future .future-panel--feature .stack-actions,
body.page-progress .progress-panel--feature .hero-actions,
body.page-progress .progress-panel--feature .stack-actions {
  margin-top: 1.4rem;
}

body.page-community .community-panel--feature > p:first-child,
body.page-future .future-panel--feature > p:first-child,
body.page-progress .progress-panel--feature > p:first-child {
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

body.page-community .community-panel--art-banner img {
  object-position: center 42%;
}

body.page-future .future-panel--art-banner img {
  object-position: center 56%;
}

body.page-future #future-progress-map {
  overflow: hidden;
}

body.page-future #future-progress-map .split-grid {
  align-items: stretch;
}

body.page-future .future-progress-map-art {
  min-height: clamp(18rem, 30vw, 24rem);
}

body.page-future .future-progress-map-art img {
  height: 100%;
  min-height: clamp(18rem, 30vw, 24rem);
}

body.page-future .future-sidecar-callout {
  margin-top: 1.6rem;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

body.page-future .future-sidecar-callout h3 {
  margin-bottom: 0.4rem;
}

body.page-progress .progress-summary-art,
body.page-progress .progress-panel--feature img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

body.page-progress .progress-summary-art {
  max-height: 21rem;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

body.page-progress .progress-panel--image-card,
body.page-progress .progress-panel--wide-art {
  padding: 0.9rem;
  overflow: hidden;
}

body.page-progress .progress-panel--wide-art-landscape-crop > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

body.page-progress .progress-panel--copy-card {
  justify-content: center;
}

body.page-progress .progress-panel-copy {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.35rem 0.15rem 0.15rem;
}

body.page-progress .progress-panel-copy h3 {
  margin-bottom: 0;
}

body.page-progress .progress-hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(4, 10, 18, 0.95) 0%,
      rgba(4, 10, 18, 0.9) 30%,
      rgba(4, 10, 18, 0.7) 55%,
      rgba(4, 10, 18, 0.62) 78%,
      rgba(4, 10, 18, 0.86) 100%
    ),
    radial-gradient(circle at 82% 22%, rgba(125, 92, 255, 0.18), transparent 0 22%),
    radial-gradient(circle at 70% 62%, rgba(159, 230, 90, 0.16), transparent 0 18%),
    url("/assets/images/twb-world-vision-hero.png") center 38% / cover no-repeat;
  opacity: 0.92;
}

body.page-progress .progress-lane-grid .feature-list {
  margin-top: 0.35rem;
}

body.page-progress .progress-lane-grid .feature-list li {
  margin-bottom: 0.72rem;
}

body.page-initiation .page-hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(4, 10, 18, 0.95) 0%,
      rgba(4, 10, 18, 0.9) 34%,
      rgba(4, 10, 18, 0.74) 54%,
      rgba(4, 10, 18, 0.55) 78%,
      rgba(4, 10, 18, 0.8) 100%
    ),
    radial-gradient(
      circle at 84% 36%,
      rgba(125, 92, 255, 0.1),
      transparent 0 22%
    ),
    radial-gradient(
      circle at 80% 62%,
      rgba(151, 255, 97, 0.08),
      transparent 0 20%
    ),
    radial-gradient(
      circle at 16% 24%,
      rgba(151, 255, 97, 0.03),
      transparent 0 16%
    ),
    url("/assets/images/initiation-hero-bg-final.jpg") center 62% / cover
      no-repeat;
  opacity: 1;
}

body.page-contact .page-hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(4, 10, 18, 0.95) 0%,
      rgba(4, 10, 18, 0.89) 34%,
      rgba(4, 10, 18, 0.74) 52%,
      rgba(4, 10, 18, 0.57) 78%,
      rgba(4, 10, 18, 0.82) 100%
    ),
    radial-gradient(
      circle at 80% 18%,
      rgba(159, 230, 90, 0.16),
      transparent 0 20%
    ),
    radial-gradient(
      circle at 16% 24%,
      rgba(151, 255, 97, 0.04),
      transparent 0 16%
    ),
    radial-gradient(
      circle at 86% 58%,
      rgba(125, 92, 255, 0.08),
      transparent 0 20%
    ),
    url("/assets/images/contact-hero-bg-final.jpg") center 56% / cover no-repeat;
  opacity: 1;
}

body.page-privacy .page-hero::before,
body.page-terms .page-hero::before,
body.page-creator-policy .page-hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(4, 10, 18, 0.95) 0%,
      rgba(4, 10, 18, 0.9) 34%,
      rgba(4, 10, 18, 0.76) 54%,
      rgba(4, 10, 18, 0.59) 78%,
      rgba(4, 10, 18, 0.82) 100%
    ),
    radial-gradient(
      circle at 78% 18%,
      rgba(125, 92, 255, 0.1),
      transparent 0 18%
    ),
    radial-gradient(
      circle at 16% 24%,
      rgba(151, 255, 97, 0.035),
      transparent 0 16%
    ),
    radial-gradient(
      circle at 84% 58%,
      rgba(151, 255, 97, 0.04),
      transparent 0 20%
    ),
    url("/assets/images/policy-hero-bg-final.jpg") center 46% / cover no-repeat;
  opacity: 1;
}

body.page-community-rules .page-hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(4, 10, 18, 0.95) 0%,
      rgba(4, 10, 18, 0.9) 34%,
      rgba(4, 10, 18, 0.75) 54%,
      rgba(4, 10, 18, 0.58) 78%,
      rgba(4, 10, 18, 0.82) 100%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(159, 230, 90, 0.16),
      transparent 0 18%
    ),
    radial-gradient(
      circle at 86% 28%,
      rgba(125, 92, 255, 0.08),
      transparent 0 18%
    ),
    radial-gradient(
      circle at 16% 24%,
      rgba(151, 255, 97, 0.035),
      transparent 0 16%
    ),
    url("/assets/images/community-rules-hero-bg-final.jpg") center center/cover
      no-repeat;
  opacity: 1;
}
body.page-contact .contact-panel {
  --contact-panel-border: rgba(151, 255, 97, 0.34);
  --contact-panel-glow: rgba(151, 255, 97, 0.2);
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: clamp(1.35rem, 2.2vw, 1.95rem);
  border: 1px solid var(--contact-panel-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.15), rgba(10, 18, 31, 0.15)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.08), rgba(125, 92, 255, 0.08));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 26px var(--contact-panel-glow);
  backdrop-filter: blur(10px);
}
body.page-contact .contact-panel h2,
body.page-contact .contact-panel h3 {
  max-width: none;
  margin: 0 0 0.85rem;
  line-height: 1.06;
  text-wrap: pretty;
}
body.page-contact .contact-panel h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
}
body.page-contact .contact-panel h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
}
body.page-contact .contact-panel p,
body.page-contact .contact-panel li {
  max-width: 60ch;
  margin: 0;
  line-height: 1.72;
}
body.page-contact .contact-panel--glow-lime {
  --contact-panel-border: rgba(151, 255, 97, 0.4);
  --contact-panel-glow: rgba(151, 255, 97, 0.22);
}
body.page-contact .contact-panel--glow-purple {
  --contact-panel-border: rgba(125, 92, 255, 0.42);
  --contact-panel-glow: rgba(125, 92, 255, 0.22);
}
body.page-contact .contact-panel--glow-mix {
  --contact-panel-border: rgba(191, 173, 255, 0.38);
  --contact-panel-glow: rgba(151, 255, 97, 0.14);
  background:
    linear-gradient(180deg, rgba(20, 34, 57, 0.15), rgba(10, 18, 31, 0.15)),
    linear-gradient(135deg, rgba(151, 255, 97, 0.08), rgba(124, 143, 75, 0.14));
}
body.page-contact .contact-panel--summary {
  justify-self: end;
  width: min(100%, 29.25rem);
  min-height: 100%;
  align-self: stretch;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.15rem, 2vw, 1.6rem);
}
body.page-contact .contact-summary-stage--top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.72rem;
  width: 100%;
}
body.page-contact .contact-panel--summary h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  line-height: 1.08;
  margin-bottom: 0;
}
body.page-contact .contact-panel--summary p {
  max-width: 29ch;
  font-size: 0.96rem;
  line-height: 1.55;
}
body.page-contact .contact-panel--summary .callout-strip {
  margin-top: 0.1rem;
  gap: 0.5rem;
  justify-content: center;
}
body.page-contact .contact-summary-stage--bottom {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 12.5rem;
}
body.page-contact .contact-summary-note h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}
body.page-contact .contact-summary-note p {
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.48;
}
body.page-contact .contact-route-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}
body.page-contact .contact-panel--story {
  min-height: 17rem;
  justify-content: flex-end;
  gap: 0.62rem;
}
body.page-contact .contact-panel--story-blueprint {
  justify-content: space-between;
  gap: 1rem;
}
body.page-contact .contact-story-copy {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  min-height: 0;
}
body.page-contact .contact-story-copy h3 {
  margin-bottom: 0;
}
body.page-contact .contact-story-copy p {
  max-width: 26ch;
}
body.page-contact .contact-story-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.5rem;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%, rgba(8, 19, 31, 0.82), rgba(8, 19, 31, 0.18) 72%, transparent 100%);
}
body.page-contact .contact-story-art img {
  display: block;
  width: min(100%, 15.5rem);
  height: auto;
  max-height: 8.75rem;
  opacity: 0.96;
}
body.page-contact .contact-panel--feature,
body.page-contact .contact-panel--follow {
  align-self: stretch;
  height: 100%;
}
body.page-contact .contact-panel--feature {
  min-height: 0;
  flex: 1 1 auto;
  gap: 1.1rem;
  padding: clamp(1.2rem, 2.1vw, 1.7rem);
}
body.page-contact .contact-panel--compact,
body.page-contact .contact-panel--notice {
  border-radius: 18px;
}
body.page-contact .contact-panel--compact {
  min-height: 100%;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1rem 1rem 1.05rem;
}
body.page-contact .contact-panel--compact h3 {
  font-size: clamp(0.98rem, 1.08vw, 1.16rem);
  line-height: 1.12;
  margin-bottom: 0.16rem;
  max-width: 14ch;
}
body.page-contact .contact-panel--compact p {
  font-size: 0.88rem;
  line-height: 1.42;
}
body.page-contact .contact-panel--compact .small {
  margin-bottom: 0;
}
body.page-contact .contact-panel--compact .stack-actions {
  margin-top: auto;
  padding-top: 0.3rem;
  gap: 0;
}
body.page-contact .contact-panel--compact .button {
  width: 100%;
  min-width: 0;
  max-width: 12.75rem;
  min-height: 2.95rem;
  --button-height: 2.95rem;
  --button-horizontal-padding: 1rem;
  font-size: 0.92rem;
  line-height: 1.1;
}
body.page-contact .contact-panel--notice {
  min-height: 0;
  justify-content: center;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.38;
  padding: 0.95rem 1rem;
}
body.page-contact .contact-panel--follow {
  width: min(100%, 38rem);
  justify-self: end;
  gap: 0.82rem;
  padding: clamp(1.2rem, 2vw, 1.6rem);
}
body.page-contact .contact-panel--follow h3,
body.page-contact .contact-panel--follow p,
body.page-contact .contact-panel--follow .small {
  max-width: 31rem;
}
body.page-contact .contact-panel--follow p {
  line-height: 1.58;
  max-width: 35ch;
}
body.page-contact .contact-panel--feature .hero-actions,
body.page-contact .contact-panel--feature .stack-actions {
  margin-top: 1.4rem;
}
body.page-contact .contact-panel--feature > p:first-child {
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.6;
}
body.page-privacy .policy-page-panel,
body.page-terms .policy-page-panel,
body.page-community-rules .policy-page-panel,
body.page-creator-policy .policy-page-panel {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(12, 22, 38, 0.88),
    rgba(16, 30, 49, 0.94)
  );
  box-shadow: var(--shadow);
  padding: 1.85rem 1.9rem 1.95rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
body.page-privacy .policy-page-panel::before,
body.page-privacy .policy-page-panel::after,
body.page-terms .policy-page-panel::before,
body.page-terms .policy-page-panel::after,
body.page-community-rules .policy-page-panel::before,
body.page-community-rules .policy-page-panel::after,
body.page-creator-policy .policy-page-panel::before,
body.page-creator-policy .policy-page-panel::after {
  content: none;
  display: none;
}
body.page-privacy .policy-page-panel > *,
body.page-terms .policy-page-panel > *,
body.page-community-rules .policy-page-panel > *,
body.page-creator-policy .policy-page-panel > * {
  position: relative;
  z-index: 1;
}
body.page-privacy .policy-page-panel h2,
body.page-terms .policy-page-panel h2,
body.page-community-rules .policy-page-panel h2,
body.page-creator-policy .policy-page-panel h2 {
  max-width: none;
  margin: 0 0 0.85rem;
  line-height: 1.06;
  text-wrap: pretty;
  letter-spacing: -0.01em;
}
body.page-privacy .policy-page-panel h2,
body.page-terms .policy-page-panel h2,
body.page-community-rules .policy-page-panel h2,
body.page-creator-policy .policy-page-panel h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
}
body.page-privacy .policy-page-panel p,
body.page-privacy .policy-page-panel li,
body.page-terms .policy-page-panel p,
body.page-terms .policy-page-panel li,
body.page-community-rules .policy-page-panel p,
body.page-community-rules .policy-page-panel li,
body.page-creator-policy .policy-page-panel p,
body.page-creator-policy .policy-page-panel li {
  max-width: 62ch;
  line-height: 1.72;
}

body.has-structure-hooks .section-alt {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.028),
      rgba(255, 255, 255, 0.012)
    ),
    radial-gradient(
      circle at 12% 12%,
      rgba(151, 255, 97, 0.05),
      transparent 0 18%
    ),
    radial-gradient(
      circle at 86% 82%,
      rgba(125, 92, 255, 0.06),
      transparent 0 24%
    );
}

@media (max-width: 980px) {
  body.page-about .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  body.page-about .about-panel--summary {
    justify-self: stretch;
    width: 100%;
    min-height: 0;
  }
  body.page-initiation .initiation-intro-grid,
  body.page-community .community-intro-grid,
  body.page-future .future-intro-grid,
  body.page-progress .progress-intro-grid,
  body.page-contact .contact-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  body.page-initiation .initiation-panel--summary,
  body.page-community .community-panel--summary,
  body.page-future .future-panel--summary,
  body.page-progress .progress-panel--summary,
  body.page-contact .contact-panel--summary {
    justify-self: stretch;
    width: 100%;
    min-height: 0;
  }
  .header-cta {
    min-width: 0;
    padding: 0.74rem 1.15rem;
    --button-min-width: 0;
    --button-horizontal-padding: 1.15rem;
  }
}

@media (max-width: 640px) {
  body.page-community .content-panel,
  body.page-community .card,
  body.page-future .future-panel,
  body.page-progress .progress-panel,
  body.page-initiation .purchase-card,
  body.page-contact .contact-panel,
  body.page-privacy .policy-page-panel,
  body.page-terms .policy-page-panel,
  body.page-community-rules .policy-page-panel,
  body.page-creator-policy .policy-page-panel {
    padding: 1.05rem;
  }

  body.page-about .about-panel {
    padding: 1.15rem;
  }
  body.page-initiation .initiation-panel {
    padding: 1.15rem;
  }
  body.page-bob,
  body.page-bob main,
  body.page-bob section,
  body.page-bob .container,
  body.page-bob .bob-intro-grid,
  body.page-bob .bob-card-grid,
  body.page-bob .bob-capability-grid,
  body.page-bob .bob-closing-grid,
  body.page-bob .bob-panel,
  body.page-bob .bob-page-title,
  body.page-bob .hero-actions,
  body.page-bob .stack-actions {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  body.page-bob,
  body.page-bob main,
  body.page-bob section,
  body.page-bob .container {
    overflow-x: clip;
  }
  body.page-bob .bob-intro-grid,
  body.page-bob .bob-card-grid,
  body.page-bob .bob-capability-grid,
  body.page-bob .bob-closing-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }
  body.page-bob .bob-page-title,
  body.page-bob .bob-panel--summary,
  body.page-bob .bob-panel--feature,
  body.page-bob .bob-panel--follow,
  body.page-bob .bob-panel--story {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: auto;
  }
  body.page-bob .bob-panel {
    padding: 1.05rem 0.96rem 1.08rem;
    gap: 0.72rem;
  }
  body.page-bob .bob-panel--summary {
    justify-self: stretch;
    gap: 0.72rem;
  }
  body.page-bob .bob-summary-stage--top {
    align-items: flex-start;
    text-align: left;
  }
  body.page-bob .bob-callout-strip {
    justify-content: flex-start;
  }
  body.page-bob .bob-summary-stage--bottom {
    min-height: 0;
  }
  body.page-bob .bob-portrait-frame,
  body.page-bob .bobnet-placard-frame {
    width: min(100%, 13.5rem);
    margin: 0 auto;
    padding: 0.7rem;
  }
  body.page-bob .bob-art-shell {
    padding: 0.78rem;
  }
  body.page-bob .bob-badge-inline {
    width: min(100%, 8rem);
  }
  body.page-bob .bob-panel h2,
  body.page-bob .bob-panel h3,
  body.page-bob .bob-page-title h1 {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
  body.page-bob .bob-page-title h1 {
    font-size: clamp(2.2rem, 12vw, 3.1rem);
    line-height: 0.98;
  }
  body.page-bob .bob-panel h2 {
    font-size: clamp(1.55rem, 8.2vw, 2.1rem);
    line-height: 1.02;
    margin-bottom: 0.6rem;
  }
  body.page-bob .bob-panel h3 {
    font-size: clamp(1.18rem, 6.8vw, 1.55rem);
    line-height: 1.05;
    margin-bottom: 0.45rem;
  }
  body.page-bob .bob-panel p,
  body.page-bob .bob-panel li,
  body.page-bob .bob-page-title .lead,
  body.page-bob .bob-story-copy p,
  body.page-bob .bob-panel--follow p {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.56;
  }
  body.page-bob .bob-story-copy {
    gap: 0.46rem;
  }
  body.page-bob .bob-feature-list {
    padding-left: 1rem;
  }
  body.page-bob .bob-hero-actions,
  body.page-bob .hero-actions,
  body.page-bob .stack-actions {
    gap: 0.72rem;
  }
  body.page-bob .button {
    width: 100%;
    min-width: 0;
    min-height: 3rem;
    --button-height: 3rem;
    --button-horizontal-padding: 1rem;
    font-size: 0.95rem;
    line-height: 1.1;
    white-space: normal;
    text-wrap: pretty;
  }

  .header-cta,
  .mobile-nav-cta {
    min-height: 3.2rem;
    padding: 0.78rem 1.1rem;
  }
}

/* Footer */
.footer {
  padding: 3.2rem 0 2rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.32)),
    radial-gradient(
      circle at 15% 10%,
      rgba(151, 255, 97, 0.035),

      transparent 0 18%
    ),
    radial-gradient(
      circle at 85% 90%,
      rgba(125, 92, 255, 0.05),
      transparent 0 22%
    );
}
.footer-grid {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 1.35rem;
  padding-top: 0.25rem;
}
.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.footer-support {
  color: var(--lime);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-copy {
  margin-top: 0.8rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: var(--text-soft);
}
.footer-links a:hover {
  color: var(--text);
}
.footer-muted {
  color: var(--muted);
}
.footer-bottom {
  width: min(var(--container), calc(100% - 2rem));
  margin: 1.6rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 980px) {
  .site-header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 0.8rem;
  }
  .primary-nav,
  .header-auth {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .hero-grid,
  .split-grid,
  .product-grid,
  .card-grid,
  .purchase-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 5.4rem 0 4rem;
  }
  .hero-panel {
    min-height: 320px;
  }
  .section {
    padding: 4.7rem 0;
  }
  body.page-about .about-intro-grid,
  body.page-about .about-story-grid {
    grid-template-columns: 1fr;
  }
  body.page-about .about-frame--feature {
    grid-column: auto;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }
  .site-header-inner {
    padding: 0.72rem 0;
  }
  .brand-mark {
    width: 1.9rem;
    height: 1.9rem;
  }
  .brand-name {
    font-size: 1rem;
  }
  .hero {
    padding: 3.1rem 0 2.25rem;
    overflow: visible;
    min-height: 0;
  }
  .page-home .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(5, 10, 18, 0.9) 0%,
        rgba(5, 10, 18, 0.74) 38%,
        rgba(5, 10, 18, 0.82) 100%
      ),
      url("/assets/images/hero-home-final.jpg") center center/cover no-repeat;
  }
  .hero-grid {
    gap: 1rem;
  }
  .hero-copy-shell {
    max-width: none;
    padding: 0;
  }
  body.page-home .hero-copy-shell h1 {
    font-size: 2.1rem;
    line-height: 1.02;
    margin-bottom: 0.75rem;
  }
  body.page-home .hero-copy-shell .lead {
    font-size: 0.98rem;
    line-height: 1.45;
    margin-bottom: 0.8rem;
  }
  body.page-home .hero-copy-shell p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.9rem;
  }
  body.page-home .home-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-self: stretch;
    padding: 1.05rem 1rem 1.08rem;
    border-radius: 20px;
    backdrop-filter: blur(8px);
  }
  body.page-home .home-panel--summary {
    justify-self: stretch;
    width: 100%;
    min-height: 0;
    gap: 0.72rem;
  }
  body.page-home .home-summary-stage--top {
    align-items: flex-start;
    text-align: left;
  }
  body.page-home .home-panel--summary .callout-strip {
    justify-content: flex-start;
  }
  body.page-home .home-summary-stage--bottom {
    min-height: 0;
  }
  body.page-home .home-summary-placard {
    width: min(100%, 14rem);
  }
  body.page-home .home-panel--follow {
    width: 100%;
  }
  h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }
  h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }
  .lead {
    font-size: 1rem;
    line-height: 1.72;
  }

  .page-home .hero-copy-shell .lead {
    max-width: none;
  }
  body.has-section-dividers .hero + .section::after,
  body.has-section-dividers .page-hero + .section::after,
  body.has-section-dividers .section + .section::after {
    width: min(420px, calc(100% - 1rem));
    height: 58px;
    transform: translate(-50%, -52%);
    background:
      radial-gradient(
        circle at center,
        rgba(151, 255, 97, 0.2),
        transparent 0 22%
      ),
      radial-gradient(
        circle at center,
        rgba(125, 92, 255, 0.16),
        transparent 0 38%
      ),
      var(--section-divider-mobile) center/100% 100% no-repeat;
    opacity: 0.98;
    filter: drop-shadow(0 0 16px rgba(159, 230, 90, 0.16))
      drop-shadow(0 0 22px rgba(125, 92, 255, 0.1));
  }
  .hero-actions,
  .stack-actions,
  .callout-strip {
    flex-direction: column;
  }
  .button {
    width: 100%;
    min-width: 0;
  }
  .card,
  .content-panel,
  .policy-panel,
  .hero-panel,
  .purchase-card,
  .form-shell,
  .cover-placeholder {
    padding: 1.15rem;
  }
  .page-hero {
    padding: 4.4rem 0 1.8rem;
  }
  body.page-about .about-story-grid {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0.82rem;
  }
  body.page-about .about-purpose-grid {
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }
  body.page-about .about-panel--summary {
    padding: 1.05rem 0.96rem 1.08rem;
    gap: 0.66rem;
    min-height: 0;
  }
  body.page-about .about-panel--summary .stack-actions .button {
    min-height: 3rem;
    font-size: 0.95rem;
  }
  body.page-about .about-panel--story,
  body.page-about .about-panel--feature,
  body.page-about .about-panel--follow {
    min-height: 0;
    padding: 0.96rem 0.9rem 1rem;
    gap: 0.68rem;
    align-content: start;
  }
  body.page-about .about-panel h2 {
    font-size: clamp(1.34rem, 7vw, 1.82rem);
    line-height: 1.04;
  }
  body.page-about .about-panel h3 {
    font-size: clamp(1.18rem, 6vw, 1.52rem);
    line-height: 1.05;
    margin-bottom: 0.42rem;
  }
  body.page-about .about-panel p,
  body.page-about .about-panel li {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.56;
  }
  body.page-about .about-story-copy {
    gap: 0.46rem;
  }
  body.page-about .about-story-art {
    min-width: 0;
    justify-content: center;
    padding-top: 0.1rem;
  }
  body.page-about .about-story-art img {
    width: min(100%, 13rem);
    max-height: 7rem;
  }
  body.page-about .about-panel--story-blueprint {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.68rem;
  }
  body.page-about .about-panel--notice {
    padding: 0.82rem 0.78rem 0.86rem;
  }
  body.page-about .about-card-grid {
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }
  body.page-about .about-panel--story {
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
  }
  body.page-about .about-panel--story-blueprint {
    display: flex;
    flex-direction: column;
  }
  body.page-about .about-story-copy,
  body.page-about .about-story-art {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }
  body.page-about .about-story-copy p {
    max-width: none;
  }
  body.page-about .about-story-art {
    order: 2;
    overflow: hidden;
  }
  body.page-about .about-story-art img {
    width: 100%;
    max-width: 13rem;
    height: auto;
    object-fit: contain;
  }
  body.page-home .home-panel--summary .callout-strip {
    display: none;
  }
  body.page-home .home-panel--story,
  body.page-home .home-panel--feature,
  body.page-home .home-panel--follow,
  body.page-home .home-panel--compact,
  body.page-home .home-panel--embed,
  body.page-home .home-panel--notice {
    min-height: 0;
  }
  body.page-home .home-panel--story {
    gap: 0.58rem;
  }
  body.page-home .home-panel--story h3 {
    font-size: clamp(1.34rem, 7.05vw, 1.82rem);
    line-height: 1.01;
    margin-bottom: 0.42rem;
  }
  body.page-home .home-panel--story p,
  body.page-home .home-panel--follow p,
  body.page-home #start-here .home-panel--feature > p:first-child {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.56;
  }
  body.page-home .home-panel--story-blueprint {
    gap: 0.82rem;
  }
  body.page-home .home-story-copy {
    gap: 0.5rem;
  }
  body.page-home .home-story-art {
    padding-top: 0.08rem;
  }
  body.page-home .home-story-art img {
    width: min(100%, 14rem);
    max-height: 7.9rem;
  }
  body.page-home .home-panel--compact {
    padding: 0.92rem 0.88rem 0.96rem;
  }
  body.page-home .home-panel--compact h3 {
    max-width: 10ch;
    font-size: 1.22rem;
    line-height: 1.06;
  }
  body.page-home .home-panel--compact p,
  body.page-home .home-panel--notice,
  body.page-home .home-panel--follow .small {
    font-size: 0.84rem;
    line-height: 1.42;
  }
  body.page-home .home-panel--compact .button {
    max-width: none;
    min-height: 2.8rem;
    --button-height: 2.8rem;
    font-size: 0.92rem;
    transform: none;
  }
  body.page-home .home-panel--cover {
    padding: 0.9rem;
  }
  body.page-home .home-panel--cover img {
    width: 100%;
    max-width: min(100%, 20rem);
    margin-inline: auto;
  }
  body.page-home .home-panel--feature {
    gap: 1rem;
  }
  body.page-home .home-panel--art-banner img {
    height: clamp(7.8rem, 34vw, 10.2rem);
    object-position: center 56%;
  }
  body.page-home .home-panel--follow {
    gap: 0.68rem;
  }
  body.page-home .home-panel--embed[data-kit-embed] {
    min-height: 10.75rem;
  }
  body.page-home [data-kit-embed],
  body.page-home [data-kit-embed] > *,
  body.page-home [data-kit-embed] form,
  body.page-home [data-kit-embed] iframe,
  body.page-home [data-kit-embed] input,
  body.page-home [data-kit-embed] button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .footer-grid {
    gap: 1rem;
  }
}

/* Gate 1 final polish — mobile first-section and framed-card balance */
@media (max-width: 640px) {
  .section.section-tight:first-of-type {
    padding-top: 2.35rem;
  }
  .section.section-tight:first-of-type .content-panel,
  .section.section-tight:first-of-type .policy-panel,
  .section.section-tight:first-of-type .card,
  .section.section-tight:first-of-type .purchase-card,
  .section.section-tight:first-of-type .cover-placeholder {
    margin-top: 0.25rem;
  }

  body.page-initiation .page-title,
  body.page-future .page-title,
  body.page-progress .page-title,
  body.page-community .page-title,
  body.page-contact .page-title,
  body.page-privacy .page-title,
  body.page-terms .page-title,
  body.page-creator-policy .page-title,
  body.page-community-rules .page-title {
    padding-top: 0.35rem;
  }

  body.page-future .future-panel,
  body.page-progress .progress-panel,
  body.page-contact .contact-panel,
  body.page-privacy .policy-page-panel,
  body.page-terms .policy-page-panel,
  body.page-creator-policy .policy-page-panel,
  body.page-community-rules .policy-page-panel,
  body.page-initiation .initiation-panel,
  body.page-initiation .initiation-panel--compact {
    padding: 1.28rem 1.28rem 1.35rem;
  }

  body.page-future .future-panel h3,
  body.page-progress .progress-panel h3,
  body.page-contact .contact-panel h2,
  body.page-contact .contact-panel h3,
  body.page-initiation .initiation-panel h3,
  body.page-community-rules .policy-page-panel h2,
  body.page-privacy .policy-page-panel h2,
  body.page-terms .policy-page-panel h2,
  body.page-creator-policy .policy-page-panel h2 {
    margin-top: 0.08rem;
    margin-bottom: 0.78rem;
    line-height: 1.04;
  }

  body.page-community .community-panel {
    padding: 1.28rem 1.28rem 1.35rem;
  }

  body.page-community .community-panel h3,
  body.page-contact .contact-panel h2,
  body.page-contact .contact-panel h3,
  body.page-initiation .initiation-panel h3,
  body.page-community-rules .policy-page-panel h2,
  body.page-privacy .policy-page-panel h2,
  body.page-terms .policy-page-panel h2,
  body.page-creator-policy .policy-page-panel h2 {
    margin-top: 0.08rem;
    margin-bottom: 0.78rem;
    line-height: 1.04;
  }

  body.page-initiation .initiation-panel--feature > p:first-child,
  body.page-initiation .initiation-panel--after-start > p:first-child,
  body.page-future .future-panel--feature > p:first-child,
  body.page-progress .progress-panel--feature > p:first-child,
  body.page-community .community-panel--feature > p:first-child,
  body.page-contact .contact-panel > p:first-child,
  body.page-privacy .policy-page-panel > p:first-child,
  body.page-terms .policy-page-panel > p:first-child,
  body.page-creator-policy .policy-page-panel > p:first-child,
  body.page-community-rules .policy-page-panel > p:first-child {
    margin-top: 0.12rem;
  }

  body.page-future .card-grid,
  body.page-progress .progress-card-grid,
  body.page-progress .progress-lane-grid,
  body.page-progress .progress-highlight-grid,
  body.page-progress .progress-spotlight-grid {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  body.page-future .future-panel,
  body.page-progress .progress-panel {
    min-height: 0;
  }
  body.page-future .future-panel .stack-actions,
  body.page-initiation .initiation-panel .stack-actions {
    gap: 0.72rem;
  }

  body.page-initiation .purchase-grid {
    gap: 0.85rem;
    margin: 1rem 0 1.05rem;
  }
  body.page-initiation .initiation-panel h3 {
    font-size: clamp(1.15rem, 7vw, 1.8rem);
  }
  body.page-initiation .initiation-panel--notice {
    padding: 1rem 1.08rem;
    margin-top: 0.15rem;
  }

  body.page-community .community-panel--feature h3,
  body.page-community .community-panel--follow h3 {
    font-size: clamp(1.12rem, 8vw, 1.7rem);
  }
  body.page-community .community-panel--embed {
    margin: 1.05rem auto 0.9rem;
  }
  body.page-community .small {
    margin-top: 0.48rem;
  }
}

/* Gate 1 mobile lite-frame mode retired — unified mobile panel assets now own mobile panel rendering */
@media (max-width: 640px) {
  body.page-home,
  body.page-home main,
  body.page-home section,
  body.page-home .container,
  body.page-home .hero-grid,
  body.page-home .split-grid,
  body.page-home .product-grid,
  body.page-home .card-grid,
  body.page-home .purchase-grid,
  body.page-home .home-panel,
  body.page-home [data-kit-embed],
  body.page-home [data-kit-embed] > *,
  body.page-home [data-kit-embed] iframe,
  body.page-home [data-kit-embed] form {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  body.page-home,
  body.page-home main,
  body.page-home section,
  body.page-home .container {
    overflow-x: clip;
  }

  body.page-home .home-panel p,
  body.page-home .home-panel .small,
  body.page-home .home-panel li,
  body.page-home .home-panel a {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  body.page-home .home-panel h3,
  body.page-future .future-panel h3,
  body.page-contact .contact-panel h2,
  body.page-contact .contact-panel h3,
  body.page-community .community-panel--feature h3,
  body.page-community .community-panel--follow h3,
  body.page-initiation .initiation-panel--after-start h3,
  body.page-privacy .policy-panel h2,
  body.page-terms .policy-panel h2,
  body.page-creator-policy .policy-panel h2,
  body.page-community-rules .policy-panel h2 {
    font-size: clamp(1.45rem, 7.8vw, 2.15rem);
    line-height: 1.02;
    margin: 0 0 0.72rem;
  }

  body.page-contact .contact-panel .button,
  body.page-future .future-panel .button,
  body.page-progress .progress-panel .button,
  body.page-home .home-panel .button,
  body.page-community .community-panel .button,
  body.page-initiation .initiation-panel--after-start .button,
  body.page-initiation .initiation-panel--compact .button {
    width: 100%;
  }

  body.page-community .community-panel {
    padding: 1.05rem 0.96rem 1.08rem;
  }
  body.page-community .community-panel--embed {
    box-shadow: none;
    border-radius: 18px;
    width: 100%;
    max-width: none;
    padding: 0.78rem;
    background: transparent;
  }
  body.page-community .community-panel--embed::before {
    inset: 0;
    border-radius: 18px;
  }
  body.page-community .community-panel--embed::after {
    display: none;
  }
  body.page-community .community-panel--follow [data-kit-embed],
  body.page-community .community-panel--follow [data-kit-embed] > *,
  body.page-community .community-panel--follow form,
  body.page-community .community-panel--follow input,
  body.page-community .community-panel--follow button {
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  body.page-community .split-grid,
  body.page-community .community-card-grid,
  body.page-community .product-grid,
  body.page-community .purchase-grid,
  body.page-community .community-intro-grid,
  body.page-contact .split-grid,
  body.page-future .split-grid,
  body.page-future .future-card-grid,
  body.page-future .product-grid,
  body.page-future .purchase-grid,
  body.page-future .future-intro-grid,
  body.page-home .split-grid,
  body.page-home .card-grid,
  body.page-future .card-grid,
  body.page-initiation .purchase-grid,
  body.page-initiation .product-grid,
  body.page-initiation .initiation-intro-grid {
    grid-template-columns: 1fr !important;
  }

  body.page-home .hero-grid,
  body.page-home .split-grid,
  body.page-home .product-grid,
  body.page-home .card-grid,
  body.page-home .purchase-grid,
  body.page-bob .bob-intro-grid,
  body.page-bob .bob-card-grid,
  body.page-bob .bob-capability-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0.95rem;
  }

  body.page-home #start-here > .container > h2 {
    margin-bottom: 0.55rem;
  }

  body.page-home #start-here > .container > p.lead {
    font-size: 0.96rem;
    line-height: 1.5;
    margin-bottom: 0.65rem;
    max-width: none;
  }

  body.page-home #start-here .product-grid {
    gap: 1.05rem;
    margin-top: 0;
  }

  body.page-home #start-here .product-grid {
    align-items: stretch;
  }

  body.page-initiation .initiation-panel--after-start > p:first-child,
  body.page-home #start-here .home-panel--feature > p:first-child,
  body.page-future .future-panel--feature > p:first-child,
  body.page-community .community-main-panel > p:first-child,
  body.page-contact .contact-panel > p:first-child {
    margin-top: 0.05rem;
  }

  body.page-community .page-title,
  body.page-community .community-panel--follow {
    width: 100%;
    max-width: 100%;
  }

  body.page-community .community-summary-stage--bottom {
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  body.page-community .community-panel--story,
  body.page-future .future-panel--story,
  body.page-contact .contact-panel--story,
  body.page-initiation .initiation-panel--story,
  body.page-bob .bob-panel--story {
    justify-content: flex-start;
    align-items: stretch;
    min-height: 0;
    height: auto;
  }

  body.page-community .community-panel--story-blueprint,
  body.page-future .future-panel--story-blueprint,
  body.page-contact .contact-panel--story-blueprint,
  body.page-initiation .initiation-panel--story-blueprint,
  body.page-bob .bob-panel--story-blueprint {
    display: flex;
    flex-direction: column;
    gap: 0.68rem;
  }

  body.page-community .community-story-copy,
  body.page-community .community-story-art,
  body.page-future .future-story-copy,
  body.page-future .future-story-art,
  body.page-contact .contact-story-copy,
  body.page-contact .contact-story-art,
  body.page-initiation .initiation-story-copy,
  body.page-initiation .initiation-story-art,
  body.page-bob .bob-story-copy,
  body.page-bob .bob-story-art {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    min-width: 0;
  }

  body.page-community .community-story-copy p,
  body.page-future .future-story-copy p,
  body.page-contact .contact-story-copy p,
  body.page-initiation .initiation-story-copy p,
  body.page-bob .bob-story-copy p {
    max-width: none;
  }

  body.page-community .community-story-art,
  body.page-future .future-story-art,
  body.page-contact .contact-story-art,
  body.page-initiation .initiation-story-art,
  body.page-bob .bob-story-art {
    order: 2;
    justify-content: center;
    overflow: hidden;
    padding-top: 0.1rem;
  }

  body.page-home .home-story-art,
  body.page-about .about-story-art,
  body.page-community .community-story-art,
  body.page-future .future-story-art,
  body.page-contact .contact-story-art,
  body.page-initiation .initiation-story-art,
  body.page-bob .bob-story-art {
    background: radial-gradient(circle at 50% 50%, rgba(8, 19, 31, 0.82), rgba(8, 19, 31, 0.2) 70%, transparent 100%);
  }

  body.page-community .community-story-art img,
  body.page-future .future-story-art img,
  body.page-contact .contact-story-art img,
  body.page-initiation .initiation-story-art img,
  body.page-bob .bob-story-art img {
    width: 100%;
    max-width: 13rem;
    height: auto;
    max-height: 7rem;
    object-fit: contain;
  }

  body.page-contact .contact-route-grid,
  body.page-contact .contact-card-grid,
  body.page-initiation .initiation-card-grid {
    grid-template-columns: 1fr !important;
    gap: 0.82rem;
  }

  body.page-contact .contact-panel--feature,
  body.page-contact .contact-panel--follow,
  body.page-initiation .initiation-panel--feature,
  body.page-initiation .initiation-panel--follow,
  body.page-initiation .initiation-panel--compact {
    min-height: 0;
    height: auto;
    width: 100%;
    max-width: 100%;
  }

  body.page-contact .contact-panel--compact,
  body.page-initiation .initiation-panel--compact {
    padding: 0.92rem 0.88rem 0.96rem;
  }

}

/* Account, admin, forum */
.account-intro-grid,
.account-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.7fr);
  gap: 2rem;
  align-items: start;
}

.account-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(15, 27, 44, 0.94),
    rgba(11, 21, 35, 0.96)
  );
  box-shadow: var(--shadow-soft);
  padding: 1.35rem;
  min-width: 0;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.account-kicker {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.account-path-panel {
  align-self: stretch;
}

.account-path-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.account-admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
}

.account-form,
.account-profile-form,
.account-toolbar {
  display: grid;
  gap: 1rem;
}

.account-form label,
.account-profile-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--text-soft);
  font-weight: 700;
}

.account-form input,
.account-form select,
.account-form textarea,
.account-profile-form input,
.account-profile-form textarea,
.account-toolbar input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(4, 10, 18, 0.62);
  color: var(--text);
  font: inherit;
  padding: 0.82rem 0.9rem;
}

.account-toolbar {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 1rem;
}

.account-message {
  min-height: 1.4rem;
  color: var(--lime);
  margin: 0;
}

.account-message.is-error {
  color: #ffb3a7;
}

.password-checklist {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(4, 10, 18, 0.34);
  padding: 0.85rem 0.95rem;
}

.password-checklist p {
  margin-bottom: 0.45rem;
  color: var(--text);
  font-weight: 800;
}

.password-checklist ul {
  display: grid;
  gap: 0.32rem;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.password-checklist li {
  color: var(--muted);
  font-size: 0.94rem;
}

.password-checklist li::before {
  content: "○";
  display: inline-block;
  width: 1.3rem;
  color: var(--muted);
}

.password-checklist li.is-met {
  color: var(--lime);
  font-weight: 800;
}

.password-checklist li.is-met::before {
  content: "✓";
  color: var(--lime);
}

.account-facts {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.account-facts div {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.65rem;
}

.account-facts dt {
  color: var(--muted);
  font-weight: 800;
}

.account-facts dd {
  margin: 0;
  color: var(--text-soft);
  overflow-wrap: anywhere;
}

.account-table-wrap {
  overflow-x: auto;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 48rem;
}

.account-table th,
.account-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem;
  text-align: left;
  vertical-align: top;
}

.account-table th {
  color: var(--lime);
}

.account-table span {
  color: var(--muted);
  font-size: 0.9rem;
}

.forum-category-list,
.forum-thread-list {
  display: grid;
  gap: 0.85rem;
}

.forum-category {
  display: grid;
  gap: 0.25rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(4, 10, 18, 0.42);
  color: var(--text);
  padding: 0.95rem;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.forum-category:hover,
.forum-category:focus-visible {
  border-color: rgba(166, 234, 99, 0.42);
}

.forum-category span {
  color: var(--text-soft);
}

.forum-thread h3 {
  margin-bottom: 0.4rem;
}

.forum-shell {
  display: block;
}

.forum-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(15, 27, 44, 0.9),
    rgba(11, 21, 35, 0.94)
  );
  box-shadow: var(--shadow-soft);
  padding: 0.9rem 1rem;
}

.forum-stats-strip h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.forum-main,
.forum-thread-layout {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.forum-start-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(166, 234, 99, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 27, 44, 0.88), rgba(11, 21, 35, 0.94)),
    linear-gradient(135deg, rgba(166, 234, 99, 0.08), rgba(125, 92, 255, 0.08));
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2vw, 1.35rem);
}

.forum-start-copy h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
}

.forum-start-copy p {
  margin: 0;
  max-width: 45ch;
}

.forum-start-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.forum-start-link {
  display: flex;
  align-items: center;
  min-height: 3.4rem;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(4, 10, 18, 0.42);
  color: var(--text);
  font-weight: 850;
  line-height: 1.18;
}

.forum-start-link:hover,
.forum-start-link:focus-visible {
  border-color: rgba(166, 234, 99, 0.48);
  color: var(--lime);
}

.forum-group {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(4, 10, 18, 0.36);
  box-shadow: var(--shadow-soft);
}

.forum-group + .forum-group {
  margin-top: 1rem;
}

.forum-group-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(166, 234, 99, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.forum-group-header h2,
.forum-group-header p {
  margin: 0;
}

.forum-board-list {
  display: grid;
}

.forum-board-row,
.forum-thread-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(13rem, 0.34fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes forumOwnFlash {
  0%,
  100% {
    border-color: rgba(166, 234, 99, 0.42);
    box-shadow: inset 0 0 0 1px rgba(166, 234, 99, 0.14);
  }

  45% {
    border-color: rgba(166, 234, 99, 0.95);
    background: rgba(69, 125, 43, 0.2);
    box-shadow:
      inset 0 0 0 1px rgba(166, 234, 99, 0.58),
      0 0 26px rgba(166, 234, 99, 0.28);
  }
}

@keyframes forumTitleFlash {
  0%,
  100% {
    color: #7db7ff;
    text-shadow: none;
  }

  45% {
    color: var(--lime);
    text-shadow:
      0 0 12px rgba(166, 234, 99, 0.62),
      0 0 26px rgba(166, 234, 99, 0.28);
  }
}

.forum-thread-row.is-own-post,
.forum-post.is-own-post {
  animation: forumOwnFlash 2.4s ease-in-out 0s 2;
  border-color: rgba(166, 234, 99, 0.42);
}

.forum-thread-row.is-own-post .forum-thread-title h3 a {
  color: var(--lime);
}

.forum-board-row:last-child,
.forum-thread-row:last-child {
  border-bottom: 0;
}

.forum-board-main h3,
.forum-thread-title h3 {
  margin-bottom: 0.2rem;
}

.forum-board-main p,
.forum-thread-title p {
  margin: 0;
  color: var(--text-soft);
}

.forum-board-counts,
.forum-thread-counts,
.forum-stats {
  display: flex;
  gap: 0.75rem;
  margin: 0;
}

.forum-board-counts div,
.forum-thread-counts div,
.forum-stats div {
  min-width: 4.3rem;
  text-align: center;
}

.forum-board-counts dt,
.forum-thread-counts dt,
.forum-stats dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.forum-board-counts dd,
.forum-thread-counts dd,
.forum-stats dd {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.forum-latest {
  display: grid;
  gap: 0.18rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.forum-latest a {
  color: var(--lime);
  font-weight: 800;
}

.forum-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.forum-board-guide .feature-list {
  margin-bottom: 0;
}

.forum-sort {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.forum-sort button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(4, 10, 18, 0.46);
  color: var(--text-soft);
  padding: 0.68rem 0.85rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.forum-sort button.is-active {
  border-color: rgba(166, 234, 99, 0.46);
  color: var(--lime);
}

.forum-thread-table {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(4, 10, 18, 0.34);
}

.forum-flag {
  display: inline-flex;
  margin-right: 0.35rem;
  color: var(--lime);
  font-weight: 900;
}

.forum-role {
  display: inline-flex;
  align-items: center;
  margin-left: 0.35rem;
  padding: 0.1rem 0.34rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.forum-role-moderator {
  border-color: rgba(125, 183, 255, 0.4);
  background: rgba(125, 183, 255, 0.12);
  color: #7db7ff;
}

.forum-role-admin {
  border-color: rgba(125, 183, 255, 0.4);
  background: rgba(125, 183, 255, 0.12);
  color: #7db7ff;
}

.forum-thread-row.is-moderator-post .forum-thread-title h3 a,
.forum-thread-row.is-admin-post .forum-thread-title h3 a,
.forum-post-title.is-moderator-post,
.forum-post-title.is-admin-post,
.forum-post.is-moderator-post .forum-post-author strong,
.forum-post.is-admin-post .forum-post-author strong {
  color: #7db7ff;
}

.forum-thread-row.is-admin-post .forum-thread-title h3 a,
.forum-post-title.is-admin-post {
  animation: forumTitleFlash 2.4s ease-in-out 0s 2;
}

.forum-post {
  display: grid;
  grid-template-columns: minmax(7rem, 0.16fr) minmax(0, 1fr) auto;
  gap: 1.05rem;
  margin-bottom: 1rem;
}

.forum-vote {
  order: 3;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.18rem;
  min-width: 2.5rem;
}

.forum-vote button {
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(4, 10, 18, 0.46);
  color: var(--text-soft);
  cursor: pointer;
}

.forum-vote button.is-active {
  border-color: rgba(166, 234, 99, 0.5);
  color: var(--lime);
  font-weight: 900;
}

.forum-vote strong {
  color: var(--text);
  line-height: 1;
}

.forum-post-author {
  order: 1;
  display: grid;
  align-content: start;
  gap: 0.24rem;
  color: var(--text);
  padding-top: 0.12rem;
}

.forum-post-author span,
.forum-post-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.forum-post .forum-role {
  justify-self: start;
  margin-left: 0;
  padding: 0.08rem 0.28rem;
  font-size: 0.62rem;
}

.forum-post-body {
  order: 2;
  min-width: 0;
}

.forum-post-title {
  margin: 0 0 0.45rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.05;
}

.forum-post-content p {
  max-width: none;
  margin-bottom: 1rem;
}

.forum-post-content p:last-child {
  margin-bottom: 0;
}

.forum-post-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.55rem;
}

.forum-report-button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.15rem 0;
  cursor: pointer;
}

.forum-report-button:hover,
.forum-report-button:focus-visible {
  color: var(--text-soft);
  text-decoration: underline;
}

.forum-report-button:disabled {
  opacity: 0.65;
  cursor: default;
}

.forum-admin-report-list {
  display: grid;
  gap: 1rem;
}

.forum-admin-report {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.28fr);
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(4, 10, 18, 0.34);
  padding: 1rem;
}

.forum-admin-actions {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.account-review-note {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-weight: 850;
}

.account-review-note textarea {
  min-height: 5rem;
  resize: vertical;
}

.account-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.45;
}

.account-check input {
  width: auto;
  margin-top: 0.25rem;
}

.account-fieldset {
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(145, 96, 39, 0.24);
  border-radius: 8px;
  padding: 0.85rem;
}

.account-fieldset legend {
  padding: 0 0.35rem;
  font-weight: 850;
}

body.page-bob .bob-package-search {
  margin: 0 0 1.25rem;
}

body.page-bob .bob-package-search input,
body.page-bob .bob-package-search select,
body.page-bob .account-form input,
body.page-bob .account-form select,
body.page-bob .account-form textarea {
  border-color: rgba(145, 96, 39, 0.34);
  background: rgba(255, 251, 232, 0.9);
}

body.page-bob .bob-token-output textarea {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  min-height: 5.5rem;
}

body.page-bob .bob-console-client-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

body.page-bob .bob-console-client {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid rgba(145, 96, 39, 0.22);
  border-radius: 8px;
  background: rgba(255, 248, 226, 0.55);
  padding: 0.75rem;
}

body.page-bob .bob-package-detail {
  margin-bottom: 1.25rem;
}

body.page-bob .bob-safety-disclaimer {
  margin-bottom: 1.25rem;
}

body.page-bob .bob-package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .8rem;
  color: rgba(38, 31, 24, 0.76);
  font-size: .9rem;
  font-weight: 800;
}

body.page-bob .bob-version-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

body.page-bob .bob-version-row {
  border: 1px solid rgba(145, 96, 39, 0.22);
  border-radius: 8px;
  background: rgba(255, 248, 226, 0.55);
  padding: 0.85rem;
}

body.page-bob .bob-panel--package h3 a {
  color: inherit;
}

@media (max-width: 900px) {
  body.page-bob .bob-workflow-preview,
  body.page-progress .twb-teaser-grid,
  .forum-start-panel,
  .account-intro-grid,
  .account-page-grid,
  .account-grid,
  .forum-board-row,
  .forum-thread-row,
  .forum-post,
  .forum-admin-report {
    grid-template-columns: 1fr;
  }

  .forum-stats-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  body.page-bob .bob-workflow-map {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .account-panel {
    padding: 1rem;
  }

  .account-toolbar,
  .account-facts div {
    grid-template-columns: 1fr;
  }

  .forum-start-links {
    grid-template-columns: 1fr;
  }
}

/* BoBNet 2026 launch identity: black console, blue net accents. */
body.page-bob {
  --bg: #03060c;
  --bg-2: #050914;
  --bg-3: #07101d;
  --surface: #0a111d;
  --surface-2: #0e1726;
  --surface-3: #142236;
  --text: #f5f9ff;
  --text-soft: #b8c6d8;
  --muted: #7890a9;
  --lime: #68f0d0;
  --purple: #4ca3ff;
  --line: rgba(103, 178, 255, 0.18);
  --line-strong: rgba(107, 199, 255, 0.34);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.28);
  --shadow-deep: 0 28px 88px rgba(0, 0, 0, 0.5);
  --radius: 8px;
  --radius-sm: 6px;
  color: var(--text);
  background: #03060c;
}

body.page-bob .site-shell {
  background:
    linear-gradient(180deg, rgba(3, 6, 12, 0.8), rgba(5, 11, 20, 0.94)),
    #03060c;
}

body.page-bob .site-header {
  background: rgba(3, 8, 16, 0.88);
  border-bottom: 1px solid rgba(84, 166, 255, 0.22);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
}

body.page-bob .brand-name,
body.page-bob .nav-link:hover,
body.page-bob .nav-link.is-active,
body.page-bob .button,
body.page-bob .footer,
body.page-bob .footer a {
  color: var(--text);
}

body.page-bob .nav-link {
  color: rgba(213, 226, 243, 0.78);
  border-radius: 8px;
}

body.page-bob .nav-link:hover,
body.page-bob .nav-link.is-active {
  background: rgba(76, 163, 255, 0.12);
}

body.page-bob .bob-main {
  position: relative;
  overflow: hidden;
}

body.page-bob .bob-hero,
body.page-bob .bob-section {
  position: relative;
  overflow: hidden;
}

body.page-bob .bob-hero {
  min-height: min(760px, calc(100vh - 4rem));
  display: flex;
  align-items: center;
  padding: 6rem 0 4.25rem;
  border-bottom: 1px solid rgba(100, 181, 255, 0.18);
}

body.page-bob .bob-hero--compact {
  min-height: 560px;
  padding: 5.4rem 0 3.8rem;
}

body.page-bob .bob-hero::before {
  background:
    radial-gradient(circle at 72% 46%, rgba(22, 80, 155, 0.32), transparent 27%),
    radial-gradient(circle at 78% 58%, rgba(45, 231, 130, 0.12), transparent 21%),
    linear-gradient(90deg, rgba(3, 7, 12, 0.98) 0%, rgba(3, 7, 12, 0.9) 38%, rgba(3, 7, 12, 0.72) 74%, rgba(3, 7, 12, 0.95) 100%),
    #03070c;
  opacity: 1;
  z-index: -2;
}

body.page-bob .bob-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(99, 180, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 180, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 78%);
}

body.page-bob .bob-net-hero-bg {
  position: absolute;
  top: 50%;
  right: clamp(-3rem, 5vw, 7rem);
  z-index: 0;
  width: min(48vw, 560px);
  min-width: 390px;
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: 0.92;
  pointer-events: none;
  filter: drop-shadow(0 0 32px rgba(48, 128, 255, 0.22));
}

body.page-bob .bob-net-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

body.page-bob .bob-net-links line {
  stroke: rgba(56, 82, 112, 0.56);
  stroke-linecap: round;
  stroke-width: 1.55;
  transition: stroke 0.24s ease, stroke-width 0.24s ease, opacity 0.24s ease;
}

body.page-bob .bob-net-links line[data-state="active"] {
  stroke: #2f86ff;
  stroke-width: 3.2;
  opacity: 1;
  animation: bob-net-blue-flash 0.46s ease-in-out infinite alternate;
}

body.page-bob .bob-net-links line[data-state="done"] {
  stroke: rgba(52, 228, 126, 0.86);
  stroke-width: 2.3;
  opacity: 0.82;
}

body.page-bob .bob-net-core,
body.page-bob .bob-net-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
}

body.page-bob .bob-net-core {
  left: 45.2%;
  top: 53.8%;
  width: 7.2rem;
  height: 7.2rem;
  flex-direction: column;
  gap: 0.35rem;
  border: 2px solid #2f86ff;
  background: radial-gradient(circle at 50% 44%, rgba(16, 42, 92, 0.96), rgba(4, 12, 24, 0.98));
  color: #dbeaff;
  box-shadow:
    0 0 0 1px rgba(47, 134, 255, 0.32) inset,
    0 0 34px rgba(47, 134, 255, 0.38);
  transform: translate(-50%, -50%);
}

body.page-bob .bob-net-core::after {
  content: "";
  position: absolute;
  inset: -0.55rem;
  border: 1px solid rgba(47, 134, 255, 0.34);
  border-radius: inherit;
  animation: bob-net-core-pulse 1.8s ease-in-out infinite;
}

body.page-bob .bob-net-core span {
  font-size: clamp(1.2rem, 2.15vw, 1.7rem);
  letter-spacing: 0;
}

body.page-bob .bob-net-core small {
  color: #89bbff;
  font-size: 0.82rem;
  font-weight: 900;
}

body.page-bob .bob-net-node {
  left: var(--x);
  top: var(--y);
  width: 2.08rem;
  height: 2.08rem;
  border: 2px solid #de42ff;
  background: #060a10;
  color: #f5ebff;
  font-size: 0.74rem;
  text-shadow: 0 0 8px rgba(223, 67, 255, 0.55);
  transform: translate(-50%, -50%);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

body.page-bob .bob-net-node--warm {
  border-color: #ff7a18;
  color: #fff0dd;
  text-shadow: 0 0 8px rgba(255, 122, 24, 0.55);
}

body.page-bob .bob-net-node[data-state="active"] {
  border-color: #2f86ff;
  background: rgba(18, 82, 180, 0.68);
  color: #eef6ff;
  box-shadow:
    0 0 0 5px rgba(47, 134, 255, 0.12),
    0 0 28px rgba(47, 134, 255, 0.82);
  text-shadow: 0 0 10px rgba(205, 230, 255, 0.78);
  transform: translate(-50%, -50%) scale(1.18);
  animation: bob-net-blue-flash 0.46s ease-in-out infinite alternate;
}

body.page-bob .bob-net-node[data-state="done"] {
  border-color: #34e47e;
  background: rgba(24, 117, 60, 0.66);
  color: #ecfff4;
  box-shadow:
    0 0 0 4px rgba(52, 228, 126, 0.11),
    0 0 18px rgba(52, 228, 126, 0.5);
  text-shadow: 0 0 8px rgba(52, 228, 126, 0.48);
}

@keyframes bob-net-blue-flash {
  from {
    filter: drop-shadow(0 0 5px rgba(47, 134, 255, 0.34));
  }
  to {
    filter: drop-shadow(0 0 18px rgba(47, 134, 255, 0.9));
  }
}

@keyframes bob-net-core-pulse {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.08);
  }
}

body.page-bob .bob-section::before {
  background:
    linear-gradient(rgba(82, 162, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 162, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.5;
}

body.page-bob .bob-section-alt {
  background: linear-gradient(180deg, rgba(7, 15, 28, 0.72), rgba(10, 17, 29, 0.92));
  border-top: 1px solid rgba(92, 170, 255, 0.16);
  border-bottom: 1px solid rgba(92, 170, 255, 0.12);
}

body.page-bob .bob-section-final {
  background: #050a12;
}

body.page-bob .section,
body.page-bob .bob-section {
  padding: 5.2rem 0;
}

body.page-bob .bob-section-tight {
  padding: 3.4rem 0;
}

body.page-bob .bob-intro-grid,
body.page-bob .bob-capability-grid,
body.page-bob .bob-closing-grid,
body.page-bob .bob-routing-layout,
body.page-bob .bob-split,
body.page-bob .bob-final-band {
  display: grid;
  gap: 2rem;
  align-items: center;
}

body.page-bob .bob-intro-grid,
body.page-bob .bob-intro-grid--single {
  grid-template-columns: minmax(0, 760px);
}

body.page-bob .bob-split,
body.page-bob .bob-capability-grid,
body.page-bob .bob-closing-grid,
body.page-bob .bob-routing-layout,
body.page-bob .bob-final-band {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
}

body.page-bob .bob-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

body.page-bob .bob-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.page-bob .bob-page-title {
  max-width: 760px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.page-bob .breadcrumbs,
body.page-bob .breadcrumbs a,
body.page-bob .eyebrow,
body.page-bob .bob-section-eyebrow,
body.page-bob .bob-kicker,
body.page-bob .bob-panel-label,
body.page-bob .small {
  color: #73c7ff;
}

body.page-bob h1,
body.page-bob h2,
body.page-bob h3,
body.page-bob strong {
  color: var(--text);
  text-shadow: none;
  letter-spacing: 0;
}

body.page-bob h1 {
  margin: 0 0 1.1rem;
  font-size: 4.9rem;
  line-height: 0.94;
  letter-spacing: 0;
}

body.page-bob h2 {
  margin: 0 0 1rem;
  font-size: 2.75rem;
  line-height: 1.02;
  letter-spacing: 0;
}

body.page-bob h3 {
  margin: 0 0 0.62rem;
  font-size: 1.26rem;
  line-height: 1.18;
  letter-spacing: 0;
}

body.page-bob p,
body.page-bob li,
body.page-bob .lead {
  color: var(--text-soft);
}

body.page-bob .lead {
  max-width: 47rem;
  font-size: 1.08rem;
  line-height: 1.72;
}

body.page-bob .bob-hero .lead {
  color: #dcecff;
  font-size: 1.16rem;
}

body.page-bob .bob-kicker,
body.page-bob .bob-section-eyebrow,
body.page-bob .bob-panel-label {
  margin: 0 0 0.72rem;
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-bob .bob-hero-statement {
  margin: 0 0 1.35rem;
  color: #f5f9ff;
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.45;
}

body.page-bob .bob-status-row,
body.page-bob .bob-package-meta,
body.page-bob .callout-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

body.page-bob .bob-status-row {
  margin: 0 0 1.35rem;
}

body.page-bob .bob-status-row span,
body.page-bob .pill,
body.page-bob .bob-package-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(104, 204, 255, 0.26);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.72);
  color: #d8ecff;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.2;
}

body.page-bob .hero-actions,
body.page-bob .stack-actions,
body.page-bob .bob-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  align-items: center;
}

body.page-bob .button {
  --button-min-width: 0;
  min-height: 3.18rem;
  padding: 0.82rem 1.08rem;
  border-radius: 8px;
  border: 1px solid rgba(100, 190, 255, 0.32);
  box-shadow: none;
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: 0;
}

body.page-bob .button-primary,
body.page-bob .button-primary:visited,
body.page-bob .button-primary:hover,
body.page-bob .button-primary:focus {
  background: #2388ff;
  border-color: rgba(118, 206, 255, 0.62);
  color: #f8fbff !important;
  -webkit-text-fill-color: #f8fbff !important;
}

body.page-bob .button-secondary,
body.page-bob .button-secondary:visited,
body.page-bob .button-secondary:hover,
body.page-bob .button-secondary:focus,
body.page-bob .button-link,
body.page-bob .button-link:visited,
body.page-bob .button-link:hover,
body.page-bob .button-link:focus {
  background: rgba(10, 20, 34, 0.86);
  border-color: rgba(100, 190, 255, 0.34);
  color: #dcecff !important;
  -webkit-text-fill-color: #dcecff !important;
}

body.page-bob .bob-panel,
body.page-bob .account-panel {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.92rem;
  padding: 1.25rem;
  border: 1px solid rgba(101, 178, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 26, 43, 0.94), rgba(8, 15, 27, 0.94)),
    #09111f;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

body.page-bob .bob-panel--story {
  min-height: 15rem;
}

body.page-bob .bob-panel--feature {
  padding: 1.45rem;
}

body.page-bob .bob-panel p,
body.page-bob .bob-panel li {
  margin: 0;
  max-width: 68ch;
  line-height: 1.62;
}

body.page-bob .bob-section-heading {
  max-width: 760px;
  margin: 0 0 1.8rem;
}

body.page-bob .feature-list {
  display: grid;
  gap: 0.58rem;
  margin: 0;
  padding-left: 1.1rem;
}

body.page-bob .bob-feature-list li {
  color: #dcecff;
  -webkit-text-fill-color: #dcecff;
}

body.page-bob .bob-feature-list li::marker {
  color: #68f0d0;
}

body.page-bob .bob-route-list,
body.page-bob .bob-routing-table,
body.page-bob .bob-comparison-grid {
  display: grid;
  gap: 0.72rem;
}

body.page-bob .bob-route-list div,
body.page-bob .bob-routing-table div,
body.page-bob .bob-comparison-grid div {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(98, 178, 255, 0.22);
  border-radius: 8px;
  background: rgba(7, 15, 28, 0.78);
}

body.page-bob .bob-route-list span,
body.page-bob .bob-routing-table span,
body.page-bob .bob-comparison-grid span {
  color: #7dbfff;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-bob .bob-route-list strong,
body.page-bob .bob-routing-table strong,
body.page-bob .bob-comparison-grid strong {
  color: #f5f9ff;
  font-size: 1rem;
  line-height: 1.32;
}

body.page-bob .bob-workflow-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 1rem;
}

body.page-bob .bob-workflow-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  align-content: center;
}

body.page-bob .bob-workflow-step {
  min-height: 4.4rem;
  padding: 0.76rem;
  border: 1px solid rgba(98, 178, 255, 0.24);
  border-radius: 8px;
  background: rgba(5, 12, 24, 0.82);
  color: #dcecff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 820;
  text-align: left;
}

body.page-bob .bob-workflow-step:hover,
body.page-bob .bob-workflow-step.is-active {
  border-color: rgba(104, 240, 208, 0.58);
  background: rgba(13, 51, 72, 0.88);
}

body.page-bob .bob-package-search,
body.page-bob .account-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(9rem, 0.62fr) minmax(10rem, 0.62fr) minmax(10rem, 0.62fr) auto;
  gap: 0.72rem;
  margin: 0 0 1.25rem;
}

body.page-bob input,
body.page-bob select,
body.page-bob textarea,
body.page-bob .bob-package-search input,
body.page-bob .bob-package-search select,
body.page-bob .account-form input,
body.page-bob .account-form select,
body.page-bob .account-form textarea {
  width: 100%;
  border: 1px solid rgba(101, 178, 255, 0.26);
  border-radius: 8px;
  background: rgba(3, 8, 16, 0.82);
  color: var(--text);
  padding: 0.82rem 0.9rem;
}

body.page-bob input::placeholder,
body.page-bob textarea::placeholder {
  color: rgba(184, 198, 216, 0.56);
}

body.page-bob label,
body.page-bob legend {
  color: #cfe5ff;
}

body.page-bob .account-fieldset {
  border-color: rgba(101, 178, 255, 0.22);
  border-radius: 8px;
}

body.page-bob .bob-token-output textarea {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  min-height: 5.5rem;
}

body.page-bob #upload-package .bob-closing-grid {
  align-items: start;
}

body.page-bob .bob-upload-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

body.page-bob .bob-upload-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.36rem 0.64rem;
  border: 1px solid rgba(104, 204, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.72);
  color: #d8ecff;
  font-size: 0.8rem;
  font-weight: 760;
}

body.page-bob .bob-upload-details {
  padding: 0;
  overflow: hidden;
}

body.page-bob .bob-upload-summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: 9rem;
  padding: 1.35rem;
  cursor: pointer;
  list-style: none;
}

body.page-bob .bob-upload-summary::-webkit-details-marker {
  display: none;
}

body.page-bob .bob-upload-summary-copy {
  display: grid;
  gap: 0.32rem;
  min-width: 0;
}

body.page-bob .bob-upload-summary .bob-panel-label {
  margin: 0;
}

body.page-bob .bob-upload-summary strong {
  font-size: 1.36rem;
  line-height: 1.1;
}

body.page-bob .bob-upload-summary small {
  max-width: 26rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

body.page-bob .bob-upload-summary-action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 5.75rem;
  min-height: 2.55rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(104, 204, 255, 0.42);
  border-radius: 999px;
  background: rgba(43, 139, 255, 0.16);
  color: #f7fbff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.page-bob .bob-upload-summary-action::before {
  content: "Open";
}

body.page-bob .bob-upload-details[open] .bob-upload-summary {
  border-bottom: 1px solid rgba(93, 173, 255, 0.18);
}

body.page-bob .bob-upload-details[open] .bob-upload-summary-action::before {
  content: "Close";
}

body.page-bob .bob-upload-form-shell {
  padding: 1.2rem;
}

body.page-bob .bob-console-client-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

body.page-bob .bob-console-client,
body.page-bob .bob-version-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid rgba(101, 178, 255, 0.22);
  border-radius: 8px;
  background: rgba(7, 15, 28, 0.7);
  padding: 0.85rem;
}

body.page-bob .bob-package-detail,
body.page-bob .bob-safety-disclaimer {
  margin-bottom: 1.25rem;
}

body.page-bob .bob-panel--package h3 a,
body.page-bob .bob-paper a {
  color: #8fd0ff;
}

body.page-bob .bob-paper-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

body.page-bob .bob-paper-nav {
  position: sticky;
  top: 6.2rem;
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem;
  border: 1px solid rgba(101, 178, 255, 0.2);
  border-radius: 8px;
  background: rgba(8, 15, 27, 0.82);
}

body.page-bob .bob-paper-nav a {
  padding: 0.42rem 0.5rem;
  border-radius: 6px;
  color: #b8c6d8;
  font-size: 0.9rem;
  font-weight: 720;
}

body.page-bob .bob-paper-nav a:hover {
  color: #f5f9ff;
  background: rgba(76, 163, 255, 0.12);
}

body.page-bob .bob-paper {
  max-width: 880px;
}

body.page-bob .bob-paper section {
  padding: 0 0 3.2rem;
  margin: 0 0 3.2rem;
  border-bottom: 1px solid rgba(101, 178, 255, 0.16);
}

body.page-bob .bob-paper p,
body.page-bob .bob-paper li {
  color: #c4d4e7;
  font-size: 1rem;
  line-height: 1.78;
}

body.page-bob .bob-paper ul,
body.page-bob .bob-paper ol {
  display: grid;
  gap: 0.4rem;
  margin: 0 0 1.2rem;
}

body.page-bob .bob-paper-callout {
  display: grid;
  gap: 0.35rem;
  margin: 1.2rem 0;
  padding: 1rem;
  border: 1px solid rgba(104, 240, 208, 0.3);
  border-radius: 8px;
  background: rgba(4, 29, 37, 0.62);
}

body.page-bob .bob-final-band {
  padding: 1.55rem;
  border: 1px solid rgba(104, 240, 208, 0.28);
  border-radius: 8px;
  background: rgba(6, 22, 35, 0.76);
}

body.page-bob .bob-pricing-grid,
body.page-bob .bob-license-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 1.35rem;
  align-items: start;
}

body.page-bob .bob-pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.page-bob .bob-price-card {
  min-height: 100%;
}

body.page-bob .bob-price-card--wide {
  grid-column: 1 / -1;
}

body.page-bob .bob-price-card h3 {
  color: #f6fbff;
  font-size: 2.1rem;
}

@media (hover: hover) and (pointer: fine) {
  body.page-bob .bob-panel,
  body.page-bob .button,
  body.page-bob .bob-workflow-step {
    transition:
      transform 0.16s ease,
      border-color 0.16s ease,
      background 0.16s ease;
  }

  body.page-bob .bob-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(104, 194, 255, 0.36);
  }

  body.page-bob .button:hover,
  body.page-bob .bob-workflow-step:hover {
    transform: translateY(-1px);
  }
}

@media (max-width: 1100px) {
  body.page-bob h1 {
    font-size: 4rem;
  }

  body.page-bob h2 {
    font-size: 2.32rem;
  }

  body.page-bob .bob-card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-bob .bob-package-search,
  body.page-bob .account-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.page-bob .bob-hero {
    min-height: auto;
    padding: 5rem 0 3rem;
  }

  body.page-bob .bob-hero::before {
    background:
      radial-gradient(circle at 72% 42%, rgba(22, 80, 155, 0.28), transparent 28%),
      linear-gradient(180deg, rgba(3, 6, 12, 0.94) 0%, rgba(3, 6, 12, 0.82) 52%, rgba(3, 6, 12, 0.94) 100%),
      #03070c;
  }

  body.page-bob .bob-net-hero-bg {
    top: 58%;
    right: -8.5rem;
    width: min(96vw, 430px);
    min-width: 330px;
    opacity: 0.42;
  }

  body.page-bob h1 {
    font-size: 3rem;
    line-height: 1;
  }

  body.page-bob h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  body.page-bob .bob-intro-grid,
  body.page-bob .bob-split,
  body.page-bob .bob-capability-grid,
  body.page-bob .bob-closing-grid,
  body.page-bob .bob-routing-layout,
  body.page-bob .bob-final-band,
  body.page-bob .bob-pricing-grid,
  body.page-bob .bob-license-callout,
  body.page-bob .bob-workflow-preview,
  body.page-bob .bob-paper-layout,
  body.page-bob .bob-card-grid,
  body.page-bob .bob-card-grid--four,
  body.page-bob .bob-pricing-cards {
    grid-template-columns: 1fr;
  }

  body.page-bob .bob-panel--story {
    min-height: 0;
  }

  body.page-bob .bob-workflow-map {
    grid-template-columns: 1fr;
  }

  body.page-bob .bob-paper-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body.page-bob .section,
  body.page-bob .bob-section {
    padding: 3.7rem 0;
  }

  body.page-bob h1 {
    font-size: 2.45rem;
  }

  body.page-bob h2 {
    font-size: 1.72rem;
  }

  body.page-bob .lead,
  body.page-bob .bob-hero .lead,
  body.page-bob .bob-paper p,
  body.page-bob .bob-paper li {
    font-size: 0.96rem;
  }

  body.page-bob .bob-status-row span,
  body.page-bob .pill,
  body.page-bob .bob-package-meta span {
    width: 100%;
    justify-content: center;
  }

  body.page-bob .hero-actions,
  body.page-bob .stack-actions,
  body.page-bob .bob-hero-actions,
  body.page-bob .button,
  body.page-bob .bob-package-search,
  body.page-bob .account-toolbar,
  body.page-bob .bob-paper-nav {
    grid-template-columns: 1fr;
    width: 100%;
  }

  body.page-bob .button {
    width: 100%;
  }

  body.page-bob .bob-net-hero-bg {
    top: 63%;
    right: -10.5rem;
    width: 380px;
    min-width: 300px;
    opacity: 0.3;
  }

  body.page-bob .bob-upload-summary {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
  }

  body.page-bob .bob-upload-summary-action {
    width: 100%;
  }
}

body.page-bob .bob-hero .bob-page-title,
body.page-bob .page-hero .bob-page-title,
body.page-bob .bob-landing-title {
  max-width: 760px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.page-bob h1,
body.page-bob h2,
body.page-bob h3,
body.page-bob .brand-name,
body.page-bob .button {
  font-family: var(--sans);
}

body.page-bob.has-section-dividers .hero + .section::after,
body.page-bob.has-section-dividers .page-hero + .section::after,
body.page-bob.has-section-dividers .section + .section::after,
body.page-bob .bob-section-lines::after {
  display: none;
}
