:root {
  --bg: #f4eadb;
  --bg-soft: #fbf5ec;
  --surface: rgba(255, 252, 246, 0.84);
  --surface-strong: rgba(255, 250, 242, 0.96);
  --glass: rgba(255, 252, 246, 0.72);
  --glass-light: rgba(255, 255, 255, 0.62);
  --line: rgba(44, 92, 80, 0.14);
  --line-strong: rgba(31, 111, 91, 0.3);
  --text: #17342d;
  --muted: #5d716b;
  --green: #1f8f72;
  --green-hot: #237f69;
  --cyan: #3f8faf;
  --blue: #4d7ca8;
  --violet: #7669a8;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 4%, rgba(94, 145, 181, 0.15), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(69, 164, 132, 0.16), transparent 25%),
    radial-gradient(circle at 52% 70%, rgba(216, 176, 119, 0.11), transparent 34%),
    linear-gradient(180deg, #f7eddf 0%, #f2e4d1 48%, #f8efe3 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -5;
  opacity: 0.42;
  background:
    linear-gradient(rgba(37, 105, 86, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 105, 86, 0.026) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.14) 49%, transparent 58%);
  mix-blend-mode: soft-light;
}

::selection { color: #fff; background: var(--green-hot); }
a { color: inherit; text-decoration: none; }

#biofield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
  opacity: 0.38;
}

.ambient {
  position: fixed;
  z-index: -4;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.2;
  animation: ambient-drift 15s ease-in-out infinite alternate;
}

.ambient-one { top: -13rem; left: -11rem; background: #9bbbd1; }
.ambient-two { top: 21%; right: -12rem; background: #88cdb6; animation-delay: -5s; }
.ambient-three { bottom: -17rem; left: 34%; background: #d9b78b; opacity: 0.14; animation-delay: -9s; }

@keyframes ambient-drift {
  from { transform: translate3d(-1.5rem, -1rem, 0) scale(0.96); }
  to { transform: translate3d(2rem, 1.5rem, 0) scale(1.06); }
}

.section-shell { width: min(calc(100% - 2rem), var(--max-width)); margin: 0 auto; }

.glass-shell,
.glass-panel,
.product-card {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.28) 42%, rgba(244, 234, 219, 0.48) 82%),
    var(--glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(61, 128, 105, 0.04),
    0 25px 80px rgba(87, 68, 43, 0.12);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  backdrop-filter: blur(28px) saturate(140%);
}

.glass-shell::after,
.glass-panel::after,
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(122deg, rgba(255, 255, 255, 0.72), transparent 20%, transparent 72%, rgba(43, 127, 103, 0.07));
  mask-image: linear-gradient(#000, transparent 56%);
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
}

.brand,
.footer-brand {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.brand { font-size: 1.3rem; }
.site-header nav { display: flex; align-items: center; gap: 1.6rem; color: var(--muted); font-size: 0.9rem; }
.site-header nav a,
.header-cta { transition: color 0.22s ease, transform 0.22s ease, border-color 0.22s ease; }
.site-header nav a:hover,
.header-cta:hover { color: var(--green-hot); }

.header-cta {
  justify-self: end;
  padding: 0.58rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.42);
}

.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 2.5rem;
  padding: 5.5rem 0 6rem;
}

.section-label {
  margin: 0 0 1rem;
  color: var(--green-hot);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.galaxy-wordmark {
  position: relative;
  margin: 0;
  max-width: none;
  white-space: nowrap;
  font-family: "Nunito", sans-serif;
  font-size: clamp(3.7rem, 7.2vw, 7.2rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-transform: lowercase;
  color: #173f36;
  background: linear-gradient(112deg, #173f36 0%, #257e69 42%, #3d7691 72%, #173f36 100%);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 20px rgba(50, 91, 78, 0.09));
  animation: wordmark-shift 8s ease-in-out infinite alternate;
}

.galaxy-wordmark::after {
  content: "";
  position: absolute;
  inset: 18% -2% -18% 3%;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(68, 156, 127, 0.12), transparent 70%);
  filter: blur(38px);
}

@keyframes wordmark-shift {
  from { background-position: 0% 38%; }
  to { background-position: 100% 62%; }
}

.tagline {
  margin: 1.35rem 0 0;
  font-size: clamp(1.02rem, 2vw, 1.34rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: #2b5d51;
}

.hero-summary { max-width: 42rem; margin: 1.45rem 0 0; color: var(--muted); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0.78rem 1.28rem; border-radius: 999px; font-size: 0.92rem; font-weight: 800; transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.button:hover { transform: translateY(-3px); }
.button.primary { color: #fff; background: linear-gradient(135deg, #1d745f 0%, #2d9378 52%, #4986a0 100%); box-shadow: 0 16px 42px rgba(45, 117, 95, 0.2); }
.button.primary:hover { box-shadow: 0 20px 54px rgba(45, 117, 95, 0.28); }
.button.secondary { border: 1px solid var(--line); background: rgba(255, 255, 255, 0.48); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92); }

.hero-visual { display: flex; align-items: center; justify-content: center; min-height: 31rem; }
.orbital-system { position: relative; width: min(28rem, 84vw); aspect-ratio: 1; transform-style: preserve-3d; transition: transform 0.25s ease-out; }
.orbital-glass { position: absolute; inset: 3%; border: 1px solid rgba(43, 124, 101, 0.16); border-radius: 50%; background: radial-gradient(circle at 34% 25%, rgba(255, 255, 255, 0.72), transparent 28%), radial-gradient(circle at 58% 58%, rgba(73, 162, 132, 0.13), transparent 52%), rgba(255, 251, 244, 0.28); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), inset 0 -28px 90px rgba(60, 133, 111, 0.07), 0 0 110px rgba(74, 139, 164, 0.12); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.soft-ring,
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(46, 125, 104, 0.2); }
.soft-ring { pointer-events: none; box-shadow: inset 0 0 30px rgba(66, 136, 115, 0.04); }
.ring-a { inset: 10%; transform: rotate(18deg) scaleY(0.75); }
.ring-b { inset: 20%; transform: rotate(-28deg) scaleY(0.67); }
.ring-c { inset: 30%; transform: rotate(62deg) scaleY(0.78); }

.bio-core { position: absolute; inset: 34%; display: grid; place-items: center; border: 1px solid rgba(46, 125, 104, 0.34); border-radius: 42% 58% 55% 45% / 48% 45% 55% 52%; background: radial-gradient(circle at 34% 25%, rgba(255, 255, 255, 0.88), transparent 13%), radial-gradient(circle at 55% 52%, #77d4b7 0%, #3ca583 32%, #3b7180 65%, #21434d 100%); box-shadow: 0 0 38px rgba(60, 166, 132, 0.3), 0 0 95px rgba(73, 133, 170, 0.18), inset -13px -18px 28px rgba(22, 65, 58, 0.35); animation: core-breathe 5s ease-in-out infinite, core-morph 11s ease-in-out infinite alternate; }
.core-glow { position: absolute; inset: -28%; border-radius: 50%; background: radial-gradient(circle, rgba(65, 161, 130, 0.18), transparent 69%); filter: blur(13px); }
.dna-mark { position: relative; z-index: 2; width: 48%; height: 58%; overflow: visible; filter: drop-shadow(0 0 8px rgba(249, 255, 252, 0.5)); }
.dna-mark path,
.dna-mark line { fill: none; stroke: url(#dnaGradient); stroke-width: 5; stroke-linecap: round; }
.dna-rungs line { stroke-width: 3; opacity: 0.78; }
@keyframes core-breathe { 50% { transform: scale(1.055); } }
@keyframes core-morph { from { border-radius: 42% 58% 55% 45% / 48% 45% 55% 52%; } to { border-radius: 57% 43% 46% 54% / 42% 58% 44% 56%; } }

.orbit { inset: 9%; transform: rotate(14deg) scaleY(0.8); animation: spin 19s linear infinite; }
.orbit-two { inset: 19%; transform: rotate(78deg) scaleY(0.7); animation: spin-reverse 14s linear infinite; }
.orbit-three { inset: 1%; transform: rotate(-31deg) scaleY(0.72); animation: spin 28s linear infinite; }
.bio-object { position: absolute; top: 50%; left: -0.5rem; display: grid; place-items: center; transform: translateY(-50%) scaleY(1.25); }
.cell-object { width: 1.15rem; height: 1.15rem; border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 54% 46% 62% 38%; background: radial-gradient(circle at 35% 30%, #fff, #7bd7b7 28%, #5e8db0 100%); box-shadow: 0 0 21px rgba(56, 153, 122, 0.48); }
.cell-object i { width: 0.27rem; height: 0.27rem; border-radius: 50%; background: #315c70; box-shadow: 0 0 6px rgba(37, 74, 87, 0.35); }
.protein-object,
.molecule-object { width: 2.4rem; height: 2.4rem; }
.protein-object i,
.molecule-object i { position: absolute; width: 0.62rem; height: 0.62rem; border-radius: 50%; background: linear-gradient(135deg, #f7fffc, #69c6a7 58%, #658eaf); box-shadow: 0 0 14px rgba(61, 151, 122, 0.42); }
.protein-object i:nth-child(1) { left: 0; top: 0.9rem; }
.protein-object i:nth-child(2) { right: 0.1rem; top: 0.1rem; }
.protein-object i:nth-child(3) { right: 0; bottom: 0.1rem; }
.molecule-object i:nth-child(1) { left: 0; top: 0.85rem; }
.molecule-object i:nth-child(2) { left: 0.95rem; top: 0; }
.molecule-object i:nth-child(3) { right: 0; top: 0.92rem; }
.molecule-object i:nth-child(4) { left: 0.9rem; bottom: 0; }
.protein-object::before,
.molecule-object::before,
.molecule-object::after { content: ""; position: absolute; height: 1px; background: rgba(51, 111, 97, 0.5); transform-origin: left center; }
.protein-object::before { width: 2rem; left: 0.3rem; top: 1.15rem; transform: rotate(-21deg); }
.molecule-object::before { width: 1.7rem; left: 0.36rem; top: 1.16rem; transform: rotate(-35deg); }
.molecule-object::after { width: 1.75rem; left: 0.85rem; top: 0.98rem; transform: rotate(38deg); }
@keyframes spin { to { transform: rotate(374deg) scaleY(0.8); } }
@keyframes spin-reverse { to { transform: rotate(-282deg) scaleY(0.7); } }

.floating-cluster { position: absolute; width: 2rem; height: 2rem; animation: cluster-float 7s ease-in-out infinite alternate; }
.floating-cluster i { position: absolute; width: 0.32rem; height: 0.32rem; border-radius: 50%; background: #64b999; box-shadow: 0 0 10px rgba(62, 146, 119, 0.44); }
.floating-cluster i:nth-child(2) { left: 0.9rem; top: 0.2rem; }
.floating-cluster i:nth-child(3) { left: 1.25rem; top: 1.05rem; }
.floating-cluster i:nth-child(4) { left: 0.25rem; top: 1.35rem; }
.cluster-one { top: 16%; right: 21%; }
.cluster-two { bottom: 18%; left: 15%; animation-delay: -3s; }
.cluster-three { top: 42%; left: 6%; animation-delay: -5s; }
@keyframes cluster-float { from { transform: translate3d(-4px, -6px, 0) rotate(-8deg); } to { transform: translate3d(8px, 8px, 0) rotate(10deg); } }

.data-pill { position: absolute; z-index: 4; padding: 0.56rem 0.82rem; border: 1px solid rgba(44, 120, 99, 0.18); border-radius: 999px; color: #275b4f; background: rgba(255, 251, 244, 0.72); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 14px 38px rgba(85, 67, 43, 0.12); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); font-size: 0.74rem; font-weight: 700; }
.pill-one { top: 13%; left: 2%; }
.pill-two { top: 63%; right: -3%; }
.pill-three { bottom: 6%; left: 18%; }

.content-section,
.products-section,
.vision-section { padding: 7.5rem 0; }
.split-copy { display: grid; grid-template-columns: 0.93fr 1.07fr; gap: 4rem; }
.glass-panel { padding: clamp(1.8rem, 4.5vw, 3.6rem); border-radius: 2.4rem; }
h2,
h3 { margin-top: 0; letter-spacing: -0.04em; }
h2 { margin-bottom: 0; font-family: "Nunito", sans-serif; font-size: clamp(2.6rem, 4.8vw, 4.8rem); font-weight: 900; line-height: 1.02; }
h3 { font-family: "Manrope", sans-serif; font-weight: 800; }
.split-copy p,
.vision-panel > p,
.product-card p { color: var(--muted); }
.split-copy p:first-child { margin-top: 0.15rem; }
.section-heading { max-width: 850px; margin-bottom: 2.6rem; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.product-card { min-height: 31rem; padding: 2rem; border-radius: 2rem; overflow: hidden; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.product-card::after { content: ""; position: absolute; width: 60%; height: 74%; right: -21%; top: -24%; border-radius: 50%; background: radial-gradient(circle, rgba(62, 151, 122, 0.13), rgba(70, 125, 159, 0.07) 43%, transparent 72%); filter: blur(14px); pointer-events: none; transition: transform 0.55s ease; }
.product-card:hover { transform: translateY(-8px); border-color: var(--line-strong); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 34px 100px rgba(82, 62, 37, 0.16), 0 0 46px rgba(51, 132, 106, 0.08); }
.product-card:hover::after { transform: translate(-8%, 10%) scale(1.18); }
.card-index { position: absolute; top: 1.4rem; right: 1.5rem; color: rgba(40, 91, 78, 0.42); font-size: 0.75rem; letter-spacing: 0.12em; }
.product-card h3 { margin: 1.35rem 0 0.8rem; font-size: clamp(1.8rem, 3vw, 2.45rem); }
.product-icon { position: relative; width: 4.5rem; height: 4.5rem; border: 1px solid rgba(42, 119, 98, 0.2); border-radius: 1.35rem; background: radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.86), rgba(65, 144, 119, 0.08) 42%, rgba(233, 222, 205, 0.62)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), inset 0 -15px 35px rgba(45, 121, 99, 0.06), 0 18px 46px rgba(80, 60, 37, 0.11); }
.product-icon span,
.product-icon::before,
.product-icon::after { content: ""; position: absolute; }
.food-icon span { width: 1.55rem; height: 2.05rem; left: 1.42rem; top: 1.17rem; border: 2px solid var(--green-hot); border-radius: 50% 50% 42% 42%; transform: rotate(-18deg); filter: drop-shadow(0 0 8px rgba(45, 127, 105, 0.28)); }
.food-icon::after { width: 1.2rem; height: 0.6rem; left: 2.02rem; top: 0.88rem; border-top: 2px solid var(--green-hot); border-radius: 50%; transform: rotate(-35deg); }
.glucose-icon span { width: 1.42rem; height: 1.95rem; left: 1.54rem; top: 1.06rem; border-radius: 50%; background: linear-gradient(180deg, #f6fffb, #64bfa1 54%, #628eb0); clip-path: polygon(50% 0, 100% 63%, 88% 88%, 50% 100%, 12% 88%, 0 63%); box-shadow: 0 0 18px rgba(58, 144, 116, 0.25); }
.cardio-icon span { left: 1.15rem; top: 1.32rem; width: 2.05rem; height: 1.55rem; border-radius: 0.3rem 0 0.4rem 0; background: linear-gradient(135deg, #eaf9f3, #63b89b 44%, #766fa4); transform: rotate(-45deg); filter: drop-shadow(0 0 9px rgba(57, 136, 111, 0.24)); }
.cardio-icon span::before,
.cardio-icon span::after { content: ""; position: absolute; width: 2.05rem; height: 1.55rem; border-radius: 50%; background: inherit; }
.cardio-icon span::before { left: 0; top: -0.78rem; }
.cardio-icon span::after { left: 0.78rem; top: 0; }
.wearable-icon span { inset: 1.08rem 1.15rem; border: 2px solid var(--cyan); border-radius: 0.85rem; box-shadow: 0 0 13px rgba(63, 143, 175, 0.24); }
.wearable-icon::before,
.wearable-icon::after { left: 1.85rem; width: 0.75rem; height: 0.7rem; border-left: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }
.wearable-icon::before { top: 0.42rem; }
.wearable-icon::after { bottom: 0.42rem; }

.vision-panel { overflow: hidden; }
.vision-panel::before { content: ""; position: absolute; right: -14%; top: -42%; width: 55%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(61, 150, 121, 0.13), rgba(70, 124, 159, 0.07) 46%, transparent 72%); filter: blur(10px); }
.vision-panel h2 { position: relative; max-width: 850px; }
.vision-panel > p { position: relative; max-width: 760px; margin-top: 1.6rem; font-size: 1.05rem; }
.technology-list { position: relative; display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.2rem; }
.technology-list span { padding: 0.65rem 0.9rem; border: 1px solid rgba(44, 117, 97, 0.15); border-radius: 999px; color: #365f55; background: rgba(255, 251, 244, 0.68); font-size: 0.83rem; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9); }

.site-footer { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 2rem; align-items: start; margin-top: 4rem; margin-bottom: 1.5rem; padding: 2rem; border-radius: 2rem; }
.footer-brand { margin: 0; font-size: 1.7rem; }
.site-footer p { margin-top: 0; }
.contact-block,
.footer-update { display: flex; flex-direction: column; gap: 0.36rem; }
.contact-block p,
.footer-update p { margin-bottom: 0.25rem; color: var(--text); font-weight: 800; }
.contact-block a,
.footer-update span,
.site-footer > div > p:not(.footer-brand),
.copyright { color: var(--muted); }
.contact-block a { transition: color 0.2s ease; }
.contact-block a:hover { color: var(--green-hot); }
.copyright { margin: 0; font-size: 0.82rem; white-space: nowrap; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 6.5rem; }
  .hero-copy { max-width: 100%; }
  .hero-visual { min-height: 28rem; }
  .split-copy { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; border-radius: 1.4rem; }
  .site-header nav { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: auto; }
  .content-section,
  .products-section,
  .vision-section { padding: 5.4rem 0; }
}

@media (max-width: 560px) {
  .section-shell { width: min(calc(100% - 1.15rem), var(--max-width)); }
  .site-header { top: 0.45rem; width: calc(100% - 1.15rem); padding: 0.78rem 0.92rem; }
  .brand { font-size: 1.08rem; }
  .header-cta { padding: 0.48rem 0.78rem; }
  .hero { min-height: auto; gap: 1.8rem; padding: 5.4rem 0 3.5rem; }
  .galaxy-wordmark { font-size: clamp(2.75rem, 13.2vw, 4.2rem); letter-spacing: -0.072em; line-height: 0.98; white-space: nowrap; }
  .tagline { margin-top: 1rem; font-size: 0.94rem; letter-spacing: 0.025em; }
  .hero-summary { font-size: 0.98rem; }
  .hero-visual { min-height: 24rem; }
  .orbital-system { width: min(23rem, 94vw); }
  .data-pill { font-size: 0.66rem; }
  .pill-one { left: 0; }
  .pill-two { right: 0; }
  .glass-panel,
  .product-card { border-radius: 1.55rem; }
  .site-footer { grid-template-columns: 1fr; gap: 1.35rem; }
  .copyright { white-space: normal; }
}

@media (max-width: 390px) {
  .galaxy-wordmark { font-size: 2.55rem; letter-spacing: -0.075em; }
  .tagline { font-size: 0.84rem; }
}

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