/* ── extracted from HTML by artifact-writer ── */
/* ============ RESET & BASE ============ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: avenir-next-lt-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #111;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: 'Kelson'; /* The name you'll use in your CSS */
  src: url('fonts/KelsonSansBG-Bold.woff') format('woff2'), /* Modern, preferred format */
       url('fonts/KelsonSansBG-Bold.woff2') format('woff');   /* Fallback for older browsers */
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Helps avoid invisible text while loading */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
a:hover { color: #f6b57b; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: avenir-next-lt-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.bold-font { font-weight: 800; }
.eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  background: #b0d0db;
  border: 1px solid #b0d0db;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: avenir-next-lt-pro, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn .arrow {
  display: inline-flex;
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease, margin-left 0.3s ease;
  opacity: 0;
}
.btn:hover .arrow { width: 1.1rem; opacity: 1; margin-left: 0.2rem; }
.btn-primary {
  background: #f6b57b;
  color: #111;
  border-color: #f6b57b;
  box-shadow: 0 8px 24px rgba(246,181,123,0.25);
}
.btn-primary:hover {
  background: #f3a45e;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(246,181,123,0.35);
}
.btn-secondary {
  background: #fff;
  color: #111;
  border-color: #111;
}
.btn-secondary:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

/* ============ NAVIGATION ============ */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
#site-nav.scrolled {
  box-shadow: 0 6px 28px rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.97);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0 auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > .nav-trigger {
  font-family: avenir-next-lt-pro, sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  cursor: pointer;
}
.nav-links > li > a:hover,
.nav-links > li > .nav-trigger:hover { color: #f6b57b; }
.nav-trigger .ph-caret-down { display: none; }
.nav-links > li:hover .ph-caret-right { display: none; }
.nav-links > li:hover .ph-caret-down { display: inline-block; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  list-style: none;
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #111;
}
.dropdown li a:hover { background: #f9f3ee; color: #f6b57b; }

.nav-cta { display: flex; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #111;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  z-index: 998;
  overflow-y: auto;
  background: #fff;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-inner {
  width: 100%;
  max-width: 420px;
  text-align: left;
}
.mobile-menu-inner > a,
.mobile-menu-inner > .mobile-toggle {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: avenir-next-lt-pro, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #111;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
}
.mobile-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.mobile-sub {
  display: none;
  list-style: none;
  padding: 0.5rem 0 0.5rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-sub.open { display: block; }
.mobile-sub li a {
  display: block;
  padding: 0.7rem 0;
  font-size: 1rem;
  font-weight: 400;
}
.mobile-close {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #111;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
body.nav-open .mobile-close {
  opacity: 1;
  pointer-events: auto;
}
.mobile-close:hover { color: #f6b57b; }
.mobile-logo {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  text-align: left;
}
.mobile-logo img { height: 100px; width: auto; margin:0 auto; }
.mobile-cta-wrap { margin-top: 1.8rem; }
.mobile-cta { display: inline-flex !important; width: auto !important; }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 6rem clamp(2rem, 6vw, 7rem);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-left img {
  max-width: 320px;
  width: 100%;
  height: auto;
}
.hero-right {
  border-left: 5px solid #f6b57b;
  padding: 1.5rem 0 1.5rem 2.5rem;
}
.hero-right h1 {
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1.08;
  color: #111;
  margin-bottom: 1.4rem;
}
.hero-right h1 .line1 {
  display: block;
  font-weight: 800;
}
.hero-right h1 .line2 {
  display: block;
  font-weight: 400;
}
.hero-tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #111;
  margin-bottom: 2rem;
  max-width: 640px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============ WHAT WE DO ============ */
.what-we-do {
  position: relative;
  background: url('../images/black-bg.jpg') center/cover no-repeat, #0a0a0a;
  color: #fff;
  padding: 8rem 0 22rem 0;
}
.what-we-do::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.7));
}
.wwd-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 3rem;
  align-items: flex-start;
}
.wwd-label {
  position: sticky;
  top: 24rem;
  margin-bottom: 90px;
}
.wwd-label .eyebrow {
  background: #b0d0db;
  border-color: #b0d0db;
  color: #111;
}
.wwd-statements {
  display: flex;
  flex-direction: column;
  gap: 24rem;
}
.wwd-statement {
  font-family: avenir-next-lt-pro, sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.3;
  color: #fff;
  max-width: 900px;
  opacity: 0.15;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.wwd-statement.visible { opacity: 1; transform: translateY(0); }
.wwd-statement strong {
  font-weight: 800;
  color: #f6b57b;
}

/* ============ SECTION HEAD (reused) ============ */
section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.section-head-left { max-width: 900px; }
.section-head-left .eyebrow { margin-bottom: 1.4rem; }
.section-head-left h2 {
  font-family: avenir-next-lt-pro, sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  color: #111;
}

/* ============ PEPTIDE ERA ============ */
.peptide-era { background: #f2f2f2; }
.peptide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.peptide-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.peptide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.peptide-card .stat-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: #111;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.peptide-card p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.55;
}

/* ============ INTEGRATED PLATFORM ============ */
.integrated-platform { background: #f2f2f2; }
.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: #f6b57b42;
  padding-right: 25px;
  border-radius: 20px;
}
.platform-card {
  border-radius: 18px;
  padding: 2.6rem 2rem;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.3s ease;
}
.platform-card:hover { transform: translateY(-6px); }
.platform-card .pc-icon { font-size: 50px; }
.platform-card h3 {
  font-family: avenir-next-lt-pro, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.2;
}

.pc-3 h3 {
  color:#fff;
}

.platform-card .pc-sub {
  font-weight: 400;
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.5;
}
.platform-card .pc-note {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0.75;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.pc-1 { background: #f6b57b; color: #111; border-radius: 18px 0 0 18px; }
.pc-2 { background: #b0d0db; color: #111; margin: 30px 0; }
.pc-3 { background: #5C739D; color: #fff; margin: 30px 0; }
.pc-3 .pc-note { border-top-color: rgba(255,255,255,0.25); }

/* ============ WHO WE ARE ============ */
.who-we-are { background: #fff; padding: 0; }
.wwa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 600px;
}
.wwa-image {
  background: url('../images/who-we-are.jpg') center/cover no-repeat, #ddd;
  min-height: 500px;
}
.wwa-content {
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wwa-content .eyebrow { margin-bottom: 1.4rem; align-self: flex-start; }
.wwa-content h2 {
  font-family: avenir-next-lt-pro, sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 1.5rem;
}
.wwa-content p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.wwa-content .btn { margin-top: 1.4rem; align-self: flex-start; }

/* ============ GET STARTED ============ */
.get-started {
  background: #b0d0db;
  text-align: center;
}
.get-started-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.get-started h2 {
  font-family: avenir-next-lt-pro, sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.4rem;
}
.get-started p {
  font-size: 1.05rem;
  color: #111;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}
/* .subscribe-form replaced by Mailchimp mc-email-row styles */
.disclaimer {
  font-size: 0.82rem;
  color: #2d4a55;
  margin-top: 0.5rem;
}

/* Mailchimp subscribe form */
#mc_embed_signup {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 1rem;
}
#mc_embed_signup form { margin: 0; padding: 0; }
.mc-name-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.mc-name-row input {
  flex: 1;
  border: none;
  padding: 0.85rem 1.2rem;
  font-family: avenir-next-lt-pro, sans-serif;
  font-size: 0.95rem;
  color: #111;
  border-radius: 999px;
  background: #fff;
  outline: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.mc-email-row {
  display: flex;
  gap: 0.6rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.mc-email-row input {
  flex: 1;
  border: none;
  padding: 0.9rem 1.2rem;
  font-family: avenir-next-lt-pro, sans-serif;
  font-size: 0.95rem;
  background: transparent;
  outline: none;
  color: #111;
  border-radius: 999px;
}
.mc-email-row button {
  background: #f6b57b;
  color: #111;
  font-family: avenir-next-lt-pro, sans-serif;
  font-weight: 800;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.mc-email-row button:hover { background: #f3a45e; transform: translateY(-1px); }
#mce-responses { margin-top: 0.6rem; }
#mce-error-response   { color: #c0392b; font-size: 0.88rem; }
#mce-success-response { color: #1a7f5a; font-size: 0.88rem; }

@media (max-width: 600px) {
  .mc-name-row { flex-direction: column; }
  .mc-email-row { flex-direction: column; border-radius: 18px; }
  .mc-email-row input, .mc-email-row button { width: 100%; border-radius: 12px; }
  .mc-name-row input { border-radius: 12px; }
}

/* ============ FOOTER ============ */
#site-footer {
  background: #fafaf7;
  color: #333;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { max-width: 110px; margin-bottom: 1.4rem; }
.footer-brand p { font-size: 0.92rem; color: #555; line-height: 1.6; max-width: 320px; }
.footer-col h4 {
  font-family: avenir-next-lt-pro, sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { font-size: 0.92rem; color: #555; }
.footer-col a:hover { color: #f6b57b; }
.footer-contact p { font-size: 0.9rem; color: #555; margin-bottom: 0.5rem; }
.footer-disclaimer {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 2rem;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #777;
}
.footer-bottom a { color: #777; margin-left: 1.2rem; }

/* ============ FADE IN ============ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 4rem 1.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-left img { max-width: 180px; }
  .hero-right { border-left: 4px solid #f6b57b; padding-left: 1.5rem; }
  .wwd-inner { grid-template-columns: 1fr; gap: 2rem; }
  .wwd-label { position: static; }
  .wwd-statements { gap: 6rem; }
  .section-head { display: flex; flex-direction: column; align-items: flex-start; }
  .peptide-cards, .platform-cards { grid-template-columns: 1fr; }
  .wwa-grid { grid-template-columns: 1fr; }
  .wwa-image { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .subscribe-form { flex-direction: column; border-radius: 18px; }
  .subscribe-form input, .subscribe-form button { width: 100%; }
  .what-we-do { padding: 8rem 0 8rem 0; }
  .platform-cards {padding-right: 0; padding-bottom: 30px; border-radius: 20px; }
  .pc-1 { border-radius: 18px 18px 0 0; }
  .pc-2 { margin: 0 30px; }
  .pc-3 { margin:  0 30px; }

}
@media (max-width: 700px) {
  .hero-video {display:none;}
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/inter-page-hero.jpg') right/cover no-repeat;
    z-index: 0;
  }
  .hero-left img { max-width: 180px; margin:0 auto}
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom a { margin-left: 0; }
}

/* ── extracted 2026-05-21T23:18:40.976Z ── */
/* ===== HERO (peptide page) ===== */
  .pep-hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;
    padding: 7rem clamp(2rem, 6vw, 7rem);
    background: url('../images/inter-page-hero.jpg') center/cover no-repeat;
    overflow: hidden;
  }
  .pep-hero::before {
    content: '';
    position: absolute; inset: 0;
  }
  .pep-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .pep-hero h1 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(2.4rem, 5.2vw, 4.6rem);
    line-height: 1.05;
    max-width: 1000px;
    margin-bottom: 1.6rem;
    color: #111;
  }
  .pep-hero .sub {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    max-width: 780px;
    color: #111;
    margin-bottom: 2.2rem;
    line-height: 1.45;
  }
  .pep-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

  /* ===== WHAT ARE PEPTIDES (scroll statements) ===== */
  .what-are-peptides {
    background: url('../images/black-bg.jpg') center/cover no-repeat, #0a0a0a;
    color: #fff;
    padding: 8rem 0 4rem;
    position: relative;
  }
  .what-are-peptides::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.7));
  }
  .wap-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    align-items: flex-start;
  }
  .wap-label { position: sticky; top: 24rem; margin-bottom:95px; }
  .wap-statements {
    display: flex;
    flex-direction: column;
    gap: 24rem;
    padding-bottom: 6rem;
  }
  .wap-statement {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    line-height: 1.32;
    color: #fff;
    max-width: 1000px;
    opacity: 0.15;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .wap-statement.visible { opacity: 1; transform: translateY(0); }

  /* ===== UNLOCK SPLIT ===== */
  .unlock-section {
    background: url('../images/black-bg.jpg') center/cover no-repeat, #0a0a0a;
    color: #fff;
    padding: 6rem 0 8rem;
    position: relative;
  }
  .unlock-section::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.8));
  }
  .unlock-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .unlock-inner h2 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-style: normal;
    color: #fff;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    line-height: 1.18;
    margin-bottom: 2.2rem;
    text-align: left;
  }
  .unlock-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
  }
  .unlock-pill {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111;
    background: #b0d0db;
    border: 1px solid #b0d0db;
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .unlock-pill.visible { opacity: 1; transform: translateY(0); }
  .unlock-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }

  /* ===== PEPTIDE ERA (extra cards) ===== */
  .era-cards-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  .era-card-wide {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: stretch;
  }
  .era-card-wide-img {
    width:100%;
    padding: 2.5rem 0 2.5rem 2rem;
  }
  .era-card-wide-text {
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    line-height: 1.5;
    color: #111;
    font-weight: 400;
  }
  .era-card-small {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .era-card-small-top {
    font-size: 1rem;
    line-height: 1.5;
    color: #111;
    font-weight: 400;
  }
  .era-card-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .era-split-num {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    color: #111;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .era-split-copy {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.4;
  }

  /* ===== GLP-3 OPPORTUNITY ===== */
  .glp3-section { background: #f2f2f2; }
  .glp3-sub {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    color: #444;
    margin-top: 1rem;
    max-width: 760px;
  }
  .glp3-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .glp3-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 2.6rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .glp3-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  .glp3-card.dark { background: #111; color: #fff; }
  .glp3-card.dark p { color: rgba(255,255,255,0.85); }
  .glp3-card h3 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    color: inherit;
  }
  .glp3-card.dark h3 { color: #fff; }
  .glp3-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
  }

  /* ===== REGULATORY MOMENTUM ===== */
  .reg-momentum {
    background: url('../images/black-bg.jpg') center/cover no-repeat, #0a0a0a;
    color: #fff;
    padding: 7rem 0;
    position: relative;
  }
  .reg-momentum::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.78));
  }
  .reg-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .reg-inner h2 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-style: normal;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    margin-bottom: 2rem;
  }
  .reg-list { list-style: none; padding: 0; margin: 0; }
  .reg-list li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    font-size: 1.08rem;
    line-height: 1.55;
    color: #fff;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .reg-list li:last-child { border-bottom: none; }
  .reg-list i { margin-top: 0.35rem; flex-shrink: 0; }
  .reg-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }

  @media (max-width: 900px) {
    .wap-inner { grid-template-columns: 1fr; gap: 2rem; }
    .wap-label { position: static; }
    .wap-statements { gap: 6rem; }
    .unlock-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .era-cards-row { grid-template-columns: 1fr; }
    .era-card-wide { grid-template-columns: 1fr; }
    .era-card-wide-img { min-height: 220px; }
    .glp3-cards { grid-template-columns: 1fr; }
    .reg-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .pep-hero { padding: 5rem 1.5rem; min-height: auto; }
    .era-card-wide-img { padding: 2.5rem 2rem 2.5rem 2rem; }
  }

/* ── extracted 2026-05-21T23:27:04.551Z ── */
/* ===== HOW IT WORKS — Intake to Income ===== */
  .how-it-works { background: #f2f2f2; }
  .hiw-head {
    max-width: 1280px;
    margin: 0 auto 4rem;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
  }
  .hiw-head .eyebrow { margin-bottom: 1.4rem; }
  .hiw-head h2 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.12;
    color: #111;
    margin-bottom: 1.2rem;
  }
  .hiw-head .hiw-sub {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: #444;
    line-height: 1.55;
    max-width: 880px;
  }

  .hiw-steps {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
  }
  .hiw-step {
    background: #fafaf7;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 2.2rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  .hiw-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  }
  .hiw-num {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 4rem;
    letter-spacing: -0.03em;
    color: #f6b57b;
  }
  .hiw-icon { line-height: 1; }
  .hiw-step h3 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #111;
    line-height: 1.25;
  }
  .hiw-step p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.55;
  }

  /* ===== PLATFORM ADVANTAGES (dark cards row) ===== */
  .platform-advantages {
    background: url('../images/black-bg.jpg') center/cover no-repeat, #0a0a0a;
    color: #fff;
    padding: 7rem 0;
    position: relative;
  }
  .platform-advantages h3 {
    font-family: avenir-next-lt-pro, sans-serif;
  	font-weight: 800;
  	font-size: 1.15rem;
  	color: #fff;
  	line-height: 1.25;
  }
  .platform-advantages::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.78));
  }
  .pa-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
  }
  .pa-inner h2 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-style: normal;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 3rem;
    text-align: left;
  }
  .pa-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .pa-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 2.4rem 2rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }
  .pa-card:hover {
    transform: translateY(-6px);
    border-color: #f6b57b;
  }
  .pa-card .pa-num {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 4rem;
    letter-spacing: -0.03em;
    color: #f6b57b;
  }
  .pa-card p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #fff;
    font-weight: 400;
  }

  @media (max-width: 900px) {
    .hiw-steps { grid-template-columns: 1fr; }
    .pa-cards { grid-template-columns: 1fr; }
  }

/* ── extracted 2026-05-21T23:32:14.176Z ── */
/* ===== TEAM PAGE ===== */
  .team-section { background: #f2f2f2; padding: clamp(4rem, 8vw, 7rem) 0; }
  .team-head {
    max-width: 1280px;
    margin: 0 auto 4rem;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
  }
  .team-head .eyebrow { margin-bottom: 1.4rem; }
  .team-head h2 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.12;
    color: #111;
  }
  .team-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
  }
  .team-card {
    background: #fafaf7;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  }
  .team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eee;
  }
  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .team-card:hover .team-photo img { transform: scale(1.04); }
  .team-info {
    padding: 1.6rem 1.4rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
  }
  .team-info h3 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #111;
    line-height: 1.2;
  }
  .team-title {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: 0.92rem;
    color: #555;
    margin-bottom: 1rem;
  }
  .read-bio-btn {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: #111;
    background: #fff;
    border: 1px solid #111;
    border-radius: 999px;
    padding: 0.6rem 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .read-bio-btn .arrow {
    display: inline-flex;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
  }
  .read-bio-btn:hover {
    background: #f6b57b;
    border-color: #f6b57b;
    color: #111;
  }
  .read-bio-btn:hover .arrow { width: 1rem; opacity: 1; }

  /* Lightbox */
  .bio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(10,10,10,0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .bio-lightbox.open { display: flex; opacity: 1; }
  .bio-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 1100px;
    width: 100%;
    max-height: 88vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  }
  .bio-modal-image {
    background: #eee center/cover no-repeat;
    min-height: 100%;
  }
  .bio-modal-content {
    padding: 3rem 2.5rem;
    overflow-y: auto;
    max-height: 88vh;
  }
  .bio-modal-content h3 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    color: #111;
    margin-bottom: 0.3rem;
  }
  .bio-modal-content .bio-title {
    font-size: 1rem;
    color: #f6b57b;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
  }
  .bio-modal-content p {
    font-size: 0.98rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  .bio-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    z-index: 2;
    border: none;
    font-size: 1.3rem;
  }
  .bio-close:hover { background: #f6b57b; color: #111; transform: rotate(90deg); }

  body.modal-open { overflow: hidden; }

  @media (max-width: 1100px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 800px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .bio-modal { grid-template-columns: 1fr; max-height: 92vh; }
    .bio-modal-image { min-height: 320px; aspect-ratio: auto; }
    .bio-modal-content { padding: 2rem 1.5rem; }
  }
  @media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
  }

/* ── extracted 2026-05-21T23:35:59.983Z ── */
/* ===== INVESTORS PAGE ===== */
  .inv-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    padding: 7rem clamp(2rem, 6vw, 7rem) 5rem;
    background: url('../images/inter-page-hero.jpg') center/cover no-repeat;
    overflow: hidden;
  }
  .inv-hero::before {
    content:'';
    position:absolute; inset:0;
  }
  .inv-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
  }
  .inv-hero .eyebrow { margin-bottom: 1.4rem; }
  .inv-hero h1 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    line-height: 1.05;
    color: #111;
    max-width: 900px;
  }
  .inv-hero h1 .bold { font-weight: 800; }

  /* ===== TICKERS / CHART SPLIT ===== */
  .ticker-section { background: #f2f2f2; padding: clamp(4rem, 7vw, 6rem) 0; }
  .ticker-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
  }
  .ticker-left .eyebrow { margin-bottom: 1.6rem; }
  .ticker-left h2 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 2rem;
  }
  .ticker-list { list-style: none; padding: 0; margin: 0; }
  .ticker-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
  }
  .ticker-list li:last-child { border-bottom: none; }
  .ticker-exch { color: #555; }
  .ticker-sym { color: #111; }

  .chart-card {
    background: #fafaf7;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.04);
  }
  .chart-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.4rem;
  }
  .chart-head .sym {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .chart-head .price {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: #111;
  }
  .chart-head .delta {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #2a8f5f;
    font-weight: 600;
    margin-left: 0.6rem;
  }
  .chart-svg-wrap { width: 100%; }
  .chart-svg-wrap svg { width: 100%; height: auto; display: block; }
  .chart-foot {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #777;
    margin-top: 0.8rem;
  }

  /* ===== NEWS + RESOURCES SPLIT ===== */
  .news-resources { background: #f2f2f2; padding: clamp(4rem, 7vw, 6rem) 0; }
  .nr-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .nr-inner-home {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
  }

  .nr-left h2, .nr-right h2 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    margin-bottom: 1.8rem;
  }
  .news-list { display: flex; flex-direction: row; gap: 1.2rem; align-items: stretch; }
  .news-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 1.6rem 1.6rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .news-item a.read-more { margin-top: auto; padding-top: 0.7rem; }
  .news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.06);
  }
  .news-date {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: #f6b57b;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .news-item h3 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #111;
  }
  .news-item p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.55;
  }
  .news-item a.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.7rem;
    font-weight: 800;
    font-size: 0.85rem;
    color: #111;
  }
  .news-item a.read-more:hover { color: #f6b57b; }

  .nr-right { display: flex; flex-direction: column; gap: 2.5rem; }
  .presentation-card {
    background: #f6b57b;
    border-radius: 18px;
    padding: 2rem;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 16px 40px rgba(246,181,123,0.25);
    transition: transform 0.3s ease;
    margin-top: 65px;
  }
  .presentation-card:hover { transform: translateY(-4px); color: #111; }
  .presentation-card h3 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  .presentation-card p {
    font-size: 0.88rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .presentation-card .pres-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .financials-block {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 2rem;
  }
  .financials-block h3 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
  }
  .financials-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.4rem; }
  .fin-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: #fafaf7;
    transition: background 0.25s ease, transform 0.25s ease;
    color: #111;
  }
  .fin-item:hover { background: #f9eee2; transform: translateX(4px); color: #111; }
  .fin-item svg { flex-shrink: 0; }
  .fin-item span {
    font-size: 0.95rem;
    font-weight: 400;
    color: #111;
  }
  .view-all-fin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 800;
    font-size: 0.88rem;
    color: #111;
  }
  .view-all-fin:hover { color: #f6b57b; }
  .view-all-fin i { font-size: 0.9rem; }

  @media (max-width: 900px) {
    .ticker-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .nr-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .news-list { flex-direction: column; }
    .inv-hero { padding: 5rem 1.5rem 3.5rem; min-height: auto; }
  }

/* ── extracted 2026-05-21T23:38:28.107Z ── */
/* ===== FINANCIALS PAGE ===== */
  .fin-tabs-section { background: #fff; padding: clamp(4rem, 7vw, 6rem) 0; }
  .fin-tabs-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
  }
  .fin-tabs-head {
    margin-bottom: 3rem;
  }
  .fin-tabs-head .eyebrow { margin-bottom: 1.4rem; }
  .fin-tabs-head h2 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    color: #111;
    margin-bottom: 1rem;
  }
  .fin-tabs-head p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    max-width: 720px;
  }

  .fin-tabs-nav {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 2.5rem;
  }
  .fin-tab-btn {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.9rem 1.6rem;
    color: #555;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease;
    letter-spacing: 0.04em;
  }
  .fin-tab-btn:hover { color: #111; }
  .fin-tab-btn.active {
    color: #111;
    border-bottom-color: #f6b57b;
  }

  .fin-tab-panel {
    display: none;
    animation: panelFade 0.4s ease;
  }
  .fin-tab-panel.active { display: block; }
  @keyframes panelFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fin-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .fin-doc {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.3rem 1.5rem;
    background: #fafaf7;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    color: #111;
  }
  .fin-doc:hover {
    background: #fff;
    border-color: #f6b57b;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.06);
    color: #111;
  }
  .fin-doc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f6b57b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #111;
    font-size: 1.4rem;
  }
  .fin-doc-body {
    flex: 1;
    min-width: 0;
  }
  .fin-doc-quarter {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f6b57b;
    margin-bottom: 0.25rem;
  }
  .fin-doc-title {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #111;
    line-height: 1.3;
  }
  .fin-doc-view {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: #111;
    flex-shrink: 0;
    transition: color 0.25s ease, transform 0.25s ease;
  }
  .fin-doc:hover .fin-doc-view { color: #f6b57b; transform: translateX(3px); }

  @media (max-width: 800px) {
    .fin-docs-grid { grid-template-columns: 1fr; }
    .fin-tab-btn { padding: 0.8rem 1rem; font-size: 0.92rem; }
    .fin-doc { padding: 1rem 1.1rem; gap: 0.9rem; }
    .fin-doc-view span { display: none; }
  }

/* ── extracted 2026-05-21T23:41:05.325Z ── */
/* ===== NEWS PAGE ===== */
  .news-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    padding: 7rem clamp(2rem, 6vw, 7rem) 5rem;
    background: url('../images/inter-page-hero.jpg') center/cover no-repeat;
    overflow: hidden;
  }
  .news-hero::before {
    content: '';
    position: absolute; inset: 0;
  }
  .news-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
  }
  .news-hero .eyebrow { margin-bottom: 1.4rem; }
  .news-hero h1 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    line-height: 1.05;
    color: #111;
    max-width: 900px;
  }
  .news-hero h1 .bold { font-weight: 800; }

  /* ===== LATEST NEWS ===== */
  .latest-news { background: #f2f2f2; padding: clamp(4rem, 7vw, 6rem) 0; }
  .latest-news-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
  }
  .latest-news-head { margin-bottom: 3.5rem; }
  .latest-news-head .eyebrow { margin-bottom: 1.4rem; }
  .latest-news-head h2 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    color: #111;
  }

  .news-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
    background: #fafaf7;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 4rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .news-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  }
  .news-feature-img {
    background: url('../images/genome.jpg') center/cover no-repeat, #ddd;
    min-height: 380px;
    height: 100%;
  }
  .news-feature-body {
    padding: clamp(2rem, 4vw, 3rem);
  }
  .news-feature-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
  }
  .news-feature-date {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    color: #f6b57b;
    text-transform: uppercase;
  }
  .news-feature-tag {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111;
    background: #b0d0db;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
  }
  .news-feature-body h3 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: 1.2;
    color: #111;
    margin-bottom: 1rem;
  }
  .news-feature-body p {
    font-size: 1.02rem;
    color: #444;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }
  .news-feature-body .btn { margin-top: 0.5rem; }

  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
  .news-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 1.8rem 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.07);
    border-color: #f6b57b;
  }
  .news-card-date {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: #f6b57b;
    text-transform: uppercase;
  }
  .news-card h3 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.35;
    color: #111;
  }
  .news-card p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.6;
    flex: 1;
  }
  .news-card a.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    font-weight: 800;
    font-size: 0.85rem;
    color: #111;
  }
  .news-card a.read-more:hover { color: #f6b57b; }

  @media (max-width: 900px) {
    .news-hero { padding: 5rem 1.5rem 3.5rem; min-height: auto; }
    .news-feature { grid-template-columns: 1fr; }
    .news-feature-img { min-height: 240px; }
    .news-grid { grid-template-columns: 1fr; }
  }

/* ── extracted 2026-05-21T23:46:22.514Z ── */
/* ===== CONTACT HERO ===== */
  .contact-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    padding: 7rem clamp(2rem, 6vw, 7rem) 5rem;
    background: url('../images/inter-page-hero.jpg') center/cover no-repeat;
    overflow: hidden;
  }
  .contact-hero::before {
    content:'';
    position:absolute; inset:0;
  }
  .contact-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .contact-hero h1 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    line-height: 1.05;
    color: #111;
    max-width: 900px;
    margin-bottom: 1.4rem;
  }
  .contact-hero .sub {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    color: #111;
    max-width: 760px;
    line-height: 1.45;
  }

  /* ===== GET IN TOUCH ===== */
  .get-in-touch { background: #f2f2f2; padding: clamp(4rem, 8vw, 7rem) 0; }
  .git-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 7vw, 6rem);
    align-items: flex-start;
  }
  .git-left .eyebrow { margin-bottom: 1.4rem; }
  .git-left h2 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 2rem;
    color: #111;
  }
  .git-info {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }
  .git-info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .git-info-block:last-child { border-bottom: none; }
  .git-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #b0d0db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 1.2rem;
  }
  .git-info-body h4 {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 0.35rem;
  }
  .git-info-body p, .git-info-body a {
    font-size: 1rem;
    color: #333;
    line-height: 1.55;
    display: block;
  }
  .git-info-body a:hover { color: #f6b57b; }

  /* ===== FORM ===== */
  .contact-form-card {
    background: #fafaf7;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 16px 40px rgba(0,0,0,0.04);
  }
  .contact-form { display: flex; flex-direction: column; gap: 1.3rem; }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
  }
  .form-field { display: flex; flex-direction: column; }
  .form-field label {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 0.55rem;
  }
  .form-field input,
  .form-field textarea {
    font-family: 'Inter', avenir-next-lt-pro, sans-serif;
    font-size: 0.98rem;
    color: #111;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    resize: vertical;
  }
  .form-field input:focus,
  .form-field textarea:focus {
    border-color: #f6b57b;
    box-shadow: 0 0 0 4px rgba(246,181,123,0.18);
  }
  .form-field textarea { min-height: 150px; }
  .form-submit {
    margin-top: 0.6rem;
    align-self: flex-start;
  }
  .form-status {
    font-size: 0.92rem;
    color: #2a8f5f;
    margin-top: 0.3rem;
    min-height: 1.2rem;
  }

  @media (max-width: 900px) {
    .contact-hero { padding: 5rem 1.5rem 3.5rem; min-height: auto; }
    .git-inner { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 420px) {
  .pep-hero { background: url('../images/inter-page-hero.jpg') right/cover no-repeat !important; }
  .inv-hero { background: url('../images/inter-page-hero.jpg') right/cover no-repeat !important; }
  .news-hero { background: url('../images/inter-page-hero.jpg') right/cover no-repeat !important; }
  .contact-hero { background: url('../images/inter-page-hero.jpg') right/cover no-repeat !important; }
  .contact-hero { background: url('../images/inter-page-hero.jpg') right/cover no-repeat !important; }
  }