/* ============================================
   LOST TALENT — PAGE STYLES
   ============================================ */

/* ===== NAV OVERRIDE (always scrolled on dark-hero page) ===== */
.lt-page .nav {
  background: rgba(250, 250, 249, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  padding: 1rem 0 !important;
  box-shadow: 0 1px 0 var(--color-border) !important;
}

.lt-page .nav .nav__links a {
  color: var(--color-text-muted) !important;
}

.lt-page .nav .nav__links a:hover {
  color: var(--color-text) !important;
}

.lt-page .nav .nav__toggle span {
  background: var(--color-text) !important;
}

.lt-page #nav .nav__links a.nav__cta:hover {
  background: var(--color-text) !important;
  color: var(--color-text-light) !important;
  border-color: var(--color-text) !important;
}

/* ===== HERO ===== */
.lt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 5rem;
}

.lt-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a0505 45%, #2a0808 70%, #0c0c0c 100%);
  z-index: 0;
}

.lt-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
}

.lt-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.lt-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: 1.25rem;
}

.lt-label--light {
  color: #f87171;
}

.lt-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 1rem;
}

.lt-hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #dc2626;
  letter-spacing: -0.02em;
}

.lt-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.lt-hero__author {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
}

.lt-hero__cta {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
}

.lt-hero__cta:hover {
  background: #b91c1c !important;
  border-color: #b91c1c !important;
}

.lt-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.lt-hero__scroll span {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ===== WATERMARK ===== */
.lt-hero__watermark {
  position: absolute;
  bottom: -0.1em;
  left: -0.02em;
  font-size: 32vw;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.045);
  letter-spacing: -0.04em;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ===== HERO DETAILS ===== */
.lt-hero__details {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.lt-hero__detail-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.3rem;
}

.lt-hero__detail-value {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

.lt-hero__detail-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ===== BOOK COVER ===== */
.lt-hero__book-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 3rem;
  position: relative;
}

.lt-hero__book-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  background: radial-gradient(ellipse at center,
    rgba(220, 38, 38, 0.5) 0%,
    rgba(180, 83, 9, 0.2) 45%,
    transparent 70%
  );
  filter: blur(50px);
  pointer-events: none;
}

@keyframes lt-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

.lt-hero__book-img {
  position: relative;
  width: 100%;
  max-width: 340px;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  animation: lt-float 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7));
}

/* ===== MARQUEE ===== */
.lt-marquee {
  background: #dc2626;
  overflow: hidden;
  padding: 0.8rem 0;
  position: relative;
  z-index: 2;
}

.lt-marquee__track {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  width: max-content;
  animation: lt-marquee-scroll 25s linear infinite;
}

.lt-marquee__item {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.lt-marquee__sep {
  font-size: 0.4rem;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

@keyframes lt-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== WHAT'S INSIDE ===== */
.lt-themes {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.lt-themes__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.lt-themes__intro {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  padding-bottom: 0.5rem;
}

.lt-themes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--color-border);
}

.lt-theme-card {
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-right: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.lt-theme-card:last-child {
  border-right: none;
}

.lt-theme-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #dc2626;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lt-theme-card:hover::after {
  transform: scaleX(1);
}

.lt-theme-card:hover {
  background: #fef2f2;
}

.lt-theme-card__num {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.05);
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.lt-theme-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.lt-theme-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 968px) {
  .lt-themes__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .lt-themes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lt-theme-card:nth-child(2) {
    border-right: none;
  }
  .lt-theme-card:nth-child(1),
  .lt-theme-card:nth-child(2) {
    border-bottom: 1px solid var(--color-border);
  }
}

@media (max-width: 600px) {
  .lt-themes__grid {
    grid-template-columns: 1fr;
  }
  .lt-theme-card {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .lt-theme-card:last-child {
    border-bottom: none;
  }
  .lt-hero__details {
    flex-wrap: wrap;
  }
}

/* ===== ABOUT SECTION ===== */
.lt-about {
  border-bottom: 1px solid var(--color-border);
}

.lt-about__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.lt-intro {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--color-text) !important;
  margin-bottom: 1.5rem !important;
}

.lt-about__copy p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.lt-about__copy p:last-child {
  margin-bottom: 0;
}

.lt-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.lt-callout {
  border-left: 3px solid #dc2626;
  padding: 1rem 1.25rem;
  background: #fef2f2;
}

.lt-callout__role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: 0.35rem;
}

.lt-callout__text {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-text);
  font-style: italic;
}

.lt-closing {
  font-size: 1.0625rem !important;
}

.lt-closing strong {
  color: var(--color-text);
  font-weight: 700;
}

/* ===== QUOTE BANNER ===== */
.lt-quote-banner {
  background: #0c0c0c;
  padding: clamp(4rem, 9vw, 7rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lt-quote-banner::before {
  content: '\201C';
  position: absolute;
  top: -0.2em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 22rem;
  line-height: 1;
  color: rgba(220, 38, 38, 0.07);
  pointer-events: none;
  user-select: none;
}

.lt-quote-banner blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-style: italic;
  line-height: 1.25;
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
  letter-spacing: -0.02em;
}

.lt-quote-banner blockquote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dc2626;
}

/* ===== AUTHOR ===== */
.lt-author {
  border-bottom: 1px solid var(--color-border);
}

.lt-author__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.lt-author__photo-wrap {
  position: relative;
}

.lt-author__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.lt-author__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(10%);
  transition: filter 0.5s;
}

.lt-author__photo-wrap:hover .lt-author__photo img {
  filter: grayscale(0%);
}

/* red accent corner */
.lt-author__photo::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 80px;
  background: #dc2626;
}

.lt-author__name {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 0.25rem;
}

.lt-author__title {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: 1.75rem;
}

.lt-author__bio p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.lt-author__bio p:last-of-type {
  margin-bottom: 1.75rem;
}

.lt-author__link {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.3s;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

.lt-author__link:hover {
  color: #dc2626;
}

/* ===== EMAIL CAPTURE ===== */
.lt-capture {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.lt-capture__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0505 0%, #0c0c0c 50%, #1a0505 100%);
}

.lt-capture__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.lt-capture__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 1rem 0 1.25rem;
}

.lt-capture__title em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: #f87171;
  letter-spacing: -0.02em;
}

.lt-capture__copy > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 460px;
}

.lt-capture__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lt-capture__points li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.lt-capture__points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
}

/* Form card */
.lt-form-card {
  background: #fff;
  padding: clamp(2rem, 4vw, 2.75rem);
}

.lt-form-card__book-thumb {
  width: 72px;
  margin-bottom: 1.5rem;
  box-shadow: 4px 6px 16px rgba(0,0,0,0.25);
}

.lt-form-card__book-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.lt-form-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.lt-form-card__sub {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
}

.lt-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lt-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lt-form__group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
}

.lt-form__group input,
.lt-form__group select {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: #fafaf9;
  border: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color 0.25s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.lt-form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2378716c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.lt-form__group input:focus,
.lt-form__group select:focus {
  border-color: #dc2626;
}

.lt-form__submit {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
  background: #dc2626 !important;
  border-color: #dc2626 !important;
}

.lt-form__submit:hover {
  background: #b91c1c !important;
  border-color: #b91c1c !important;
}

.lt-form__note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* Success state */
.lt-form__success {
  text-align: center;
  padding: 2rem 1rem;
}

.lt-form__success-icon {
  width: 52px;
  height: 52px;
  background: #dcfce7;
  color: #15803d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.lt-form__success h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lt-form__success p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.lt-form__download-btn {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  transition: background 0.3s;
}

.lt-form__download-btn:hover {
  background: #b91c1c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lt-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lt-hero__book-wrap {
    order: -1;
    padding: 0 0 2rem;
  }

  .lt-hero__book-img {
    max-width: 240px;
  }

  .lt-hero__cta {
    margin: 0 auto;
  }

  .lt-hero__details {
    justify-content: center;
  }

  .lt-hero__watermark {
    font-size: 45vw;
  }

  .lt-capture__inner {
    grid-template-columns: 1fr;
  }

  .lt-capture__copy > p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .lt-about__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lt-callouts {
    grid-template-columns: 1fr;
  }

  .lt-author__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lt-author__photo {
    max-width: 280px;
  }

  .lt-hero__watermark {
    display: none;
  }
}
