/* ===================================================================
   CHASEGUY.COM — EDITORIAL DESIGN SYSTEM
   Theme: Near-black, warm ivory, stone and oxblood
=================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-obsidian: #0B0B0C;
  --bg-deep: #0F0F11;
  --bg-surface: #111113;
  --bg-surface-elevated: #18181B;
  --bg-card: rgba(17, 17, 19, 0.92);

  --gold-300: #F7A3B5;
  --gold-400: #FF697F;
  --gold-500: #C83254;
  --gold-600: #A52343;
  --gold-700: #78172F;

  --emerald-300: #F7A3B5;
  --emerald-400: #FF697F;
  --emerald-500: #C83254;
  --emerald-600: #A52343;

  --text-pure: #FFFFFF;
  --text-cream: #F5F1E9;
  --text-stone: #C9C4BB;
  --text-muted: #AAA6A0;

  --border-gold: rgba(200, 50, 84, 0.3);
  --border-gold-bright: rgba(255, 105, 127, 0.65);
  --border-dark: rgba(255, 255, 255, 0.08);
}

/* Global Reset & Base Typography */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-obsidian);
  color: var(--text-cream);
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

h1, h2, h3, .font-serif {
  font-family: 'Archivo Narrow', 'Arial Narrow', sans-serif;
  letter-spacing: -0.02em;
}

.font-display {
  font-family: 'Archivo Narrow', 'Arial Narrow', sans-serif;
  letter-spacing: -0.03em;
}

/* Luxury Background Layers */
.bg-obsidian-gradient {
  background: radial-gradient(circle at 50% 0%, #0F382A 0%, #061A12 50%, #030C08 100%);
}

.bg-hero-glow {
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.12) 0%, rgba(16, 76, 61, 0.18) 45%, transparent 70%);
}

.bg-surface-glass {
  background: rgba(11, 38, 28, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
}

.bg-surface-glass-subtle {
  background: rgba(7, 28, 20, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-dark);
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #F7E7B4 0%, #D4AF37 50%, #A67C14 100%);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #FFF0C2 0%, #EEDB9A 35%, #D4AF37 70%, #AA7D14 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold-light {
  color: #EEDB9A;
}

/* Luxury Gold & Emerald Glow Borders */
.border-gold-subtle {
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.border-gold-glow {
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.12);
}

.card-luxury {
  background: linear-gradient(180deg, rgba(14, 45, 34, 0.8) 0%, rgba(7, 24, 18, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-luxury:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.75), 0 0 20px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Status Indicator Pulse */
.status-indicator-live {
  position: relative;
}
.status-indicator-live::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 9999px;
  background: var(--emerald-400);
  opacity: 0.5;
  animation: pulse-ring 2.2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Gold Shimmer Button */
.btn-gold {
  background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #A67C14 100%);
  color: #04120C;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px -4px rgba(212, 175, 55, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #FFF2BC 0%, #E3BE48 50%, #BA8D18 100%);
}

.btn-gold:active {
  transform: translateY(0);
  scale: 0.98;
}

.btn-emerald {
  background: linear-gradient(135deg, #104C3D 0%, #0B2B21 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #EEDB9A;
  transition: all 0.25s ease;
}

.btn-emerald:hover {
  background: linear-gradient(135deg, #16614E 0%, #0F382B 100%);
  border-color: rgba(212, 175, 55, 0.6);
  color: #FFF;
  transform: translateY(-2px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: #0B0B0C;
}
::-webkit-scrollbar-thumb {
  background: #34343A;
  border-radius: 4px;
  border: 1px solid rgba(245, 241, 233, 0.12);
}
::-webkit-scrollbar-thumb:hover {
  background: #C83254;
}

/* Clean Custom Form Inputs */
.custom-input {
  background: rgba(7, 28, 20, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #F8F6F0;
  transition: all 0.2s ease;
}
.custom-input:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  background: rgba(11, 38, 28, 0.95);
}
.custom-input::placeholder {
  color: #647B72;
}

/* Range Slider Styling */
input[type="range"] {
  -webkit-appearance: none;
  background: #0E3326;
  height: 6px;
  border-radius: 3px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #D4AF37;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
  border: 2px solid #04120C;
}

/* Tab active state */
.tab-link-active {
  color: #EEDB9A !important;
  background: rgba(212, 175, 55, 0.12);
  border-bottom: 2px solid #D4AF37;
  font-weight: 600;
}

/* Hero Badge Glow */
.hero-pill-badge {
  background: rgba(11, 38, 28, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 20px -4px rgba(0, 0, 0, 0.5);
}

/* Luxury Megamenu Architecture */
.megamenu-group {
  position: static;
}

.megamenu-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.985);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(5, 19, 13, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 1.5rem;
  box-shadow: 0 35px 90px -15px rgba(0, 0, 0, 0.95),
              0 0 60px rgba(212, 175, 55, 0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 50;
}

.megamenu-group:hover .megamenu-panel,
.megamenu-group:focus-within .megamenu-panel,
.megamenu-panel.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.megamenu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.75rem 0.875rem;
  border-radius: 0.875rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.megamenu-item:hover {
  background: rgba(16, 76, 61, 0.35);
  transform: translateX(3px);
}

.megamenu-item:hover .megamenu-icon-wrap {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.15);
  color: #FFF;
}

.megamenu-icon-wrap {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: rgba(11, 38, 28, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EEDB9A;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.nav-item-active {
  color: #EEDB9A !important;
  background-color: rgba(212, 175, 55, 0.12) !important;
  border-color: rgba(212, 175, 55, 0.4) !important;
}

/* ===================================================================
   CHASEGUY EDITORIAL SYSTEM — INK, IVORY & OXBLOOD
=================================================================== */

:root {
  --editorial-ink: #0b0b0c;
  --editorial-ink-soft: #141416;
  --editorial-paper: #f5f1e9;
  --editorial-paper-2: #eee8de;
  --editorial-stone: #b8b3aa;
  --editorial-line: rgba(255, 255, 255, 0.16);
  --editorial-dark-line: rgba(11, 11, 12, 0.18);
  --editorial-oxblood: #c13a54;
  --editorial-oxblood-dark: #9d293f;
  --editorial-display: "Archivo Narrow", "Arial Narrow", sans-serif;
  --editorial-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.chase-body {
  background: var(--editorial-ink);
  color: var(--editorial-paper);
  font-family: var(--editorial-body);
}

.chase-body button,
.chase-body input,
.chase-body select,
.chase-body textarea {
  font-family: var(--editorial-body);
}

.editorial-header {
  height: 72px;
  background: rgba(11, 11, 12, 0.96);
  border-bottom: 1px solid var(--editorial-line);
  color: var(--editorial-paper);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.editorial-header-inner {
  position: relative;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 2rem;
}

.editorial-wordmark {
  justify-self: start;
  color: var(--editorial-paper);
  font-family: var(--editorial-display) !important;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.editorial-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.editorial-nav button {
  position: relative;
  color: #e4e0d9;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
  transition: color 180ms ease;
}

.editorial-nav button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.6rem;
  height: 2px;
  background: var(--editorial-oxblood);
  transition: right 180ms ease;
}

.editorial-nav button:hover,
.editorial-nav button:focus-visible,
.editorial-nav button.active {
  color: white;
}

.editorial-nav button:hover::after,
.editorial-nav button:focus-visible::after,
.editorial-nav button.active::after {
  right: 0;
}

.account-menu-wrap {
  position: relative;
  justify-self: end;
}

.account-menu-trigger {
  width: 220px;
  min-height: 48px;
  padding: 0.45rem 0.65rem;
  display: grid;
  grid-template-columns: 36px 1fr 18px;
  align-items: center;
  gap: 0.65rem;
  color: var(--editorial-paper);
  background: #0e0e10;
  border: 1px solid rgba(245, 241, 233, 0.24);
  border-radius: 10px;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease;
}

.account-menu-trigger:hover,
.account-menu-trigger[aria-expanded="true"] {
  background: #17171a;
  border-color: rgba(245, 241, 233, 0.46);
}

.account-menu-trigger img,
.editorial-mobile-account img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.account-trigger-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.account-trigger-copy strong {
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.1;
}

.account-trigger-copy span {
  color: #ef526e;
  font-size: 0.76rem;
  font-weight: 600;
}

.account-menu-trigger > svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.account-menu-trigger[aria-expanded="true"] > svg {
  transform: rotate(180deg);
}

.account-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  width: 310px;
  padding: 0.75rem;
  border: 1px solid rgba(245, 241, 233, 0.2);
  border-radius: 14px;
  background: #151517;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
}

.account-menu-heading {
  margin: 0 0 0.55rem;
  padding: 0.65rem 0.65rem 0.9rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--editorial-line);
}

.account-menu-heading > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.account-menu-heading strong {
  color: white;
  font-size: 0.94rem;
}

.account-menu-heading span {
  color: var(--editorial-stone);
  font-size: 0.76rem;
}

.account-menu-heading .account-readiness {
  color: var(--editorial-oxblood);
  font-family: var(--editorial-display);
  font-size: 1.55rem;
  font-weight: 700;
}

.account-menu > button {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #ddd9d2;
  border-radius: 8px;
  font-size: 0.85rem;
  text-align: left;
}

.account-menu > button:hover,
.account-menu > button:focus-visible {
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

.account-menu > button span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.account-menu svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.account-menu > button strong {
  color: #f25a74;
  font-size: 0.8rem;
}

.editorial-mobile-trigger,
.editorial-mobile-menu {
  display: none;
}

.chase-home {
  background: var(--editorial-ink);
  color: var(--editorial-paper);
  overflow: hidden;
}

.editorial-hero {
  max-width: 1670px;
  min-height: min(810px, max(650px, calc(100svh - 150px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(560px, 0.98fr);
  border-bottom: 1px solid var(--editorial-line);
}

.editorial-hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 7.5vw, 8rem) clamp(2rem, 5vw, 5rem) 3.5rem 4.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, var(--editorial-ink) 0%, var(--editorial-ink) 84%, rgba(11, 11, 12, 0) 100%);
}

.editorial-hero h1,
.editorial-section-heading h2,
.compatibility-copy h2,
.academy-feature-copy h2,
.intentional-journey-section h2,
.editorial-final-cta h2,
.verification-band h2 {
  margin: 0;
  color: inherit;
  font-family: var(--editorial-display);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.editorial-hero h1 {
  max-width: 720px;
  font-size: clamp(4.35rem, 6.7vw, 7.25rem);
  line-height: 0.88;
}

.editorial-hero-copy > p {
  max-width: 620px;
  margin-top: 2rem;
  color: #c7c2b9;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.55;
}

.editorial-hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.editorial-button {
  min-height: 54px;
  padding: 0 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.editorial-button svg,
.editorial-link-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
}

.editorial-button:hover,
.editorial-button:focus-visible,
.editorial-link-button:hover,
.editorial-link-button:focus-visible {
  transform: translateY(-2px);
}

.editorial-button-primary {
  color: white;
  background: var(--editorial-oxblood);
  border: 1px solid var(--editorial-oxblood);
}

.editorial-button-primary:hover,
.editorial-button-primary:focus-visible {
  background: #d24460;
  border-color: #d24460;
}

.editorial-button-secondary {
  color: var(--editorial-paper);
  background: transparent;
  border: 1px solid rgba(245, 241, 233, 0.65);
}

.editorial-button-secondary:hover,
.editorial-button-secondary:focus-visible {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
}

.editorial-hero-proof {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.editorial-hero-proof span {
  min-height: 36px;
  padding-right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ddd9d1;
  border-right: 1px solid var(--editorial-line);
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
}

.editorial-hero-proof span:last-child {
  padding-right: 0;
  border-right: 0;
}

.editorial-hero-proof svg {
  width: 27px;
  height: 27px;
  padding: 5px;
  color: #ef526e;
  border: 1px solid rgba(245, 241, 233, 0.2);
  border-radius: 50%;
}

.hero-portrait-streams {
  position: relative;
  height: min(810px, max(650px, calc(100svh - 150px)));
  min-height: 650px;
  padding: 0 1.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 5%, black 94%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, black 5%, black 94%, transparent 100%);
}

.portrait-stream {
  min-width: 0;
  overflow: hidden;
}

.portrait-stream:nth-child(2) {
  transform: translateY(-2.4rem);
}

.portrait-stream:nth-child(3) {
  transform: translateY(1.25rem);
}

.portrait-stream-track {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  will-change: transform;
  animation: portrait-stream-up 34s linear infinite;
}

.portrait-stream:nth-child(2) .portrait-stream-track {
  animation-name: portrait-stream-down;
  animation-duration: 41s;
}

.portrait-stream:nth-child(3) .portrait-stream-track {
  animation-duration: 37s;
  animation-delay: -9s;
}

.portrait-stream:hover .portrait-stream-track,
.portrait-stream:focus-within .portrait-stream-track {
  animation-play-state: paused;
}

@keyframes portrait-stream-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes portrait-stream-down {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

.portrait-card {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 233, 0.22);
  border-radius: 14px;
  background: #242426;
  text-align: left;
}

.portrait-card::after,
.featured-profile-card .featured-profile-image::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to top, rgba(5, 5, 6, 0.88), transparent);
  pointer-events: none;
}

.portrait-card img,
.portrait-card .profile-sprite,
.featured-profile-image img,
.featured-profile-image .profile-sprite {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portrait-card:hover img,
.portrait-card:focus-visible img,
.portrait-card:hover .profile-sprite,
.portrait-card:focus-visible .profile-sprite,
.featured-profile-card:hover img,
.featured-profile-card:focus-visible img,
.featured-profile-card:hover .profile-sprite,
.featured-profile-card:focus-visible .profile-sprite {
  transform: scale(1.035);
}

.profile-sprite {
  display: block;
  background-image: url("assets/chaseguy-profile-sprite.png");
  background-repeat: no-repeat;
  background-size: 600% 400%;
  background-position: var(--sprite-x, 0%) var(--sprite-y, 0%);
}

.profile-gallery-image {
  height: 100%;
}

.profile-dossier-image {
  height: 100%;
}

.profile-gallery-media,
.profile-dossier-media {
  aspect-ratio: 1;
}

.portrait-card-copy {
  position: absolute;
  z-index: 2;
  left: 0.8rem;
  right: 0.65rem;
  bottom: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: white;
}

.portrait-card-copy strong {
  display: block;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portrait-card-copy svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  padding: 3px;
  color: var(--editorial-oxblood);
  background: white;
  border-radius: 50%;
  stroke-width: 3;
}

.profile-image-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: var(--editorial-paper);
  background: linear-gradient(145deg, #2e2b2c, #171719);
  font-family: var(--editorial-display);
  font-size: 3rem;
  font-weight: 700;
}

.profile-image-fallback.is-visible {
  display: grid;
}

.verification-band {
  max-width: 1670px;
  min-height: 144px;
  margin: 0 auto;
  padding: 1.75rem 4.25rem;
  display: grid;
  grid-template-columns: minmax(270px, 1.25fr) repeat(3, minmax(170px, 0.9fr)) auto;
  align-items: center;
  gap: 1.75rem;
  border-bottom: 1px solid var(--editorial-line);
}

.verification-band-intro,
.verification-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.verification-band-intro > svg {
  width: 39px;
  height: 39px;
  color: var(--editorial-oxblood);
  stroke-width: 1.7;
}

.verification-band h2 {
  color: white;
  font-size: 1.45rem;
  line-height: 1;
}

.verification-band p,
.verification-item span {
  margin-top: 0.3rem;
  display: block;
  color: var(--editorial-stone);
  font-size: 0.75rem;
  line-height: 1.45;
}

.verification-item {
  padding-left: 1.25rem;
  border-left: 1px solid var(--editorial-line);
}

.verification-item > svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  padding: 7px;
  color: var(--editorial-oxblood);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.verification-item strong {
  display: block;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.verification-band > button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ef526e;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.verification-band > button svg {
  width: 16px;
  height: 16px;
}

.member-discovery-section {
  max-width: 1670px;
  margin: 0 auto;
  padding: 5.5rem 4.25rem 7rem;
}

.editorial-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.editorial-section-heading h2,
.compatibility-copy h2 {
  font-size: clamp(3rem, 4.7vw, 5.4rem);
  line-height: 0.94;
}

.editorial-section-heading p,
.compatibility-copy p,
.academy-feature-copy p,
.editorial-final-cta p {
  max-width: 650px;
  margin-top: 1.1rem;
  color: var(--editorial-stone);
  font-size: 1rem;
  line-height: 1.62;
}

.editorial-link-button {
  min-height: 52px;
  padding: 0 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  color: #ee526f;
  border: 1px solid var(--editorial-oxblood);
  border-radius: 3px;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
}

.member-filter-row {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.member-filter-row button {
  position: relative;
  padding: 0.4rem 0;
  color: #d2cec7;
  font-size: 0.85rem;
  font-weight: 500;
}

.member-filter-row button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--editorial-oxblood);
  transition: right 180ms ease;
}

.member-filter-row button.active,
.member-filter-row button:hover,
.member-filter-row button:focus-visible {
  color: #ef526e;
}

.member-filter-row button.active::after,
.member-filter-row button:hover::after,
.member-filter-row button:focus-visible::after {
  right: 0;
}

.featured-profile-rail {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, minmax(0, 0.95fr));
  gap: 1.5rem;
}

.featured-profile-card {
  min-width: 0;
  color: var(--editorial-paper);
  text-align: left;
}

.featured-profile-image {
  position: relative;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #242426;
}

.featured-profile-card:first-child .featured-profile-image {
  height: auto;
}

.featured-profile-card h3 {
  margin-top: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-family: var(--editorial-body);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.featured-profile-card h3 svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  color: var(--editorial-oxblood);
  border: 1px solid var(--editorial-oxblood);
  border-radius: 50%;
  stroke-width: 2.5;
}

.featured-profile-card p {
  margin-top: 0.35rem;
  overflow: hidden;
  color: var(--editorial-stone);
  font-size: 0.8rem;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.featured-profile-card p:last-child {
  color: #dedad3;
}

.demo-profile-note {
  margin-top: 2rem;
  color: #77736d;
  font-size: 0.72rem;
}

.compatibility-section {
  min-height: 650px;
  padding: 6rem max(4.25rem, calc((100vw - 1534px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(620px, 1.15fr);
  align-items: center;
  gap: 5rem;
  color: var(--editorial-ink);
  background: var(--editorial-paper);
}

.compatibility-copy p {
  color: #4f4c47;
}

.compatibility-copy .editorial-button {
  margin-top: 1.6rem;
}

.compatibility-visual {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 250px;
  align-items: center;
  gap: 2.5rem;
}

.compatibility-rings {
  position: relative;
  width: min(32vw, 430px);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.compatibility-rings span {
  position: absolute;
  width: calc(100% - (var(--ring-index, 0) * 62px));
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--editorial-oxblood) calc(var(--score) * 1%), #e7e0d6 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 0);
}

.compatibility-rings span:nth-child(1) { --ring-index: 0; }
.compatibility-rings span:nth-child(2) { --ring-index: 1; }
.compatibility-rings span:nth-child(3) { --ring-index: 2; }
.compatibility-rings span:nth-child(4) { --ring-index: 3; }

.compatibility-rings svg {
  width: 52px;
  height: 52px;
  color: var(--editorial-oxblood);
  stroke-width: 1.5;
}

.compatibility-scores {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.compatibility-scores > div {
  position: relative;
  padding-bottom: 1.1rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--editorial-dark-line);
}

.compatibility-scores span {
  color: #313033;
  font-size: 0.85rem;
  font-weight: 600;
}

.compatibility-scores strong {
  color: var(--editorial-oxblood-dark);
  font-family: var(--editorial-display);
  font-size: 2.1rem;
  line-height: 0.9;
}

.academy-feature-section {
  max-width: 1670px;
  min-height: 490px;
  margin: 0 auto;
  padding: 3.5rem 4.25rem;
  display: grid;
  grid-template-columns: minmax(400px, 1.3fr) minmax(300px, 0.78fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 4rem;
  background: var(--editorial-ink);
}

.academy-feature-media {
  height: 380px;
  overflow: hidden;
  border-radius: 8px;
}

.academy-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.academy-feature-copy h2 {
  color: white;
  font-size: clamp(2.75rem, 4vw, 4.75rem);
  line-height: 0.92;
}

.academy-feature-copy .editorial-button {
  margin-top: 1.4rem;
}

.academy-topic-list {
  display: flex;
  flex-direction: column;
}

.academy-topic-list button {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #eeeae3;
  border-bottom: 1px solid rgba(245, 241, 233, 0.38);
  font-size: 0.92rem;
  text-align: left;
}

.academy-topic-list button:hover,
.academy-topic-list button:focus-visible {
  color: #ef526e;
}

.academy-topic-list svg {
  width: 18px;
  height: 18px;
  color: var(--editorial-oxblood);
}

.intentional-journey-section {
  padding: 3.4rem max(4.25rem, calc((100vw - 1534px) / 2));
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) minmax(700px, 1.38fr);
  align-items: center;
  gap: 4rem;
  color: var(--editorial-ink);
  background: var(--editorial-paper);
}

.intentional-journey-section h2 {
  font-size: 3.6rem;
  line-height: 0.95;
}

.intentional-journey-section ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.intentional-journey-section li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: #2b292a;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

.intentional-journey-section li::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 20px;
  left: calc(50% + 25px);
  width: calc(100% - 50px);
  height: 1px;
  background: rgba(11, 11, 12, 0.35);
}

.intentional-journey-section li:last-child::after {
  display: none;
}

.intentional-journey-section li span {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--editorial-oxblood-dark);
  background: var(--editorial-paper);
  border: 1px solid var(--editorial-oxblood);
  border-radius: 50%;
  font-family: var(--editorial-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.editorial-final-cta {
  padding: 4.5rem max(4.25rem, calc((100vw - 1534px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  border-top: 1px solid var(--editorial-line);
  border-bottom: 1px solid var(--editorial-line);
}

.editorial-final-cta h2 {
  color: white;
  font-size: clamp(3rem, 4vw, 4.6rem);
  line-height: 0.94;
}

.editorial-final-cta > div:last-child {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.editorial-text-link {
  color: var(--editorial-paper);
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 500;
}

.editorial-text-link:hover,
.editorial-text-link:focus-visible {
  color: #ef526e;
}

.chase-body :focus-visible {
  outline: 2px solid #ff6c85;
  outline-offset: 3px;
}

.chase-body > footer {
  background: var(--editorial-ink) !important;
  border-color: var(--editorial-line) !important;
}

@media (max-width: 1180px) {
  .editorial-header-inner {
    padding-inline: 1.5rem;
    grid-template-columns: auto 1fr auto;
  }

  .editorial-nav {
    gap: 1.5rem;
  }

  .account-menu-trigger {
    width: 190px;
  }

  .editorial-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  }

  .editorial-hero-copy {
    padding-left: 2rem;
  }

  .editorial-hero h1 {
    font-size: clamp(4rem, 7vw, 5.5rem);
  }

  .editorial-hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .editorial-hero-proof span {
    min-height: 28px;
    padding-right: 0;
    border-right: 0;
  }

  .verification-band {
    padding-inline: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .verification-band-intro {
    grid-column: span 2;
  }

  .verification-band > button {
    justify-self: end;
  }

  .member-discovery-section,
  .academy-feature-section {
    padding-inline: 2rem;
  }

  .compatibility-section {
    padding-inline: 2rem;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
  }

  .compatibility-visual {
    grid-template-columns: 1fr 210px;
    gap: 1rem;
  }

  .academy-feature-section {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .academy-topic-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }
}

@media (max-width: 900px) {
  .editorial-header-inner {
    display: flex;
    justify-content: space-between;
  }

  .editorial-nav,
  .account-menu-wrap {
    display: none;
  }

  .editorial-mobile-trigger {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: white;
    border: 1px solid var(--editorial-line);
    border-radius: 8px;
  }

  .editorial-mobile-trigger svg {
    width: 20px;
    height: 20px;
  }

  .editorial-mobile-menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: #111113;
    border-bottom: 1px solid var(--editorial-line);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  }

  .editorial-mobile-menu:not(.hidden) {
    display: block;
  }

  .editorial-mobile-account {
    margin-bottom: 0.75rem;
    padding: 0.85rem 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--editorial-line);
  }

  .editorial-mobile-account > div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .editorial-mobile-account strong {
    font-size: 0.9rem;
  }

  .editorial-mobile-account span {
    color: #ef526e;
    font-size: 0.75rem;
  }

  .editorial-mobile-menu > button {
    width: 100%;
    min-height: 48px;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--editorial-paper);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    text-align: left;
  }

  .editorial-mobile-menu svg {
    width: 18px;
    height: 18px;
  }

  .editorial-mobile-actions {
    padding-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .editorial-mobile-actions button {
    min-height: 44px;
    color: white;
    background: var(--editorial-oxblood);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .editorial-hero {
    min-height: auto;
    display: block;
  }

  .editorial-hero-copy {
    min-height: 620px;
    padding: 5rem 2rem 3rem;
    background: var(--editorial-ink);
  }

  .hero-portrait-streams {
    height: 390px;
    min-height: 0;
    padding: 0 1.5rem 2rem;
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
    scroll-snap-type: x mandatory;
  }

  .portrait-stream,
  .portrait-stream:nth-child(2),
  .portrait-stream:nth-child(3) {
    min-width: 72vw;
    transform: none;
    overflow: visible;
  }

  .portrait-stream:nth-child(n + 2) {
    display: none;
  }

  .portrait-stream-track {
    padding-right: 0.85rem;
    flex-direction: row;
    animation: none;
  }

  .portrait-card {
    width: min(70vw, 290px);
    height: 355px;
    scroll-snap-align: start;
  }

  .verification-band {
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .verification-band-intro {
    grid-column: 1 / -1;
  }

  .verification-item {
    padding-left: 0;
    border-left: 0;
  }

  .verification-band > button {
    justify-self: start;
  }

  .featured-profile-rail {
    padding-bottom: 0.75rem;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .featured-profile-card {
    width: min(74vw, 340px);
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .featured-profile-image,
  .featured-profile-card:first-child .featured-profile-image {
    height: auto;
  }

  .compatibility-section {
    padding: 5rem 2rem;
    grid-template-columns: 1fr;
  }

  .compatibility-visual {
    grid-template-columns: 1fr 240px;
  }

  .compatibility-rings {
    width: min(54vw, 390px);
  }

  .academy-feature-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .academy-topic-list {
    display: block;
  }

  .intentional-journey-section {
    padding: 4.5rem 2rem;
    grid-template-columns: 1fr;
  }

  .editorial-final-cta {
    padding: 4rem 2rem;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .editorial-header {
    height: 64px;
  }

  .editorial-header-inner {
    padding-inline: 1rem;
  }

  .editorial-wordmark {
    font-size: 1.75rem;
  }

  .editorial-mobile-menu {
    top: 64px;
  }

  .editorial-hero-copy {
    min-height: auto;
    padding: 4rem 1.25rem 2.5rem;
  }

  .editorial-hero h1 {
    font-size: clamp(3.25rem, 14vw, 4rem);
    line-height: 0.9;
  }

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

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

  .editorial-button {
    width: 100%;
    justify-content: space-between;
  }

  .editorial-hero-proof {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
  }

  .verification-band {
    padding: 2.5rem 1.25rem;
    grid-template-columns: 1fr;
  }

  .verification-band-intro,
  .verification-band > button {
    grid-column: auto;
  }

  .verification-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--editorial-line);
  }

  .member-discovery-section,
  .academy-feature-section {
    padding: 4.5rem 1.25rem;
  }

  .editorial-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .editorial-section-heading h2,
  .compatibility-copy h2 {
    font-size: 3.6rem;
  }

  .member-filter-row {
    gap: 1.25rem;
  }

  .compatibility-section {
    padding: 4.5rem 1.25rem;
  }

  .compatibility-visual {
    grid-template-columns: 1fr;
  }

  .compatibility-rings {
    width: min(88vw, 370px);
  }

  .academy-feature-media {
    height: 280px;
  }

  .academy-feature-copy h2,
  .editorial-final-cta h2 {
    font-size: 3.45rem;
  }

  .intentional-journey-section {
    padding: 4rem 1.25rem;
  }

  .intentional-journey-section ol {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .intentional-journey-section li {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .intentional-journey-section li::after {
    top: 45px;
    left: 20px;
    width: 1px;
    height: 17px;
  }

  .editorial-final-cta {
    padding: 4rem 1.25rem;
  }

  .editorial-final-cta > div:last-child {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .portrait-stream-track {
    animation: none !important;
    transform: none !important;
  }
}

/* ==============================================================
   Editorial product system — shared by every non-home view
   ============================================================== */

.featured-profile-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.05 / 1;
}

.featured-profile-card:first-child .featured-profile-image {
  aspect-ratio: 1.62 / 1;
}

.editorial-section-heading h2 {
  font-size: clamp(3rem, 3.5vw, 4.2rem);
}

.profile-gallery-image,
.profile-dossier-image,
.directory-profile-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) {
  width: 100%;
  max-width: 1536px !important;
  min-height: 70vh;
  padding: clamp(4rem, 6vw, 6.5rem) 4rem 7rem !important;
  color: var(--editorial-paper);
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy),
.chase-body .page-view:not(#view-home):not(#view-home-legacy) button,
.chase-body .page-view:not(#view-home):not(#view-home-legacy) input,
.chase-body .page-view:not(#view-home):not(#view-home-legacy) select,
.chase-body .page-view:not(#view-home):not(#view-home-legacy) textarea,
.chase-body .page-view:not(#view-home):not(#view-home-legacy) table {
  font-family: var(--editorial-body) !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) :is(h1, h2, h3, h4, .font-serif),
.chase-body :is(#guy-dossier-modal, #lesson-modal, #family-meeting-modal, #moderate-living-modal) :is(h1, h2, h3, h4, .font-serif) {
  font-family: var(--editorial-display) !important;
  letter-spacing: -0.035em !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) h1 {
  max-width: 1050px;
  color: var(--editorial-paper) !important;
  font-size: clamp(3.4rem, 4.1vw, 4.9rem) !important;
  font-weight: 700 !important;
  line-height: 0.9 !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) h2 {
  color: var(--editorial-paper) !important;
  font-size: clamp(2.2rem, 3.2vw, 3.8rem) !important;
  line-height: 0.96 !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) h3 {
  color: var(--editorial-paper) !important;
  font-size: clamp(1.35rem, 1.75vw, 2rem) !important;
  line-height: 1 !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) > .text-center:first-child,
.chase-body .page-view:not(#view-home):not(#view-home-legacy) > .flex:first-child {
  max-width: none !important;
  margin-inline: 0 !important;
  padding-bottom: 2rem !important;
  align-items: flex-end;
  text-align: left !important;
  border-bottom: 1px solid var(--editorial-line) !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) > .text-center:first-child > span:first-child,
.chase-body .page-view:not(#view-home):not(#view-home-legacy) > .flex:first-child > div:first-child > span:first-child {
  display: none !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) p,
.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="text-[#A4B8B0]"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="text-[#CBD5D0]"] {
  color: #aaa6a0 !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="text-[#D4AF37]"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="text-[#EEDB9A]"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) .text-gold-gradient,
.chase-body :is(#guy-dossier-modal, #lesson-modal, #family-meeting-modal, #moderate-living-modal) [class*="text-[#D4AF37]"],
.chase-body :is(#guy-dossier-modal, #lesson-modal, #family-meeting-modal, #moderate-living-modal) [class*="text-[#EEDB9A]"] {
  color: #e14965 !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

.chase-body .card-luxury,
.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="bg-[#04120C]"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="bg-[#071C14]"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="bg-[#0B261C]"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="bg-[#104C3D]"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="bg-[#113327]"] {
  background: #111113 !important;
  background-image: none !important;
  border-color: var(--editorial-line) !important;
  box-shadow: none !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="bg-[#D4AF37]"],
.chase-body :is(#guy-dossier-modal, #lesson-modal, #family-meeting-modal, #moderate-living-modal) [class*="bg-[#D4AF37]"] {
  background: #c13a54 !important;
  background-image: none !important;
}

.chase-body .card-luxury:hover {
  border-color: rgba(245, 241, 233, 0.3) !important;
  box-shadow: none !important;
  transform: none !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="border-[#D4AF37]"],
.chase-body :is(#guy-dossier-modal, #lesson-modal, #family-meeting-modal, #moderate-living-modal) [class*="border-[#D4AF37]"] {
  border-color: rgba(225, 73, 101, 0.55) !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="border-[#04120C]"],
.chase-body :is(#guy-dossier-modal, #lesson-modal, #family-meeting-modal, #moderate-living-modal) [class*="border-[#04120C]"] {
  border-color: #111113 !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="text-emerald-"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="text-green-"],
.chase-body :is(#guy-dossier-modal, #lesson-modal, #family-meeting-modal, #moderate-living-modal) [class*="text-emerald-"] {
  color: #e14965 !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="bg-emerald-"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="bg-green-"],
.chase-body :is(#guy-dossier-modal, #lesson-modal, #family-meeting-modal, #moderate-living-modal) [class*="bg-emerald-"] {
  background-color: rgba(193, 58, 84, 0.14) !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="border-emerald-"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="border-green-"],
.chase-body :is(#guy-dossier-modal, #lesson-modal, #family-meeting-modal, #moderate-living-modal) [class*="border-emerald-"] {
  border-color: rgba(225, 73, 101, 0.45) !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) .status-indicator-live {
  background: #e14965 !important;
  box-shadow: 0 0 0 0 rgba(225, 73, 101, 0.45) !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) :is(.rounded-3xl, .rounded-2xl, .rounded-xl),
.chase-body :is(#guy-dossier-modal, #lesson-modal, #family-meeting-modal, #moderate-living-modal) :is(.rounded-3xl, .rounded-2xl, .rounded-xl) {
  border-radius: 6px !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) :is(.btn-gold, .btn-emerald),
.chase-body :is(#guy-dossier-modal, #lesson-modal, #family-meeting-modal, #moderate-living-modal) :is(.btn-gold, .btn-emerald) {
  min-height: 48px;
  padding-inline: 1.4rem;
  color: white !important;
  background: var(--editorial-oxblood) !important;
  background-image: none !important;
  border: 1px solid var(--editorial-oxblood) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) :is(.btn-gold, .btn-emerald):hover,
.chase-body :is(#guy-dossier-modal, #lesson-modal, #family-meeting-modal, #moderate-living-modal) :is(.btn-gold, .btn-emerald):hover {
  color: white !important;
  background: var(--editorial-oxblood-dark) !important;
  transform: translateY(-1px) !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) .custom-input {
  min-height: 48px;
  color: var(--editorial-paper) !important;
  background: var(--editorial-ink) !important;
  border: 1px solid rgba(245, 241, 233, 0.25) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) .custom-input:focus {
  border-color: var(--editorial-oxblood) !important;
  box-shadow: 0 0 0 3px rgba(193, 58, 84, 0.18) !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) input[type="checkbox"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) input[type="radio"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) input[type="range"] {
  accent-color: var(--editorial-oxblood) !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="bg-gradient-to"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="from-[#"],
.chase-body .page-view:not(#view-home):not(#view-home-legacy) [class*="via-[#"] {
  background-image: none !important;
}

#view-guys {
  max-width: 1600px !important;
  padding-inline: 2rem !important;
}

#view-guys > div:first-child h1 {
  font-size: clamp(3.7rem, 4.4vw, 5.1rem) !important;
}

#view-guys > div:first-child > div:last-child {
  align-items: stretch;
}

#guys-count-badge {
  display: inline-flex;
  align-items: center;
  color: var(--editorial-paper) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#view-guys > .card-luxury {
  padding: 1rem !important;
  border-radius: 6px !important;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(180px, 1fr));
}

#view-guys > .card-luxury label {
  color: #c8c4be !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.08em !important;
}

#guys-grid-container {
  gap: 1.75rem !important;
}

.directory-profile-card {
  min-width: 0;
}

.directory-profile-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #202023;
  border: 1px solid rgba(245, 241, 233, 0.24);
  border-radius: 7px;
}

.directory-profile-shade {
  position: absolute;
  inset: 28% 0 0;
  background: linear-gradient(to top, rgba(6, 6, 7, 0.98), rgba(6, 6, 7, 0.62) 52%, transparent);
  pointer-events: none;
}

.directory-profile-status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.directory-profile-status span,
.directory-profile-status strong {
  min-height: 30px;
  padding: 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--editorial-paper);
  background: rgba(11, 11, 12, 0.82);
  border: 1px solid rgba(245, 241, 233, 0.3);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.directory-profile-status svg {
  width: 14px;
  height: 14px;
  color: #e14965;
}

.directory-profile-copy {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.15rem;
  z-index: 1;
}

.directory-profile-copy h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: white;
  font-family: var(--editorial-body) !important;
  font-size: clamp(1.25rem, 1.7vw, 1.8rem) !important;
  font-weight: 500;
  letter-spacing: -0.035em !important;
}

.directory-profile-copy h3 svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  color: #e14965;
  border: 1px solid #e14965;
  border-radius: 50%;
}

.directory-profile-copy p {
  margin-top: 0.35rem;
  overflow: hidden;
  color: #d2cec7 !important;
  font-size: 0.77rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.directory-profile-actions {
  margin-top: 0.95rem;
  display: flex;
  gap: 0.6rem;
}

.directory-profile-actions button {
  min-height: 38px;
  padding: 0 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: white;
  background: rgba(11, 11, 12, 0.72);
  border: 1px solid rgba(245, 241, 233, 0.42);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
}

.directory-profile-actions button:first-child {
  border-color: var(--editorial-oxblood);
}

.directory-profile-actions button:hover,
.directory-profile-actions button:focus-visible {
  background: var(--editorial-oxblood);
  border-color: var(--editorial-oxblood);
}

.directory-profile-actions svg {
  width: 15px;
  height: 15px;
}

#view-dashboard > .card-luxury:first-child,
#view-tokens > .bg-gradient-to-br:first-child {
  padding-inline: 0 !important;
  background: transparent !important;
  border-width: 0 0 1px !important;
  border-radius: 0 !important;
}

#view-dashboard > .card-luxury:first-child img {
  border-color: var(--editorial-oxblood) !important;
  border-radius: 50% !important;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) table {
  border-collapse: collapse;
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) table thead {
  color: #d9d5ce;
  border-bottom: 1px solid rgba(245, 241, 233, 0.32);
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) table tbody tr {
  border-bottom: 1px solid var(--editorial-line);
}

.chase-body .page-view:not(#view-home):not(#view-home-legacy) table :is(th, td) {
  padding-block: 1rem !important;
}

.editorial-footer {
  padding: 5.5rem max(4.25rem, calc((100vw - 1536px) / 2)) 2.5rem;
  color: #aaa6a0;
  background: var(--editorial-ink);
  border-top: 1px solid var(--editorial-line);
}

.editorial-footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(2rem, 5vw, 6rem);
}

.editorial-footer-wordmark {
  color: var(--editorial-paper);
  font-family: var(--editorial-display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.editorial-footer-brand p {
  max-width: 430px;
  margin-top: 1rem;
  color: #aaa6a0;
  font-size: 0.86rem;
  line-height: 1.65;
}

.editorial-footer-brand a {
  margin-top: 1.4rem;
  display: inline-flex;
  color: #e14965;
  font-size: 0.82rem;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.editorial-footer nav h2 {
  margin-bottom: 1rem;
  color: var(--editorial-paper);
  font-family: var(--editorial-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.editorial-footer nav button {
  padding: 0.35rem 0;
  display: block;
  color: #aaa6a0;
  font-size: 0.8rem;
  text-align: left;
}

.editorial-footer nav button:hover,
.editorial-footer nav button:focus-visible {
  color: #e14965;
}

.editorial-footer-bottom {
  margin-top: 4.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: #77736d;
  border-top: 1px solid var(--editorial-line);
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .chase-body .page-view:not(#view-home):not(#view-home-legacy) {
    padding: 4rem 2rem 6rem !important;
  }

  .chase-body .page-view:not(#view-home):not(#view-home-legacy) h1 {
    font-size: clamp(3.5rem, 10vw, 5rem) !important;
  }

  #view-guys > .card-luxury {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-footer {
    padding-inline: 2rem;
  }

  .editorial-footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .chase-body .page-view:not(#view-home):not(#view-home-legacy) {
    padding: 3.5rem 1.25rem 5rem !important;
  }

  .chase-body .page-view:not(#view-home):not(#view-home-legacy) h1 {
    font-size: clamp(3.2rem, 15vw, 4.25rem) !important;
  }

  .chase-body .page-view:not(#view-home):not(#view-home-legacy) > .text-center:first-child,
  .chase-body .page-view:not(#view-home):not(#view-home-legacy) > .flex:first-child {
    align-items: flex-start;
  }

  #view-guys > .card-luxury {
    padding: 0 !important;
    grid-template-columns: 1fr;
    background: transparent !important;
    border: 0 !important;
  }

  #guys-grid-container {
    grid-template-columns: 1fr !important;
  }

  .directory-profile-media {
    aspect-ratio: 4 / 5;
  }

  .directory-profile-actions {
    flex-direction: column;
  }

  .directory-profile-actions button {
    width: 100%;
  }

  .editorial-footer {
    padding: 4rem 1.25rem 2rem;
  }

  .editorial-footer-main {
    grid-template-columns: 1fr;
  }

  .editorial-footer-brand {
    grid-column: auto;
  }

  .editorial-footer-bottom {
    margin-top: 3rem;
    flex-direction: column;
  }
}

/* ===================================================================
   CHASE ACADEMY — GUIDED LEARNING JOURNEY
=================================================================== */

.chase-body #view-academy.academy-journey-view {
  max-width: 1600px !important;
  margin: 0 auto;
  padding: clamp(2.25rem, 3.2vw, 3.25rem) clamp(1.5rem, 3.8vw, 4rem) 5rem !important;
  gap: clamp(1.8rem, 2.5vw, 2.6rem);
}

.chase-body #view-academy.academy-journey-view:not(.hidden) {
  display: grid;
}

.chase-body #view-academy.academy-journey-view.hidden {
  display: none;
}

.academy-journey-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  align-items: end;
  gap: 4rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--editorial-line);
}

.chase-body #view-academy .academy-journey-intro h1 {
  font-size: clamp(4rem, 6vw, 6.6rem) !important;
  line-height: 0.82 !important;
}

.academy-journey-intro p {
  max-width: 650px;
  margin-top: 1.15rem;
  color: var(--editorial-stone) !important;
  font-size: 0.95rem;
  line-height: 1.65;
}

.academy-progress {
  padding-bottom: 0.1rem;
}

.academy-progress-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: var(--editorial-paper);
  font-size: 0.88rem;
}

.academy-progress-copy > span:first-child {
  color: var(--editorial-paper);
}

.academy-progress-copy strong {
  color: #e14965;
  font-family: var(--editorial-display);
  font-size: 2.4rem;
  line-height: 1;
}

.academy-progress-copy > span:last-child {
  color: var(--editorial-stone);
  font-size: 0.76rem;
}

.academy-progress-track {
  height: 3px;
  margin-top: 0.8rem;
  overflow: hidden;
  background: #34343a;
}

.academy-progress-track span {
  display: block;
  height: 100%;
  background: var(--editorial-oxblood);
  transition: width 320ms ease;
}

.academy-section-label {
  margin-bottom: 0.75rem;
  color: var(--editorial-stone);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.academy-school-navigation {
  min-width: 0;
}

.academy-school-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  overflow-x: auto;
  border-block: 1px solid var(--editorial-line);
  scrollbar-color: var(--editorial-oxblood) #242427;
  scrollbar-width: thin;
}

.academy-school-tab {
  min-height: 102px;
  padding: 1rem 1.05rem;
  display: grid;
  align-content: center;
  gap: 0.55rem;
  color: var(--editorial-stone);
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--editorial-line);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.academy-school-tab:last-child {
  border-right: 0;
}

.academy-school-tab > span {
  color: #e14965;
  font-family: var(--editorial-display);
  font-size: 1.1rem;
  line-height: 1;
}

.academy-school-tab strong {
  font-size: 0.77rem;
  line-height: 1.28;
}

.academy-school-tab:hover {
  color: var(--editorial-paper);
  background: #161619;
}

.academy-school-tab.is-active {
  color: #fff;
  background: #641d2d;
  box-shadow: inset 4px 0 0 #e14965;
}

.academy-school-tab.is-active > span {
  color: #fff;
}

.academy-focus-shell {
  display: grid;
  grid-template-columns: minmax(235px, 0.62fr) minmax(215px, 0.58fr) minmax(470px, 1.45fr);
  min-width: 0;
  border: 1px solid var(--editorial-line);
}

.academy-school-summary,
.academy-course-list,
.academy-lesson-workspace {
  min-width: 0;
}

.academy-school-summary,
.academy-lesson-workspace {
  padding: clamp(1.35rem, 2vw, 1.8rem);
}

.academy-school-summary,
.academy-course-list {
  border-right: 1px solid var(--editorial-line);
}

.academy-school-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.academy-school-summary svg {
  width: 34px;
  height: 34px;
  color: #e14965;
  stroke-width: 1.5;
}

.academy-school-number {
  margin-bottom: 1.15rem;
  color: #e14965;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chase-body #view-academy .academy-school-summary h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 2.55vw, 3rem) !important;
}

.academy-school-summary p {
  max-width: 290px;
  margin-top: 0.65rem;
  color: var(--editorial-stone) !important;
  font-size: 0.77rem;
  line-height: 1.55;
}

.academy-school-module-count {
  margin-top: auto;
  padding-top: 1.8rem;
  color: var(--editorial-stone);
  font-size: 0.72rem;
}

.academy-course-list {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.academy-course-tab {
  min-height: 61px;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  align-items: center;
  gap: 0.45rem;
  color: var(--editorial-stone);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--editorial-line);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.academy-course-tab:last-child {
  border-bottom: 0;
}

.academy-course-tab:hover {
  color: var(--editorial-paper);
  background: #161619;
}

.academy-course-tab.is-active {
  color: #fff;
  background: #17171a;
  box-shadow: inset 3px 0 0 var(--editorial-oxblood);
}

.academy-course-tab > span {
  color: #e14965;
  font-size: 0.68rem;
}

.academy-course-tab strong {
  overflow-wrap: anywhere;
  font-size: 0.75rem;
  line-height: 1.3;
}

.academy-workspace-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.academy-workspace-heading span {
  color: #e14965;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.chase-body #view-academy .academy-workspace-heading h2 {
  margin-top: 0.3rem;
  font-size: clamp(2.15rem, 2.9vw, 3.5rem) !important;
}

.academy-workspace-heading > strong {
  padding-top: 0.1rem;
  color: var(--editorial-stone);
  font-size: 0.69rem;
  font-weight: 600;
  white-space: nowrap;
}

.academy-course-description {
  max-width: 720px;
  margin: 0.7rem 0 1.2rem;
  color: var(--editorial-stone) !important;
  font-size: 0.78rem;
  line-height: 1.55;
}

.academy-lesson-list {
  border-top: 1px solid var(--editorial-line);
}

.academy-lesson-row {
  width: 100%;
  min-height: 58px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 0.75rem;
  color: var(--editorial-paper);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--editorial-line);
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease, background-color 180ms ease;
}

.academy-lesson-row:hover {
  padding-inline: 0.65rem;
  background: #161619;
}

.academy-lesson-row > span,
.academy-lesson-row small {
  color: var(--editorial-stone);
  font-size: 0.68rem;
}

.academy-lesson-row strong {
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.academy-lesson-row svg {
  width: 15px;
  height: 15px;
  color: #e14965;
}

.academy-continue-button {
  min-height: 48px;
  margin-top: 1.25rem;
  padding: 0 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  color: #fff;
  background: var(--editorial-oxblood);
  border: 1px solid var(--editorial-oxblood);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.academy-continue-button:hover {
  background: var(--editorial-oxblood-dark);
  border-color: var(--editorial-oxblood-dark);
}

.academy-continue-button svg,
.academy-tool-row button svg {
  width: 15px;
  height: 15px;
}

.academy-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--editorial-line);
}

.academy-tool-row {
  min-width: 0;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.academy-tool-row + .academy-tool-row {
  border-left: 1px solid var(--editorial-line);
}

.academy-tool-row span {
  color: #e14965;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.chase-body #view-academy .academy-tool-row h3 {
  margin-top: 0.25rem;
  font-size: clamp(1.45rem, 1.8vw, 2rem) !important;
}

.academy-tool-row p {
  max-width: 400px;
  margin-top: 0.3rem;
  color: var(--editorial-stone) !important;
  font-size: 0.74rem;
  line-height: 1.45;
}

.academy-tool-row button {
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #e14965;
  background: transparent;
  border: 0;
  font-size: 0.73rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.academy-tool-row button:hover {
  color: var(--editorial-paper);
}

.academy-school-tab:focus-visible,
.academy-course-tab:focus-visible,
.academy-lesson-row:focus-visible,
.academy-tool-row button:focus-visible,
.academy-continue-button:focus-visible {
  outline: 2px solid var(--editorial-paper);
  outline-offset: -3px;
}

.academy-empty-state {
  color: var(--editorial-stone) !important;
}

@media (max-width: 1050px) {
  .academy-journey-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .academy-progress {
    max-width: 520px;
  }

  .academy-school-rail {
    grid-template-columns: repeat(7, 170px);
  }

  .academy-focus-shell {
    grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  }

  .academy-course-list {
    grid-column: 1;
    grid-row: 2;
    border-top: 1px solid var(--editorial-line);
  }

  .academy-lesson-workspace {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 700px) {
  .chase-body #view-academy.academy-journey-view {
    padding: 3rem 1.25rem 4.5rem !important;
    gap: 1.8rem;
  }

  .chase-body #view-academy .academy-journey-intro h1 {
    font-size: clamp(3.35rem, 16vw, 4.5rem) !important;
  }

  .academy-school-rail {
    grid-template-columns: repeat(7, 150px);
    margin-inline: -1.25rem;
    padding-left: 1.25rem;
    border-right: 0;
  }

  .academy-school-tab {
    min-height: 90px;
  }

  .academy-focus-shell {
    grid-template-columns: 1fr;
  }

  .academy-school-summary,
  .academy-course-list,
  .academy-lesson-workspace {
    grid-column: 1;
    grid-row: auto;
    border-right: 0;
  }

  .academy-course-list,
  .academy-lesson-workspace {
    border-top: 1px solid var(--editorial-line);
  }

  .academy-school-summary p {
    max-width: 100%;
  }

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

  .academy-tool-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.9rem;
  }

  .academy-tool-row + .academy-tool-row {
    border-top: 1px solid var(--editorial-line);
    border-left: 0;
  }

  .academy-tool-row button {
    width: 100%;
    justify-content: space-between;
  }

  .academy-workspace-heading {
    flex-direction: column;
  }

  .academy-lesson-row {
    grid-template-columns: 1.6rem minmax(0, 1fr) 16px;
  }

  .academy-lesson-row small {
    display: none;
  }

  .academy-continue-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .academy-school-tab,
  .academy-course-tab,
  .academy-lesson-row,
  .academy-continue-button,
  .academy-progress-track span {
    transition: none !important;
  }
}
