    :root {
      --cream:    #F7F3EC;
      --cream-d:  #EDE7DB;
      --bark:     #2A1F14;
      --earth:    #5A3E28;
      --moss:     #3B5A35;
      --moss-l:   #6B8C5E;
      --sage:     #A8BE9C;
      --sage-l:   #D4E4CE;
      --gold:     #C8922A;
      --gold-l:   #F0D8A8;
      --linen:    #F2EDE3;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--bark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1000;
      opacity: 0.6;
    }

    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 99;
      padding: 20px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      transition: background 0.4s;
    }
    nav.scrolled {
      background: rgba(247, 243, 236, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--cream-d);
    }
    .logo {
      font-family: 'Lora', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--moss);
      letter-spacing: -0.01em;
      text-decoration: none;
    }
    .logo em { font-style: italic; font-weight: 400; color: var(--earth); }
    nav ul {
      list-style: none;
      display: flex;
      gap: 36px;
    }
    nav a {
      font-size: 0.875rem;
      font-weight: 400;
      color: var(--earth);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }
    nav a:hover { color: var(--moss); }

    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }

    .hero-left {
      padding: 160px 64px 80px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    h1 {
      font-family: 'Lora', serif;
      font-size: clamp(2.8rem, 4.5vw, 4rem);
      font-weight: 500;
      line-height: 1.12;
      color: var(--bark);
      letter-spacing: -0.02em;
      margin-bottom: 28px;
    }
    h1 em {
      font-style: italic;
      color: var(--moss);
    }

    .hero-body {
      font-size: 1.05rem;
      color: var(--earth);
      max-width: 440px;
      line-height: 1.75;
      margin-bottom: 48px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .btn-main {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--moss);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      padding: 14px 28px;
      border-radius: 4px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      letter-spacing: 0.01em;
    }
    .btn-main:hover {
      background: var(--earth);
      transform: translateY(-1px);
    }

    .btn-ghost {
      font-size: 0.875rem;
      color: var(--moss);
      text-decoration: none;
      border-bottom: 1px solid var(--sage);
      padding-bottom: 2px;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover {
      color: var(--earth);
      border-color: var(--earth);
    }

    .hero-right {
      position: relative;
      overflow: hidden;
      background: var(--linen);
    }

    .hero-art {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .botanical {
      position: relative;
      width: 480px;
      height: 480px;
    }
    .botanical svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .stats {
      background: var(--moss);
      padding: 28px 80px;
      display: flex;
      gap: 0;
      overflow: hidden;
    }
    .stat {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0 40px;
      border-right: 1px solid rgba(255,255,255,0.15);
    }
    .stat:first-child { padding-left: 0; }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: 'Lora', serif;
      font-size: 2.2rem;
      font-weight: 500;
      color: var(--gold-l);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.4;
      max-width: 140px;
    }

    .section {
      padding: 120px 80px;
    }

    .label-tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--moss);
      background: var(--sage-l);
      padding: 5px 12px;
      border-radius: 2px;
      margin-bottom: 24px;
    }

    h2 {
      font-family: 'Lora', serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 500;
      line-height: 1.18;
      letter-spacing: -0.015em;
      color: var(--bark);
      margin-bottom: 20px;
    }
    h2 em { font-style: italic; color: var(--moss); }

    .gap-section {
      background: var(--bark);
      color: #fff;
    }
    .gap-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .gap-section h2 { color: var(--gold-l); }
    .gap-section h2 em { color: var(--sage); }
    .gap-section p { color: rgba(255,255,255,0.7); line-height: 1.8; }

    .gap-pills {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .gap-pill {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 4px;
      padding: 16px 20px;
    }
    .gap-pill-dot {
      width: 6px;
      height: 6px;
      background: var(--sage);
      border-radius: 50%;
      margin-top: 7px;
      flex-shrink: 0;
    }
    .gap-pill span {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
    }

    .gap-callout {
      background: rgba(168, 190, 156, 0.12);
      border-left: 3px solid var(--sage);
      padding: 32px;
      border-radius: 0 4px 4px 0;
    }
    .gap-callout h3 {
      font-family: 'Lora', serif;
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--sage-l);
      margin-bottom: 20px;
    }
    .gap-callout ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .gap-callout li {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.72);
      padding-left: 20px;
      position: relative;
      line-height: 1.6;
    }
    .gap-callout li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--sage);
    }

    .science-section {
      background: var(--cream);
    }

    .science-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-bottom: 72px;
      align-items: end;
    }

    .science-desc {
      font-size: 1rem;
      color: var(--earth);
      line-height: 1.8;
      max-width: 400px;
    }

    .study-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .study-card {
      background: #fff;
      border: 1px solid var(--cream-d);
      border-radius: 4px;
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .study-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--moss), var(--sage));
    }
    .study-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(42, 31, 20, 0.08);
    }

    .study-year {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .peer-badge {
      background: var(--sage-l);
      color: var(--moss);
      font-size: 0.6rem;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 20px;
      letter-spacing: normal;
    }

    .study-card h3 {
      font-family: 'Lora', serif;
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--bark);
      margin-bottom: 14px;
      line-height: 1.4;
    }

    .study-citation {
      font-size: 0.8rem;
      font-style: italic;
      color: var(--moss-l);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .study-findings {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .study-findings li {
      font-size: 0.875rem;
      color: var(--earth);
      padding-left: 18px;
      position: relative;
      line-height: 1.55;
    }
    .study-findings li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--sage);
    }

    .preclinical-note {
      margin-top: 32px;
      text-align: center;
      font-size: 0.75rem;
      color: var(--moss-l);
      background: var(--cream-d);
      display: inline-block;
      width: auto;
      padding: 6px 16px;
      border-radius: 40px;
      font-style: italic;
    }

    .approach-section {
      background: var(--linen);
      position: relative;
    }

    .approach-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .approach-text p {
      font-size: 1rem;
      color: var(--earth);
      line-height: 1.85;
      margin-bottom: 20px;
    }

    .pathway-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .pathway-item {
      background: #fff;
      border: 1px solid var(--cream-d);
      border-radius: 4px;
      padding: 24px 20px;
    }
    .pathway-icon {
      width: 36px;
      height: 36px;
      background: var(--sage-l);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }
    .pathway-item h4 {
      font-family: 'Lora', serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--bark);
      margin-bottom: 6px;
    }
    .pathway-item p {
      font-size: 0.8rem;
      color: var(--moss-l);
      line-height: 1.5;
    }

    .products-section {
      background: var(--cream);
    }

    .teaser-row {
      margin-top: 48px;
      background: var(--linen);
      border-radius: 12px;
      padding: 32px 40px;
      text-align: center;
      border: 1px solid var(--cream-d);
    }
    .teaser-row p {
      font-size: 0.9rem;
      color: var(--earth);
    }

    .cta-section {
      background: var(--moss);
      padding: 120px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .cta-section h2 {
      font-family: 'Lora', serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 500;
      color: var(--gold-l);
      line-height: 1.2;
      letter-spacing: -0.015em;
    }
    .cta-section h2 em { color: #fff; }
    .cta-section p {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      margin-top: 20px;
      line-height: 1.75;
    }
    .cta-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .cta-form label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .cta-form input, .cta-form select {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 4px;
      padding: 14px 18px;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .cta-form input::placeholder { color: rgba(255,255,255,0.35); }
    .cta-form input:focus, .cta-form select:focus {
      border-color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.15);
    }
    .cta-form select {
      appearance: none;
      cursor: pointer;
    }
    .cta-submit {
      background: var(--gold);
      color: var(--bark);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      padding: 14px 28px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      align-self: flex-start;
      letter-spacing: 0.01em;
    }
    .cta-submit:hover {
      background: var(--gold-l);
      transform: translateY(-1px);
    }
    .cta-footnote {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.3);
      margin-top: 8px;
    }

    footer {
      background: var(--bark);
      padding: 48px 80px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    footer .logo { color: rgba(255,255,255,0.8); }
    footer .logo em { color: var(--sage); }
    .footer-links { display: flex; gap: 28px; }
    .footer-links a {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      transition: color 0.2s;
      cursor: pointer;
    }
    .footer-links a:hover { color: rgba(255,255,255,0.7); }
    .footer-copy {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.25);
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: 1000;
      align-items: center;
      justify-content: center;
    }
    .modal-content {
      background: var(--cream);
      max-width: 500px;
      padding: 32px;
      border-radius: 12px;
      position: relative;
      font-family: 'DM Sans', sans-serif;
      color: var(--bark);
    }
    .modal-content h3 {
      font-family: 'Lora', serif;
      margin-bottom: 16px;
    }
    .close-modal {
      position: absolute;
      top: 12px;
      right: 16px;
      font-size: 1.4rem;
      cursor: pointer;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes slowSpin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-12px); }
    }

    .hero-left > * {
      opacity: 0;
      animation: fadeUp 0.8s ease forwards;
    }
    .hero-left .hero-eyebrow { animation-delay: 0.1s; }
    .hero-left h1            { animation-delay: 0.25s; }
    .hero-left .hero-body    { animation-delay: 0.4s; }
    .hero-left .hero-actions { animation-delay: 0.55s; }

    .orbit-ring {
      transform-origin: center;
      animation: slowSpin 40s linear infinite;
    }
    .orbit-ring-2 {
      transform-origin: center;
      animation: slowSpin 60s linear infinite reverse;
    }
    .bean-float {
      animation: float 6s ease-in-out infinite;
    }

    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-right { height: 360px; }
      .hero-left { padding: 140px 40px 60px; }
      .gap-inner, .science-header, .approach-inner,
      .study-cards, .cta-section { grid-template-columns: 1fr; }
      .products-section > div:last-child .pathway-item { grid-template-columns: 1fr !important; }
      .cta-section { padding: 80px 40px; }
      .section { padding: 80px 40px; }
      .stats { padding: 20px 40px; flex-wrap: wrap; }
      .stat { padding: 12px 20px; }
      footer { padding: 40px; }
      nav { padding: 18px 24px; }
      nav ul { gap: 20px; }
      .botanical { width: 320px; height: 320px; }
      .hero-right { background: rgba(242,237,227,0.7); }
    }

    @media (max-width: 640px) {
      .pathway-grid { grid-template-columns: 1fr; }
      .stats { flex-direction: column; }
      .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
      nav ul { display: none; }
      h1 { font-size: 2.4rem; }
      .teaser-row { padding: 24px; }
    }
  
