:root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --text: #f3f3f3;
  --muted: #8c8c8c;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);
  --panel: rgba(255, 255, 255, 0.035);
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: #fff;
  color: #000;
}

.site-shell {
  position: relative;
  z-index: 2;
}


/* NAVIGATION */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 22px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: 300ms ease;
}

.nav.scrolled {
  background: rgba(5,5,5,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.nav-logo {
  display: block;
  width: 58px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 200ms ease;
}

.nav-links a:hover {
  color: white;
}


/* SIDE PROGRESS */

.progress-rail {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rail-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #525252;
  transition: 250ms ease;
}

.rail-item::after {
  content: "";
  width: 18px;
  height: 1px;
  background: #444;
  transition: 250ms ease;
}

.rail-item.active {
  color: white;
}

.rail-item.active::after {
  width: 42px;
  background: white;
}

.cnc-accent {
  color: #b5b5b5;
}

/* GLOBAL SECTIONS */

section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.wrap {
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.eyebrow {
  font-size: 11px;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 24px;
}

.display {
  font-size: clamp(58px, 10vw, 170px);
  line-height: .86;
  letter-spacing: -.07em;
  font-weight: 700;
}

.heading {
  font-size: clamp(46px, 7vw, 105px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 650;
}

.subheading {
  font-size: clamp(25px, 3vw, 50px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 500;
}

.body-copy {
  max-width: 720px;
  margin-top: 28px;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.65;
  color: #a4a4a4;
  letter-spacing: -.015em;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: 250ms ease;
}

.cta span {
  transition: transform 250ms ease;
}

.cta:hover {
  border-color: white;
}

.cta:hover span {
  transform: translateX(7px);
}


/* HERO */
.hero {
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-title {
  position: relative;
  z-index: 2;

  width: 100%;
  margin: 0 auto;

  font-size: clamp(80px, 11vw, 200px);
  line-height: 0.78;
  font-weight: 750;
  letter-spacing: -0.085em;

  text-align: center;
  transform-origin: center center;
}

.hero-kicker {
  width: 100%;
  margin-top: 38px;
  text-align: center;

  font-size: 13px;
  letter-spacing: .23em;
  text-transform: uppercase;
  color: #888;
}

.hero-line {
  width: 1px;
  height: 100px;
  margin: 50px auto 0;
  background: linear-gradient(to bottom, #fff, transparent);
  opacity: .5;
}
@keyframes breathe {
  0%,
  100% {
    opacity: .22;
    transform: scaleY(.75);
  }

  50% {
    opacity: .8;
    transform: scaleY(1);
  }
}

.hero-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(70vw, 1000px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit:nth-child(2) {
  width: min(45vw, 640px);
}

.hero-orbit:nth-child(3) {
  width: min(90vw, 1300px);
}


/* BACKGROUND TITLES */

.mega-word {
  position: absolute;
  left: -2vw;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  color: rgba(255,255,255,.027);
  font-size: clamp(150px, 28vw, 520px);
  line-height: .7;
  font-weight: 800;
  letter-spacing: -.08em;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
}


/* TWO COLUMN LAYOUT */

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.number {
  margin-bottom: 22px;
  font-size: 11px;
  letter-spacing: .18em;
  color: #595959;
}

.tallguy-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.tallguy-profile {
  width: 46px;
  height: 46px;
  min-width: 46px;

  border-radius: 50%;
  object-fit: cover;
  object-position: center;

  display: block;


  position: relative;
  top: 5px;
}

.tallguy-heading .media-card-title {
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

.capital-intro {
  position: relative;
  min-height: 620px;

  display: flex;
  align-items: center;

  z-index: 4;
}

.capital-copy {
  position: relative;
  z-index: 5;

  width: 58%;
}


/* =========================================================
   SCROLL-ASSEMBLED QUANTUM ATOM
   Lives inside .capital-intro so it stays aligned with the
   "INVESTING IN THE FUTURE" copy instead of the whole section.
========================================================= */

.quantum-assembly {
  position: absolute;

  right: 0;
  top: 50%;

  width: 430px;
  height: 430px;

  z-index: 3;

  pointer-events: none;

  opacity: 0;

  transform:
    translateY(-50%)
    scale(.68);

  transform-origin: center center;

  will-change:
    opacity,
    transform;
}


/* soft field behind the atom */

.quantum-halo {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  opacity: 0;

  transform:
    translate(-50%, -50%)
    scale(.35);

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.11) 0%,
      rgba(255,255,255,.04) 28%,
      rgba(255,255,255,.015) 48%,
      transparent 72%
    );

  box-shadow:
    0 0 90px rgba(255,255,255,.035);

  will-change:
    opacity,
    transform;
}


/* orbital paths */

.quantum-orbit {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 340px;
  height: 126px;

  border:
    1px solid rgba(255,255,255,.26);

  border-radius: 50%;

  opacity: 0;

  transform-origin: center center;

  box-shadow:
    inset 0 0 20px rgba(255,255,255,.012),
    0 0 20px rgba(255,255,255,.012);

  will-change:
    opacity,
    transform;
}


/*
  These initial angles are deliberately "disassembled".
  JavaScript rotates/scales each ring into its final position.
*/

.quantum-orbit-a {
  transform:
    translate(-50%, -50%)
    rotate(-145deg)
    scale(.18);
}

.quantum-orbit-b {
  transform:
    translate(-50%, -50%)
    rotate(215deg)
    scale(.18);
}

.quantum-orbit-c {
  transform:
    translate(-50%, -50%)
    rotate(-190deg)
    scale(.18);
}


/* glowing electron attached to each orbital */

.quantum-electron {
  position: absolute;

  left: -5px;
  top: 50%;

  width: 10px;
  height: 10px;

  transform:
    translateY(-50%);

  border-radius: 50%;

  background: #fff;

  box-shadow:
    0 0 8px rgba(255,255,255,1),
    0 0 22px rgba(255,255,255,.7),
    0 0 42px rgba(255,255,255,.28);
}


/* central nucleus */

.quantum-nucleus {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 42px;
  height: 42px;

  z-index: 6;

  opacity: 0;

  transform:
    translate(-50%, -50%)
    scale(.2);

  border:
    1px solid rgba(255,255,255,.26);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.18),
      rgba(255,255,255,.035) 58%,
      transparent 72%
    );

  box-shadow:
    0 0 18px rgba(255,255,255,.28),
    0 0 58px rgba(255,255,255,.12);

  will-change:
    opacity,
    transform;
}


/* three small nucleus particles */

.quantum-nucleon {
  position: absolute;

  width: 11px;
  height: 11px;

  border-radius: 50%;

  background: #fff;

  box-shadow:
    0 0 12px rgba(255,255,255,.75);
}

.quantum-nucleon-a {
  left: 8px;
  top: 11px;
}

.quantum-nucleon-b {
  right: 7px;
  top: 10px;
}

.quantum-nucleon-c {
  left: 16px;
  bottom: 7px;
}


/*
  Quarks begin far outside the nucleus and are pulled toward
  the center as scroll progress increases.
*/

.quantum-quark {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 6px;
  height: 6px;

  z-index: 7;

  opacity: 0;

  border-radius: 50%;

  background:
    rgba(255,255,255,.92);

  box-shadow:
    0 0 10px rgba(255,255,255,.9),
    0 0 24px rgba(255,255,255,.35);

  will-change:
    opacity,
    transform;
}

.quantum-quark-a {
  transform:
    translate(-170px, -115px);
}

.quantum-quark-b {
  transform:
    translate(165px, -105px);
}

.quantum-quark-c {
  transform:
    translate(25px, 155px);
}


/* responsive quantum positioning */

@media (max-width: 1100px) {

  .capital-copy {
    width: 62%;
  }

  .quantum-assembly {
    right: -25px;

    width: 380px;
    height: 380px;
  }

  .quantum-orbit {
    width: 290px;
    height: 108px;
  }

}


@media (max-width: 900px) {

  .capital-intro {
    min-height: 650px;

    align-items: flex-start;

    padding-top: 20px;
  }

  .capital-copy {
    width: 100%;
  }

  .quantum-assembly {
    right: -55px;
    top: 68%;

    width: 330px;
    height: 330px;

    opacity: .7;
  }

  .quantum-orbit {
    width: 245px;
    height: 92px;
  }

}


@media (max-width: 560px) {

  .capital-intro {
    min-height: 620px;
  }

  .quantum-assembly {
    right: -105px;
    top: 71%;

    width: 290px;
    height: 290px;
  }

  .quantum-orbit {
    width: 210px;
    height: 78px;
  }

  .quantum-nucleus {
    width: 36px;
    height: 36px;
  }

  .quantum-nucleon {
    width: 9px;
    height: 9px;
  }

  .quantum-nucleon-a {
    left: 7px;
    top: 9px;
  }

  .quantum-nucleon-b {
    right: 6px;
    top: 8px;
  }

  .quantum-nucleon-c {
    left: 14px;
    bottom: 6px;
  }

}


/* TAGS */

.tags {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8c8c8c;
  background: rgba(255,255,255,.015);
}


/* INTELLIGENCE NETWORK */

.network {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .6;
}

.node {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: .3;
  box-shadow: 0 0 25px rgba(255,255,255,.7);
}


/* MEDIA */

.media-stack {
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 20px;
  margin-top: 50px;
}

.media-card {
  min-height: 260px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 300ms ease, border-color 300ms ease;
}

.media-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.35);
}

.media-card-label {
  color: #666;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.media-card-title {
  font-size: clamp(30px, 4vw, 62px);
  letter-spacing: -.05em;
  font-weight: 650;
}


/* FUNDS */

.funds {
  min-height: 150vh;
  padding: 140px 0;
  align-items: stretch;
}

.funds .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fund-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 65px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fund-card {
  position: relative;
  padding: 55px;
  min-height: 570px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.fund-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  right: -180px;
  top: -160px;
  transition: transform 600ms ease;
}

.fund-card:hover::before {
  transform: scale(1.15);
}

.fund-title {
  max-width: 530px;
  font-size: clamp(38px, 4vw, 66px);
  line-height: .95;
  letter-spacing: -.05em;
}

.fund-thesis {
  margin-top: 22px;
  color: #8f8f8f;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.6;
}

.triad {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  font-size: clamp(28px, 4vw, 54px);
  line-height: .95;
  letter-spacing: -.04em;
  color: #cfcfcf;
}

.partner {
  margin-top: 38px;
  font-size: 11px;
  letter-spacing: .15em;
  color: #666;
  text-transform: uppercase;
}

.partner strong {
  color: #d8d8d8;
  margin-left: 5px;
}


/* FUTURE WEALTH */

.future {
  min-height: 120vh;
}

.future-list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.future-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: #777;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color 200ms ease, padding-left 200ms ease;
}

.future-item:hover {
  color: white;
  padding-left: 10px;
}


/* MANIFESTO */

.manifesto {
  min-height: 115vh;
  text-align: center;
}

.manifesto .wrap {
  max-width: 1200px;
}

.manifesto-heading {
  font-size: clamp(45px, 8vw, 130px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 650;
}

.manifesto-heading .dim {
  color: #303030;
}

.ecosystem {
  margin: 90px auto 0;
  max-width: 960px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ecosystem a {
  padding: 13px 16px;
  border: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #777;
  transition: 220ms ease;
}

.ecosystem a:hover {
  color: white;
  border-color: white;
}


/* FOOTER */

footer {
  padding: 48px 34px 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #555;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}


/* SCROLL REVEALS */

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 900ms cubic-bezier(.2,.8,.2,1),
    transform 900ms cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* TABLET */

@media (max-width: 900px) {

  .nav {
    padding: 18px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-logo {
    width: 46px;
  }

  .progress-rail {
    display: none;
  }

  .wrap {
    width: min(calc(100% - 40px), var(--max-width));
  }

  section {
    min-height: auto;
    padding: 120px 0;
  }

  .hero {
    min-height: 100svh;
    padding: 0;
  }

.hero-title {
  font-size: clamp(60px, 20vw, 110px);
}

  .grid-two,
  .fund-grid,
  .media-stack {
    grid-template-columns: 1fr;
  }

  .grid-two {
    gap: 35px;
  }

  .funds {
    padding: 120px 0;
  }

  .fund-card {
    padding: 34px;
    min-height: 520px;
  }

  .future-list {
    grid-template-columns: 1fr 1fr;
  }

  .mega-word {
    top: 22%;
  }

  footer {
    padding: 35px 20px;
    flex-direction: column;
  }
}


/* MOBILE */

@media (max-width: 560px) {

  .nav-logo {
    width: 40px;
  }

  .hero-logo {
    width: 92vw;
    max-height: 42vh;
  }

  .future-list {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 220px;
  }

  .fund-card {
    min-height: 480px;
  }
}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================================================
   FUTURE OF WEALTH BOOK
========================================================= */

.book-section {
  position: relative;

  min-height: 115vh;

  padding: 140px 0;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 25% 50%,
      rgba(255,255,255,.05),
      transparent 34%
    ),
    var(--bg);
}


/* GIANT BACKGROUND WORD */

.book-bg-word {
  position: absolute;

  left: -4vw;
  bottom: -3vw;

  color:
    rgba(255,255,255,.018);

  font-size:
    clamp(
      180px,
      32vw,
      600px
    );

  font-weight: 800;

  line-height: .7;

  letter-spacing: -.09em;

  pointer-events: none;

  user-select: none;
}


/* LAYOUT */

.book-layout {
  position: relative;

  display: grid;

  grid-template-columns:
    .8fr 1.2fr;

  gap:
    clamp(
      70px,
      9vw,
      150px
    );

  align-items: center;
}


/* =========================================================
   BOOK COVER
========================================================= */

.book-visual {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  perspective: 1200px;
}


.book-cover-link {
  position: relative;

  z-index: 2;

  display: block;
}


.book-cover {
  display: block;

  width:
    min(
      100%,
      390px
    );

  height: auto;

  box-shadow:
    0 35px 90px rgba(0,0,0,.75);

  transform:
    rotateY(5deg)
    rotateX(1deg);

  transition:
    transform 500ms cubic-bezier(.2,.8,.2,1),
    box-shadow 500ms ease;
}


.book-cover-link:hover .book-cover {
  transform:
    rotateY(0deg)
    rotateX(0deg)
    translateY(-8px)
    scale(1.015);

  box-shadow:
    0 50px 120px rgba(0,0,0,.95);
}


/* GLOW BEHIND COVER */

.book-glow {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 500px;
  height: 500px;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.10),
      rgba(255,255,255,.025) 38%,
      transparent 68%
    );

  filter: blur(12px);

  pointer-events: none;
}


/* =========================================================
   BOOK CONTENT
========================================================= */

.book-content {
  position: relative;

  z-index: 3;

  max-width: 760px;
}


.book-label {
  margin-bottom: 20px;

  color: #777;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: .22em;

  text-transform: uppercase;
}


.book-title {
  margin: 0;

  color: #f5f5f5;

  font-size:
    clamp(
      64px,
      8vw,
      125px
    );

  line-height: .82;

  letter-spacing: -.07em;

  font-weight: 700;
}


.book-subtitle {
  max-width: 680px;

  margin-top: 30px;

  color: #d5d5d5;

  font-size:
    clamp(
      22px,
      2.5vw,
      38px
    );

  line-height: 1.16;

  letter-spacing: -.035em;
}


.book-description {
  max-width: 690px;

  margin-top: 30px;

  color: #919191;

  font-size: 17px;

  line-height: 1.72;
}


/* =========================================================
   TOPICS
========================================================= */

.book-topics {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;

  margin-top: 32px;
}


.book-topics span {
  padding:
    9px 13px;

  border:
    1px solid var(--line);

  border-radius: 999px;

  color: #777;

  font-size: 9px;

  letter-spacing: .11em;

  text-transform: uppercase;
}


/* =========================================================
   BOOK META
========================================================= */

.book-meta {
  margin-top: 42px;

  padding:
    25px 0;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 25px;

  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);
}


.book-meta-item {
  display: flex;

  flex-direction: column;

  gap: 8px;
}


.book-meta-label {
  color: #555;

  font-size: 8px;

  letter-spacing: .18em;
}


.book-meta-value {
  color: #aaa;

  font-size: 12px;

  letter-spacing: .04em;
}


.book-cta {
  margin-top: 35px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .book-section {
    min-height: auto;

    padding:
      120px 0;
  }


  .book-layout {
    grid-template-columns:
      1fr;

    gap: 75px;
  }


  .book-cover {
    width:
      min(
        72vw,
        360px
      );
  }


  .book-content {
    max-width: 100%;
  }


  .book-title {
    font-size:
      clamp(
        60px,
        16vw,
        105px
      );
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

  .book-section {
    padding:
      100px 0;
  }


  .book-layout {
    gap: 60px;
  }


  .book-cover {
    width:
      min(
        76vw,
        320px
      );

    transform:
      none;
  }


  .book-title {
    font-size:
      clamp(
        55px,
        18vw,
        85px
      );
  }


  .book-subtitle {
    font-size: 24px;
  }


  .book-description {
    font-size: 16px;
  }


  .book-meta {
    grid-template-columns:
      1fr;

    gap: 22px;
  }

}

.book-section {
  position: relative;

  min-height: 115vh;

  padding: 140px 0;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      ellipse at 25% 50%,
      rgba(255,255,255,.085) 0%,
      rgba(255,255,255,.035) 25%,
      transparent 52%
    ),
    #050505;
}