/* V2 extra styles — overrides + new components */

/* HERO with full-bleed background video */
.hero-video {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  min-height: 78vh;
  overflow: hidden;
  /* override .hero max-width — video must full-bleed */
  max-width: none !important;
  width: 100%;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
}
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(193,123,75,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(193,123,75,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(120,55,30,0.5) 0%, transparent 70%),
    linear-gradient(180deg, #2a1810 0%, #1a0f0a 60%, #120906 100%);
  animation: hero-fallback-drift 22s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes hero-fallback-drift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 100%, 0 0; transform: scale(1); }
  100% { background-position: 10% 5%, 90% 95%, 55% 95%, 0 0; transform: scale(1.04); }
}
.hero-video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  z-index: 1;
  filter: brightness(0.58) saturate(0.9) contrast(1.02);
}
.hero-video-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,3,2,0.28) 0%, rgba(5,3,2,0.2) 50%, rgba(5,3,2,0.48) 100%),
    linear-gradient(90deg, rgba(5,3,2,0.4) 0%, rgba(5,3,2,0.12) 100%);
  z-index: 2;
}
.hero-video-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 160px 32px 96px;
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.hero-video-content {
  max-width: 720px;
  color: var(--bg);
}
.hero-video-content .hero-eyebrow { color: rgba(244,237,228,0.7); }
.hero-video-content h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(64px, 8vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--bg);
  margin: 24px 0 32px;
}
.hero-video-content h1 em {
  font-style: italic;
  color: var(--accent-soft, #d4a06a);
}
.hero-video-content .hero-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: rgba(244,237,228,0.85);
  margin: 0 0 40px;
  max-width: 600px;
  font-weight: 300;
}
.hero-microcite {
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(244,237,228,0.6);
  text-transform: uppercase;
}

/* nav-on-hero — transparent, light text over video */
.nav.nav-on-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
  border-bottom: 1px solid rgba(244,237,228,0.15);
}
.nav.nav-on-hero .nav-links a { color: rgba(244,237,228,0.85); }
.nav.nav-on-hero .nav-links a:hover { color: var(--bg); }
.nav.nav-on-hero .nav-links a.is-active { color: var(--bg); border-bottom-color: var(--bg); }
.nav.nav-on-hero .brand { color: var(--bg); }
.nav.nav-on-hero .nav-login { color: rgba(244,237,228,0.85); }
.nav.nav-on-hero .nav-login:hover { color: var(--bg); border-bottom-color: var(--bg); }
.nav.nav-on-hero .btn-primary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

/* hero CTA on dark */
.hero-video .btn-primary {
  background: var(--accent, #d97757);
  color: var(--bg);
  border-color: var(--accent, #d97757);
}
.hero-video .btn-primary:hover { filter: brightness(1.08); }

/* dark marquee — for hero bottom strip */
.marquee.marquee-dark {
  background: rgba(26,15,10,0.85);
  border-top: 1px solid rgba(244,237,228,0.15);
  border-bottom: 1px solid rgba(244,237,228,0.15);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.marquee.marquee-dark .marquee-item {
  color: rgba(244,237,228,0.7);
}
.marquee.marquee-dark .marquee-dot {
  background: rgba(244,237,228,0.4);
}

/* TRACKS — 10-up (5 cols × 2 rows on desktop) */
.tracks.tracks-10 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.tracks.tracks-10 .track {
  background: var(--bg);
  padding: 32px 24px 28px;
  text-align: left;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.tracks.tracks-10 .track:hover { background: var(--bg-card); }
.tracks.tracks-10 .track h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.tracks.tracks-10 .track p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.tracks.tracks-10 .track-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}
@media (max-width: 1100px) {
  .tracks.tracks-10 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .tracks.tracks-10 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tracks.tracks-10 { grid-template-columns: 1fr; }
}

/* OUTCOMES INTRO — slightly tighter spacing */
.section-outcomes-intro { padding-top: 96px; padding-bottom: 16px; }

/* OUTCOME SPOTLIGHT — split with video */
.outcome-spotlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1100px) {
  .outcome-spotlight { grid-template-columns: 1fr; }
}

/* VIDEO PLACEHOLDER */
.video-ph {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #2b1810 0%, #1a0f0a 100%);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,237,228,0.85);
}
.video-ph.is-dark { background: linear-gradient(135deg, #1a0f0a 0%, #000 100%); }
.video-ph.is-accent { background: linear-gradient(135deg, #d97757 0%, #a04020 100%); }
.video-ph-grain {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 3px),
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.video-ph-play {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(244,237,228,0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding-left: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.video-ph-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,237,228,0.7);
  z-index: 2;
}
.video-ph-sub {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,237,228,0.5);
  z-index: 2;
}

/* 21st.dev-style motion panels for PDPs while unique R2 videos are pending */
.video-ph-motion {
  background:
    radial-gradient(circle at 18% 12%, rgba(164, 82, 37, 0.22), transparent 34%),
    linear-gradient(145deg, #f8f0e6 0%, #eadcc9 48%, #d8c0a1 100%);
  color: var(--ink);
  border-color: rgba(47, 30, 22, 0.18);
  isolation: isolate;
}
.video-ph-motion::before,
.video-ph-motion::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  pointer-events: none;
}
.video-ph-wave::before {
  inset: 12% -20%;
  background:
    repeating-radial-gradient(ellipse at 50% 50%, transparent 0 18px, rgba(160, 64, 32, 0.2) 19px 21px, transparent 22px 42px);
  transform: rotate(-18deg);
  animation: axoWaveDrift 12s ease-in-out infinite alternate;
}
.video-ph-wave::after {
  inset: auto -10% 14% -10%;
  height: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.52), transparent);
  filter: blur(10px);
  animation: axoWaveSweep 8s ease-in-out infinite;
}
.video-ph-particles .motion-field span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(160, 64, 32, 0.54);
  box-shadow:
    44px 88px 0 rgba(47, 30, 22, 0.22),
    118px 32px 0 rgba(164, 82, 37, 0.28),
    188px 150px 0 rgba(255, 255, 255, 0.58),
    248px 78px 0 rgba(95, 115, 82, 0.22);
  animation: axoParticleFloat 10s ease-in-out infinite;
}
.video-ph-particles .motion-field span:nth-child(1) { top: 12%; left: 18%; animation-delay: -1s; }
.video-ph-particles .motion-field span:nth-child(2) { top: 28%; left: 66%; animation-delay: -3s; transform: scale(1.4); }
.video-ph-particles .motion-field span:nth-child(3) { top: 64%; left: 22%; animation-delay: -5s; transform: scale(0.8); }
.video-ph-particles .motion-field span:nth-child(4) { top: 70%; left: 74%; animation-delay: -7s; transform: scale(1.2); }
.video-ph-particles .motion-field span:nth-child(5) { top: 45%; left: 48%; animation-delay: -9s; transform: scale(0.9); }
.video-ph-particles::before {
  background: radial-gradient(circle, rgba(255,255,255,0.42), transparent 60%);
  filter: blur(4px);
  animation: axoParticlePulse 7s ease-in-out infinite alternate;
}
.motion-field {
  position: absolute;
  inset: 0;
}
@keyframes axoWaveDrift {
  0% { transform: translate3d(-3%, -2%, 0) rotate(-18deg) scale(1); }
  100% { transform: translate3d(3%, 2%, 0) rotate(-12deg) scale(1.08); }
}
@keyframes axoWaveSweep {
  0%, 100% { transform: translateX(-18%) rotate(-8deg); opacity: 0.28; }
  50% { transform: translateX(18%) rotate(8deg); opacity: 0.54; }
}
@keyframes axoParticleFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.42; }
  50% { transform: translate3d(18px, -24px, 0) scale(1.25); opacity: 0.82; }
}
@keyframes axoParticlePulse {
  0% { transform: scale(0.82); opacity: 0.34; }
  100% { transform: scale(1.08); opacity: 0.62; }
}

/* PHILOSOPHY page tweaks for V2 */
.philosophy-video {
  /* lives inside the dark manifesto */
}
.philo-rows {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  border-top: 1px solid rgba(244,237,228,0.2);
  padding-top: 48px;
}
@media (max-width: 1000px) {
  .philo-rows { grid-template-columns: 1fr; }
}

/* good-hands quotes — 3 columns variant for 6 quotes */
.good-hands-quotes.good-hands-quotes-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1100px) {
  .good-hands-quotes.good-hands-quotes-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .good-hands-quotes.good-hands-quotes-3 { grid-template-columns: 1fr; }
}

/* BOOK PAGE — full-page hero treatment */
.book-page-hero {
  background: linear-gradient(180deg, #faf5ec 0%, #ece2d3 100%);
  padding: 120px 32px 96px;
  border-bottom: 1px solid var(--rule);
}
.book-page-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 96px;
  align-items: center;
}
.book-page-cover {
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, #2b1810 0%, #1a0f0a 100%);
  color: var(--bg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 2px;
  box-shadow: 30px 30px 60px rgba(0,0,0,0.25), -2px 0 0 rgba(0,0,0,0.5);
  position: relative;
}
.book-page-cover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(90deg, rgba(0,0,0,0.5), transparent);
}
.book-page-mark {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,237,228,0.5);
}
.book-page-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.book-page-title em {
  font-style: italic;
  color: var(--accent-soft, #d4a06a);
}
.book-page-h {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 24px 0 24px;
  color: var(--ink);
}
.book-page-h em { font-style: italic; color: var(--accent, #a04020); }
@media (max-width: 1000px) {
  .book-page-inner { grid-template-columns: 1fr; gap: 48px; }
  .book-page-cover { max-width: 380px; margin: 0 auto; }
}

/* chapters grid — 5 cols variant for 10 chapters */
.chapters-grid.chapters-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1300px) {
  .chapters-grid.chapters-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .chapters-grid.chapters-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .chapters-grid.chapters-grid-5 { grid-template-columns: 1fr; }
}

/* book-author block */
.book-author {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1000px) {
  .book-author { grid-template-columns: 1fr; }
}

/* Footer links grid for 10 categories */
.footer-links.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}

/* Hide V1-only sections that don't apply to V2 */
.book-section { display: none !important; }

/* ──────── PHILOSOPHY EXPANDED SECTIONS ──────── */
.philo-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.philo-block-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-philo-light {
  background: var(--bg-card);
  padding: 120px 0;
}
.section-philo-quote {
  background: var(--bg);
  padding: 120px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.philo-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.philo-pillar {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 36px 28px;
}
.philo-pillar-num {
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.philo-pillar-h {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ink);
}
.philo-pillar p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(26,15,10,0.7);
  margin: 0;
}

.philo-tenets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  margin-top: 64px;
}
.philo-tenet h3 {
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.2;
}
.philo-tenet h3::before {
  content: '— ';
  color: var(--accent);
}
.philo-tenet p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(26,15,10,0.72);
  margin: 0;
}

.philo-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.philo-col {
  background: rgba(244,237,228,0.04);
  border: 1px solid rgba(244,237,228,0.12);
  padding: 36px 32px;
}
.philo-col-us {
  background: rgba(193,123,75,0.08);
  border-color: rgba(193,123,75,0.3);
}
.philo-col-h {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(244,237,228,0.5);
  margin-bottom: 24px;
}
.philo-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.philo-col li {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244,237,228,0.85);
  padding-left: 20px;
  position: relative;
}
.philo-col li::before {
  content: '·';
  position: absolute;
  left: 6px;
  top: -2px;
  color: var(--accent-soft);
  font-size: 24px;
  line-height: 1;
}

/* Philosophy — long view (Section 7) */
.philo-longview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  margin-top: 56px;
  max-width: 1100px;
}
.philo-longview-item {
  border-top: 1px solid rgba(244,237,228,0.18);
  padding-top: 24px;
}
.philo-longview-num {
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.philo-longview-item p {
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .philo-pillars { grid-template-columns: 1fr; gap: 16px; }
  .philo-tenets { grid-template-columns: 1fr; gap: 36px; }
  .philo-compare { grid-template-columns: 1fr; gap: 24px; }
  .philo-longview { grid-template-columns: 1fr; gap: 28px; }
  .section-philo-light, .section-philo-quote { padding: 72px 0; }
}
.hero-trust-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  margin-top: 72px;
  padding-top: 14px;
}
.hero-trust-strip .marquee {
  background: rgba(20, 12, 8, 0.55);
  backdrop-filter: blur(8px);
  border: none;
  border-top: 1px solid rgba(244,237,228,0.08);
  border-bottom: 1px solid rgba(244,237,228,0.08);
}
@media (max-width: 920px) {
  .hero-trust-strip { margin-top: 60px; padding-top: 10px; }
}

/* Nav login link */
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-login {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.nav-login:hover { border-bottom-color: var(--ink); }
.nav-dark .nav-login { color: var(--bg); }
.nav-dark .nav-login:hover { border-bottom-color: var(--bg); }
.nav-sheet-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.nav-sheet-actions .btn {
  width: 100%;
  justify-content: center;
}

/* ──────── LOGIN PAGE ──────── */
.login-shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 100vh;
  background: var(--bg);
}
.login-dark {
  background: var(--ink);
  color: var(--bg);
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.login-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(193,123,75,0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(193,123,75,0.08), transparent 50%);
  pointer-events: none;
}
.login-dark-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}
.login-brand {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.login-quote {
  max-width: 460px;
}
.login-quote p {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-style: italic;
  margin: 0 0 20px;
  color: var(--bg);
}
.login-quote span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,237,228,0.55);
}
.login-trust {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,237,228,0.45);
}

.login-light {
  padding: 32px 56px 48px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.login-light-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto;
}
.login-back {
  font-size: 14px;
  cursor: pointer;
  color: var(--ink);
  opacity: 0.6;
  transition: opacity 0.15s ease;
}
.login-back:hover { opacity: 1; }
.login-microbrand {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26,15,10,0.5);
}

.login-card {
  max-width: 440px;
  width: 100%;
  margin: auto 0;
  align-self: center;
}
.login-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.login-h1 {
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}
.login-h1 em {
  font-style: italic;
  color: var(--accent);
}
.login-sub {
  color: rgba(26,15,10,0.7);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 32px;
}

.login-form { display: flex; flex-direction: column; gap: 20px; }
.login-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.login-field span.mono {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(26,15,10,0.55);
}
.login-pwd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-forgot {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  cursor: pointer;
  text-transform: none;
}
.login-forgot:hover { text-decoration: underline; }
.login-field input {
  background: var(--bg);
  border: 1px solid rgba(26,15,10,0.18);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.login-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193,123,75,0.15);
}
.login-pwd-wrap { position: relative; }
.login-pwd-wrap input { width: 100%; padding-right: 64px; box-sizing: border-box; }
.login-pwd-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(26,15,10,0.55);
  cursor: pointer;
  padding: 4px 8px;
}
.login-pwd-toggle:hover { color: var(--accent); }
.login-err {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #b54b3a;
  background: rgba(181,75,58,0.08);
  border-left: 2px solid #b54b3a;
  padding: 10px 14px;
  margin-top: 4px;
}
.login-cta { width: 100%; margin-top: 4px; justify-content: center; }
.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
  color: rgba(26,15,10,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-family: var(--mono);
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26,15,10,0.15);
}
.login-foot {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(26,15,10,0.6);
}
.login-foot a {
  color: var(--accent);
  cursor: pointer;
  font-weight: 500;
}
.login-foot a:hover { text-decoration: underline; }

.login-legal {
  margin-top: auto;
  padding-top: 32px;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(26,15,10,0.4);
  line-height: 1.6;
}
.login-legal a { color: rgba(26,15,10,0.6); cursor: pointer; }

@media (max-width: 900px) {
  .login-shell { grid-template-columns: 1fr; }
  .login-dark { padding: 40px 32px; min-height: 280px; }
  .login-dark-inner { gap: 32px; }
  .login-quote p { font-size: 22px; }
  .login-light { padding: 32px; }
  .login-h1 { font-size: 36px; }
}

/* TRUST BANNER — full-width strip below hero */
.trust-banner {
  position: relative;
  z-index: 4;
  background: var(--bg-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0;
  width: 100%;
}
.trust-banner .marquee {
  background: transparent;
  border: none;
  color: var(--ink-soft);
}
.trust-banner .marquee-track { padding: 18px 0; }
.trust-banner .marquee-item {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.trust-banner .marquee-dot {
  background: var(--accent);
  opacity: 0.6;
}

/* Live video swapped in for a placeholder — fills the box cleanly */
.video-ph.video-ph-live {
  background: #1a0f0a;
  border: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
}
.video-ph.video-ph-live video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
