:root {
  --black: #070707;
  --cream: #eee9df;
  --paper: #f6f1e8;
  --red: #b63326;
  --muted: #736d62;
  --line: rgba(7, 7, 7, .18);
  --line-light: rgba(246, 241, 232, .22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: -0.025em;
}

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

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: .05;
  background-image: radial-gradient(circle at 25% 20%, #000 0 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 24px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(238, 233, 223, .92);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: clamp(34px, 4vw, 62px);
  line-height: .72;
  font-weight: 900;
  letter-spacing: -.095em;
  text-transform: uppercase;
}

nav,
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

nav { justify-content: center; flex-wrap: wrap; }
.header-right { justify-content: flex-end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 8px 12px 7px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.button:hover {
  background: var(--black);
  color: var(--cream);
}

.hero-feature .button:hover,
.poster .button:hover,
.cta .button:hover {
  background: var(--cream);
  color: var(--black);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.hero-title {
  padding: clamp(36px, 5vw, 76px) clamp(28px, 4.5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 0;
  max-width: 860px;
  font-size: clamp(54px, 7.4vw, 124px);
  line-height: .88;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.hero-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-copy p {
  margin-bottom: 0;
  max-width: 540px;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-feature {
  display: grid;
  grid-template-rows: 1fr;
  border-left: 1px solid var(--line);
  background: var(--black);
  color: var(--cream);
}

.featured-carousel {
  position: relative;
  min-height: 100%;
  padding: 18px;
  background:
    radial-gradient(circle at 75% 24%, rgba(238, 233, 223, .24), transparent 18%),
    linear-gradient(115deg, rgba(182, 51, 38, .58), rgba(12, 12, 12, .32) 36%, rgba(5, 5, 5, .96)),
    #101010;
  overflow: hidden;
}

.featured-carousel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(238, 233, 223, .24);
  pointer-events: none;
  z-index: 3;
}

.featured-track {
  display: grid;
  height: 100%;
  min-height: 460px;
}

.featured-slide {
  grid-area: 1 / 1;
  min-height: 460px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}

.featured-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.featured-slide h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(50px, 7vw, 118px);
  line-height: .8;
  letter-spacing: -.09em;
  text-transform: uppercase;
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(238, 233, 223, .68);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.carousel-controls {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(238, 233, 223, .5);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
}

.carousel-controls button:hover {
  background: var(--cream);
  color: var(--black);
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.hero-action {
  min-height: 118px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-light);
  background: #101010;
  transition: background .2s ease;
}

.hero-action:last-child { border-right: 0; }
.hero-action:hover { background: #1a1a1a; }

.label {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.dark .label,
.hero-feature .label {
  color: rgba(238, 233, 223, .58);
}

.hero-action strong {
  font-size: clamp(26px, 3vw, 48px);
  line-height: .86;
  letter-spacing: -.075em;
  text-transform: uppercase;
  font-weight: 900;
}

.dark {
  background: var(--black);
  color: var(--cream);
  border-bottom-color: var(--line-light);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.price-card {
  min-height: 230px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.price-card h3 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 58px);
  line-height: .84;
  letter-spacing: -.08em;
  text-transform: uppercase;
}

.price-card p {
  margin-bottom: 0;
  color: rgba(238, 233, 223, .72);
  font-size: 14px;
  line-height: 1.25;
}

.price {
  color: rgba(238, 233, 223, .72);
  font-size: 13px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.rows {
  border-top: 1px solid var(--line);
}

.row {
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.row h3 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.4vw, 64px);
  line-height: .82;
  letter-spacing: -.08em;
  text-transform: uppercase;
}

.row p {
  margin-bottom: 0;
  color: #3d3831;
  font-size: 15px;
  line-height: 1.25;
}

.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.editorial-card {
  min-height: 320px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, color .2s ease;
}

.editorial-card:hover {
  background: var(--black);
  color: var(--cream);
}

.editorial-card:hover .label { color: rgba(238, 233, 223, .58); }

.editorial-card h3 {
  margin-bottom: 12px;
  font-size: clamp(38px, 5vw, 92px);
  line-height: .8;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.editorial-card p {
  max-width: 470px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.28;
}

.news-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.news-card {
  min-height: 340px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: #111;
}

.news-card.side { background: #171717; }

.news-card h3 {
  margin-bottom: 12px;
  font-size: clamp(36px, 4.8vw, 94px);
  line-height: .82;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.news-card p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(238, 233, 223, .72);
  line-height: 1.28;
}

.cta {
  padding: clamp(44px, 7vw, 110px) clamp(24px, 4vw, 58px);
  background: var(--red);
  color: var(--cream);
}

.cta h2 {
  max-width: 1160px;
  margin-bottom: 24px;
  font-size: clamp(56px, 9vw, 160px);
  line-height: .8;
  letter-spacing: -.095em;
  text-transform: uppercase;
}

.cta-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(238, 233, 223, .34);
}

.cta p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(238, 233, 223, .8);
  font-size: 17px;
  line-height: 1.28;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 20px 24px;
  background: var(--black);
  color: var(--cream);
  border-top: 1px solid var(--line-light);
  font-size: 12px;
  letter-spacing: .05em;
  line-height: 1.4;
  text-transform: uppercase;
}

footer div:nth-child(2) { text-align: center; }
footer div:nth-child(3) { text-align: right; }

    .pricing-motion-wrap{
      width:min(1120px, 100%);
      margin: 10px auto 0;
      border:1px solid var(--line);
      background:
        radial-gradient(circle at 18% 30%, rgba(182,51,38,.16), transparent 20%),
        radial-gradient(circle at 80% 26%, rgba(51,95,140,.12), transparent 18%),
        linear-gradient(180deg, rgba(238,233,223,.03), rgba(238,233,223,.015));
      overflow:hidden;
      position:relative;
      min-height: 320px;
    }

    .pricing-motion-wrap::before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(238,233,223,.10);
      pointer-events:none;
    }

    .pricing-motion{
      position:relative;
      height:320px;
      overflow:hidden;
      isolation:isolate;
    }

    .money-plate{
      position:absolute;
      left:50%;
      bottom:42px;
      width:420px;
      height:98px;
      transform:translateX(-50%);
      border-radius:50%;
      border:1px solid rgba(238,233,223,.10);
      background:
        radial-gradient(circle at 50% 50%, rgba(238,233,223,.06), transparent 62%);
      box-shadow:
        0 0 0 18px rgba(238,233,223,.015),
        0 0 0 44px rgba(238,233,223,.01);
    }

    .money-orbit{
      position:absolute;
      left:50%;
      top:50%;
      border:1px solid rgba(238,233,223,.10);
      border-radius:50%;
      transform:translate(-50%, -50%);
      animation: orbitSpin linear infinite;
    }

    .orbit-1{
      width:360px;
      height:360px;
      opacity:.36;
      animation-duration:22s;
    }

    .orbit-2{
      width:250px;
      height:250px;
      opacity:.24;
      animation-duration:16s;
      animation-direction:reverse;
    }

    .orbit-3{
      width:150px;
      height:150px;
      opacity:.18;
      animation-duration:10s;
    }

    .money-node{
      position:absolute;
      width:10px;
      height:10px;
      border-radius:50%;
      background:rgba(185,154,91,.82);
      box-shadow:0 0 14px rgba(185,154,91,.18);
      animation: nodePulse 2.8s ease-in-out infinite;
    }

    .node-a{ left:22%; top:26%; animation-delay:0s; }
    .node-b{ right:24%; top:20%; animation-delay:.6s; }
    .node-c{ left:31%; bottom:28%; animation-delay:1.2s; }
    .node-d{ right:30%; bottom:24%; animation-delay:1.8s; }

    .money-stack{
      position:absolute;
      bottom:78px;
      display:flex;
      flex-direction:column-reverse;
      gap:6px;
      animation: stackFloat 4.8s ease-in-out infinite;
    }

    .money-stack span{
      display:block;
      width:74px;
      height:14px;
      border-radius:999px;
      border:1px solid rgba(185,154,91,.34);
      background:
        linear-gradient(180deg, rgba(238,233,223,.16), rgba(185,154,91,.10)),
        rgba(185,154,91,.12);
      box-shadow:0 1px 0 rgba(238,233,223,.10) inset;
    }

    .stack-1{
      left:24%;
      animation-delay:0s;
    }

    .stack-1 span:nth-child(1){ width:62px; }
    .stack-1 span:nth-child(2){ width:66px; }
    .stack-1 span:nth-child(3){ width:70px; }
    .stack-1 span:nth-child(4){ width:74px; }

    .stack-2{
      left:50%;
      transform:translateX(-50%);
      animation-delay:.7s;
    }

    .stack-2 span:nth-child(1){ width:66px; }
    .stack-2 span:nth-child(2){ width:69px; }
    .stack-2 span:nth-child(3){ width:72px; }
    .stack-2 span:nth-child(4){ width:75px; }
    .stack-2 span:nth-child(5){ width:78px; }
    .stack-2 span:nth-child(6){ width:82px; }

    .stack-3{
      right:24%;
      animation-delay:1.4s;
    }

    .stack-3 span:nth-child(1){ width:58px; }
    .stack-3 span:nth-child(2){ width:64px; }
    .stack-3 span:nth-child(3){ width:70px; }

    .money-beam{
      position:absolute;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(238,233,223,.28), transparent);
      animation: beamSlide 5.8s ease-in-out infinite;
      opacity:.8;
    }

    .beam-1{
      left:19%;
      top:30%;
      width:180px;
      transform:rotate(18deg);
      animation-delay:0s;
    }

    .beam-2{
      right:18%;
      top:36%;
      width:160px;
      transform:rotate(-16deg);
      animation-delay:1.2s;
    }

    .beam-3{
      left:50%;
      bottom:112px;
      width:220px;
      transform:translateX(-50%);
      animation-delay:2.2s;
    }

    .money-chip{
      position:absolute;
      width:18px;
      height:18px;
      border-radius:50%;
      border:1px solid rgba(51,95,140,.34);
      background:
        radial-gradient(circle at 35% 35%, rgba(238,233,223,.30), transparent 32%),
        rgba(51,95,140,.16);
      animation: chipDrift 7s ease-in-out infinite;
    }

    .chip-1{ left:18%; top:44%; animation-delay:0s; }
    .chip-2{ right:16%; top:48%; animation-delay:1.3s; }
    .chip-3{ left:49%; top:18%; animation-delay:2.1s; }

    @keyframes orbitSpin{
      from{ transform:translate(-50%, -50%) rotate(0deg); }
      to{ transform:translate(-50%, -50%) rotate(360deg); }
    }

    @keyframes nodePulse{
      0%,100%{ transform:scale(1); opacity:.75; }
      50%{ transform:scale(1.28); opacity:1; }
    }

    @keyframes stackFloat{
      0%,100%{ transform:translateY(0); }
      50%{ transform:translateY(-8px); }
    }

    @keyframes beamSlide{
      0%,100%{ opacity:.18; transform:translateX(0) rotate(var(--rot, 0deg)); }
      50%{ opacity:.82; transform:translateX(16px) rotate(var(--rot, 0deg)); }
    }

    @keyframes chipDrift{
      0%,100%{ transform:translateY(0) translateX(0); opacity:.56; }
      50%{ transform:translateY(-16px) translateX(8px); opacity:1; }
    }

@media (max-width: 1050px) {
  header { grid-template-columns: 1fr auto; }
  nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; }
  .hero, .news-layout { grid-template-columns: 1fr; }
  .hero-feature { border-left: 0; border-top: 1px solid var(--line); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .row { grid-template-columns: 1fr; gap: 8px; align-items: start; }
}

@media (max-width: 720px) {
  header { padding: 14px 16px; gap: 16px; }
  nav { gap: 12px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; }
  .header-right a:not(.button) { display: none; }
  .hero-copy, .cta { padding-left: 18px; padding-right: 18px; }
  .hero-copy { min-height: 520px; }
  .hero-copy, .poster { min-height: auto; }
  .hero-copy, .poster { padding-top: 34px; padding-bottom: 34px; }
  .hero-buttons { justify-content: flex-start; }
  .hero-copy, .poster { gap: 60px; }
  .hero-copy .eyebrow { margin-bottom: 12px; }
  .hero-copy, .poster, .editorial-card, .news-card { min-height: 240px; }
  .hero-copy { justify-content: space-between; }
  .hero-title h1 { font-size: clamp(48px, 14vw, 92px); line-height: .9; letter-spacing: -.065em; }
  .hero-copy .hero-copy { display: block; }
  .hero-copy p { font-size: 18px; }
  .hero-copy .hero-copy { border-top: 0; }
  .hero-copy + .hero-feature .poster { min-height: 420px; }
  .hero-actions, .price-grid, .editorial, .cta-line, footer { grid-template-columns: 1fr; }
  footer div:nth-child(2), footer div:nth-child(3) { text-align: left; }

        .pricing-motion-wrap{
        min-height:260px;
      }

      .pricing-motion{
        height:260px;
      }

      .money-plate{
        width:280px;
        height:72px;
        bottom:34px;
      }

      .orbit-1{ width:250px; height:250px; }
      .orbit-2{ width:180px; height:180px; }
      .orbit-3{ width:110px; height:110px; }

      .money-stack span{
        height:12px;
      }

}

.hero-solo {
  grid-template-columns: 1fr;
}

.hero-solo .hero-title {
  border-right: 0;
  max-width: none;
}

.hero-solo .hero-copy {
  max-width: 760px;
}

/* Homepage centered solo hero refresh */

.hero-solo {
  grid-template-columns: 1fr;
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 64px);
  overflow: hidden;
  position: relative;
}

.hero-solo::before {
  content: "";
  position: absolute;
  width: min(48vw, 620px);
  height: min(48vw, 620px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(182, 51, 38, .16), transparent 68%);
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  opacity: .9;
  animation: matterPulse 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-solo::after {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 48px);
  border: 1px solid rgba(7, 7, 7, .12);
  pointer-events: none;
  opacity: .85;
}

.hero-solo .hero-title {
  width: min(1180px, 100%);
  min-height: auto;
  border-right: 0;
  max-width: none;
  padding: 0;
  display: grid;
  gap: clamp(80px, 12vh, 160px);
  position: relative;
  z-index: 2;
}

.hero-solo .hero-title > div:first-child {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.hero-solo .hero-title h1 {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(64px, 9vw, 168px);
  line-height: .78;
  letter-spacing: -.095em;
  animation: titleSettle .9s ease both;
}

.hero-solo .eyebrow {
  animation: fadeUp .7s ease both;
}

.hero-solo .hero-copy {
  width: min(760px, 100%);
  max-width: 760px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 7, 7, .16);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  animation: fadeUp .9s ease .16s both;
}

.hero-solo .hero-copy p {
  margin: 0;
}

.hero-solo .hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@keyframes matterPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(.92);
    opacity: .55;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: .95;
  }
}

@keyframes titleSettle {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 850px) {
  .hero-solo {
    place-items: start center;
    padding-top: 70px;
  }

  .hero-solo .hero-title {
    gap: 80px;
  }

  .hero-solo .hero-title > div:first-child {
    text-align: left;
    justify-items: start;
  }

  .hero-solo .hero-title h1 {
    text-align: left;
  }

  .hero-solo .hero-copy {
    grid-template-columns: 1fr;
    margin: 0;
  }

  .hero-solo .hero-buttons {
    justify-content: flex-start;
  }
}
