/* =========================================================
   AJ's Collectibles — Section styles
   Solid color blocking · square frames · collector-shop feel
   ========================================================= */

/* =========================================================
   CATEGORY SHOWCASE (3 stacked full-bleed sections)
   Each one uses a solid color foundation, not radial gradient soup.
   ========================================================= */

.aj-category {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--aj-hairline);
}
.aj-category .inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}
.aj-category .copy { max-width: 560px; min-width: 0; }
.aj-category .index {
  font-family: var(--aj-font-mono);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--aj-white);
  background: var(--aj-emerald);
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 24px;
}
.aj-category h2 {
  font-family: var(--aj-font-display);
  font-size: clamp(54px, 8vw, 132px);
  line-height: 0.86;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--aj-white);
  overflow-wrap: break-word;
}
.aj-category h2 .accent {
  color: var(--aj-emerald-3);
}
.aj-category .lede {
  font-size: 18px;
  color: var(--aj-white-70);
  line-height: 1.6;
  margin: 0 0 32px;
}
.aj-category .tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.aj-category .tag {
  font-family: var(--aj-font-sub);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--aj-r-sm);
  background: transparent;
  border: 2px solid var(--aj-white-30);
  color: var(--aj-white);
  white-space: nowrap;
}
.aj-category .tag.emerald {
  background: var(--aj-emerald);
  border-color: var(--aj-emerald);
  color: var(--aj-white);
}
.aj-category .tag.rare {
  background: var(--aj-white);
  border-color: var(--aj-white);
  color: var(--aj-bg);
}

/* Stage area on right side */
.aj-category .stage {
  position: relative;
  aspect-ratio: 4/5;
  min-height: 520px;
}

/* ============== FUNKO SECTION ============== */
.aj-cat-funko {
  background: var(--aj-bg);
}
/* Solid emerald accent block on the right behind the stage */
.aj-cat-funko::before {
  content: "";
  position: absolute;
  top: 10%; bottom: 10%; left: 55%; right: 0;
  background: var(--aj-emerald-deep);
  z-index: 0;
}
.aj-cat-funko .stage-shelf {
  position: absolute;
  inset: 6% 0 6% 0;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
}
.aj-cat-funko .shelf-row {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: end;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--aj-emerald-3);
}
.aj-cat-funko .shelf-row .slot {
  width: 22%;
  aspect-ratio: 3/4;
  transition: transform 0.35s var(--aj-ease);
}
.aj-cat-funko .shelf-row .slot:hover {
  transform: translateY(-10px);
  z-index: 4;
}

/* ============== HOT WHEELS SECTION ============== */
.aj-cat-hotwheels {
  background: var(--aj-bg);
}
.aj-cat-hotwheels::before {
  content: "";
  position: absolute;
  top: 10%; bottom: 10%; right: 55%; left: 0;
  background: #8a1f15;
  z-index: 0;
  opacity: 0.85;
}
.aj-cat-hotwheels h2 .accent { color: #ff5a2a; }
.aj-cat-hotwheels .index { background: #d9311d; }
.aj-cat-hotwheels .tag.emerald {
  background: #d9311d;
  border-color: #d9311d;
  color: var(--aj-white);
}
.aj-cat-hotwheels .streaks {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.aj-cat-hotwheels .streak {
  position: absolute;
  height: 3px;
  background: #ff5a2a;
  opacity: 0.6;
  animation: ajStreak 3.2s linear infinite;
}
.aj-cat-hotwheels .streak.s1 { top: 24%; left: -20%; width: 36%; animation-delay: 0s; }
.aj-cat-hotwheels .streak.s2 { top: 48%; left: -20%; width: 50%; animation-delay: -1.4s; }
.aj-cat-hotwheels .streak.s3 { top: 72%; left: -20%; width: 28%; animation-delay: -2.6s; }
.aj-cat-hotwheels .streak.s4 { top: 36%; left: -20%; width: 44%; animation-delay: -0.7s; }
@keyframes ajStreak {
  0%   { transform: translateX(0); opacity: 0; }
  10%  { opacity: 0.7; }
  100% { transform: translateX(280%); opacity: 0; }
}
[data-motion="off"] .aj-cat-hotwheels .streak { animation: none; opacity: 0.15; }

.aj-cat-hotwheels .stage {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
}
.aj-cat-hotwheels .car-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.aj-cat-hotwheels .car {
  position: relative;
  flex: 1;
  height: 84px;
  border-radius: var(--aj-r-sm);
  background: var(--aj-bg-elev);
  border: 2px solid var(--aj-white-30);
  display: flex;
  align-items: center;
  padding: 0 18px;
  gap: 14px;
  overflow: hidden;
  transition: all 0.25s var(--aj-ease);
}
.aj-cat-hotwheels .car:hover {
  border-color: #ff5a2a;
  background: #14110f;
  transform: translateX(6px);
}
.aj-cat-hotwheels .car .silhouette {
  width: 90px; height: 38px;
  background: #d9311d;
  clip-path: polygon(0 60%, 12% 30%, 28% 12%, 70% 12%, 90% 30%, 100% 60%, 100% 100%, 0 100%);
}
.aj-cat-hotwheels .car .meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.aj-cat-hotwheels .car .meta .name {
  font-family: var(--aj-font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: white;
  text-transform: uppercase;
}
.aj-cat-hotwheels .car .meta .info {
  font-family: var(--aj-font-mono);
  font-size: 11px;
  color: var(--aj-white-50);
  letter-spacing: 0.16em;
}
.aj-cat-hotwheels .car .badge {
  font-family: var(--aj-font-sub);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--aj-r-sm);
  background: #d9311d;
  color: var(--aj-white);
}

/* ============== LEGO SECTION ============== */
.aj-cat-lego {
  background: var(--aj-bg);
}
.aj-cat-lego::before {
  content: "";
  position: absolute;
  top: 10%; bottom: 10%; left: 55%; right: 0;
  background: #0a1138;
  z-index: 0;
}
.aj-cat-lego h2 .accent { color: #a3b8ff; }
.aj-cat-lego .index { background: #2a3f9c; }
.aj-cat-lego .tag.emerald {
  background: #2a3f9c;
  border-color: #2a3f9c;
  color: var(--aj-white);
}
.aj-cat-lego .starfield {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 25% 30%, white 50%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, white 50%, transparent 100%),
    radial-gradient(2px 2px at 80% 20%, #d9d9ff 50%, transparent 100%),
    radial-gradient(1px 1px at 40% 80%, white 50%, transparent 100%),
    radial-gradient(1px 1px at 90% 50%, white 50%, transparent 100%),
    radial-gradient(2px 2px at 12% 60%, #a3b8ff 50%, transparent 100%),
    radial-gradient(1px 1px at 70% 40%, white 50%, transparent 100%),
    radial-gradient(1px 1px at 33% 14%, white 50%, transparent 100%),
    radial-gradient(1px 1px at 55% 25%, #a3b8ff 50%, transparent 100%),
    radial-gradient(2px 2px at 85% 80%, white 50%, transparent 100%);
  background-size: 800px 800px;
  background-repeat: repeat;
  opacity: 0.7;
  animation: ajDrift 60s linear infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes ajDrift {
  to { background-position: 800px 800px; }
}
[data-motion="off"] .aj-cat-lego .starfield { animation: none; }

.aj-cat-lego .stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 12px;
}
.aj-cat-lego .brick {
  position: relative;
  border-radius: 0;
  background: var(--brick, #c43a3a);
  box-shadow: inset 0 -6px 0 rgba(0,0,0,0.3);
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  padding-bottom: 12px;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.35s var(--aj-ease);
}
.aj-cat-lego .brick:hover {
  transform: rotate(var(--rot, 0deg)) translateY(-6px);
}
.aj-cat-lego .brick::before, .aj-cat-lego .brick::after,
.aj-cat-lego .brick .stud {
  content: "";
  position: absolute;
  top: 8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brick, #c43a3a);
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.3);
}
.aj-cat-lego .brick::before { left: 12px; }
.aj-cat-lego .brick::after  { right: 12px; }
.aj-cat-lego .brick .stud   { left: 50%; transform: translateX(-50%); }

.aj-cat-lego .brick.b1 { --brick: #c43a3a; grid-column: 1; grid-row: 1; --rot: -3deg; }
.aj-cat-lego .brick.b2 { --brick: #e8b13a; grid-column: 2; grid-row: 1 / span 2; --rot: 2deg; }
.aj-cat-lego .brick.b3 { --brick: #2a6db5; grid-column: 3; grid-row: 1; --rot: 4deg; }
.aj-cat-lego .brick.b4 { --brick: #0F4C45; grid-column: 1; grid-row: 2 / span 2; --rot: -1deg; }
.aj-cat-lego .brick.b5 { --brick: #4a3a8a; grid-column: 3; grid-row: 2; --rot: -2deg; }
.aj-cat-lego .brick.b6 { --brick: #d9d9d9; grid-column: 2; grid-row: 3; --rot: 3deg; }
.aj-cat-lego .brick.b7 { --brick: #e8b13a; grid-column: 3; grid-row: 3 / span 2; --rot: -3deg; }
.aj-cat-lego .brick.b8 { --brick: #c43a3a; grid-column: 1; grid-row: 4; --rot: 4deg; }
.aj-cat-lego .brick.b9 { --brick: #2a6db5; grid-column: 2; grid-row: 4; --rot: -2deg; }

@media (max-width: 980px) {
  .aj-category .inner { grid-template-columns: 1fr; gap: 50px; }
  .aj-category .stage { min-height: 420px; }
  .aj-cat-funko::before, .aj-cat-hotwheels::before, .aj-cat-lego::before {
    display: none;
  }
}
@media (max-width: 560px) {
  .aj-cat-funko .shelf-row .slot { width: 28%; }
  .aj-cat-lego .stage { gap: 8px; }
  .aj-cat-lego .brick::before, .aj-cat-lego .brick::after,
  .aj-cat-lego .brick .stud { width: 16px; height: 16px; top: 6px; }
}

/* =========================================================
   ABOUT — two solid blocks side-by-side
   ========================================================= */
.aj-about {
  background: var(--aj-bg);
  padding: var(--aj-pad-section) 0;
  border-top: 1px solid var(--aj-hairline);
}
.aj-about .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.aj-about h2 {
  font-family: var(--aj-font-display);
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 16px 0 0;
  color: var(--aj-white);
}
.aj-about h2 .accent {
  color: var(--aj-emerald-3);
}
.aj-about .body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--aj-white-70);
  font-size: 17px;
  line-height: 1.65;
}
.aj-about .body strong {
  color: var(--aj-white);
  font-weight: 700;
}
.aj-about .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
}
.aj-about .stats .stat {
  background: var(--aj-emerald);
  padding: 24px 20px;
  color: var(--aj-white);
}
.aj-about .stats .stat + .stat {
  border-left: 2px solid var(--aj-bg);
}
.aj-about .stats .stat .num {
  font-family: var(--aj-font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--aj-white);
  margin-bottom: 8px;
}
.aj-about .stats .stat .label {
  font-family: var(--aj-font-sub);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
@media (max-width: 880px) {
  .aj-about .inner { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   FEATURES — solid-edge cards
   ========================================================= */
.aj-features {
  position: relative;
  padding: var(--aj-pad-section) 0;
  background: var(--aj-bg-elev);
  border-top: 1px solid var(--aj-hairline);
}
.aj-features .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.aj-feature {
  position: relative;
  padding: 32px 28px;
  background: var(--aj-bg);
  border: 2px solid var(--aj-hairline-2);
  border-radius: var(--aj-r-sm);
  transition: all 0.25s var(--aj-ease);
  overflow: hidden;
}
.aj-feature:hover {
  border-color: var(--aj-emerald-3);
  background: var(--aj-bg-elev-2);
  transform: translateY(-4px);
}
.aj-feature .ico {
  width: 56px; height: 56px;
  border-radius: var(--aj-r-sm);
  background: var(--aj-emerald);
  display: flex; align-items: center; justify-content: center;
  color: var(--aj-white);
  margin-bottom: 24px;
}
.aj-feature .ico svg { width: 28px; height: 28px; }
.aj-feature h3 {
  font-family: var(--aj-font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--aj-white);
}
.aj-feature p {
  margin: 0;
  color: var(--aj-white-70);
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .aj-features .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .aj-features .grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CONTACT — solid emerald block + square form
   ========================================================= */
.aj-contact {
  position: relative;
  padding: var(--aj-pad-section) 0;
  overflow: hidden;
  background: var(--aj-bg);
  border-top: 1px solid var(--aj-hairline);
}
.aj-contact::before {
  /* Solid emerald accent block behind copy column */
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 55%;
  background: var(--aj-emerald);
  z-index: 0;
}

.aj-contact .inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
  z-index: 2;
}
.aj-contact .copy { min-width: 0; color: var(--aj-white); padding: 24px 0; }
.aj-contact .copy .aj-eyebrow {
  background: var(--aj-bg);
  color: var(--aj-white);
}
.aj-contact .copy h2 {
  font-family: var(--aj-font-display);
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.98;
  text-transform: uppercase;
  margin: 14px 0 32px;
  overflow-wrap: break-word;
  color: var(--aj-white);
}
.aj-contact .copy h2 .accent { color: var(--aj-white); text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 6px; }
.aj-contact .copy p {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 32px;
}
.aj-contact .contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 2px solid rgba(255,255,255,0.25);
  margin-top: 32px;
}
.aj-contact .contact-list .row {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--aj-white);
}
.aj-contact .contact-list .row .ico {
  width: 40px; height: 40px;
  border-radius: var(--aj-r-sm);
  background: var(--aj-bg);
  color: var(--aj-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.aj-contact .contact-list .row .ico svg { width: 18px; height: 18px; }
.aj-contact .contact-list .label {
  display: block;
  font-family: var(--aj-font-sub);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2px;
  font-weight: 600;
}

.aj-form {
  position: relative;
  padding: 36px;
  background: var(--aj-bg-elev);
  border: 2px solid var(--aj-emerald);
  border-radius: var(--aj-r-sm);
}
.aj-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.aj-form .field {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 16px;
}
.aj-form .row .field { margin-bottom: 0; }
.aj-form .row { margin-bottom: 16px; }
.aj-form label {
  font-family: var(--aj-font-sub);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aj-white-50);
  font-weight: 600;
}
.aj-form input, .aj-form select, .aj-form textarea {
  width: 100%;
  background: var(--aj-bg);
  border: 2px solid var(--aj-hairline-2);
  border-radius: var(--aj-r-sm);
  color: white;
  font-family: var(--aj-font-body);
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 0.2s, background 0.2s;
}
.aj-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e9b8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}
.aj-form textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.aj-form input:focus, .aj-form select:focus, .aj-form textarea:focus {
  outline: none;
  border-color: var(--aj-emerald-3);
}
.aj-form input::placeholder, .aj-form textarea::placeholder { color: var(--aj-white-30); }

.aj-form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  font-family: var(--aj-font-sub);
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--aj-emerald);
  color: white;
  border: 2px solid var(--aj-emerald);
  border-radius: var(--aj-r-sm);
  transition: background 0.2s var(--aj-ease), transform 0.15s var(--aj-ease);
}
.aj-form-submit:hover {
  background: var(--aj-emerald-2);
  border-color: var(--aj-emerald-2);
  transform: translateY(-1px);
}
.aj-form .success {
  display: none;
  padding: 14px;
  background: var(--aj-emerald);
  border-radius: var(--aj-r-sm);
  color: var(--aj-white);
  font-size: 14px;
  margin-top: 16px;
}
.aj-form.is-sent .success { display: block; }
.aj-form.is-sent .aj-form-submit { opacity: 0.6; pointer-events: none; }

@media (max-width: 980px) {
  .aj-contact .inner { grid-template-columns: 1fr; gap: 40px; }
  .aj-contact::before { display: none; }
  .aj-contact .copy { background: var(--aj-emerald); padding: 32px; }
  .aj-form { padding: 24px; }
  .aj-form .row { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.aj-footer {
  background: var(--aj-bg);
  border-top: 4px solid var(--aj-emerald);
  padding: 72px 0 32px;
  color: var(--aj-white-70);
  position: relative;
}
.aj-footer .top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.aj-footer .brand {
  display: flex; flex-direction: column; gap: 18px; max-width: 340px;
}
.aj-footer .brand img { width: 64px; height: 64px; border-radius: 50%; }
.aj-footer .brand p { font-size: 14px; line-height: 1.6; color: var(--aj-white-50); margin: 0; }
.aj-footer h4 {
  font-family: var(--aj-font-sub);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--aj-emerald-3);
  margin: 0 0 20px;
  font-weight: 600;
}
.aj-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.aj-footer ul a {
  font-size: 14px;
  color: var(--aj-white-70);
  transition: color 0.2s;
}
.aj-footer ul a:hover { color: var(--aj-white); }

.aj-footer .address {
  font-size: 14px;
  line-height: 1.6;
  color: var(--aj-white-70);
}
.aj-footer .address strong { color: white; display: block; margin-bottom: 6px; }

.aj-footer .socials {
  display: flex; gap: 8px; margin-top: 18px;
}
.aj-footer .socials a {
  width: 40px; height: 40px;
  border-radius: var(--aj-r-sm);
  background: var(--aj-bg-elev);
  border: 2px solid var(--aj-hairline-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--aj-white-70);
  transition: all 0.2s;
}
.aj-footer .socials a:hover {
  color: var(--aj-white);
  border-color: var(--aj-emerald);
  background: var(--aj-emerald);
}
.aj-footer .socials a svg { width: 18px; height: 18px; }

.aj-footer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--aj-hairline);
  font-size: 12px;
  color: var(--aj-white-50);
  font-family: var(--aj-font-sub);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 600;
}
.aj-footer .bottom .built {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--aj-emerald);
  color: var(--aj-white);
  padding: 8px 14px;
  border-radius: var(--aj-r-sm);
}

@media (max-width: 980px) {
  .aj-footer .top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .aj-footer .top { grid-template-columns: 1fr; }
}

/* =========================================================
   STATIC INNER PAGES (about/terms/privacy)
   ========================================================= */
.aj-page-hero {
  padding: 200px 0 80px;
  background: var(--aj-bg);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--aj-emerald);
}
.aj-page-hero::before {
  content: "";
  position: absolute;
  inset: 0 60% 0 0;
  background: var(--aj-emerald-deep);
  opacity: 0.5;
  z-index: 0;
}
.aj-page-hero .aj-container { position: relative; z-index: 1; }
.aj-page-hero h1 {
  font-family: var(--aj-font-display);
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 14px 0 14px;
  color: var(--aj-white);
}
.aj-page-hero h1 .accent { color: var(--aj-emerald-3); }
.aj-page-hero .lede {
  max-width: 720px;
  font-size: 18px;
  color: var(--aj-white-70);
  line-height: 1.6;
}
.aj-page-body { padding: 80px 0 120px; background: var(--aj-bg); }
.aj-page-body .inner { max-width: 820px; }
.aj-page-body h2 {
  font-family: var(--aj-font-display);
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--aj-white);
  margin: 56px 0 18px;
  padding-top: 24px;
  border-top: 2px solid var(--aj-emerald);
}
.aj-page-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.aj-page-body p {
  font-size: 16px;
  color: var(--aj-white-70);
  line-height: 1.7;
  margin: 0 0 18px;
}
.aj-page-body ul {
  padding-left: 20px;
  color: var(--aj-white-70);
  font-size: 16px;
  line-height: 1.7;
}
.aj-page-body strong { color: var(--aj-white); }

/* Tweaks panel mount */
.aj-tweaks-host {
  position: fixed;
  z-index: 99999;
}
