
:root {
  --gold: #d7a350;
  --gold-light: #f5cf78;
  --gold-dark: #9a6726;
  --white: #ffffff;
  --muted: rgba(255,255,255,.76);
  --line: rgba(215,163,80,.34);
  --black: #000000;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  background: #000;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at 83% 9%, rgba(215,163,80,.20), transparent 30%),
    radial-gradient(circle at 20% 26%, rgba(215,163,80,.10), transparent 32%),
    linear-gradient(180deg, #050403 0%, #000 60%, #000 100%);
}

.page {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at center, transparent 0 44%, rgba(0,0,0,.76) 86%),
    linear-gradient(90deg, rgba(0,0,0,.50), transparent 28%, transparent 76%, rgba(0,0,0,.58));
}

.page > * {
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  padding: 24px clamp(20px, 4vw, 62px);
  display: grid;
  grid-template-columns: 240px 1fr 250px;
  align-items: center;
  gap: 24px;
  z-index: 10;
}

.brand,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand span span,
.footer-logo span:not(.hd-mark) {
  color: var(--gold);
}

.hd-mark {
  width: 42px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px 18px 18px 8px;
  background: linear-gradient(135deg, #ef513b, #d42850 50%, #d6a14b);
  color: #130b02;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.12em;
}

.hd-mark.small {
  width: 32px;
  height: 25px;
  font-size: 11px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
}

.main-nav a,
.socials a,
.footer a {
  color: #fff;
  text-decoration: none;
}

.main-nav a {
  color: rgba(255,255,255,.86);
  font-size: 14px;
  padding-bottom: 8px;
}

.main-nav .active {
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

.socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 11px;
  font-size: 14px;
}

.socials a {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 900;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  padding: 130px clamp(20px, 4vw, 62px) 92px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: 0 0 0 38%;
  z-index: 0;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.70) contrast(1.08) saturate(.92);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0,0,0,.90) 22%, rgba(0,0,0,.42) 52%, rgba(0,0,0,.05)),
    linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.05) 48%, #000 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.overline {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .38em;
  font-size: 18px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  color: #f0d1a2;
  font-size: clamp(60px, 8vw, 104px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.04em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-sub {
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.promise {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-light);
  font-size: 18px;
  margin-bottom: 38px;
}

.promise span {
  font-size: 26px;
  color: var(--gold);
}

.signup-form {
  width: min(100%, 500px);
  display: flex;
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid rgba(245,207,120,.42);
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(8px);
}

.signup-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  padding: 19px 22px;
  font-size: 16px;
}

.signup-form input::placeholder {
  color: rgba(255,255,255,.75);
}

.signup-form button {
  border: 0;
  padding: 0 32px;
  color: #140c02;
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(135deg, #c88a36, var(--gold-light));
  cursor: pointer;
}

.privacy {
  margin-top: 14px;
  margin-left: 22px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

/* Features */
.features {
  width: min(100% - 84px, 1160px);
  margin: -42px auto 0;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(10,9,8,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 70px rgba(0,0,0,.48);
}

.features article {
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid rgba(215,163,80,.22);
}

.features article:last-child {
  border-right: 0;
}

.icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  color: var(--gold-light);
  position: relative;
}

.heart,
.star {
  font-size: 72px;
  line-height: .7;
  font-weight: 300;
}

.clock {
  border: 3px solid var(--gold-light);
  border-radius: 50%;
  width: 58px;
  height: 58px;
}

.clock::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 18px;
  left: 27px;
  top: 14px;
  background: var(--gold-light);
}

.clock::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 3px;
  left: 27px;
  top: 31px;
  background: var(--gold-light);
  transform: rotate(28deg);
  transform-origin: left center;
}

.clapper::before {
  content: "";
  position: absolute;
  inset: 9px 11px;
  border: 3px solid var(--gold-light);
  border-radius: 4px;
}

.clapper::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 21px;
}

.features h3 {
  text-transform: uppercase;
  color: var(--gold-light);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
}

.features p {
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.45;
}

/* Episodes */
.episodes {
  padding: 70px clamp(20px, 4vw, 62px) 40px;
}

.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.section-title span {
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title h2 {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.episode-grid article {
  overflow: hidden;
  border-radius: 10px;
}

.episode-grid img {
  width: 100%;
  display: block;
  transition: .35s;
}

.episode-grid img:hover {
  transform: scale(1.035);
}

.view-all {
  display: block;
  width: 250px;
  margin: 24px auto 0;
  text-align: center;
  text-decoration: none;
  color: #130c02;
  font-weight: 600;
  background: linear-gradient(135deg, #c88a36, var(--gold-light));
  padding: 14px 24px;
  border-radius: 8px;
}

/* Pocket */
.pocket {
  position: relative;
  min-height: 420px;
  padding: 20px clamp(20px, 4vw, 62px) 58px;
  display: grid;
  grid-template-columns: 330px 1fr 320px;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(215,163,80,.26);
  overflow: hidden;
}

.phone-wrap {
  position: relative;
  z-index: 2;
}

.phone-wrap img {
  width: 300px;
  max-width: 100%;
  display: block;
}

.pocket-copy {
  position: relative;
  z-index: 3;
  padding: 32px 12px;
}

.pocket-copy h2 {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pocket-copy p {
  margin-top: 22px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.55;
}

.stores {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 7px;
  color: #fff;
  background: #050505;
  padding: 7px 18px;
  font-size: 18px;
  line-height: 1.1;
}

.store small,
.store b {
  display: block;
}

.store small {
  font-size: 10px;
  text-transform: uppercase;
}

.store b {
  font-size: 17px;
}

.pocket-art {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  z-index: 1;
  opacity: .9;
}

.pocket-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: brightness(.72);
}

.pocket-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0,0,0,.32) 55%, transparent);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(215,163,80,.22);
  text-align: center;
  padding: 30px 18px 26px;
  color: rgba(255,255,255,.65);
}

.footer-logo {
  justify-content: center;
  margin-bottom: 10px;
}

.footer-logo span:last-child {
  color: var(--gold);
}

.footer p {
  margin-bottom: 14px;
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.footer a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}

/* Popup */
.popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
  background: rgba(0,0,0,.78);
}

.popup-card {
  width: min(92vw, 390px);
  padding: 34px 26px;
  text-align: center;
  color: #fff;
  border-radius: 24px;
  background: linear-gradient(180deg, #171006, #070503);
  border: 1px solid rgba(240,200,120,.45);
  box-shadow: 0 0 42px rgba(240,200,120,.18);
}

.popup-card h2 {
  color: var(--gold-light);
  font-size: 28px;
  margin-bottom: 10px;
}

.popup-card p {
  line-height: 1.5;
}

.popup-card button {
  margin-top: 22px;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  color: #140c02;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #c88a36, var(--gold-light));
}

/* Responsive */
@media (max-width: 1050px) {
  .header {
    grid-template-columns: 230px 1fr 210px;
  }

  .main-nav {
    gap: 22px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .features article:nth-child(2) {
    border-right: 0;
  }

  .episode-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pocket {
    grid-template-columns: 300px 1fr;
  }

  .pocket-art {
    display: none;
  }
}

@media (max-width: 760px) {
  .header {
    position: relative;
    height: auto;
    padding: 18px 14px;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .brand {
    font-size: 24px;
  }

  .socials span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 54px 18px 80px;
  }

  .hero-art {
    inset: 0;
    opacity: .65;
  }

  .hero-art::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.68), rgba(0,0,0,.66), #000),
      linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.32));
  }

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

  .overline {
    font-size: 13px;
    letter-spacing: .24em;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .promise {
    font-size: 15px;
    align-items: flex-start;
  }

  .signup-form {
    flex-direction: column;
    border-radius: 14px;
    padding: 10px;
    gap: 10px;
  }

  .signup-form input,
  .signup-form button {
    width: 100%;
    padding: 15px 16px;
    text-align: center;
    border-radius: 10px;
  }

  .privacy {
    margin-left: 0;
    text-align: center;
  }

  .features {
    width: calc(100% - 28px);
    margin-top: -40px;
    grid-template-columns: 1fr;
    padding: 12px 22px;
  }

  .features article {
    border-right: 0;
    border-bottom: 1px solid rgba(215,163,80,.22);
    padding: 26px 0;
  }

  .features article:last-child {
    border-bottom: 0;
  }

  .episodes {
    padding: 54px 14px 34px;
  }

  .section-title span {
    width: 42px;
  }

  .section-title h2 {
    font-size: 27px;
  }

  .episode-grid {
    grid-template-columns: 1fr;
  }

  .pocket {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 14px 50px;
  }

  .phone-wrap img {
    width: 260px;
    margin: 0 auto;
  }

  .pocket-copy h2 {
    font-size: 34px;
  }

  .stores {
    justify-content: center;
  }
}

@media (max-width: 440px) {
  .hd-mark {
    width: 36px;
    height: 28px;
    font-size: 12px;
  }

  .socials {
    gap: 7px;
  }

  .socials a {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }
}
