@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --ink: #1f1f1f;
  --muted: #5b5148;
  --line: #ded0c2;
  --white: #ffffff;
  --paper: #f8f4ee;
  --soft: #efe3d6;
  --gold: #b8895b;
  --espresso: #4a2f24;
  --review-gold: #d6a84f;
  --green: #1f1f1f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

.faris-page {
  background: var(--paper);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  overflow: hidden;
  width: 100vw;
}

.faris-page,
.faris-page * {
  box-sizing: border-box;
}

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

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

.announcement {
  background: var(--espresso);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  overflow: hidden;
  padding: 0.8rem 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0;
  width: 100%;
}

.announcement-track {
  animation: announcement-scroll 22s linear infinite;
  display: flex;
  gap: 3rem;
  justify-content: flex-start;
  width: max-content;
}

.announcement-track span {
  align-items: center;
  display: inline-flex;
  gap: 3rem;
}

.announcement-track span::after {
  color: var(--gold);
  content: "•";
}

.site-header {
  align-items: center;
  background: transparent;
  border-bottom: 0;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr auto 1fr;
  left: 50%;
  max-width: none;
  padding: 0 0 2rem;
  position: absolute;
  right: auto;
  top: 0;
  transform: translateX(-50%);
  overflow: hidden;
  width: 100vw;
  z-index: 10;
}

.brand {
  display: block;
  left: 50%;
  position: absolute;
  top: clamp(4.1rem, 5vw, 5.1rem);
  transform: translateX(-50%);
}

.brand img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
  height: 52px;
  object-fit: contain;
  width: auto;
}

nav {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  color: var(--white);
  direction: ltr;
  font-size: 0.9rem;
  font-weight: 700;
  justify-self: start;
  margin-left: clamp(1rem, 4vw, 4.5rem);
  margin-top: clamp(1.25rem, 2vw, 1.9rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

nav a[href="#kit"]::after {
  content: "";
}

.header-cta,
.button,
.sticky-buy {
  border-radius: 7px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  background: var(--soft);
  border: 1px solid rgba(248, 244, 238, 0.72);
  color: var(--ink);
  font-size: 0.88rem;
  justify-self: end;
  padding: 0.82rem 1.15rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.header-cta:hover,
.button:hover,
.sticky-buy:hover {
  transform: translateY(-2px);
}

.section {
  padding: clamp(3.4rem, 7vw, 6.5rem) clamp(1rem, 4vw, 4.5rem);
}

.hero {
  background: var(--ink);
  color: var(--white);
  display: block;
  min-height: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  margin-top: 0;
}

.hero picture {
  display: block;
}

.hero-banner {
  animation: product-pop 700ms ease both;
  aspect-ratio: 1672 / 941;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.hero-pack-link {
  border-radius: 12px;
  bottom: 8.6%;
  height: 8.2%;
  left: 66%;
  position: absolute;
  transform: translateX(-50%);
  width: 16.5%;
  z-index: 11;
}

.hero-pack-link-left {
  bottom: 19.5%;
  height: 7.8%;
  left: 16%;
  width: 22%;
}

.hero-pack-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.03;
  text-transform: none;
}

h1 {
  font-size: clamp(3.4rem, 7.5vw, 7rem);
  margin-bottom: 1.15rem;
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 3.25rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 0.45rem;
}

.hero-text,
.section-heading p,
.bundle-copy p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  max-width: 660px;
}

.button {
  background: var(--ink);
  border: 1px solid rgba(10, 10, 10, 0.08);
  color: var(--white);
  display: inline-flex;
  font-size: 0.88rem;
  justify-content: center;
  min-width: 220px;
  padding: 1rem 1.35rem;
}

.button.secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.button.light {
  background: var(--white);
  color: var(--ink);
}

.button.pulse {
  animation: cta-pulse 2s ease-in-out infinite;
}

.featured-product .button,
.bundle .button {
  background: var(--gold);
  color: var(--white);
}

.trust-bar {
  background: var(--white);
  border-block: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-bar span {
  background: var(--paper);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 1.1rem;
  text-align: center;
  text-transform: uppercase;
}

.products {
  background: var(--paper);
}

.product-grid {
  align-items: stretch;
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.86fr 1.28fr 0.86fr;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(10, 10, 10, 0.055);
  display: grid;
  overflow: hidden;
  position: relative;
}

.product-card img {
  aspect-ratio: 1;
  background: var(--soft);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.featured-product {
  border: 2px solid var(--gold);
  box-shadow: 0 26px 70px rgba(184, 137, 91, 0.22);
  transform: translateY(-0.8rem);
  z-index: 2;
}

.featured-product img {
  aspect-ratio: 1.35;
}

.best-tag {
  background: var(--espresso);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.65rem 0.9rem;
  position: absolute;
  right: 1rem;
  text-transform: uppercase;
  top: 1rem;
  z-index: 2;
}

.single-product {
  opacity: 0.86;
}

.single-product .button {
  background: transparent;
  color: var(--ink);
}

.pack-value {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 0.45rem;
  padding: 0.85rem;
}

.pack-value span {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.pack-value span:first-child {
  color: var(--muted);
  text-decoration: line-through;
}

.product-info {
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
}

.product-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.product-info h3 {
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0;
  text-transform: none;
}

.product-info p:not(.product-label) {
  color: var(--muted);
  margin: 0;
}

.product-info strong {
  color: var(--ink);
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
}

.audio-proof {
  background: var(--ink);
  color: var(--white);
}

.audio-proof .section-heading h2 {
  color: var(--white);
}

.audio-proof .section-heading .eyebrow {
  color: var(--gold);
}

.audio-proof .section-heading p {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  max-width: 680px;
}

.audio-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audio-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(10, 10, 10, 0.07);
  display: grid;
  gap: 1.1rem;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.audio-card::after {
  background: var(--gold);
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
}

.audio-top {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}

.audio-avatar {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  flex: 0 0 48px;
  font-size: 0.9rem;
  font-weight: 950;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.audio-card span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.audio-card h3 {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.15rem;
  margin: 0;
}

.audio-wave {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 0.4rem;
  height: 78px;
  justify-content: center;
}

.audio-wave i {
  animation: voice-bar 1.2s ease-in-out infinite;
  background: var(--gold);
  border-radius: 999px;
  display: block;
  height: 26px;
  width: 7px;
}

.audio-wave i:nth-child(2) {
  animation-delay: 0.1s;
  height: 42px;
}

.audio-wave i:nth-child(3) {
  animation-delay: 0.2s;
  height: 30px;
}

.audio-wave i:nth-child(4) {
  animation-delay: 0.3s;
  height: 54px;
}

.audio-wave i:nth-child(5) {
  animation-delay: 0.4s;
  height: 34px;
}

.audio-wave i:nth-child(6) {
  animation-delay: 0.5s;
  height: 46px;
}

.audio-wave i:nth-child(7) {
  animation-delay: 0.6s;
  height: 24px;
}

.audio-card audio {
  accent-color: var(--gold);
  width: 100%;
}

.audio-card p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  margin: 0;
}

.featured-audio {
  background: var(--ink);
  color: var(--white);
}

.featured-audio h3 {
  color: var(--white);
}

.featured-audio .audio-avatar {
  background: var(--gold);
  color: var(--ink);
}

.featured-audio .audio-wave {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.featured-audio p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: grid;
  justify-items: center;
  margin: 0 auto 2.25rem;
  max-width: 880px;
  text-align: center;
  width: 100%;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading .eyebrow,
.section-heading h2,
.section-heading p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.problems,
.dermaroller,
.faq {
  background: var(--soft);
}

.results {
  background: var(--white);
}

.routine {
  background: var(--ink);
  color: var(--white);
}

.routine .section-heading p,
.routine p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-grid,
.steps,
.benefit-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.problem-marquee {
  margin-inline: calc(clamp(1rem, 4vw, 4.5rem) * -1);
  overflow: hidden;
  position: relative;
}

.problem-marquee::before,
.problem-marquee::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: min(16vw, 160px);
  z-index: 2;
}

.problem-marquee::before {
  background: linear-gradient(90deg, var(--soft), transparent);
  left: 0;
}

.problem-marquee::after {
  background: linear-gradient(270deg, var(--soft), transparent);
  right: 0;
}

.problem-track {
  animation: problem-scroll 48s linear infinite;
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: max-content;
}

.problem-marquee:hover .problem-track {
  animation-play-state: paused;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 22px 52px rgba(74, 47, 36, 0.12);
  flex: 0 0 clamp(300px, 29vw, 430px);
  overflow: hidden;
}

.problem-photo {
  aspect-ratio: 1152 / 1456;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.product-story {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 1.08fr 0.92fr;
}

.story-image {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(10, 10, 10, 0.08);
  padding: clamp(0.7rem, 1.6vw, 1.2rem);
}

.story-image img {
  border-radius: 8px;
}

.story-copy {
  max-width: 620px;
}

.mini-benefits {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.mini-benefits span {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 7px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.045);
  font-weight: 950;
  padding: 1rem;
}

.proof-card,
.steps article,
.testimonial-grid article,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(10, 10, 10, 0.055);
}

.proof-card {
  min-height: 285px;
  padding: 1rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.transformation-grid {
  align-items: center;
  display: grid;
  gap: clamp(0.8rem, 1.6vw, 1.35rem);
  grid-template-columns: 0.92fr 1.18fr 0.92fr;
  padding-block: 1.2rem;
}

.transformation-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(74, 47, 36, 0.08);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.transformation-card img {
  aspect-ratio: 1;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.transformation-pack {
  border-color: rgba(184, 137, 91, 0.55);
  box-shadow: 0 26px 70px rgba(74, 47, 36, 0.15);
  transform: none;
  z-index: 2;
}

.proof-card:hover,
.transformation-card:hover,
.steps article:hover,
.testimonial-grid article:hover,
.benefit-grid article:hover {
  box-shadow: 0 26px 60px rgba(10, 10, 10, 0.1);
  transform: translateY(-4px);
}

.proof-card.dark {
  align-items: center;
  background:
    linear-gradient(rgba(10, 10, 10, 0.58), rgba(10, 10, 10, 0.58)),
    url("assets/faris-growth-kit.png") center/cover;
  color: var(--white);
  display: grid;
  justify-items: center;
  text-align: center;
}

.proof-card.dark p {
  color: rgba(255, 255, 255, 0.86);
}

.proof-split {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
  min-height: 205px;
}

.proof-split span,
.video-mark {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(184, 137, 91, 0.12)),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  font-weight: 950;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
}

.proof-split span::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  content: "";
  height: 100%;
  left: -80%;
  position: absolute;
  top: 0;
  transform: skewX(-16deg);
  width: 55%;
  animation: card-shine 3s ease-in-out infinite;
}

.video-mark {
  aspect-ratio: 1;
  background: var(--gold);
  width: 92px;
}

.routine {
  background:
    linear-gradient(180deg, var(--paper), var(--white));
  color: var(--ink);
}

.steps article {
  min-height: 210px;
  padding: 1.2rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.steps span {
  color: var(--gold);
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 3.8rem;
  line-height: 1;
  margin-bottom: 1.05rem;
}

.steps p,
.proof-card p,
.testimonial-grid p,
.faq p {
  color: var(--muted);
}

.bundle {
  align-items: center;
  background:
    linear-gradient(90deg, var(--white) 0%, var(--paper) 100%);
  color: var(--ink);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  position: relative;
}

.offer-ribbon {
  background: var(--espresso);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  padding: 0.75rem 5rem;
  position: absolute;
  right: -4rem;
  text-transform: uppercase;
  top: 2.2rem;
  transform: rotate(35deg);
  z-index: 2;
}

.bundle-visual {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.bundle-visual img {
  aspect-ratio: 0.54;
  background: var(--white);
  border: 8px solid var(--white);
  border-radius: 12px;
  box-shadow: 0 28px 70px rgba(10, 10, 10, 0.12);
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.bundle-visual img:nth-child(1) {
  transform: rotate(-2deg);
}

.bundle-visual img:nth-child(2) {
  transform: rotate(2deg) translateY(1.4rem);
}

.bundle-visual:hover img {
  transform: rotate(0deg) translateY(0);
}

.bundle-copy p {
  color: var(--muted);
}

.value-stack {
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  margin: 1.7rem 0;
  overflow: hidden;
}

.value-stack div {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1rem;
}

.value-stack .total {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}

.value-stack .today {
  background: var(--gold);
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 950;
}

.compare-box {
  background: var(--ink);
  border-radius: 10px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 980px;
  overflow: hidden;
}

.compare-box div {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.compare-box div:first-child {
  background: var(--ink);
}

.compare-box h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.compare-box p {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
  margin: 0;
  padding: 0.9rem 0;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  min-height: 150px;
  padding: 1.2rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.benefit-grid strong {
  background: var(--gold);
  border-radius: 50%;
  color: var(--ink);
  display: inline-grid;
  height: 2rem;
  margin-right: 0.55rem;
  place-items: center;
  width: 2rem;
}

.testimonials {
  background: var(--paper);
  color: var(--ink);
}

.testimonial-grid article {
  min-height: 170px;
  padding: 1.2rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.testimonial-grid p {
  font-size: 1.08rem;
}

.testimonial-grid span {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin: 0 auto;
  max-width: 900px;
}

details {
  padding: 1rem 1.1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

details[open] {
  border-color: rgba(184, 137, 91, 0.75);
}

summary {
  cursor: pointer;
  font-weight: 950;
  list-style: none;
  padding-right: 2rem;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  background: var(--ink);
  border-radius: 50%;
  color: var(--white);
  content: "+";
  display: grid;
  height: 1.5rem;
  place-items: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 1.5rem;
}

details[open] summary::after {
  background: var(--gold);
  color: var(--white);
  content: "-";
}

details p {
  margin: 0.7rem 0 0;
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.58)),
    url("assets/faris-growth-kit.png") center/cover;
  color: var(--white);
  padding: clamp(4rem, 9vw, 8rem) 1rem;
  text-align: center;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
  margin-left: auto;
  margin-right: auto;
}

.final-cta .button {
  color: var(--ink);
  margin-top: 1.15rem;
}

.footer-links {
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.6rem;
  justify-content: center;
  justify-self: center;
  margin: 2.4rem auto 0;
  max-width: 900px;
  text-align: center;
  text-shadow: none;
  width: 100%;
}

.footer-links a {
  color: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.sticky-buy {
  background: var(--gold);
  bottom: 0;
  box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.18);
  color: var(--ink);
  display: none;
  font-size: 0.92rem;
  left: 1rem;
  padding: 1rem;
  position: fixed;
  right: 1rem;
  text-align: center;
  z-index: 20;
}

@keyframes announcement-pop {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes announcement-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 1.5rem));
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes product-pop {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(18px);
  }

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

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(184, 137, 91, 0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(184, 137, 91, 0.22);
  }
}

@keyframes card-shine {
  0%,
  45% {
    left: -80%;
  }

  100% {
    left: 130%;
  }
}

@keyframes problem-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes voice-bar {
  0%,
  100% {
    transform: scaleY(0.72);
  }

  50% {
    transform: scaleY(1);
  }
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero,
  .bundle,
  .product-story,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .featured-product {
    transform: none;
  }

  .transformation-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    overflow-x: auto;
    padding-bottom: 0.6rem;
    padding-top: 0.4rem;
    scroll-snap-type: x mandatory;
  }

  .transformation-card {
    scroll-snap-align: start;
  }

  .transformation-pack {
    transform: none;
  }

  .trust-bar,
  .product-grid,
  .proof-grid,
  .audio-grid,
  .steps,
  .testimonial-grid,
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 4rem;
  }

  .site-header {
    grid-template-columns: 1fr;
    padding: 0 0 1.2rem;
  }

  .brand {
    left: 50%;
    order: 1;
    top: 3.35rem;
    transform: translateX(-50%);
  }

  .brand img {
    height: 38px;
  }

  .header-cta {
    order: 2;
    padding-inline: 0.8rem;
  }

  .section {
    padding: 3.2rem 1rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .trust-bar,
  .proof-grid,
  .transformation-grid,
  .audio-grid,
  .steps,
  .benefit-grid,
  .testimonial-grid,
  .bundle-visual,
  .compare-box {
    grid-template-columns: 1fr;
  }

  .proof-split {
    min-height: 180px;
  }

  .offer-ribbon {
    right: -4.5rem;
    top: 1rem;
  }

  .sticky-buy {
    display: block;
  }

  .hero-banner {
    aspect-ratio: 941 / 1672;
  }

  .hero-pack-link {
    bottom: 40.8%;
    height: 4.3%;
    left: 50%;
    width: 54%;
  }

  .hero-pack-link-left {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Premium pharmacy-style refinements */
.announcement {
  background: var(--espresso);
  border-bottom: 0;
  color: var(--white);
}

.site-header {
  background: transparent;
}

body .faris-page .site-header {
  left: 50% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100vw !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;
}

body .faris-page .announcement {
  justify-self: center !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100vw !important;
  width: 100vw !important;
}

.products {
  background: var(--paper);
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.products .section-heading {
  margin-bottom: 1.5rem;
  text-align: center;
}

.product-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.product-card {
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(10, 10, 10, 0.055);
  grid-template-rows: auto 1fr;
}

.product-card img {
  aspect-ratio: 1;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  height: auto;
  object-fit: cover;
}

.featured-product {
  border-color: var(--gold);
  box-shadow: 0 24px 72px rgba(184, 137, 91, 0.22);
  transform: none;
}

.featured-product img {
  aspect-ratio: 1;
}

.best-tag {
  border-radius: 6px;
}

.product-info {
  align-content: start;
  padding: 1.2rem;
}

.product-info h3 {
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
  text-transform: none;
}

.product-info strong {
  border-top: 1px solid var(--line);
  font-family: Inter, Arial, sans-serif;
  font-size: 2.05rem;
  padding-top: 0.8rem;
}

.product-info .button {
  margin-top: 0.2rem;
  min-width: 0;
  width: 100%;
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    overflow-x: auto;
    padding-bottom: 0.6rem;
    scroll-snap-type: x mandatory;
  }

  .product-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    margin-inline: -1rem;
    padding-inline: 1rem;
  }

  .product-card {
    grid-template-rows: auto 1fr;
  }

  .product-card img {
    height: auto;
  }

  .problem-card {
    flex-basis: 255px;
  }
}
