:root {
  color-scheme: dark;
  --j-black: #050505;
  --j-ink: #0b0b0d;
  --j-panel: #111114;
  --j-panel-raised: #17171b;
  --j-white: #f8f8f5;
  --j-muted: #aaaab2;
  --j-soft: #74747e;
  --j-line: rgba(255, 255, 255, 0.12);
  --j-red: #ef233c;
  --j-red-bright: #ff3b52;
  --j-red-dark: #9f1224;
  --j-max: 1160px;
  --j-radius: 20px;
  --j-shadow: 0 26px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--j-black);
}

body.jukestr-page {
  margin: 0;
  color: var(--j-white);
  background:
    radial-gradient(circle at 82% 8%, rgba(239, 35, 60, 0.18), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #09090b 54%, #050505 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.jukestr-page a {
  color: inherit;
}

.jukestr-page a:focus-visible {
  outline: 3px solid rgba(255, 59, 82, 0.72);
  outline-offset: 4px;
}

.j-skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--j-black);
  background: var(--j-white);
  font-weight: 900;
  transform: translateY(-160%);
}

.j-skip-link:focus {
  transform: translateY(0);
}

.j-shell {
  min-height: 100vh;
}

.j-topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--j-line);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
}

.j-nav-shell {
  width: min(calc(100% - 36px), var(--j-max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.j-brand-cluster,
.j-brand,
.j-project-id,
.j-nav,
.j-actions,
.j-footer-links {
  display: flex;
  align-items: center;
}

.j-brand-cluster {
  gap: 12px;
  min-width: max-content;
}

.j-brand {
  gap: 10px;
  color: var(--j-white);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.j-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.j-brand-divider {
  width: 1px;
  height: 30px;
  background: var(--j-line);
}

.j-project-id {
  gap: 8px;
  color: var(--j-muted);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.j-project-id img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.j-nav {
  gap: 4px;
  margin-left: auto;
}

.j-nav a,
.j-back-link {
  min-height: 44px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  color: var(--j-muted);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.j-nav a:hover,
.j-nav a:focus-visible,
.j-back-link:hover,
.j-back-link:focus-visible {
  color: var(--j-white);
}

.j-nav .j-nav-review {
  margin-left: 8px;
  border: 1px solid rgba(239, 35, 60, 0.5);
  border-radius: 999px;
  color: var(--j-white);
  background: rgba(239, 35, 60, 0.08);
}

.j-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--j-line);
}

.j-hero::after {
  content: "";
  position: absolute;
  right: -14vw;
  bottom: -18rem;
  width: min(60vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(239, 35, 60, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(239, 35, 60, 0.025),
    0 0 0 140px rgba(239, 35, 60, 0.018);
  pointer-events: none;
}

.j-hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 36px), var(--j-max));
  min-height: 670px;
  margin: 0 auto;
  padding: 90px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.j-kicker,
.j-section-kicker,
.j-legal-kicker {
  margin: 0 0 14px;
  color: var(--j-red-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.j-hero h1,
.j-section h2,
.j-legal h1,
.j-legal h2,
.j-legal h3 {
  margin: 0;
  color: var(--j-white);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.j-hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 950;
}

.j-hero h1 span {
  display: block;
  margin-top: 12px;
  color: var(--j-white);
  font-size: clamp(25px, 3.3vw, 43px);
  font-weight: 780;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.j-hero h1 span strong {
  color: var(--j-red-bright);
}

.j-hero-lede {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--j-muted);
  font-size: clamp(17px, 2vw, 20px);
}

.j-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.j-primary-action,
.j-secondary-action {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.j-primary-action {
  color: var(--j-white);
  border: 1px solid var(--j-red-bright);
  background: linear-gradient(135deg, var(--j-red), var(--j-red-dark));
  box-shadow: 0 14px 34px rgba(239, 35, 60, 0.2);
}

.j-secondary-action {
  color: var(--j-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.j-hero-mark-wrap {
  position: relative;
  width: min(100%, 360px);
  justify-self: end;
}

.j-hero-mark-wrap::before {
  content: "";
  position: absolute;
  inset: 10% -10%;
  border-radius: 50%;
  background: rgba(239, 35, 60, 0.18);
  filter: blur(48px);
}

.j-hero-mark {
  position: relative;
  width: 100%;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30%;
  box-shadow: var(--j-shadow);
  transform: rotate(3deg);
}

.j-signal-row {
  position: relative;
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--j-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.j-signal-row span:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--j-red);
}

.j-ownership {
  border-bottom: 1px solid var(--j-line);
  background: var(--j-white);
  color: var(--j-black);
}

.j-ownership-inner {
  width: min(calc(100% - 36px), var(--j-max));
  margin: 0 auto;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}

.j-ownership-label {
  color: var(--j-red-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.j-ownership p {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 770;
  line-height: 1.45;
}

.j-section {
  width: min(calc(100% - 36px), var(--j-max));
  margin: 0 auto;
  padding: 94px 0;
}

.j-section + .j-section {
  border-top: 1px solid var(--j-line);
}

.j-section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.j-section h2 {
  font-size: clamp(36px, 5.4vw, 66px);
  font-weight: 940;
}

.j-section-intro {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--j-muted);
  font-size: 18px;
}

.j-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--j-line);
  border-left: 1px solid var(--j-line);
}

.j-feature {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--j-line);
  border-bottom: 1px solid var(--j-line);
  background: rgba(255, 255, 255, 0.018);
}

.j-feature-number {
  display: block;
  margin-bottom: 42px;
  color: var(--j-red-bright);
  font-size: 12px;
  font-weight: 950;
}

.j-feature h3,
.j-policy-card h3,
.j-project-card h3,
.j-contact-card h3,
.j-review-card h2,
.j-review-card h3 {
  margin: 0;
  color: var(--j-white);
  font-size: 20px;
  line-height: 1.2;
}

.j-feature p,
.j-policy-card p,
.j-project-card p,
.j-contact-card p,
.j-review-card p {
  margin: 12px 0 0;
  color: var(--j-muted);
}

.j-policy-layout,
.j-relationship-grid,
.j-contact-grid,
.j-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.j-policy-card,
.j-project-card,
.j-contact-card,
.j-review-card {
  border: 1px solid var(--j-line);
  border-radius: var(--j-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.j-policy-card,
.j-project-card,
.j-contact-card {
  padding: clamp(26px, 4vw, 40px);
}

.j-policy-card:first-child {
  grid-row: span 2;
}

.j-check-list,
.j-legal ul,
.j-review-steps {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.j-check-list li,
.j-review-steps li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-top: 1px solid var(--j-line);
  color: var(--j-muted);
}

.j-check-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 2px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--j-red-bright);
  border-bottom: 2px solid var(--j-red-bright);
  transform: rotate(-45deg);
}

.j-platform-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 5px 9px;
  border: 1px solid rgba(239, 35, 60, 0.42);
  border-radius: 999px;
  color: var(--j-red-bright);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.j-project-card {
  min-height: 270px;
}

.j-project-card.j-project-beef {
  border-top-color: rgba(255, 176, 0, 0.78);
}

.j-project-card.j-project-jukestr {
  border-top-color: var(--j-red-bright);
}

.j-project-name {
  display: block;
  margin-bottom: 60px;
  color: var(--j-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.j-contact-card dl,
.j-review-facts {
  margin: 20px 0 0;
}

.j-contact-card dl div,
.j-review-facts div {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  border-top: 1px solid var(--j-line);
}

.j-contact-card dt,
.j-review-facts dt {
  color: var(--j-soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.j-contact-card dd,
.j-review-facts dd {
  margin: 0;
  color: var(--j-white);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.j-contact-card a,
.j-legal a,
.j-review-card a {
  color: var(--j-white);
  text-decoration-color: var(--j-red-bright);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.j-legal-links {
  margin-top: 20px;
  display: grid;
  gap: 2px;
}

.j-legal-links a {
  min-height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--j-line);
  color: var(--j-white);
  font-weight: 780;
  text-decoration: none;
}

.j-legal-links a::after {
  content: "↗";
  color: var(--j-red-bright);
}

.j-meta-review-link {
  margin-top: 16px;
  display: inline-flex;
  color: var(--j-soft);
  font-size: 12px;
  text-underline-offset: 4px;
}

.j-footer {
  border-top: 1px solid var(--j-line);
  background: #020202;
}

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

.j-footer p {
  max-width: 650px;
  margin: 0;
  color: var(--j-muted);
  font-size: 13px;
}

.j-footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.j-footer-links a {
  color: var(--j-muted);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.j-legal-hero {
  border-bottom: 1px solid var(--j-line);
}

.j-legal-hero-inner,
.j-legal {
  width: min(calc(100% - 36px), 900px);
  margin: 0 auto;
}

.j-legal-hero-inner {
  padding: 76px 0 54px;
}

.j-legal h1 {
  max-width: 780px;
  font-size: clamp(44px, 7vw, 74px);
  font-weight: 950;
}

.j-legal-summary {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--j-muted);
  font-size: 18px;
}

.j-legal {
  padding: 64px 0 96px;
}

.j-legal > p,
.j-legal > ul,
.j-legal > ol {
  color: var(--j-muted);
}

.j-legal h2 {
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--j-line);
  font-size: clamp(27px, 4vw, 38px);
  font-weight: 900;
}

.j-legal h3 {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 850;
}

.j-legal ul li {
  position: relative;
  margin: 12px 0;
  padding-left: 22px;
}

.j-legal ul li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--j-red);
}

.j-version {
  margin-top: 20px;
  color: var(--j-soft);
  font-size: 13px;
  font-weight: 700;
}

.j-review-grid {
  align-items: start;
}

.j-review-card {
  padding: clamp(24px, 4vw, 38px);
}

.j-review-card.j-review-primary {
  grid-column: 1 / -1;
  border-color: rgba(239, 35, 60, 0.52);
  background:
    linear-gradient(135deg, rgba(239, 35, 60, 0.14), transparent 48%),
    var(--j-panel);
}

.j-review-resource {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--j-line);
  border-radius: 12px;
  background: var(--j-black);
  overflow-wrap: anywhere;
}

.j-review-resource span {
  display: block;
  margin-bottom: 8px;
  color: var(--j-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.j-review-steps {
  counter-reset: review-step;
}

.j-review-steps li {
  counter-increment: review-step;
  padding-left: 46px;
}

.j-review-steps li::before {
  content: counter(review-step, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 0;
  color: var(--j-red-bright);
  font-size: 11px;
  font-weight: 950;
}

.j-callout {
  margin: 30px 0;
  padding: 22px;
  border-left: 3px solid var(--j-red);
  background: rgba(239, 35, 60, 0.07);
  color: var(--j-muted);
}

.j-callout strong {
  color: var(--j-white);
}

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

  .j-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .j-hero-mark-wrap {
    width: min(64vw, 320px);
    justify-self: start;
  }

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

  .j-policy-layout,
  .j-relationship-grid,
  .j-contact-grid,
  .j-review-grid {
    grid-template-columns: 1fr;
  }

  .j-policy-card:first-child {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .j-nav-shell {
    min-height: 68px;
  }

  .j-brand span,
  .j-brand-divider {
    display: none;
  }

  .j-project-id {
    font-size: 12px;
  }

  .j-hero-inner {
    padding: 56px 0 64px;
    gap: 50px;
  }

  .j-hero h1 {
    font-size: clamp(48px, 19vw, 72px);
  }

  .j-hero h1 span {
    font-size: 25px;
  }

  .j-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .j-primary-action,
  .j-secondary-action {
    width: 100%;
  }

  .j-ownership-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .j-section {
    padding: 68px 0;
  }

  .j-feature-grid {
    grid-template-columns: 1fr;
  }

  .j-feature {
    min-height: 200px;
  }

  .j-contact-card dl div,
  .j-review-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .j-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .j-legal-hero-inner {
    padding: 54px 0 42px;
  }

  .j-legal {
    padding-top: 44px;
  }
}

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