:root {
  --font-anton: "Anton";
  --font-archivo: "Archivo";
  --ink: #060708;
  --surface: #0e1114;
  --surface-2: #15191d;
  --red: #ff5c35;
  --red-deep: #e54420;
  --red-small-text: #cd3718;
  --white: #f7f7f4;
  --cool-gray: #aeb6bb;
  --line: rgba(255, 255, 255, 0.17);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

img,
svg { max-width: 100%; }

button,
input,
textarea,
select { font: inherit; }

button { color: inherit; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: #111315;
  background: #fff;
}

html { scroll-behavior: smooth; }

section[id],
#founding-form { scroll-margin-top: 136px; }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-archivo), Arial, Helvetica, sans-serif;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: #111315;
  background: #fff;
  border: 3px solid var(--red);
  font-size: 0.875rem;
  font-weight: 900;
  transform: translateY(calc(-100% - 20px));
  transition: transform 150ms ease;
}

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

:where(a, button, iframe, summary):focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #111315;
}

.nav-cta:focus-visible,
.button-primary:focus-visible,
.mobile-cta:focus-visible {
  outline-color: #111315;
  box-shadow: 0 0 0 6px #fff;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 17%, rgba(255, 92, 53, 0.1), transparent 25rem),
    var(--ink);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 84px;
  padding: 12px clamp(22px, 4.2vw, 72px);
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr auto;
  align-items: center;
  gap: 34px;
  color: #080808;
  background: #fff;
  border-bottom: 4px solid var(--red);
  backdrop-filter: blur(14px);
}

.brand { display: block; width: min(100%, 365px); line-height: 0; }
.brand-lockup,
.footer-brand-lockup {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.brand-lockup { width: 100%; }
.brand img { display: block; width: 100%; height: auto; }
.brand-tm,
.footer-brand-tm {
  position: absolute;
  top: 1px;
  right: -0.9em;
  color: #111315;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); }

.mobile-nav { display: none; }

.menu-toggle,
.mobile-menu { display: none; }

.admin-bar .site-header { top: 32px; }

.nav-cta {
  min-height: 46px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible { background: var(--red-deep); transform: translateY(-1px); }

.hero {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: 48% 52%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(54px, 8vh, 98px) clamp(24px, 3.2vw, 58px) 56px clamp(24px, 5.2vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 1) 80%, rgba(6, 7, 8, 0)),
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(255, 255, 255, 0.018) 26px 27px);
}

.status-pill {
  width: fit-content;
  margin-bottom: clamp(30px, 5vh, 52px);
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 92, 53, 0.82);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.status-pill span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 92, 53, 0.13);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: clamp(0.8rem, 1.05vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.about-heading h2,
.registration-copy h2 {
  margin: 0;
  font-family: var(--font-anton), Impact, "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 { max-width: 790px; font-size: clamp(4.2rem, 5.4vw, 7.5rem); }
.hero h1 em,
.about-heading h2 em { font-style: normal; }
.hero h1 em { color: var(--red); }
.about-heading h2 em { color: var(--red-deep); }

.hero-lede {
  max-width: 640px;
  margin: 30px 0 0;
  color: #c6ccd0;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.66;
}

.hero-actions { margin-top: 33px; display: flex; flex-wrap: wrap; gap: 14px; }

.button {
  min-height: 58px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button-primary { background: var(--red); border-color: var(--red); color: var(--ink); }
.button-primary:hover,
.button-primary:focus-visible { background: var(--red-deep); border-color: var(--red-deep); transform: translateY(-2px); }
.button-secondary:hover,
.button-secondary:focus-visible { border-color: var(--red); transform: translateY(-2px); }

.signup-clarifier {
  max-width: 650px;
  margin: 24px 0 0;
  padding-left: 15px;
  border-left: 3px solid var(--red);
  color: #9ea7ac;
  font-size: 0.84rem;
  line-height: 1.55;
}

.signup-clarifier strong,
.registration-lede strong { display: block; color: #fff; }

.hero-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
  overflow: hidden;
  background: #111418;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, #060708 0%, transparent 24%),
    linear-gradient(0deg, rgba(6, 7, 8, 0.72), transparent 48%),
    linear-gradient(120deg, transparent 52%, rgba(255, 92, 53, 0.09));
  pointer-events: none;
}

.hero-picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
  filter: saturate(0.92) contrast(1.06);
}

.visual-caption {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 4vw, 66px);
  bottom: clamp(22px, 5vh, 56px);
  left: clamp(20px, 4vw, 66px);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
}

.visual-caption span { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; }
.visual-caption strong {
  color: var(--red);
  font-family: var(--font-anton), Impact, sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.signal-bar {
  min-height: 78px;
  padding: 20px clamp(24px, 5vw, 84px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
  background: var(--red);
  color: var(--ink);
  font-family: var(--font-anton), Impact, sans-serif;
  font-size: clamp(1.05rem, 1.65vw, 1.55rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.signal-bar i { width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: var(--ink); }

.about-section {
  padding: clamp(82px, 8.2vw, 118px) clamp(24px, 6vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(60px, 9vw, 145px);
  color: #0a0b0c;
  background: #f3f3f0;
}

.about-heading,
.about-body { min-width: 0; }

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #181b1e;
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 13, 15, 0.28);
  color: var(--red);
  font-size: 0.65rem;
}

.about-section .section-kicker > span,
.about-section .principles-grid article > span { color: var(--red-small-text); }

.section-kicker.light { color: #fff; }
.section-kicker.light > span { border-color: rgba(255, 255, 255, 0.35); }

.about-heading h2 { margin-top: 48px; font-size: clamp(3.5rem, 5vw, 6rem); line-height: 0.93; }

.about-lede {
  margin: 0;
  padding-top: 24px;
  border-top: 4px solid var(--red);
  color: #3e454a;
  font-size: clamp(1.05rem, 1.3vw, 1.23rem);
  line-height: 1.75;
}

.format-callout {
  margin-top: 30px;
  padding: 23px 24px 24px;
  border-left: 4px solid var(--red);
  background: #fff;
}

.format-callout > span {
  color: #687076;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.format-callout h3 {
  margin: 12px 0 8px;
  font-family: var(--font-anton), Impact, sans-serif;
  font-size: clamp(1.8rem, 2.7vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.format-callout p {
  margin: 0;
  color: #4a5257;
  font-size: 0.9rem;
  line-height: 1.6;
}

.format-blueprint {
  margin: 22px 0 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #2b3237;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #101417;
  background-size: 24px 24px;
  color: #f7f7f4;
}

.blueprint-header {
  min-height: 48px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-transform: uppercase;
}

.blueprint-header strong {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.blueprint-header span {
  color: #aeb6bb;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.blueprint-court {
  width: 100%;
  height: auto;
  display: block;
  padding: 10px 12px 0;
}

.court-lines {
  fill: none;
  stroke: rgba(247, 247, 244, 0.48);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.court-lines .three-point-line {
  stroke: #f7f7f4;
  stroke-width: 3;
}

.location-halo {
  fill: rgba(255, 92, 53, 0.17);
  stroke: rgba(255, 92, 53, 0.5);
  stroke-width: 1;
}

.location-marker {
  fill: var(--red);
  stroke: #101417;
  stroke-width: 3;
}

.location-number {
  fill: #060708;
  font-family: var(--font-archivo), Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.location-name,
.basket-label {
  fill: #c7cdd1;
  font-family: var(--font-archivo), Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.basket-label { fill: #8f999f; font-size: 11px; }

.blueprint-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.blueprint-facts strong {
  min-height: 54px;
  padding: 11px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.blueprint-facts strong:last-child { border-right: 0; }

.format-blueprint figcaption {
  margin: 0;
  padding: 13px 16px 15px;
  color: #aeb6bb;
  font-size: 0.75rem;
  line-height: 1.5;
}

.principles-grid { margin-top: 30px; border-top: 1px solid rgba(13, 15, 17, 0.22); }
.principles-grid article {
  min-height: 128px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(13, 15, 17, 0.22);
}

.principles-grid article > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.principles-grid h3 {
  margin: 0 0 8px;
  font-family: var(--font-anton), Impact, sans-serif;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.principles-grid p { margin: 0; color: #50575c; font-size: 0.9rem; line-height: 1.6; }

.app-section {
  padding: clamp(74px, 8vw, 112px) clamp(24px, 6vw, 104px);
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(54px, 8vw, 126px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 92, 53, 0.15), transparent 24rem),
    #111417;
}

.app-heading h2 {
  margin: 38px 0 0;
  font-family: var(--font-anton), Impact, "Arial Narrow", sans-serif;
  font-size: clamp(4rem, 5.3vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-transform: uppercase;
}

.app-lede {
  max-width: 610px;
  margin: 27px 0 0;
  color: #c6ccd0;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.7;
}

.app-disclosure {
  max-width: 610px;
  margin: 24px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  color: #8f999f;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.app-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: center;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.app-flow article {
  min-height: 210px;
  padding: 29px 28px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.app-flow article > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.app-flow h3 {
  margin: 28px 0 10px;
  font-family: var(--font-anton), Impact, sans-serif;
  font-size: clamp(1.85rem, 2.2vw, 2.45rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.app-flow p {
  margin: 0;
  color: #aeb6bb;
  font-size: 0.9rem;
  line-height: 1.6;
}

.registration-section {
  padding: clamp(82px, 10vw, 142px) clamp(24px, 6vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  gap: clamp(48px, 9vw, 140px);
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 92, 53, 0.13), transparent 26rem),
    #090b0d;
}

.registration-copy h2 { margin-top: 50px; font-size: clamp(3.7rem, 5.2vw, 6.2rem); }
.registration-lede {
  max-width: 590px;
  margin: 28px 0 0;
  color: #b7bec3;
  font-size: 1.04rem;
  line-height: 1.72;
}

.registration-lede strong { margin-top: 4px; }
.registration-copy ul {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
  color: #f0f1ee;
  font-size: 0.91rem;
  line-height: 1.45;
}

.registration-copy li { display: flex; gap: 12px; }
.registration-copy li span { color: var(--red); font-weight: 900; }
.registration-note {
  max-width: 580px;
  margin: 34px 0 0;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: #7f888e;
  font-size: 0.8125rem;
  line-height: 1.65;
}

.typeform-shell {
  min-height: 720px;
  display: block;
  background: #fff;
  border-top: 5px solid var(--red);
}

.typeform-form-view {
  min-height: 720px;
  display: grid;
  grid-template-rows: auto minmax(610px, 1fr) auto auto;
}

.typeform-shell.is-complete {
  background: #f7f7f4;
}

.typeform-widget {
  width: 100%;
  min-height: 610px;
  overflow: hidden;
  background: #fff;
}

.typeform-widget,
.typeform-widget :where(.tf-v1-widget, iframe) {
  border-radius: 0 !important;
}

.signup-completion {
  position: relative;
  min-height: 715px;
  padding: clamp(42px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #151719;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 92, 53, 0.16), transparent 19rem),
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(6, 7, 8, 0.018) 26px 27px),
    #f7f7f4;
}

.signup-completion-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--red);
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.signup-completion-kicker {
  margin: 30px 0 0;
  color: var(--red-small-text);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signup-completion h3 {
  max-width: 720px;
  margin: 16px 0 0;
  font-family: var(--font-anton), Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3.3rem, 5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-transform: uppercase;
}

.signup-completion h3:focus { outline: 0; }

.signup-completion-copy {
  max-width: 580px;
  margin: 24px 0 0;
  color: #4f575c;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.signup-completion-invite {
  max-width: 720px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid #cfd3d5;
}

.signup-completion-invite > strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.signup-completion-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.signup-completion .button {
  min-height: 54px;
  font-family: inherit;
  cursor: pointer;
}

.signup-completion-secondary {
  color: #151719;
  background: #fff;
  border-color: #bfc5c8;
}

.signup-completion-secondary:hover,
.signup-completion-secondary:focus-visible {
  border-color: var(--red-deep);
  color: var(--red-deep);
  transform: translateY(-2px);
}

.signup-share-status {
  min-height: 1.4em;
  margin: 13px 0 0;
  color: #596166;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.4;
}

.form-label {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #151719;
  border-bottom: 1px solid #e1e3e4;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-label i { color: #747b80; font-style: normal; }
.typeform-shell iframe {
  width: 100%;
  min-height: 610px;
  border: 0;
  background: #fff;
}
.form-loading {
  min-height: 610px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #3f474c;
  background: #f7f7f4;
  text-align: center;
}

.form-loading span {
  width: 34px;
  height: 34px;
  border: 4px solid #d9dcde;
  border-top-color: var(--red);
  border-radius: 50%;
  animation: form-spin 800ms linear infinite;
}

.form-loading p {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes form-spin { to { transform: rotate(360deg); } }
.form-fallback {
  min-height: 52px;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #151719;
  border-top: 1px solid #e1e3e4;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-fallback:hover,
.form-fallback:focus-visible { color: var(--red-deep); }

.form-privacy {
  margin: 0;
  padding: 14px 22px 17px;
  color: #6c7479;
  border-top: 1px solid #e1e3e4;
  font-size: 0.8125rem;
  line-height: 1.55;
}

.form-privacy a {
  color: #34393d;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 92, 53, 0.7);
  text-underline-offset: 2px;
}

.form-privacy a:hover,
.form-privacy a:focus-visible { color: var(--red-deep); }

.site-footer {
  padding: 54px clamp(24px, 6vw, 104px) 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px 80px;
  background: #fff;
  color: #111315;
  border-top: 5px solid var(--red);
}

.footer-brand-lockup { width: min(100%, 380px); }
.footer-brand img { display: block; width: 100%; height: auto; }
.footer-brand p {
  margin: 15px 0 0;
  color: #61686d;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px 32px;
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover,
.footer-links a:focus-visible { color: var(--red-deep); }
.footer-meta {
  grid-column: 1 / -1;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #d9dcde;
  color: #5b6368;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.55;
}

.footer-meta p { max-width: 760px; margin: 0; }
.mobile-cta { display: none; }

.faq-site {
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 92, 53, 0.12), transparent 28rem),
    var(--ink);
}

.faq-hero {
  padding: clamp(74px, 9vw, 132px) clamp(24px, 8vw, 136px) clamp(66px, 8vw, 112px);
  background:
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(255, 255, 255, 0.018) 26px 27px),
    linear-gradient(110deg, #060708 56%, #111417);
}

.faq-hero h1 {
  max-width: 1050px;
  margin: 46px 0 0;
  font-family: var(--font-anton), Impact, "Arial Narrow", sans-serif;
  font-size: clamp(4rem, 7vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-transform: uppercase;
}

.faq-hero h1 em { color: var(--red); font-style: normal; }
.faq-hero > p {
  max-width: 900px;
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #b7bec3;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
}

.faq-notice {
  margin: 0;
  padding: 28px clamp(24px, 8vw, 136px);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  background: var(--red);
  color: var(--ink);
}

.faq-notice-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.faq-notice h2 {
  margin: 1px 0 7px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.faq-notice p { max-width: 1040px; margin: 0; font-size: 0.9rem; font-weight: 650; line-height: 1.65; }

.faq-index {
  padding: 32px clamp(24px, 8vw, 136px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  background: #0b0d0f;
}

.faq-index a {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  color: #c5cbcf;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-index a:hover,
.faq-index a:focus-visible { border-color: var(--red); color: #fff; }

.faq-categories { padding: 0 clamp(24px, 8vw, 136px); background: #f3f3f0; color: #17191b; }
.faq-category {
  padding: clamp(68px, 7vw, 104px) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(48px, 6vw, 112px);
  border-bottom: 1px solid #cbd0d2;
  scroll-margin-top: 110px;
}

.faq-category > * { min-width: 0; }

.faq-category-heading { align-self: start; position: sticky; top: 120px; }
.faq-category-heading > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b9c0c3;
  color: var(--red-small-text);
  font-size: 0.7rem;
  font-weight: 900;
}

.faq-category-heading h2 {
  max-width: 100%;
  margin: 30px 0 0;
  font-family: var(--font-anton), Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 2.9vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.95;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.faq-list { border-top: 1px solid #bfc5c8; }
.faq-item { border-bottom: 1px solid #bfc5c8; }
.faq-item summary {
  min-height: 78px;
  padding: 22px 4px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  align-items: center;
  gap: 24px;
  color: #17191b;
  cursor: pointer;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 850;
  line-height: 1.45;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary:hover { color: var(--red-deep); }
.faq-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #aeb6bb;
  border-radius: 50%;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #17191b;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-toggle { border-color: var(--red-deep); background: var(--red); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { padding: 0 58px 30px 4px; color: #4b5358; }
.faq-answer p { margin: 0; font-size: 0.95rem; line-height: 1.78; }
.faq-answer p + p,
.faq-answer ul + p { margin-top: 15px; }
.faq-answer strong { color: #202326; }
.faq-answer ul { margin: 15px 0 18px; padding-left: 21px; }
.faq-answer li { margin: 7px 0; font-size: 0.95rem; line-height: 1.65; }
.faq-answer a {
  color: #202326;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

.faq-progression {
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  background: #fff;
  color: #17191b;
  font-weight: 850;
}

.faq-progression span { color: var(--red-deep); }
.faq-cta {
  padding: clamp(78px, 9vw, 128px) clamp(24px, 8vw, 136px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(46px, 8vw, 120px);
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 92, 53, 0.14), transparent 24rem),
    #111417;
}

.faq-cta h2 {
  margin: 25px 0 0;
  font-family: var(--font-anton), Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3.8rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

.faq-cta > div > p:last-child { max-width: 760px; margin: 26px 0 0; color: #aeb6bb; line-height: 1.75; }
.faq-cta-actions { min-width: min(100%, 370px); display: grid; gap: 12px; }
.faq-cta-actions .button { width: 100%; }
.faq-cta-actions > p { margin: 8px 0 0; color: #aeb6bb; font-size: 0.78rem; font-weight: 800; text-align: center; }
.faq-cta-actions > p a { text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }

.legal-site {
  min-height: 100vh;
  background: #f3f3f0;
  color: #17191b;
}

.legal-header {
  min-height: 84px;
  padding: 12px clamp(22px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 4px solid var(--red);
  background: #fff;
}

.legal-brand { width: min(100%, 365px); line-height: 0; }
.legal-brand .brand-lockup { width: 100%; }
.legal-brand img { display: block; width: 100%; height: auto; }
.legal-back {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #cfd3d5;
  color: #17191b;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-back:hover,
.legal-back:focus-visible { border-color: var(--red); color: var(--red-deep); }

.legal-main {
  width: min(100% - 44px, 1120px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 130px);
}

.legal-title-block { align-self: start; position: sticky; top: 42px; }
.legal-title-block h1 {
  margin: 26px 0 0;
  font-family: var(--font-anton), Impact, sans-serif;
  font-size: clamp(4.2rem, 6.3vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-transform: uppercase;
}

.legal-effective {
  margin: 24px 0 0;
  color: #687076;
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-intro {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 4px solid var(--red);
  color: #4d555a;
  font-size: 1rem;
  line-height: 1.72;
}

.legal-content { border-top: 1px solid #cbd0d2; }
.legal-content section { padding: 36px 0 38px; border-bottom: 1px solid #cbd0d2; }
.legal-content h2 {
  margin: 0 0 18px;
  font-family: var(--font-anton), Impact, sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

.legal-content p { margin: 0; color: #4b5358; font-size: 0.95rem; line-height: 1.78; }
.legal-content p + p { margin-top: 15px; }
.legal-content a {
  color: #202326;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

.legal-footer {
  padding: 30px clamp(22px, 5vw, 78px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 5px solid var(--red);
  background: #111315;
  color: #aeb6bb;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

.legal-footer p { margin: 0; }
.legal-footer nav { display: flex; flex-wrap: wrap; gap: 18px 28px; }
.legal-footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.legal-footer a:hover,
.legal-footer a:focus-visible { color: #fff; }

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(240px, 380px) 1fr auto;
    justify-content: space-between;
  }
  .desktop-nav { display: none; }
  .mobile-nav {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .mobile-nav a { min-height: 44px; display: inline-flex; align-items: center; }
  .mobile-nav a:hover,
  .mobile-nav a:focus-visible { color: var(--red-deep); }
  .nav-cta { justify-self: end; }
  .hero { grid-template-columns: 54% 46%; }
  .about-section { gap: 58px; }
  .app-section { grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr); gap: 40px; }
  .registration-section { grid-template-columns: 0.8fr 1.2fr; gap: 54px; }
}

@media (max-width: 960px) {
  .about-section,
  .registration-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .faq-category { grid-template-columns: 1fr; gap: 36px; }
  .faq-category-heading { position: static; }
  .faq-category-heading h2 { max-width: none; }
  .faq-cta { grid-template-columns: 1fr; align-items: start; }
  .faq-cta-actions { width: min(100%, 480px); }
}

@media (max-width: 820px) {
  section[id],
  #founding-form { scroll-margin-top: 82px; }

  .site-header {
    min-height: 72px;
    padding: 10px 18px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 15px;
  }

  .brand { max-width: 245px; }
  .nav-cta { min-height: 44px; padding: 0 14px; font-size: 0.75rem; }
  .mobile-nav { gap: 13px; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 54px 22px 44px; background: var(--ink); }
  .status-pill { margin-bottom: 36px; font-size: 0.75rem; }
  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.75rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
  }
  .hero-lede { margin-top: 25px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-visual { height: clamp(300px, 82vw, 360px); min-height: 0; }
  .hero-visual::before { background: linear-gradient(180deg, #060708 0%, transparent 20%, rgba(6, 7, 8, 0.55) 100%); }
  .hero-picture > img { object-position: 59% center; }
  .visual-caption { align-items: flex-start; flex-direction: column; }
  .signal-bar { padding: 20px 18px; flex-wrap: wrap; gap: 10px 16px; font-size: 1.02rem; }
  .about-section,
  .app-section,
  .registration-section { padding: 64px 22px; grid-template-columns: 1fr; gap: 38px; }
  .about-heading h2,
  .app-heading h2,
  .registration-copy h2 { font-size: clamp(3.45rem, 15vw, 5.6rem); }
  .about-heading h2,
  .app-heading h2,
  .registration-copy h2 { margin-top: 34px; }
  .app-flow article { min-height: 184px; padding: 24px 22px; }
  .app-flow h3 { margin-top: 22px; }
  .registration-section { background: #090b0d; }
  .typeform-shell { min-height: 700px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand-lockup { max-width: 270px; }
  .footer-links { gap: 16px 28px; }
  .signup-clarifier,
  .registration-note,
  .form-privacy,
  .footer-meta { font-size: 0.875rem; }
  .legal-main { grid-template-columns: 1fr; gap: 52px; }
  .legal-title-block { position: static; }
  .legal-footer { flex-direction: column; }
  .faq-hero { padding: 62px 22px 58px; }
  .faq-hero h1 { margin-top: 36px; font-size: clamp(3.6rem, 14vw, 6.2rem); }
  .faq-notice { padding: 24px 22px; }
  .faq-index { padding: 24px 22px; }
  .faq-categories { padding: 0 22px; }
  .faq-category { padding: 62px 0; }
  .faq-category-heading h2 { margin-top: 24px; }
  .faq-cta { padding: 66px 22px; }
}

@media (max-width: 520px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto; }
  .brand { max-width: 205px; }
  .nav-cta { display: none; }
  .mobile-nav { font-size: 0.7rem; }
  .faq-site .mobile-nav a:first-child { display: none; }
  .status-pill { padding: 11px 12px; }
  .principles-grid article { grid-template-columns: 36px 1fr; gap: 14px; }
  .format-callout { padding: 21px 18px 20px; }
  .format-blueprint { margin-top: 20px; }
  .blueprint-header {
    min-height: 44px;
    padding: 11px 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .blueprint-header strong,
  .blueprint-header span { font-size: 0.75rem; }
  .blueprint-court { margin: 0 -5px; width: calc(100% + 10px); padding-right: 3px; padding-left: 3px; }
  .location-name { display: none; }
  .blueprint-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blueprint-facts strong { min-height: 48px; padding: 9px 7px; font-size: 0.75rem; }
  .blueprint-facts strong:nth-child(2) { border-right: 0; }
  .blueprint-facts strong:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .format-blueprint figcaption { padding: 12px; font-size: 0.75rem; }
  .app-section { padding-top: 52px; padding-bottom: 52px; gap: 30px; }
  .app-heading h2 { margin-top: 28px; }
  .app-lede { margin-top: 22px; line-height: 1.62; }
  .app-disclosure { margin-top: 20px; padding-top: 15px; font-size: 0.875rem; }
  .app-flow article { min-height: 142px; padding: 18px 16px; }
  .app-flow article > span { font-size: 0.75rem; }
  .app-flow h3 { margin-top: 15px; font-size: 1.5rem; }
  .app-flow p { font-size: 0.875rem; line-height: 1.45; }
  .typeform-widget,
  .typeform-shell iframe { min-height: 640px; }
  .typeform-shell.is-complete { min-height: 640px; }
  .signup-completion { min-height: 635px; padding: 38px 22px; }
  .signup-completion-mark { width: 52px; height: 52px; font-size: 1.35rem; }
  .signup-completion-kicker { margin-top: 25px; }
  .signup-completion h3 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .signup-completion-copy { margin-top: 20px; }
  .signup-completion-invite { margin-top: 28px; padding-top: 23px; }
  .signup-completion-actions { display: grid; grid-template-columns: 1fr; }
  .form-label { align-items: flex-start; flex-direction: column; gap: 5px; }
  .footer-meta { flex-direction: column; }
  .mobile-cta {
    position: fixed;
    z-index: 60;
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    left: max(14px, env(safe-area-inset-left, 0px));
    min-height: 54px;
    padding: 0 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--red);
    color: var(--ink);
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.42);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
  }
  .site-footer { padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px)); }
  .brand-tm { right: -0.75em; font-size: 0.55rem; }
  .legal-header { min-height: 72px; padding: 10px 14px; gap: 12px; }
  .legal-brand { max-width: 180px; }
  .legal-back { flex-shrink: 0; padding: 0 10px; font-size: 0.75rem; }
  .legal-main { width: min(100% - 36px, 1120px); padding: 64px 0 76px; }
  .legal-title-block h1 { font-size: clamp(3.8rem, 18vw, 5.6rem); }
  .faq-notice { grid-template-columns: 38px minmax(0, 1fr); gap: 15px; }
  .faq-notice-mark { width: 36px; height: 36px; }
  .faq-index { gap: 8px; }
  .faq-index a { width: 100%; }
  .faq-category-heading h2 { font-size: clamp(2.25rem, 9.5vw, 3.4rem); }
  .faq-item summary { min-height: 72px; padding: 20px 0; gap: 14px; }
  .faq-answer { padding: 0 0 26px; }
  .faq-progression { padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .form-loading span { animation: none; }
}

/* WordPress navigation and native Journal surfaces. */
.menu-toggle {
  min-height: 46px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #111315;
  background: transparent;
  border: 1px solid #c9cdcf;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle:hover { border-color: var(--red-deep); color: var(--red-deep); }
.menu-toggle:focus-visible { outline: 3px solid var(--red-deep); outline-offset: 3px; }
.menu-toggle-lines { width: 18px; display: grid; gap: 3px; }
.menu-toggle-lines i { height: 2px; display: block; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  position: absolute;
  z-index: 80;
  top: 100%;
  right: 0;
  left: 0;
  padding: 12px clamp(18px, 4vw, 46px) 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border-top: 1px solid #dfe1e2;
  border-bottom: 4px solid var(--red);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.2);
}

.mobile-menu a {
  min-height: 54px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  color: #151719;
  border-bottom: 1px solid #e1e3e4;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu a[aria-current="page"] { color: var(--red-deep); }
.mobile-menu .mobile-menu-cta { color: #111315; background: var(--red); border-bottom-color: var(--red); }

.faq-editor-content {
  width: min(100% - 44px, 940px);
  margin: 0 auto;
  padding: 70px 0 90px;
  color: #252a2e;
}

.journal-main {
  min-height: 70vh;
  color: #111315;
  background: #f4f4f1;
}

.journal-hero {
  padding: clamp(72px, 9vw, 132px) clamp(24px, 7vw, 118px) clamp(70px, 8vw, 116px);
  color: #f7f7f4;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 92, 53, 0.18), transparent 25rem),
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(255, 255, 255, 0.018) 26px 27px),
    #060708;
}

.journal-hero h1 {
  max-width: 1100px;
  margin: 38px 0 0;
  font-family: var(--font-anton), Impact, "Arial Narrow", sans-serif;
  font-size: clamp(4.8rem, 11vw, 10.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.85;
  text-transform: uppercase;
}

.journal-hero > p:last-child,
.journal-archive-description {
  max-width: 760px;
  margin: 38px 0 0;
  color: #c0c7cb;
  font-size: clamp(1.02rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.journal-hero-compact { padding-top: clamp(62px, 7vw, 96px); padding-bottom: clamp(58px, 7vw, 92px); }
.journal-hero-compact h1 { font-size: clamp(4rem, 8vw, 8rem); overflow-wrap: anywhere; }
.journal-hero .journal-search-form { margin-top: 38px; }

.journal-feed {
  width: min(100% - 48px, 1380px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0 clamp(84px, 10vw, 144px);
}

.journal-feed-heading { margin-bottom: 42px; }
.journal-feed-heading .eyebrow { color: var(--red-small-text); }
.journal-feed-heading h2,
.journal-empty h2 {
  margin: 16px 0 0;
  font-family: var(--font-anton), Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.92;
  text-transform: uppercase;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.journal-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-bottom: 4px solid #1e2326;
  box-shadow: 0 12px 30px rgba(12, 15, 17, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.journal-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(12, 15, 17, 0.13); }
.journal-card-image { aspect-ratio: 3 / 2; display: block; overflow: hidden; background: #101315; }
.journal-card-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 300ms ease; }
.journal-card:hover .journal-card-image img { transform: scale(1.025); }
.journal-card-placeholder { width: 100%; height: 100%; display: grid; place-items: center; background: repeating-linear-gradient(135deg, #0c0f11 0 26px, #121619 26px 27px); }
.journal-card-placeholder span { color: var(--red); font-family: var(--font-anton), Impact, sans-serif; font-size: clamp(3rem, 6vw, 6rem); letter-spacing: 0.08em; }
.journal-card-copy { min-height: 330px; padding: 28px 28px 30px; display: flex; flex-direction: column; }

.journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #687176;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.5;
  text-transform: uppercase;
}

.journal-meta a { color: var(--red-small-text); }
.journal-card h2 { margin: 20px 0 0; font-family: var(--font-anton), Impact, "Arial Narrow", sans-serif; font-size: clamp(2rem, 2.8vw, 3rem); font-weight: 400; line-height: 1; text-transform: uppercase; }
.journal-card h2 a:hover,
.journal-card h2 a:focus-visible { color: var(--red-deep); }
.journal-excerpt { margin-top: 20px; color: #525b60; font-size: 0.95rem; line-height: 1.7; }
.journal-excerpt p { margin: 0; }
.journal-read-more { min-height: 44px; margin-top: auto; padding-top: 28px; display: flex; justify-content: space-between; align-items: flex-end; color: #1b2023; font-size: 0.75rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.journal-read-more:hover,
.journal-read-more:focus-visible { color: var(--red-deep); }

.navigation.pagination { margin-top: 58px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.nav-links .page-numbers { min-width: 46px; min-height: 46px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; color: #171b1e; background: #fff; border: 1px solid #ccd1d3; font-size: 0.78rem; font-weight: 900; }
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover,
.nav-links .page-numbers:focus-visible { color: #111315; background: var(--red); border-color: var(--red); }

.journal-empty { max-width: 760px; padding: clamp(42px, 6vw, 76px); background: #fff; border-top: 5px solid var(--red); }
.journal-empty p { margin: 22px 0 0; color: #525b60; line-height: 1.7; }
.journal-empty .button { margin-top: 30px; }

.single-journal { padding-bottom: clamp(84px, 10vw, 140px); }
.journal-article-header { padding: clamp(72px, 9vw, 132px) max(24px, calc((100vw - 1120px) / 2)) clamp(54px, 7vw, 92px); color: #f7f7f4; background: #060708; }
.journal-back { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; color: #d6dbdd; font-size: 0.75rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.journal-back:hover,
.journal-back:focus-visible { color: var(--red); }
.journal-article-header .journal-meta { margin-top: 42px; color: #aeb6bb; }
.journal-article-header h1 { max-width: 1080px; margin: 24px 0 0; font-family: var(--font-anton), Impact, "Arial Narrow", sans-serif; font-size: clamp(4rem, 8.5vw, 8.8rem); font-weight: 400; letter-spacing: -0.02em; line-height: 0.9; overflow-wrap: anywhere; text-transform: uppercase; }
.journal-deck { max-width: 800px; margin: 34px 0 0; color: #c3c9cc; font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.65; }
.journal-featured-image { width: min(100% - 48px, 1240px); margin: clamp(44px, 6vw, 82px) auto 0; }
.journal-featured-image img { width: 100%; height: auto; display: block; }
.journal-featured-image figcaption { padding: 12px 0; color: #656d72; font-size: 0.8rem; line-height: 1.5; }

.journal-article-content,
.generic-page .journal-article-content {
  width: min(100% - 48px, 760px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 100px) 0;
  color: #30373b;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.82;
}

.journal-featured-image + .journal-article-content { padding-top: clamp(48px, 6vw, 76px); }
.entry-content > :first-child { margin-top: 0; }
.entry-content > :last-child { margin-bottom: 0; }
.entry-content h2,
.entry-content h3,
.entry-content h4 { color: #111315; font-family: var(--font-anton), Impact, "Arial Narrow", sans-serif; font-weight: 400; line-height: 1; text-transform: uppercase; }
.entry-content h2 { margin: 2.2em 0 0.65em; font-size: clamp(2.7rem, 5vw, 4.6rem); }
.entry-content h3 { margin: 2em 0 0.65em; font-size: clamp(2rem, 3.4vw, 3rem); }
.entry-content h4 { margin: 1.8em 0 0.65em; font-size: 1.5rem; }
.entry-content p,
.entry-content ul,
.entry-content ol { margin-top: 0; margin-bottom: 1.4em; }
.entry-content li + li { margin-top: 0.5em; }
.entry-content a { color: #a92911; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote { margin: 2.2em 0; padding: 8px 0 8px 28px; border-left: 6px solid var(--red); color: #171b1e; font-size: 1.25em; font-weight: 700; }
.entry-content img { height: auto; }
.entry-content figcaption { color: #697176; font-size: 0.8rem; line-height: 1.5; }
.entry-content .alignwide { width: min(100vw - 48px, 1240px); max-width: none; margin-right: calc((min(100vw - 48px, 1240px) - 100%) / -2); margin-left: calc((min(100vw - 48px, 1240px) - 100%) / -2); }
.entry-content .alignfull { width: 100vw; max-width: none; margin-right: calc((100vw - 100%) / -2); margin-left: calc((100vw - 100%) / -2); }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th,
.entry-content td { padding: 12px; border: 1px solid #c9ced0; text-align: left; }

.journal-article-footer { width: min(100% - 48px, 760px); margin: 0 auto; padding: 0 0 52px; }
.journal-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.journal-tags span,
.journal-tags a { min-height: 36px; padding: 0 12px; display: inline-flex; align-items: center; color: #3c4448; background: #fff; border: 1px solid #ced2d4; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.journal-tags a:hover,
.journal-tags a:focus-visible { color: #111315; background: var(--red); border-color: var(--red); }
.journal-post-navigation { width: min(100% - 48px, 1120px); margin: 0 auto; padding-top: 42px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; border-top: 1px solid #cbd0d2; }
.journal-post-navigation > div:last-child { text-align: right; }
.journal-post-navigation a { min-height: 54px; display: inline-flex; flex-direction: column; gap: 8px; color: #1a1f22; font-family: var(--font-anton), Impact, sans-serif; font-size: 1.35rem; line-height: 1.1; text-transform: uppercase; }
.journal-post-navigation a span { color: #727a7f; font-family: var(--font-archivo), Arial, sans-serif; font-size: 0.68rem; font-weight: 900; letter-spacing: 0.08em; }
.journal-post-navigation a:hover,
.journal-post-navigation a:focus-visible { color: var(--red-deep); }

.journal-search-form { max-width: 680px; }
.journal-search-form > label { display: block; margin-bottom: 9px; color: #d6dbdd; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.07em; text-transform: uppercase; }
.journal-search-form > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
.journal-search-form input { min-height: 56px; width: 100%; padding: 0 18px; color: #111315; background: #fff; border: 2px solid #fff; }
.journal-search-form button { min-height: 56px; padding: 0 24px; color: #111315; background: var(--red); border: 0; cursor: pointer; font-size: 0.75rem; font-weight: 900; letter-spacing: 0.07em; text-transform: uppercase; }
.journal-search-form input:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.journal-search-form button:hover,
.journal-search-form button:focus-visible { background: #fff; }

.generic-page-article { min-height: 70vh; }
.generic-page .journal-hero { margin: 0; }
.not-found-main { min-height: 72vh; padding: clamp(78px, 10vw, 150px) clamp(24px, 8vw, 130px); color: #f7f7f4; background: radial-gradient(circle at 80% 20%, rgba(255, 92, 53, 0.2), transparent 28rem), #060708; }
.not-found-mark { color: rgba(255, 92, 53, 0.22); font-family: var(--font-anton), Impact, sans-serif; font-size: clamp(7rem, 20vw, 20rem); line-height: 0.7; }
.not-found-main .eyebrow { margin-top: 48px; }
.not-found-main h1 { max-width: 900px; margin: 16px 0 0; font-family: var(--font-anton), Impact, sans-serif; font-size: clamp(4rem, 9vw, 9rem); font-weight: 400; line-height: 0.9; text-transform: uppercase; }
.not-found-main > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 0; color: #bec5c8; line-height: 1.7; }
.not-found-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 1120px) {
  .site-header { position: sticky; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: grid; }
  .journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .admin-bar .site-header { top: 46px; }
  .mobile-menu { grid-template-columns: 1fr; padding: 8px 18px 20px; max-height: calc(100vh - 72px); overflow-y: auto; }
  .mobile-menu a { min-height: 50px; }
  .journal-hero { padding-right: 22px; padding-left: 22px; }
  .journal-feed { width: min(100% - 36px, 1380px); }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card-copy { min-height: 0; }
  .journal-read-more { margin-top: 26px; }
  .journal-article-header { padding-right: 22px; padding-left: 22px; }
  .journal-featured-image,
  .journal-article-content,
  .generic-page .journal-article-content,
  .journal-article-footer,
  .journal-post-navigation { width: min(100% - 36px, 1240px); }
  .entry-content .alignwide,
  .entry-content .alignfull { width: calc(100vw - 36px); margin-right: calc((calc(100vw - 36px) - 100%) / -2); margin-left: calc((calc(100vw - 36px) - 100%) / -2); }
  .journal-post-navigation { grid-template-columns: 1fr; }
  .journal-post-navigation > div:last-child { text-align: left; }
  .not-found-main { padding-right: 22px; padding-left: 22px; }
}

@media (max-width: 520px) {
  .menu-toggle { min-width: 46px; padding: 0 11px; }
  .menu-toggle > span:last-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
  .journal-card-copy { padding: 24px 20px 26px; }
  .journal-search-form > div { grid-template-columns: 1fr; gap: 8px; }
  .journal-search-form button { width: 100%; }
  .not-found-actions { display: grid; }
}
