:root {
  --ink: #15201c;
  --ink-2: #31433d;
  --cream: #f6f3ea;
  --paper: #fffdf8;
  --sage: #dfe8df;
  --sage-deep: #1f3c32;
  --gold: #d6a329;
  --gold-soft: #f2df9f;
  --line: rgba(21, 32, 28, 0.12);
  --shadow: 0 24px 60px rgba(25, 43, 36, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-mark {
  width: 52px;
  height: 40px;
  object-fit: contain;
}
.brand span {
  font-size: 18px;
  line-height: 1;
}
.brand strong {
  color: var(--gold);
}
.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.28em;
  margin-top: 5px;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover {
  color: #91680a;
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 10px 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: #1f1909;
  padding: 14px 22px;
  font-weight: 800;
  box-shadow: 0 9px 24px rgba(214, 163, 41, 0.2);
  transition:
    0.2s transform,
    0.2s box-shadow;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(214, 163, 41, 0.28);
}
.button-small {
  padding: 10px 17px;
}
.text-link {
  font-weight: 700;
}
.light-link {
  color: white;
}
.hero {
  min-height: 860px;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/hero.png") center/cover no-repeat;
  transform: scale(1.015);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 27, 22, 0.89) 0%,
    rgba(13, 27, 22, 0.73) 40%,
    rgba(13, 27, 22, 0.14) 72%,
    rgba(13, 27, 22, 0.04) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 175px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  color: #8b690e;
  margin: 0 0 18px;
}
.eyebrow.light {
  color: var(--gold-soft);
}
h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
  margin: 0;
}
h1 {
  font-size: clamp(48px, 6vw, 82px);
  max-width: 860px;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.035em;
}
h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}
.hero-copy {
  font-size: 20px;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  margin: 28px 0 32px;
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-statbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(12, 28, 22, 0.82);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stats-grid > div {
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.stats-grid > div:first-child {
  padding-left: 0;
}
.stats-grid > div:last-child {
  border-right: 0;
}
.stats-grid strong {
  display: block;
  font: 800 32px/1 "Manrope";
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.stats-grid span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}
.section {
  padding: 40px 0;
}
#problem {
  padding-bottom: 0;
}
.section-heading {
  margin-bottom: 50px;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
}
.split-heading > p {
  font-size: 18px;
  color: var(--ink-2);
  margin: 0 0 4px;
}
.center-heading {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.diabetes-panel {
  background: #f5f5f5;
  border-radius: 30px;
  overflow: hidden;
  padding: 44px 44px 22px;
}
.diabetes-panel h3 {
  max-width: 720px;
}
.diabetes-stats {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  max-width: 760px;
}
.diabetes-stats li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(21, 32, 28, 0.12);
  color: var(--ink-2);
}
.diabetes-stats .cite {
  font-size: 11px;
  font-weight: 700;
  color: #8b690e;
  vertical-align: super;
  margin-left: 2px;
}
.diabetes-stats .cite:hover {
  text-decoration: underline;
}
.diabetes-map {
  width: 100%;
  margin-top: 28px;
  display: block;
  object-fit: contain;
}
.diabetes-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 14px 0 0;
  font-size: 11px;
  color: #6a736e;
}
.diabetes-sources a:hover {
  text-decoration: underline;
}
.card-number {
  font: 700 13px/1 "Manrope";
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}
.whey-banner {
  position: relative;
  min-height: 560px;
  margin-top: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.whey-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right -100px;
}
.whey-banner-inner {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 72px;
}
.whey-banner-copy {
  max-width: 480px;
}
.whey-banner-copy h3 {
  font-size: clamp(26px, 3.2vw, 40px);
}
.whey-banner-copy p {
  color: var(--ink-2);
  margin: 18px 0 0;
  font-size: 17px;
}
.solution-section {
  background: var(--cream);
}
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  align-items: center;
}
.lead {
  font-size: 20px;
  color: var(--ink-2);
  margin: 24px 0 28px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding: 13px 0 13px 35px;
  border-bottom: 1px solid var(--line);
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9d7610;
  font-weight: 900;
}
.product-visual {
  position: relative;
}
.product-visual img {
  border-radius: 34px;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.floating-note {
  position: absolute;
  left: -30px;
  bottom: 32px;
  background: white;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.floating-note span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #687871;
}
.floating-note strong {
  font-family: "Manrope";
}
.market-section {
  padding-top: 0;
  background: var(--cream);
}
.market-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 86px;
  align-items: center;
  background: white;
  border-radius: 36px;
  padding: 26px 70px 26px 26px;
  box-shadow: 0 10px 40px rgba(30, 48, 41, 0.06);
}
.market-visual img {
  border-radius: 24px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.metric-list {
  margin-top: 32px;
}
.metric-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.metric-list strong {
  font: 800 28px/1.1 "Manrope";
}
.metric-list span {
  color: var(--ink-2);
}
.technology-section {
  background: #edf2ee;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-grid article {
  background: white;
  padding: 30px;
  border-radius: 24px;
  min-height: 240px;
}
.process-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-soft);
  font-weight: 800;
  margin-bottom: 28px;
}
.process-grid p {
  color: var(--ink-2);
}
.technology-callout {
  margin-top: 20px;
  padding: 26px 30px;
  border-radius: 20px;
  background: var(--sage-deep);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.technology-callout span {
  color: rgba(255, 255, 255, 0.72);
}
.industry-section {
  background: var(--sage-deep);
  color: white;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  overflow: hidden;
  transition:
    0.2s transform,
    0.2s background,
    0.2s box-shadow;
}
.industry-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}
.industry-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: 28px 32px;
  background: #081410;
}
.industry-logo img {
  width: 100%;
  max-width: 260px;
  max-height: 92px;
  object-fit: contain;
}
.industry-logo-light {
  background: var(--cream);
}
.industry-logo-light img {
  max-height: 118px;
  max-width: 150px;
}
.industry-copy {
  padding: 26px 28px 30px;
  flex: 1;
}
.industry-copy h3 {
  margin-bottom: 10px;
}
.industry-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
.roadmap-section {
  background: white;
}
.timeline {
  max-width: 940px;
  margin: 0 auto;
}
.timeline-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.timeline-item > span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  font-weight: 800;
}
.timeline-item p {
  margin: 8px 0 0;
  color: var(--ink-2);
}
.investment-section {
  background: var(--sage-deep);
  color: white;
}
.investment-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.investment-lead {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 610px;
}
.valuation-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 38px;
}
.valuation-row > div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 20px;
}
.valuation-row span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 8px;
}
.valuation-row strong {
  font: 800 28px/1 "Manrope";
  color: var(--gold-soft);
}
.fund-card {
  background: white;
  color: var(--ink);
  padding: 34px;
  border-radius: 26px;
}
.fund-card h3 {
  margin-bottom: 26px;
}
.fund-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}
.bar {
  height: 8px;
  background: #eee9dc;
  border-radius: 999px;
  margin: 8px 0 18px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  background: var(--gold);
  border-radius: inherit;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.person {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: white;
}
.person img {
  width: 120px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  background: #eee;
}
.person p {
  margin: 8px 0 0;
  color: var(--ink-2);
  font-size: 14px;
}
.person .role {
  color: #997210;
  font-weight: 800;
}
.contact-section {
  padding: 0 0 100px;
}
.contact-card {
  background: linear-gradient(135deg, #f6e7b6, #f7f3e8);
  border-radius: 34px;
  padding: 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.contact-card p {
  max-width: 660px;
  color: var(--ink-2);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.contact-details span {
  font-size: 13px;
  color: #6c746d;
}
.contact-details a {
  font: 700 19px/1.3 "Manrope";
}
.contact-details a:hover {
  text-decoration: underline;
}
footer {
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-inner p {
  font-size: 12px;
  color: #738079;
  max-width: 520px;
  text-align: right;
}
.footer-brand {
  opacity: 0.78;
}
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    padding: 20px;
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .hero {
    min-height: 820px;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(13, 27, 22, 0.9),
      rgba(13, 27, 22, 0.62)
    );
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid > div {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .stats-grid > div:last-child {
    border-bottom: 0;
  }
  .hero-content {
    padding-bottom: 250px;
  }
  .split-heading,
  .solution-grid,
  .market-grid,
  .investment-grid,
  .contact-card,
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .whey-banner {
    min-height: 480px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .market-grid {
    padding: 26px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .contact-details {
    text-align: left;
  }
  .floating-note {
    left: 18px;
  }
  .section {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1160px);
  }
  .brand span {
    font-size: 15px;
  }
  .brand-mark {
    width: 40px;
  }
  .hero {
    min-height: 900px;
  }
  .hero-content {
    padding-top: 120px;
  }
  .hero-copy {
    font-size: 17px;
  }
  .hero-statbar {
    position: absolute;
  }
  .process-grid,
  .valuation-row {
    grid-template-columns: 1fr;
  }
  .whey-banner {
    min-height: 420px;
  }
  .whey-banner-copy {
    max-width: 100%;
  }
  .diabetes-panel {
    padding: 30px 22px 18px;
  }
  .metric-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .technology-callout,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .person {
    grid-template-columns: 82px 1fr;
  }
  .person img {
    width: 82px;
    height: 100px;
  }
  .contact-card {
    padding: 34px;
  }
  .footer-inner p {
    text-align: left;
  }
}
