:root {
  --bg: #0b0b0d;
  --text: #1f1f22;
  --muted: #5a504b;
  --light: #f2ece6;
  --gold: #c9a04b;
  --gold-2: #e3c56e;
  --gold-border: rgba(214, 177, 96, 0.72);
  --line: rgba(203, 165, 90, 0.35);
  --green-deep: #132519;
  --green-mid: #263828;
  --cream: #e7dfd7;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --content-edge-x: clamp(28px, 6vw, 80px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

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

.page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(to bottom, rgba(11, 11, 13, 0.72) 0%, rgba(11, 11, 13, 0.06) 13%, rgba(11, 11, 13, 0.18) 100%),
    url("images/home_desktop_wide.png");
  background-size: auto, auto 100%;
  background-position: center, center top;
  background-repeat: no-repeat, no-repeat;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 244, 233, 0.52) 0%, rgba(255, 244, 233, 0.18) 20%, rgba(255, 244, 233, 0) 48%),
    radial-gradient(circle at 8% 12%, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 28%),
    radial-gradient(circle at 91% 14%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.02) 22%, rgba(0, 0, 0, 0.15) 100%);
  z-index: -1;
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--content-edge-x) 20px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.brand a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78px;
  overflow: hidden;
}

.brand img {
  width: min(340px, 32vw);
  min-width: 180px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(242, 231, 220, 0.88);
  font-size: 1.02rem;
  font-weight: 400;
  white-space: nowrap;
}

.nav a {
  opacity: 0.94;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-cta {
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid var(--gold-border);
  color: #f1dfbf;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, rgba(164, 125, 54, 0.24) 0%, rgba(105, 77, 28, 0.18) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 229, 168, 0.08);
}

.hero {
  position: relative;
  min-height: calc(100vh - 89px);
  padding: 24px var(--content-edge-x) 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(360px, 0.95fr);
  align-items: start;
  gap: clamp(24px, 3vw, 54px);
  max-width: 1380px;
  margin: 0 auto;
}

.copy {
  padding-top: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: clamp(1.05rem, 1vw + 0.65rem, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(71, 58, 52, 0.86);
  font-weight: 400;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 4vw + 0.6rem, 4.85rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.subhead {
  margin: 18px 0 0;
  font-size: clamp(1.6rem, 1vw + 1rem, 2.35rem);
  line-height: 1.28;
  color: rgba(58, 49, 45, 0.92);
  font-weight: 400;
}

.product-stage {
  position: relative;
  min-height: 660px;
}

.product-wrap {
  position: absolute;
  right: clamp(36px, 6vw, 120px);
  top: -14px; //-14px
  width: clamp(312px, 26.4vw, 416px);
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.18));
}

.product-wrap img {
  width: 65%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(420px, 760px);
  }

  .hero-grid > .product-stage {
    display: none;
  }
}

.signup {
  position: relative;
  margin-top: 45px;
  width: min(100%, 720px);
}

.launch-coupon-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  padding: 8px 12px;
  border: 1px solid rgba(227, 197, 110, 0.6);
  border-radius: 999px;
  color: #f7eed9;
  background: rgba(9, 9, 11, 0.62);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.launch-coupon-status__count {
  font-size: 0.9rem;
  font-weight: 800;
  color: #f8df9d;
  white-space: nowrap;
}

.launch-coupon-status__note {
  font-size: 0.82rem;
  line-height: 1.25;
  color: rgba(247, 238, 217, 0.86);
  min-width: 0;
}

.launch-coupon-status--full {
  border-color: rgba(239, 126, 88, 0.7);
}

.launch-coupon-status--error {
  opacity: 0.86;
}

.launch-coupon-full {
  width: min(100%, 590px);
  padding: 16px 18px;
  border: 1px solid rgba(227, 197, 110, 0.5);
  border-radius: 16px;
  color: #f7eed9;
  background: rgba(9, 9, 11, 0.72);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.launch-coupon-full p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.launch-coupon-full a {
  color: #f8df9d;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.signup-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 26px 30px 26px;
  background: linear-gradient(135deg, rgba(20, 38, 24, 0.96) 0%, rgba(19, 30, 22, 0.95) 52%, rgba(48, 63, 37, 0.9) 100%);
  border: 1px solid rgba(201, 164, 90, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 235, 192, 0.06), 0 12px 30px rgba(0, 0, 0, 0.16);
}

.signup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 50%, rgba(52, 85, 49, 0.26) 0%, rgba(52, 85, 49, 0) 36%),
    radial-gradient(circle at 79% 46%, rgba(228, 214, 141, 0.17) 0%, rgba(228, 214, 141, 0) 20%);
  pointer-events: none;
}

.signup-title {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0;
  color: #efe5d7;
  font-size: clamp(1.4rem, 1.2vw + 1rem, 1.9rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sparkle,
.sparkle::before,
.sparkle::after {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 245, 186, 1) 0%, rgba(255, 245, 186, 0.16) 55%, rgba(255, 245, 186, 0) 100%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.sparkle {
  right: 34px;
  top: 26px;
  width: 18px;
  height: 18px;
  filter: blur(0.2px);
}

.sparkle::before {
  left: -2px;
  top: 50%;
  width: 22px;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 999px;
}

.sparkle::after {
  top: -2px;
  left: 50%;
  width: 2px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
}

.sparkle-two {
  right: 10px;
  top: 44px;
  width: 10px;
  height: 10px;
  opacity: 0.92;
}

.sparkle-two::before {
  width: 14px;
  left: -2px;
}

.sparkle-two::after {
  height: 14px;
  top: -2px;
}

.email-shell {
  position: relative;
  margin-top: -12px;
  display: flex;
  align-items: stretch;
  width: min(92%, 590px);
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(246, 240, 232, 0.98) 0%, rgba(225, 215, 204, 0.98) 100%);
  border: 1px solid rgba(191, 170, 139, 0.82);
  box-shadow: var(--shadow);
  margin-left: auto;
  margin-right: auto;
}

.email-shell input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 25px 34px;
  font-size: clamp(1.15rem, 1vw + 0.65rem, 1.55rem);
  color: #5f564f;
  outline: none;
}

.email-shell input::placeholder {
  color: #70665f;
}

.email-shell button {
  width: 116px;
  border: 0;
  border-left: 1px solid rgba(182, 151, 84, 0.6);
  background: linear-gradient(180deg, #b39543 0%, #9f8235 100%);
  color: #f7eed9;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  box-shadow: inset 0 0 22px rgba(255, 232, 172, 0.16);
}

.email-shell button:hover {
  transform: translateX(1px);
  filter: brightness(1.04);
}

.fine-print {
  margin: 30px 0 0;
  max-width: 1180px;
  font-size: clamp(1.05rem, 0.8vw + 0.7rem, 1.45rem);
  line-height: 1.4;
  color: rgba(242, 228, 216, 0.9);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.mobile-nav-toggle {
  display: none;
}

@media (max-width: 1100px) {
  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand {
    justify-content: flex-start;
    flex: 0 0 auto;
  }

  .brand img {
    width: min(280px, 42vw);
  }

  .brand a {
    height: 68px;
  }

  .nav {
    gap: 18px;
    font-size: 0.94rem;
  }

  .header-cta {
    padding: 12px 18px;
  }

  .hero {
    padding-top: 16px;
  }

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

  .copy {
    max-width: 760px;
    padding-top: 0;
  }

  .product-stage {
    min-height: 420px;
  }

  .product-wrap {
    position: relative;
    top: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: min(60vw, 460px);
  }

  .signup {
    margin-top: 26px;
  }
}

@media (max-width: 767px) {
  :root {
    --content-edge-x: 30px;
  }

  .page {
    background-image:
      linear-gradient(to bottom, rgba(9, 9, 11, 0.5) 0%, rgba(9, 9, 11, 0.08) 16%, rgba(9, 9, 11, 0.25) 100%),
      url("images/home_mobile_3.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .page::before {
    background:
      radial-gradient(circle at 52% 9%, rgba(255, 243, 230, 0.58) 0%, rgba(255, 243, 230, 0.2) 24%, rgba(255, 243, 230, 0) 48%),
      radial-gradient(circle at 2% 4%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 22%),
      radial-gradient(circle at 95% 90%, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 26%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.03) 24%, rgba(0, 0, 0, 0.22) 100%);
  }

  .site-header {
    border-bottom: 0;
    justify-content: center;
    padding-top: 26px;
    padding-bottom: 0;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .brand {
    justify-content: center;
  }

  .brand img {
    width: min(74vw, 360px);
  }

  .brand a {
    height: 75px;
  }

  .hero {
    min-height: auto;
    padding-top: 8px;
    padding-bottom: 34px;
  }

  .hero-grid {
    gap: 0;
  }

  .copy {
    max-width: 100%;
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.94rem;
    letter-spacing: 0.06em;
  }

  h1 {
    font-size: clamp(2.55rem, 10vw, 4.1rem);
    line-height: 0.98;
  }

  .subhead {
    margin-top: 14px;
    font-size: 1.35rem;
    line-height: 1.34;
    max-width: 92%;
  }

  .product-stage {
    min-height: 0;
    margin-top: 28px;
  }

  .product-wrap {
    width: min(60vw, 420px);
  }

  .product-wrap img {
    width: 100%;
  }

  .signup {
    margin-top: clamp(300px, 52vh, 390px);
    width: 100%;
  }

  .launch-coupon-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    border-radius: 14px;
  }

  .signup-card {
    padding: 22px 18px 24px;
    border-radius: 24px;
  }

  .signup-title {
    font-size: 1rem;
    letter-spacing: 0.03em;
  }

  .sparkle {
    right: 26px;
    top: 24px;
    width: 14px;
    height: 14px;
  }

  .sparkle-two {
    right: 10px;
    top: 36px;
    width: 8px;
    height: 8px;
  }

  .email-shell {
    width: calc(100% - 28px);
    margin-top: -10px;
  }

  .email-shell input {
    padding: 19px 24px;
    font-size: 1.05rem;
  }

  .email-shell button {
    width: 92px;
    font-size: 2.4rem;
  }

  .fine-print {
    margin-top: 24px;
    font-size: 0.95rem;
    line-height: 1.45;
    max-width: none;
  }

  .content-band {
    padding-top: 36px;
    padding-bottom: 40px;
  }
}

/* Full-width strip below the hero (not the site footer): text + images on black */
.content-band {
  background: #000;
  color: #e8e4dc;
  padding: clamp(44px, 7vw, 88px) var(--content-edge-x);
  border-top: 1px solid rgba(203, 165, 90, 0.22);
}

.content-band-inner {
  max-width: 920px;
  margin: 0 auto;
}

.content-band-h1 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 2vw + 1rem, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #faf7f2;
}

.content-band-h2 {
  margin: 0 0 22px;
  font-size: clamp(1.08rem, 0.45vw + 0.98rem, 1.32rem);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.015em;
  color: var(--gold-2);
}

.content-band-p {
  margin: 0;
  font-size: clamp(1rem, 0.2vw + 0.94rem, 1.08rem);
  line-height: 1.72;
  color: rgba(232, 228, 220, 0.9);
  max-width: 62ch;
}

.content-band-p + .content-band-p {
  margin-top: 1.1rem;
}

.content-band img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: clamp(20px, 3vw, 32px);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}

.product-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.info-card {
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.96) 0%, rgba(8, 8, 10, 0.98) 100%);
  border: 1px solid rgba(214, 177, 96, 0.28);
  border-radius: 18px;
  padding: clamp(20px, 2.6vw, 30px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.supplement-facts {
  background: #f8f4ed;
  color: #111;
  border: 3px solid #111;
  padding: 16px 16px 14px;
  border-radius: 8px;
}

.sf-title {
  font-size: clamp(2rem, 2.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
  padding-bottom: 8px;
  border-bottom: 10px solid #111;
  letter-spacing: -0.03em;
}

.sf-serving {
  padding: 10px 0 8px;
  border-bottom: 1.5px solid #111;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 600;
}

.sf-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 8px 0 7px;
  border-bottom: 4px solid #111;
  font-size: 0.95rem;
  font-weight: 800;
}

.sf-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #111;
  font-size: 0.96rem;
  line-height: 1.35;
}

.sf-row span:last-child,
.sf-header span:last-child {
  white-space: nowrap;
  text-align: right;
}

.sf-footnote {
  padding-top: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.how-to-use-card .content-band-h2 {
  margin-bottom: 12px;
}

.how-to-use-card .content-band-p {
  max-width: none;
}

@media (max-width: 900px) {
  .product-info-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */

.faq-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(214, 177, 96, 0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.96) 0%, rgba(8, 8, 10, 0.98) 100%);
  padding: 18px 20px;
  transition: border 0.2s ease, background 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(214, 177, 96, 0.5);
  background: linear-gradient(180deg, rgba(22, 22, 24, 0.98) 0%, rgba(10, 10, 12, 1) 100%);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: #f3e8d8;
  list-style: none;
  position: relative;
  padding-right: 28px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* plus / minus icon */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  color: var(--gold-2);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-item p {
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(232, 228, 220, 0.9);
}

.whitepaper-kicker {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whitepaper-band {
  padding-top: clamp(38px, 6vw, 72px);
}

.whitepaper-link {
  margin: 18px 0 0;
}

.whitepaper-link a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  font-weight: 800;
}

.whitepaper-link a:hover {
  color: #f7e6be;
}

.site-footer {
  border-top: 1px solid rgba(203, 165, 90, 0.28);
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.98) 100%);
  padding: 24px clamp(24px, 6vw, 80px) 28px;
  color: rgba(239, 229, 215, 0.88);
}

.site-footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.site-footer-disclaimer {
  margin: 0;
  font-size: clamp(0.78rem, 0.25vw + 0.7rem, 0.92rem);
  line-height: 1.45;
  color: rgba(239, 229, 215, 0.76);
  max-width: 780px;
  text-align: center;
}

.site-footer-tagline {
  margin: -8px 0 0;
  color: rgba(241, 223, 191, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-footer-links a {
  color: rgba(241, 223, 191, 0.9);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer-links a:hover {
  color: #f7e6be;
  border-bottom-color: rgba(227, 197, 110, 0.82);
}

.site-footer-links a[aria-current="page"] {
  color: #f7e6be;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom-color: rgba(227, 197, 110, 0.95);
  cursor: default;
}

.site-footer-links a[aria-current="page"]:hover {
  color: #f7e6be;
  border-bottom-color: rgba(227, 197, 110, 0.95);
}

.product-stage-inline {
  display: none;
}

@media (max-width: 860px) {
  .site-footer {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .site-footer-links {
    gap: 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .copy {
    display: flex;
    flex-direction: column;
  }

  .copy .eyebrow {
    order: 1;
  }

  .copy h1 {
    order: 2;
  }

  .copy .subhead {
    order: 3;
  }

  .copy .product-stage-inline {
    order: 4;
  }

  .copy .signup {
    order: 5;
  }

  .copy .fine-print {
    order: 6;
  }

  .hero-grid > .product-stage {
    display: none;
  }

  .product-stage-inline {
    display: block;
    margin: 8px 0 0px;
  }

  .product-stage-inline .product-wrap {
    left: auto;
    transform: none;
    top: -20px;
    margin: 0 auto;
  }

}

/* Full-width top banner (separate instances for desktop vs mobile) */
.launch-ribbon {
  display: none;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 10px clamp(16px, 4vw, 28px);
  padding-top: calc(10px + env(safe-area-inset-top, 0px));
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e3c56e;
  background: linear-gradient(180deg, #0a0a0c 0%, #050506 100%);
  border-bottom: 1px solid rgba(214, 177, 96, 0.35);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.launch-ribbon--desktop {
  letter-spacing: 0.11em;
}

@media (min-width: 768px) {
  .launch-ribbon--desktop {
    display: block;
  }

  .launch-ribbon--mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .launch-ribbon--mobile {
    display: block;
    font-size: 0.72rem;
    padding: 9px 14px;
    padding-top: calc(9px + env(safe-area-inset-top, 0px));
  }

  .launch-ribbon--desktop {
    display: none;
  }
}
