:root {
  --navy: #0f172a;
  --navy-2: #101d34;
  --slate: #64748b;
  --slate-2: #94a3b8;
  --line: #dfe7ee;
  --paper: #f8fafc;
  --white: #ffffff;
  --gold: #eab308;
  --gold-soft: #fef3c7;
  --emerald: #059669;
  --teal: #0d9488;
  --teal-soft: #ccfbf1;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(15, 23, 42, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold-soft); color: var(--navy); }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 9999;
  background: var(--navy); color: var(--white); padding: 12px 16px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 110px 0; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(223, 231, 238, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 205px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 700; letter-spacing: .01em; }
.site-nav > a:not(.nav-cta) { position: relative; color: #334155; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--teal); transition: right .25s ease; }
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { color: var(--white); background: var(--navy); padding: 12px 18px; border-radius: 999px; transition: transform .2s ease, background .2s ease; }
.nav-cta:hover { transform: translateY(-2px); background: #1e293b; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

.hero { min-height: 780px; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fbfdfd 62%, #f7faf9 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.glow-one { width: 520px; height: 520px; right: -120px; top: 30px; background: radial-gradient(circle, rgba(13,148,136,.15), rgba(13,148,136,0) 70%); }
.glow-two { width: 440px; height: 440px; left: -190px; bottom: -100px; background: radial-gradient(circle, rgba(234,179,8,.10), rgba(234,179,8,0) 72%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 58px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; color: var(--teal); }
.eyebrow > span { width: 28px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--teal)); border-radius: 99px; }
.eyebrow.light { color: #99f6e4; }
.hero h1 { margin: 0; max-width: 700px; font-size: clamp(52px, 6vw, 78px); line-height: .98; letter-spacing: -.055em; font-weight: 820; }
.hero h1 em { font-style: normal; background: linear-gradient(120deg, var(--teal) 10%, var(--emerald) 48%, var(--gold) 115%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lede { max-width: 650px; margin: 28px 0 0; font-size: 18px; line-height: 1.75; color: #475569; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 15px 21px; border-radius: 999px; font-weight: 800; font-size: 14px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--navy), #1e293b); box-shadow: 0 12px 28px rgba(15,23,42,.18); }
.btn-primary:hover { box-shadow: 0 16px 36px rgba(15,23,42,.25); }
.btn-secondary { background: rgba(255,255,255,.74); border: 1px solid #d7e0e7; color: var(--navy); }
.btn-secondary:hover { border-color: #b8c5d1; }
.btn-large { min-height: 58px; padding-inline: 26px; }
.hero-proof { display: flex; gap: 34px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); max-width: 620px; }
.hero-proof div { display: grid; gap: 4px; }
.hero-proof strong { font-size: 22px; line-height: 1; }
.hero-proof span { color: var(--slate); font-size: 12px; font-weight: 650; }

.hero-visual { min-height: 560px; position: relative; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(13, 148, 136, .16); border-radius: 50%; }
.orbit-a { width: 470px; height: 470px; }
.orbit-b { width: 330px; height: 330px; border-color: rgba(234, 179, 8, .17); }
.center-mark { width: 260px; height: 260px; padding: 58px 38px 32px; border-radius: 50%; background: rgba(255,255,255,.94); box-shadow: 0 30px 90px rgba(15,23,42,.13); position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.center-mark::before { content: ""; position: absolute; inset: -8px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(234,179,8,.55), rgba(13,148,136,.42), transparent 70%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.center-mark img { width: 175px; margin-bottom: 17px; }
.center-mark p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.5; }
.center-mark p strong { color: var(--navy); }
.float-card { position: absolute; width: 210px; min-height: 76px; display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid rgba(223,231,238,.9); border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: 0 16px 44px rgba(15,23,42,.10); backdrop-filter: blur(10px); }
.float-card strong { display: block; font-size: 14px; margin-bottom: 3px; }
.float-card small { display: block; font-size: 10px; line-height: 1.35; color: var(--slate); }
.float-icon { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; font-size: 11px; font-weight: 900; color: var(--navy); background: var(--gold-soft); }
.card-ecom { left: 0; top: 112px; animation: hoverFloat 5s ease-in-out infinite; }
.card-wellness { right: -8px; top: 175px; animation: hoverFloat 5.5s ease-in-out infinite .7s; }
.card-supplements { left: 60px; bottom: 62px; animation: hoverFloat 6s ease-in-out infinite 1.1s; }
.card-wellness .float-icon { background: var(--teal-soft); color: #115e59; }
.card-supplements .float-icon { background: #e2e8f0; }
@keyframes hoverFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.brand-strip { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper); }
.strip-track { min-height: 68px; width: min(calc(100% - 30px), 1300px); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 34px; color: #475569; font-size: 11px; font-weight: 900; letter-spacing: .17em; white-space: nowrap; }
.strip-track i { width: 5px; height: 5px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--teal)); }

.split-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 90px; align-items: start; }
.section-intro h2, .section-heading h2, .cap-copy h2, .contact h2 { margin: 0; font-size: clamp(40px, 4.2vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.about-copy { padding-top: 6px; }
.about-copy > p { color: var(--slate); line-height: 1.8; font-size: 16px; }
.about-copy .large-copy { margin-top: 0; font-size: 21px; line-height: 1.65; color: #334155; }
.principles { margin-top: 42px; border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.principle > span { font-size: 11px; font-weight: 900; color: var(--teal); padding-top: 3px; }
.principle strong { display: block; font-size: 17px; }
.principle p { margin: 6px 0 0; color: var(--slate); font-size: 14px; line-height: 1.6; }

.portfolio { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.portfolio::before { content: ""; position: absolute; width: 650px; height: 650px; border-radius: 50%; top: -280px; right: -140px; background: radial-gradient(circle, rgba(13,148,136,.17), rgba(13,148,136,0) 68%); }
.section-heading { display: grid; grid-template-columns: 1fr 380px; gap: 70px; align-items: end; margin-bottom: 54px; position: relative; }
.section-heading > p { color: #a7b5c5; font-size: 16px; line-height: 1.75; margin: 0 0 4px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
.portfolio-card { min-height: 465px; display: flex; flex-direction: column; padding: 24px; border: 1px solid rgba(148,163,184,.18); border-radius: var(--radius); background: rgba(255,255,255,.055); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.portfolio-card:hover { transform: translateY(-6px); border-color: rgba(153,246,228,.28); background: rgba(255,255,255,.075); }
.portfolio-card.featured { background: linear-gradient(180deg, rgba(13,148,136,.18), rgba(255,255,255,.06)); }
.card-number { align-self: end; color: #64748b; font-size: 11px; font-weight: 900; }
.category-icon { width: 70px; height: 70px; display: grid; place-items: center; margin-top: 22px; border-radius: 20px; background: rgba(255,255,255,.08); }
.category-icon svg { width: 34px; height: 34px; stroke: #99f6e4; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.card-body { margin-top: 34px; }
.card-kicker { color: #facc15; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; }
.portfolio-card h3 { margin: 10px 0 12px; font-size: 27px; letter-spacing: -.035em; }
.portfolio-card .card-body > p:last-child { margin: 0; color: #aebbc9; line-height: 1.72; font-size: 14px; }
.card-footer { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(148,163,184,.14); display: flex; justify-content: space-between; align-items: center; color: #cbd5e1; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.card-footer span:last-child { color: #99f6e4; font-size: 18px; }

.centered { max-width: 760px; margin: 0 auto 62px; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered > p { color: var(--slate); font-size: 17px; line-height: 1.7; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { padding-top: 10px; }
.step-top { display: flex; align-items: center; gap: 14px; }
.step-top span { flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--white); font-size: 10px; font-weight: 900; }
.step-top i { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.step h3 { margin: 22px 0 9px; font-size: 20px; }
.step p { color: var(--slate); margin: 0; font-size: 14px; line-height: 1.72; }

.capabilities { color: var(--white); background: linear-gradient(135deg, #102d31 0%, #0f3b3a 48%, #10263a 100%); position: relative; overflow: hidden; }
.capabilities::after { content: "Y"; position: absolute; right: -20px; bottom: -170px; font-size: 520px; font-weight: 900; line-height: 1; color: rgba(255,255,255,.025); pointer-events: none; }
.capabilities-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; align-items: start; }
.cap-copy p { max-width: 520px; color: #b7c8c8; line-height: 1.8; font-size: 16px; }
.cap-list { border-top: 1px solid rgba(255,255,255,.14); }
.cap-list > div { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.14); align-items: center; }
.cap-list span { color: #facc15; font-size: 10px; font-weight: 900; }
.cap-list strong { font-size: 17px; font-weight: 680; }

.contact { background: #f5f8f8; }
.contact-card { min-height: 360px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; padding: 58px 64px; border: 1px solid #dbe5e7; border-radius: 32px; background: #fff; box-shadow: 0 24px 80px rgba(15,23,42,.06); position: relative; overflow: hidden; }
.contact-card::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; right: -110px; top: -110px; background: radial-gradient(circle, rgba(13,148,136,.16), rgba(13,148,136,0) 70%); }
.contact-copy { position: relative; z-index: 1; }
.contact-copy p { max-width: 650px; margin: 20px 0 0; color: var(--slate); line-height: 1.75; }
.contact-action { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.contact-action small { color: var(--slate); margin-right: 8px; }

.site-footer { background: #fff; border-top: 1px solid var(--line); }
.footer-main { min-height: 200px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-brand img { width: 188px; }
.footer-brand p { margin: 14px 0 0; color: var(--slate); font-size: 13px; }
.footer-links { display: flex; gap: 28px; color: #475569; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { min-height: 72px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--slate); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-note { text-align: right; max-width: 590px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .72s ease, transform .72s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }

@media (max-width: 1040px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-visual { min-height: 520px; max-width: 650px; width: 100%; margin: -10px auto 0; }
  .split-grid, .capabilities-grid { gap: 55px; }
  .portfolio-grid { gap: 12px; }
  .portfolio-card { min-height: 490px; }
  .contact-card { grid-template-columns: 1fr; gap: 34px; }
  .contact-action { align-items: flex-start; }
}

@media (max-width: 820px) {
  .section-pad { padding: 84px 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 178px; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .site-nav { position: fixed; inset: 72px 0 auto 0; display: grid; gap: 0; padding: 12px 20px 22px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); transform: translateY(-150%); transition: transform .24s ease; box-shadow: 0 18px 50px rgba(15,23,42,.10); }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 14px 6px; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .hero { padding-top: 84px; }
  .hero h1 { font-size: clamp(50px, 11vw, 70px); }
  .split-grid, .capabilities-grid, .section-heading { grid-template-columns: 1fr; gap: 34px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card { min-height: 390px; }
  .section-heading { margin-bottom: 38px; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .contact-card { padding: 42px 34px; }
  .strip-track { justify-content: flex-start; overflow: hidden; }
  .strip-track span:nth-of-type(4), .strip-track span:nth-of-type(5), .strip-track i:nth-of-type(4) { display: none; }
  .footer-main { padding: 44px 0; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; justify-content: flex-end; }
  .footer-bottom { padding: 20px 0; align-items: flex-start; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 68px 0; }
  .hero { padding-top: 62px; }
  .hero h1 { font-size: clamp(46px, 13vw, 62px); }
  .hero-lede { font-size: 16px; line-height: 1.7; }
  .hero-proof { gap: 22px; justify-content: space-between; }
  .hero-visual { min-height: 455px; transform: scale(.92); transform-origin: center; }
  .orbit-a { width: 390px; height: 390px; }
  .orbit-b { width: 285px; height: 285px; }
  .center-mark { width: 220px; height: 220px; padding: 48px 30px 28px; }
  .center-mark img { width: 150px; }
  .float-card { width: 176px; padding: 11px; }
  .float-icon { flex-basis: 33px; width: 33px; height: 33px; }
  .card-ecom { left: -14px; top: 78px; }
  .card-wellness { right: -22px; top: 155px; }
  .card-supplements { left: 18px; bottom: 44px; }
  .float-card small { display: none; }
  .strip-track { gap: 20px; }
  .strip-track span:nth-of-type(3), .strip-track i:nth-of-type(3) { display: none; }
  .section-intro h2, .section-heading h2, .cap-copy h2, .contact h2 { font-size: 40px; }
  .about-copy .large-copy { font-size: 18px; }
  .steps { grid-template-columns: 1fr; }
  .contact-card { padding: 34px 24px; border-radius: 24px; }
  .contact-action .btn { width: 100%; font-size: 13px; }
  .footer-main, .footer-bottom { display: grid; }
  .footer-links { justify-content: flex-start; }
  .footer-note { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
