/* ============================================================
   PHI Peptides — About Us
   Brand palette (from brand guidelines):
     Ink Black   #090C10   Cool Mist  #E4E8ED
     Vial Blue   #7BA7C9   Arsenic    #323D4A
   Type: Manrope
   ============================================================ */

:root {
  --ink: #090C10;
  --ink-2: #10151d;
  --ink-3: #1A2330;
  --mist: #E4E8ED;
  --accent: #7BA7C9;
  --slate: #323D4A;
  --ink-text: #26201C;
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
  --wrap: 1280px;
  --wrap-narrow: 1120px;
  --pad: clamp(88px, 11vw, 150px);
  --ease: cubic-bezier(.16, .72, .24, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--mist);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--mist); color: var(--ink-text); }
3img { display: block; max-width: 100%; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 40px; }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding: 60px 40px; position: relative; }
.section--dark { background: var(--ink); }
.section--light { background: var(--mist); color: var(--ink-text); }

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 44px;
}
.two-col--rule {
  border-top: 1px solid rgba(38, 28, 24, .16);
  padding-top: 48px;
  margin-top: 52px;
}

/* ---------- Typographic primitives ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin-bottom: 26px;
}
.eyebrow--bright { color: rgba(228, 232, 237, .82); }
.eyebrow--dark { color: rgba(38, 28, 24, .55); }
.eyebrow__rule { width: 34px; height: 1px; background: var(--accent); flex: 0 0 auto; }
.eyebrow--dark .eyebrow__rule { background: rgba(38, 28, 24, .4); }

h2 {
  font-size: clamp(28px, 3.9vw, 50px);
  line-height: 1.08;
  font-weight: 200;
  letter-spacing: -.02em;
}
.section__head { max-width: 20ch; margin-bottom: 40px; }
p { font-size: 17px; line-height: 1.68; font-weight: 400; }
.muted { color: #fff; font-weight: 300; max-width: 100%; margin-top: 22px; }
.bright { color: rgba(228, 232, 237, .9); font-weight: 300; }
.lede {
    font-size: clamp(22px, 2.9vw, 34px);
    line-height: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    max-width: 100%;
}
.section--light .section__head { color: var(--ink-text); }
.section--light p { color: #000; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 20px; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
}
.nav.is-scrolled {
  background: rgba(9, 12, 16, .82);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(228, 232, 237, .1);
}
.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 40px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { height: 45px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 42px; }
.nav__links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-weight: 500;
    transition: color .3s;
}


.nav__links a:hover, .nav__links a.is-active { color: var(--mist); font-weight: 600; }
.nav__cta {
  border: 1px solid rgba(228, 232, 237, .4);
  padding: 11px 22px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 600;
}
.nav__cta:hover { background: var(--mist); color: var(--ink-text) !important; border-color: var(--mist); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__video, .serve__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__fallback {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 90% at 72% 18%, var(--ink-3) 0%, var(--ink-2) 46%, var(--ink) 100%);
}
.hero__scrim { position: absolute; inset: 0; z-index: 1; background: rgba(9, 12, 16, .34); }
.hero__glow {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(70% 60% at 78% 30%, rgba(123, 167, 201, .14) 0%, transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: repeating-linear-gradient(115deg, rgba(228, 232, 237, .035) 0, rgba(228, 232, 237, .035) 1px, transparent 1px, transparent 26px);
}
.hero__fade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, var(--ink) 3%, rgba(9, 12, 16, .55) 40%, rgba(9, 12, 16, .12) 82%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 40px 88px;
  width: 100%;
}
.hero__title {
    font-size: 40px;
    line-height: 1;
    font-weight: 200;
    letter-spacing: -.03em;
    max-width: 20ch;
}
.hero__title em { font-style: italic; font-weight: 300; color: rgba(228, 232, 237, .72); }
.hero__lead {
    margin-top: 28px;
    max-width: 100%;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: #fff;
}

/* ---------- The PHI Principle ---------- */
.principle {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 50px;
  align-items: center;
}
.principle__motif { display: flex; justify-content: center; }
.golden {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1.618 / 1;
  border: 1px solid rgba(228, 232, 237, .28);
  display: flex;
}
.golden__a {
  flex: 0 0 61.8%;
  border-right: 1px solid rgba(228, 232, 237, .28);
  display: flex; align-items: center; justify-content: center;
}
.golden__a img { height: 56%; opacity: .5; }
.golden__b { flex: 1; display: flex; flex-direction: column; }
.golden__b1 { flex: 0 0 61.8%; border-bottom: 1px solid rgba(228, 232, 237, .28); }
.golden__b2 { flex: 1; display: flex; }
.golden__b2a { flex: 0 0 61.8%; border-right: 1px solid rgba(228, 232, 237, .28); }
.golden__b2b {
  flex: 1; display: flex; align-items: flex-end;
  padding: 6px;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  color: rgba(228, 232, 237, .4);
}

/* ---------- Who We Serve ---------- */
.serve { color: var(--mist); overflow: hidden; padding: clamp(96px, 13vw, 168px) 40px; }
.serve__fallback { position: absolute; inset: 0; z-index: 0; background: var(--slate); }
.serve__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(9, 12, 16, .9) 0%, rgba(9, 12, 16, .72) 46%, rgba(20, 26, 34, .55) 100%);
}
.serve__content { position: relative; z-index: 2; }
.serve h2 { max-width: 22ch; margin-bottom: 8px; }

/* ---------- What We Stand For ---------- */
.standards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(228, 232, 237, .1);
  border: 1px solid rgba(228, 232, 237, .1);
}
.standard-card {
  background: var(--ink);
  padding: 38px 32px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transition: background .4s;
}
.standard-card:hover { background: #131A24; }
.standard-card__num {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: auto;
}
.standard-card p {
  font-size: 16px;
  line-height: 1.56;
  font-weight: 300;
  color: rgba(228, 232, 237, .82);
  margin-top: 40px;
}

/* ---------- Built on Trust ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: rgba(38, 28, 24, .14);
  border: 1px solid rgba(38, 28, 24, .14);
  margin-top: 56px;
}
.trust-card {
  background: var(--mist);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-card__tag {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}
.trust-card__label { font-size: 15px; font-weight: 400; color: rgba(38, 28, 24, .8); line-height: 1.4; }

/* ---------- Our Standard ---------- */
.standard {
  padding: 40px 40px;
  text-align: center;
  overflow: hidden;
}
.standard__watermark {
  position: absolute; inset: 0; margin: auto;
  width: min(58vw, 560px);
  opacity: .04;
  pointer-events: none;
}
.standard__content { position: relative; z-index: 1; max-width: 1000px; }
.kicker {
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(228, 232, 237, .5);
  margin-bottom: 34px;
}
.standard__head {
    font-size: 24px;
    line-height: 30px;
    font-weight: 200;
    letter-spacing: 0px;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
}
.standard__head span { font-style: italic; font-weight: 300; color: rgba(228, 232, 237, .74); }
.standard__lead {
  margin: 30px auto 0;
  font-size: 17px;
  line-height: 1.66;
  font-weight: 300;
  color: rgba(228, 232, 237, .6);
  max-width: 58ch;
}
.standard__tag {
  margin-top: 48px;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  letter-spacing: .01em;
  color: var(--mist);
}
.standard__tag span { color: var(--accent); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); padding: clamp(70px, 9vw, 110px) 40px 44px; border-top: 1px solid rgba(228, 232, 237, .08); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 70px;
}
.footer__brand { max-width: 340px; }
.footer__brand img { height: 24px; margin-bottom: 26px; }
.footer__brand p { font-size: 14px; line-height: 1.66; font-weight: 300; color: rgba(228, 232, 237, .55); }
.footer__col h3 {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(228, 232, 237, .45);
  margin-bottom: 22px;
}
.footer__col a {
  display: block;
  color: rgba(228, 232, 237, .72);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 14px;
  transition: color .3s;
}
.footer__col a:hover { color: var(--mist); }
.footer__bar {
  border-top: 1px solid rgba(228, 232, 237, .1);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.footer__bar span { font-size: 13px; color: rgba(228, 232, 237, .45); }
.footer__tag { letter-spacing: .24em; text-transform: uppercase; font-weight: 600; color: rgba(228, 232, 237, .5) !important; font-size: 12px !important; }

/* ---------- Scroll reveals ---------- */
.reveal, .reveal-group > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1.1s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in, .reveal-group > .is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-group > * { opacity: 1; transform: none; transition: none; }
}
/* Fallback for environments that don't advance CSS transitions */
.reveals-off .reveal,
.reveals-off .reveal-group > * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .principle { grid-template-columns: 1fr; }
  .principle__motif { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .nav__links { gap: 20px; }
  .nav__links a:not(.nav__cta) { display: none; }
  .wrap, .section, .hero__content, .serve { padding-left: 24px; padding-right: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
}


.elementor-menu-cart__container[aria-hidden="true"] {
    display: none !important;
}
/*ul.sub-menu {
    background-color: #000 !important;
}

ul.sub-menu a {
    color: #fff !important;
}*/

.btn-fleet {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    transition: border-color 0.3s;
    color: #fff;
}
a.btn-fleet:hover , a.btn-fleet:hover{
    color: #fff !important;
}


/* ---------- Enrollment CTA ---------- */
.cta-enroll { position: relative; overflow: hidden; padding: 40px; text-align: center; background: var(--ink); }
.cta-enroll__glow { position: absolute; inset: -20% -10%; background: radial-gradient(ellipse at 50% 0%, rgba(123,167,201,.28), transparent 60%); pointer-events: none; }
.cta-enroll__inner { position: relative; max-width: 760px; display: flex; flex-direction: column; align-items: center; }
.cta-enroll__head { margin-top: 22px; font-size: clamp(32px, 4.4vw, 52px); font-weight: 200; line-height: 1.14; letter-spacing: -.02em; color: var(--mist); }
.cta-enroll__head span { color: var(--accent); font-style: normal; }
.cta-enroll__lead { margin-top: 22px; font-size: 18px; line-height: 1.6; font-weight: 300; color: #fff; max-width: 56ch; }
.cta-enroll__actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }
.cta-enroll__btn { display: inline-flex; align-items: center; gap: 8px; padding: 17px 34px; font-size: 14px; font-weight: 700; letter-spacing: .03em; background: var(--accent); color: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), background .25s; }
.cta-enroll__btn:hover { transform: translateY(-2px); background: #93BCDC; }
.cta-enroll__btn--ghost { background: none; border: 1px solid rgba(228,232,237,.35); color: var(--mist); }
.cta-enroll__btn--ghost:hover { background: rgba(228,232,237,.08); border-color: rgba(228,232,237,.6); }
.cta-enroll__meta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 36px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: rgba(228,232,237,.5); }
.cta-enroll__meta span:nth-child(even) { color: var(--accent); }
a.cta-enroll__btn.cta-enroll__btn--ghost:hover {
    background-color: #7ba7c9 !important;
    color: #000 !important;
    border-color: #7ba7c9 !important;
}