:root {
  --cream: #f6eee6;
  --ivory: #fff8ef;
  --beige: #d8c4b2;
  --brown: #4a2f28;
  --deep: #2e2520;
  --plum: #7b515a;
  --sage: #72735b;
  --gold: #c6a46a;
  --soft-white: rgba(255, 255, 255, 0.78);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--deep);
  background: linear-gradient(180deg, var(--cream), #f4eadf 46%, var(--ivory));
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  min-height: 100vh;
  padding: 34px 52px 60px;
  position: relative;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(115deg, #5d4539, #7b515a);
}

.hero.has-image {
  background:
    linear-gradient(90deg, rgba(43, 24, 18, 0.85) 0%, rgba(69, 42, 35, 0.6) 42%, rgba(43, 24, 18, 0.2) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 14% 18%, rgba(255,255,255,0.16) 0 2px, transparent 3px 100%);
  opacity: 0.06;
  pointer-events: none;
}

.nav, .hero-content, .circle-note { position: relative; z-index: 2; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo, .footer-logo {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 10px;
  font-weight: 600;
}

.logo,
.logo:link,
.logo:visited,
.logo:hover,
.logo:active,
.footer-logo,
.footer-logo:link,
.footer-logo:visited,
.footer-logo:hover,
.footer-logo:active {
  color: inherit !important;
  text-decoration: none !important;
}

.logo { font-size: 34px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: color .35s ease, opacity .35s ease;
}

.nav-links a:hover {
  color: #fff;
}

.login {
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 999px;
  padding: 11px 24px;
}

.hero-content {
  max-width: 650px;
  margin-top: 124px;
}

.eyebrow, .small-eyebrow {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.eyebrow { color: rgba(255,255,255,0.84); margin-bottom: 22px; }

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.9;
  margin-bottom: 28px;
}

h1 em { color: #ead7cb; font-style: italic; }

.hero-lead {
  max-width: 540px;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

.form-label { margin-top: 34px; letter-spacing: 3px; text-transform: uppercase; font-size: 12px; font-weight: 600; }

.form-error {
  background: rgba(71, 32, 41, 0.45);
  border: 1px solid rgba(255, 214, 224, 0.35);
  color: #fff5f8;
  margin: 14px 0 0;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 8px;
}

.lead-form {
  margin-top: 14px;
  width: min(640px, 100%);
  display: flex;
  background: #fff;
  border: 1px solid rgba(80, 60, 45, 0.14);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.lead-form input {
  flex: 1;
  border: 0;
  min-width: 0;
  padding: 22px 24px;
  font-size: 15px;
  color: #2d2520;
}

.lead-form input:focus,
.lead-form button:focus {
  outline: 2px solid #be8f95;
  outline-offset: -2px;
}

.lead-form button {
  border: 0;
  background: var(--plum);
  color: #fff;
  padding: 0 30px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .5s ease;
}

.lead-form button:hover { background: #6d444d; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badges span {
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.circle-note {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background: rgba(109, 82, 70, 0.82);
  color: #fff2e8;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.2;
}

section { padding: 98px 7%; }

.intro { text-align: center; background: var(--ivory); }
.small-eyebrow { color: var(--gold); margin-bottom: 14px; }
.small-eyebrow.light { color: #ead6c8; }

h2 { font-size: clamp(40px, 5vw, 70px); line-height: 0.98; }
h2 em { color: var(--sage); font-style: italic; }

.intro h2 { margin: 0 auto 56px; max-width: 790px; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.pain-card {
  text-align: left;
  padding: 18px 20px;
  border-right: 1px solid rgba(80, 60, 45, 0.16);
}

.pain-card:last-child { border-right: 0; }
.icon { margin: 0 0 16px; font-size: 34px; color: var(--gold); }
.pain-card h3 { font-size: 30px; margin-bottom: 10px; }
.pain-card p { font-size: 15px; line-height: 1.75; color: #5f5149; }

.preview {
  background: #7b515a;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(520px, 760px) minmax(340px, 1fr);
  gap: 54px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.preview-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 320px at 28% 95%, rgba(34, 24, 20, 0.22), transparent 70%),
    radial-gradient(640px 220px at 90% 16%, rgba(255, 255, 255, 0.06), transparent 78%);
  pointer-events: none;
  z-index: 1;
}

.mockups {
  min-height: 420px;
  position: relative;
  width: min(520px, 100%);
  margin: 0 auto;
  z-index: 2;
  overflow: visible;
}

.media-card {
  border-radius: 10px;
  box-shadow: 0 28px 60px rgba(0,0,0,.25);
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.1s ease;
}

/* Hero-style illustrated mockup lockup (matches premium reference composition) */
.preview .mockups .media-card img {
  display: none;
}

.preview .page,
.preview .book,
.preview .phone {
  overflow: hidden;
}

.preview .page {
  background: #f2ece4;
  color: rgba(76, 63, 57, 0.92);
  box-shadow: 0 20px 42px rgba(30, 20, 18, 0.22);
}

.preview .page::before {
  content:
    "2-Minute Mind Dump\A\A Today I release.\A What still feels heavy...\A One thing that can wait...";
  white-space: pre-line;
  position: absolute;
  inset: 38px 28px 34px;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.2px;
  color: rgba(83, 69, 62, 0.96);
}

.preview .book {
  background: linear-gradient(180deg, #aa848c 0%, #9f7981 54%, #8b6972 100%);
  box-shadow: 0 30px 68px rgba(27, 18, 16, 0.28);
}

.preview .book::before {
  content: "EVENING\A EXHALE";
  white-space: pre-line;
  position: absolute;
  left: 0;
  right: 0;
  top: 98px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 1.2px;
  color: rgba(255, 248, 241, 0.95);
}

.preview .book::after {
  content: "7-DAY EVENING RESET";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 86px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  letter-spacing: 4px;
  color: rgba(255, 246, 238, 0.94);
}

.preview .phone {
  background: #a68189;
  box-shadow: 0 28px 56px rgba(25, 16, 14, 0.28);
}

.preview .phone::before {
  content: "Audio 1\A Come Home\A To Your Body";
  white-space: pre-line;
  position: absolute;
  left: 16px;
  right: 16px;
  top: 48%;
  transform: translateY(-50%);
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 55px;
  line-height: 1.05;
  color: rgba(255, 245, 239, 0.95);
}

/* Desktop lockup: force one horizontal overlapping row (stable) */
@media (min-width: 981px) {
  .preview .mockups {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0;
    width: min(640px, 100%);
    min-height: 430px;
    margin-left: 0;
  }

  .preview .page,
  .preview .book,
  .preview .phone {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    flex: 0 0 auto;
  }

  .preview .page {
    width: 210px;
    height: 356px;
    transform: rotate(-8deg) translateY(-42px);
    margin-right: -34px;
    z-index: 1;
  }

  .preview .book {
    width: 340px;
    height: 420px;
    transform: none;
    margin-right: -54px;
    z-index: 2;
  }

  .preview .phone {
    width: 170px;
    height: 332px;
    transform: translateY(-42px);
    z-index: 3;
  }

  .preview .page::before {
    inset: 34px 24px 28px;
    font-size: 17px;
    line-height: 1.58;
  }

  .preview .book::before {
    font-size: 68px;
    top: 108px;
  }

  .preview .book::after {
    font-size: 34px;
    bottom: 86px;
    letter-spacing: 3px;
  }

  .preview .phone::before {
    font-size: 52px;
  }
}

/* Real-image mode for hero mockups (disable illustrated text cards) */
.preview .mockups .media-card img {
  display: block !important;
  opacity: 1 !important;
}

.preview .page,
.preview .book,
.preview .phone {
  background: transparent;
}

.preview .page::before,
.preview .book::before,
.preview .book::after,
.preview .phone::before {
  content: none !important;
  display: none !important;
}

.media-card.fallback {
  background-image: linear-gradient(145deg, #b28a8f, #72515a);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page {
  width: 182px;
  height: 332px;
  position: absolute;
  left: 0;
  top: 68px;
  transform: rotate(-7deg);
  z-index: 1;
  border-radius: 10px;
}

.book {
  width: 292px;
  height: 364px;
  position: absolute;
  left: 120px;
  top: 28px;
  z-index: 2;
  border-radius: 12px;
}

.phone {
  width: 150px;
  height: 300px;
  position: absolute;
  left: 346px;
  top: 104px;
  z-index: 3;
  border-radius: 28px;
  border: 10px solid #2a2420;
  box-shadow: 0 30px 58px rgba(0,0,0,.24);
}

.preview-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.preview h2 {
  margin-bottom: 34px;
  max-width: 720px;
}

.ritual-list {
  display: grid;
  gap: 0;
}

.ritual-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(239, 217, 203, 0.22);
}

.ritual-item:last-child {
  border-bottom: 1px solid rgba(239, 217, 203, 0.22);
}

.ritual-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  letter-spacing: .1px;
}

.ritual-item span {
  color: rgba(255,255,255,0.82);
  line-height: 1.72;
  max-width: 620px;
}

.pdf-preview { background: #f8f0e7; }

.pdf-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.pdf-head h2 { margin-bottom: 14px; }
.pdf-head p { color: #5c4d43; line-height: 1.75; margin: 0; }

.pdf-track {
  display: flex;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  justify-content: center;
  gap: 0;
  overflow: visible;
  padding: 22px 0 30px;
  align-items: flex-end;
}

.pdf-card {
  margin: 0;
  border-radius: 14px;
  background: #fff8ef;
  border: 1px solid rgba(80, 60, 45, 0.14);
  box-shadow: 0 14px 34px rgba(80, 60, 45, 0.1);
  overflow: hidden;
}

.editorial-track .hero-card {
  width: min(44vw, 500px);
  transform: rotate(-2deg);
  z-index: 3;
  flex: 0 0 auto;
}

.editorial-track .mid-card {
  width: min(38vw, 430px);
  margin-left: -72px;
  transform: translateY(28px);
  z-index: 2;
  flex: 0 0 auto;
}

.editorial-track .edge-card {
  width: min(30vw, 320px);
  margin-left: -62px;
  transform: translateY(56px);
  z-index: 1;
  flex: 0 0 auto;
}

.stack-card {
  transition: transform .45s ease, box-shadow .45s ease;
}

.stack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(80, 60, 45, 0.16);
}

.editorial-track .hero-card:hover { transform: translateY(-6px) rotate(-2deg); }
.editorial-track .mid-card:hover { transform: translateY(18px); }
.editorial-track .edge-card:hover { transform: translateY(42px); }

.pdf-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1s ease;
}

.pdf-card.fallback::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: linear-gradient(155deg, #efe2d4, #d8c4b2);
}

.pdf-card p {
  margin: 0;
  padding: 14px 14px 16px;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: #59493f;
}

.audio-preview {
  background: linear-gradient(180deg, #f8f0e7, #f3e8dc);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.audio-copy h2 { margin-bottom: 16px; }
.audio-copy p { margin: 0; color: #5d4f46; line-height: 1.75; }

.audio-player-shell {
  background: #fff8ef;
  border: 1px solid rgba(80, 60, 45, 0.14);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 30px rgba(80, 60, 45, 0.08);
  transition: box-shadow .4s ease;
}

.audio-player-shell.ready {
  background: linear-gradient(180deg, #fff8ef, #f9f0e7);
}

.audio-player-shell.playing {
  box-shadow: 0 22px 38px rgba(80, 60, 45, 0.16);
}

.wave {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  margin-bottom: 15px;
  align-items: end;
  height: 34px;
}

.wave span {
  background: linear-gradient(180deg, #b8838d, #7b515a);
  border-radius: 999px;
  animation: breathe 3.8s ease-in-out infinite;
}

.wave span:nth-child(1) { height: 30%; animation-delay: .1s; }
.wave span:nth-child(2) { height: 80%; animation-delay: .4s; }
.wave span:nth-child(3) { height: 50%; animation-delay: .2s; }
.wave span:nth-child(4) { height: 95%; animation-delay: .6s; }
.wave span:nth-child(5) { height: 55%; animation-delay: .3s; }
.wave span:nth-child(6) { height: 70%; animation-delay: .5s; }
.wave span:nth-child(7) { height: 38%; animation-delay: .25s; }

.audio-player { width: 100%; }
.audio-note { font-size: 13px; color: #6c5b52; margin: 10px 0 0; }

.library-teaser {
  position: relative;
  color: #fff;
  min-height: 360px;
  display: grid;
  align-items: center;
  background: linear-gradient(120deg, #7b515a, #796c59);
}

.library-teaser.has-image { background: center/cover no-repeat var(--library-image); }

.library-teaser .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(45, 30, 27, 0.66), rgba(45, 30, 27, 0.2));
}

.teaser-content { position: relative; z-index: 1; max-width: 700px; }

.cta {
  text-align: center;
  background: var(--ivory);
  padding-top: 104px;
  padding-bottom: 104px;
}

.cta h2 { margin-bottom: 28px; }
.cta p { color: #5f5046; }
.cta .lead-form { margin: 26px auto 12px; box-shadow: 0 12px 28px rgba(80, 60, 45, .1); }
.trust { font-size: 13px; color: #7a6b61; }

footer:not(.ves-footer) {
  background: linear-gradient(90deg, #eee0d3, #f6eee6);
  padding: 34px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6c5f55;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
}

footer:not(.ves-footer) .footer-logo { font-size: 32px; color: var(--brown); }

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thank-you-wrap {
  max-width: 760px;
  background: var(--ivory);
  border: 1px solid rgba(80, 60, 45, 0.14);
  border-radius: 18px;
  padding: 48px clamp(20px, 4vw, 54px);
  box-shadow: 0 20px 45px rgba(80, 60, 45, 0.08);
}

.thank-you-wrap h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: .95;
  color: var(--deep);
  margin: 0 0 16px;
}

.thank-you-wrap .lead { color: #5f5148; line-height: 1.75; margin-bottom: 26px; }
.steps h2, .tonight-ritual h2 { font-size: 38px; margin-bottom: 8px; }
.steps ol { margin: 0 0 24px 18px; color: #5c4e44; line-height: 1.8; }
.tonight-ritual p { color: #5f5046; line-height: 1.8; }

.soft-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--plum);
  text-decoration: none;
  border-bottom: 1px solid rgba(123, 81, 90, 0.4);
}

.asset-frame {
  position: relative;
  background-color: #e6d5c7;
}

.asset-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0.12) 10%, rgba(255,255,255,0.35) 40%, rgba(255,255,255,0.12) 70%);
  transform: translateX(-110%);
  transition: transform 1.2s ease;
  pointer-events: none;
}

.asset-frame.is-loaded::after { transform: translateX(120%); }
.asset-frame.is-loaded img { opacity: 1; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s ease;
}

.hero .reveal {
  transition-duration: .45s;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes breathe {
  0%, 100% { transform: scaleY(0.6); }
  50% { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .wave span,
  .lead-form button,
  .asset-frame::after,
  .media-card img,
  .pdf-card img,
  .stack-card,
  .audio-player-shell { transition: none; animation: none; }
}

@media (max-width: 980px) {
  .hero { padding: 26px 22px 46px; }
  .nav-links { gap: 14px; font-size: 10px; }
  .hero-content { margin-top: 88px; }
  .circle-note { display: none; }
  .pain-grid, .preview, .audio-preview { grid-template-columns: 1fr; }
  .pain-card { border-right: 0; border-bottom: 1px solid rgba(80, 60, 45, 0.16); }

  .mockups {
    width: min(560px, 100%);
    min-height: 380px;
    display: block;
    overflow: visible;
  }

  .page {
    width: 172px;
    height: 292px;
    left: 0;
    top: 60px;
    position: absolute;
    transform: rotate(-7deg);
  }

  .book {
    width: 256px;
    height: 320px;
    left: 104px;
    top: 24px;
    position: absolute;
  }

  .phone {
    width: 130px;
    height: 252px;
    left: 298px;
    top: 92px;
    position: absolute;
    border-width: 8px;
  }
  .preview .page::before { font-size: 14px; inset: 28px 22px 24px; }
  .preview .book::before { font-size: 58px; top: 84px; }
  .preview .book::after { font-size: 34px; bottom: 74px; letter-spacing: 3px; }
  .preview .phone::before { font-size: 42px; }
  .preview h2 { margin-bottom: 22px; }
  .ritual-item { padding: 14px 0; }
  .pdf-track {
    width: max-content;
    max-width: 100%;
    margin: 0;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 20px 28px 24px 4px;
    scroll-snap-type: x mandatory;
  }
  .pdf-track::-webkit-scrollbar { height: 8px; }
  .pdf-track::-webkit-scrollbar-thumb { background: rgba(123, 81, 90, 0.35); border-radius: 999px; }
  .editorial-track .hero-card { width: min(72vw, 380px); }
  .editorial-track .mid-card {
    width: min(64vw, 340px);
    margin-left: -34px;
    transform: translateY(20px);
  }
  .editorial-track .edge-card {
    width: min(58vw, 300px);
    margin-left: -26px;
    transform: translateY(36px);
  }
  footer:not(.ves-footer) { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 700px) {
  section { padding: 78px 20px; }
  .lead-form { flex-direction: column; border-radius: 12px; }
  .lead-form button { min-height: 56px; }
  .hero-lead { font-size: 18px; line-height: 1.8; }
  .mockups {
    width: min(370px, 100%);
    min-height: 230px;
    display: block;
    margin: 0 auto 8px;
    overflow: visible;
  }
  .page,
  .book,
  .phone {
    position: absolute;
    height: auto;
  }
  .page {
    width: 126px;
    height: 178px;
    left: 10px;
    top: 26px;
    transform: rotate(-8deg);
    z-index: 1;
  }
  .book {
    width: 144px;
    height: 192px;
    left: 92px;
    top: 20px;
    z-index: 2;
  }
  .phone {
    width: 76px;
    height: 150px;
    left: 210px;
    top: 44px;
    z-index: 3;
    border-width: 6px;
    border-radius: 20px;
  }
  .preview .page::before { font-size: 10px; inset: 16px 10px 12px; line-height: 1.45; }
  .preview .book::before { font-size: 30px; top: 42px; }
  .preview .book::after { font-size: 17px; bottom: 38px; letter-spacing: 1.8px; }
  .preview .phone::before { font-size: 21px; }
  .preview {
    gap: 22px;
  }
  .preview-copy {
    max-width: 100%;
  }
  .preview h2 {
    margin-bottom: 20px;
  }
  .ritual-item {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 12px 0;
  }
  .ritual-item .icon {
    font-size: 22px;
    margin: 0;
  }

  .audio-player-shell { padding: 16px; }
  .pdf-track {
    width: max-content;
    max-width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 14px 16px 18px 2px;
    scroll-snap-type: x mandatory;
  }
  .editorial-track .hero-card {
    width: min(86vw, 340px);
    transform: rotate(-1.5deg);
  }
  .editorial-track .mid-card {
    width: min(76vw, 300px);
    margin-left: -28px;
    transform: translateY(18px);
  }
  .editorial-track .edge-card {
    width: min(68vw, 260px);
    margin-left: -22px;
    transform: translateY(32px);
  }
  .pdf-track {
    scroll-padding-left: 4px;
  }
}
