/* style.css — PeptideVIP Design System */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;

  /* Colors — Light Sections */
  --color-bg: #F5F0E8;
  --color-surface: #F9F8F5;
  --color-surface-2: #FFFFFF;
  --color-text: #1C1C1C;
  --color-text-muted: #7A7974;
  --color-text-faint: #BAB9B4;
  --color-gold: #B8941F;
  --color-gold-dark: #C9A84C;
  --color-terracotta: #A8522A;
  --color-navy: #1B3245;
  --color-navy-light: #2A4359;
  --color-dark: #1A1A1A;
  --color-dark-footer: #161616;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.2 0.01 80 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.01 80 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.01 80 / 0.12);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}


/* ============================================================
   GLOBAL STYLES
   ============================================================ */
body {
  background: var(--color-bg);
  color: var(--color-text);
}

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

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (max-width: 767px) {
  .container {
    padding-inline: var(--space-4);
  }
}


/* ============================================================
   SECTION LABEL (gold uppercase)
   ============================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.section-label--light {
  color: var(--color-gold-dark);
}


/* ============================================================
   SECTION HEADING (serif)
   ============================================================ */
.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.section-heading--light {
  color: #F5F0E8;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn--dark {
  background: var(--color-dark);
  color: #F5F0E8;
}

.btn--dark:hover {
  background: #2a2a2a;
}

.btn--light {
  background: #F5F0E8;
  color: var(--color-dark);
}

.btn--light:hover {
  background: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-gold-dark);
  border: 1px solid var(--color-gold-dark);
}

.btn--outline:hover {
  background: rgba(201, 168, 76, 0.1);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s var(--ease-out);
  padding: var(--space-4) 0;
}

.nav--scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Logo — matches SkinnyVIP brand identity */
.logo {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1rem + 0.75vw, 1.5rem);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}

.logo__vip {
  font-family: var(--font-body);
  font-weight: 900;
  background: linear-gradient(135deg, #96780F 0%, #C9A84C 40%, #E8CC6A 60%, #C9A84C 80%, #96780F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo__i-wrap {
  position: relative;
}

.logo__i-wrap::before {
  content: '\2726';
  position: absolute;
  top: -0.65em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5em;
  background: linear-gradient(135deg, #C9A84C, #E8CC6A, #B8941F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  line-height: 1;
}

.logo--footer {
  color: #F5F0E8;
}

.logo--footer .logo__vip {
  background: linear-gradient(135deg, #96780F 0%, #C9A84C 40%, #E8CC6A 60%, #C9A84C 80%, #96780F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition-interactive);
}

.nav__links a:hover {
  color: var(--color-terracotta);
}

.nav__cta {
  font-size: var(--text-xs) !important;
  padding: var(--space-3) var(--space-6) !important;
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(245, 240, 232, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-6) var(--space-4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.nav__mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.nav__mobile-menu a {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-2) 0;
}

@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav__cta--desktop { display: none; }
  .nav__hamburger { display: flex; }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
  background: var(--color-bg);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero__superlabel {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.05;
  margin-bottom: var(--space-6);
}

.hero__title em {
  font-style: italic;
}

.hero__body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 52ch;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero__badge {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.hero__secondary {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-terracotta);
  transition: color var(--transition-interactive);
}

.hero__secondary:hover {
  color: var(--color-gold);
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
}

@media (max-width: 767px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .hero__image {
    order: -1;
  }
  .hero__image img {
    max-width: 280px;
  }
  .hero__title {
    font-size: var(--text-2xl);
  }
}


/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--color-navy);
  padding: var(--space-10) 0;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stats__item-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #F5F0E8;
  line-height: 1.2;
  margin-bottom: var(--space-1);
}

.stats__item-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(245, 240, 232, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}


/* ============================================================
   WHY SECTION
   ============================================================ */
.why {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.why__intro {
  max-width: 680px;
  margin-bottom: var(--space-12);
}

.why__body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.why__card {
  background: var(--color-surface);
  border: 1px solid rgba(28, 28, 28, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.why__card-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 148, 31, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-gold);
}

.why__card-icon svg {
  width: 24px;
  height: 24px;
}

.why__card-title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.why__card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .why__cards {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-surface);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
  margin-bottom: var(--space-12);
}

.how__step {
  position: relative;
}

.how__step-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  color: rgba(184, 148, 31, 0.08);
  line-height: 1;
  margin-bottom: calc(-1 * var(--space-6));
  position: relative;
  z-index: 0;
}

.how__step-content {
  position: relative;
  z-index: 1;
}

.how__step-title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.how__step-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.how__cta {
  text-align: center;
}

@media (max-width: 767px) {
  .how__steps {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .how__cta .btn {
    width: 100%;
  }
}


/* ============================================================
   PEPTIDES CATALOG
   ============================================================ */
.peptides {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-navy);
}

.peptides__intro {
  max-width: 680px;
  margin-bottom: var(--space-12);
}

.peptides__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.peptide-card {
  background: rgba(42, 67, 89, 0.4);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--transition-interactive),
              background var(--transition-interactive);
}

.peptide-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(42, 67, 89, 0.6);
}

.peptide-card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  background: rgba(201, 168, 76, 0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.peptide-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #F5F0E8;
  margin-bottom: var(--space-3);
}

.peptide-card__desc {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.peptide-card__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gold-dark);
  transition: color var(--transition-interactive);
}

.peptide-card__link:hover {
  color: #F5F0E8;
}

.peptides__bottom {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.peptides__bottom p {
  font-size: var(--text-base);
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: var(--space-6);
  max-width: none;
}

.peptide-card--full {
  grid-column: 1 / -1;
  max-width: 50%;
}

@media (max-width: 767px) {
  .peptides__grid {
    grid-template-columns: 1fr;
  }
  .peptide-card--full {
    max-width: 100%;
  }
}


/* ============================================================
   TRUST / ABOUT
   ============================================================ */
.trust {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.trust__body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.trust__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.trust__list li {
  font-size: var(--text-base);
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.trust__list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--color-terracotta);
  margin-top: 0.55em;
}

.trust__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust__visual-graphic {
  width: 100%;
  max-width: 420px;
}

@media (max-width: 767px) {
  .trust__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .trust__visual {
    order: -1;
  }
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-surface);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.testimonial-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.testimonial-card__stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
  color: var(--color-gold);
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-card__quote {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-gold-dark);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 767px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.faq__list {
  max-width: 800px;
  margin-top: var(--space-10);
}

.faq__item {
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.faq__question:hover {
  color: var(--color-terracotta);
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--color-text-muted);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s var(--ease-out);
  opacity: 0;
}

.faq__item.active .faq__answer {
  opacity: 1;
}

.faq__answer-inner {
  padding-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-dark);
  text-align: center;
}

.final-cta__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #F5F0E8;
  margin-bottom: var(--space-4);
}

.final-cta__subtext {
  font-size: var(--text-base);
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-inline: auto;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark-footer);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.6;
  margin-top: var(--space-4);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.6);
  transition: color var(--transition-interactive);
}

.footer__links a:hover {
  color: var(--color-gold-dark);
}

.footer__contact a {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.6);
  transition: color var(--transition-interactive);
}

.footer__contact a:hover {
  color: var(--color-gold-dark);
}

.footer__disclaimer {
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  padding-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.footer__disclaimer p {
  font-size: var(--text-xs);
  color: rgba(245, 240, 232, 0.35);
  line-height: 1.6;
  max-width: none;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(245, 240, 232, 0.35);
}

.footer__practice {
  font-size: var(--text-xs);
  color: rgba(245, 240, 232, 0.25);
}

@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}


/* ============================================================
   GSAP ANIMATION INITIAL STATES
   ============================================================ */

/* Hero entrance */
.hero__superlabel,
.hero__title,
.hero__body,
.hero__badges,
.hero__actions {
  opacity: 0;
}

.hero__image {
  opacity: 0;
}

/* Section reveals — controlled by GSAP */
.gsap-reveal {
  opacity: 0;
}

/* Stagger children — GSAP handles initial opacity via gsap.set() in JS */

/* GSAP handles initial states for step numbers and trust SVG nodes via JS */

/* Horizontal line divider between sections */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  max-width: 200px;
  margin: 0 auto;
  transform: scaleX(0);
}


/* ============================================================
   TRUST VISUAL SVG
   ============================================================ */
.trust-visual-svg {
  width: 100%;
  max-width: 400px;
}


/* ============================================================
   NAV LINK UNDERLINE ANIMATION
   ============================================================ */
.nav__links a {
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* ============================================================
   PEPTIDE CARD HOVER LIFT
   ============================================================ */
.peptide-card {
  transform: translateY(0);
}

.peptide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}


/* ============================================================
   TESTIMONIAL CARD HOVER
   ============================================================ */
.testimonial-card {
  transition: transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero__superlabel,
  .hero__title,
  .hero__body,
  .hero__badges,
  .hero__actions,
  .hero__image,
  .gsap-reveal,
  .gsap-stagger-child,
  .how__step-number,
  .trust-node,
  .trust-node-dot {
    opacity: 1 !important;
    transform: none !important;
  }
  .section-divider {
    transform: scaleX(1) !important;
  }
}
