:root {
  --bio-bg-1: #F0F7F4;
  --bio-bg-2: #E3F0E9;
  --bio-bg-3: #D6E9DE;
  --bio-white: #FFFFFF;
  --bio-forest: #064E3B;
  --bio-secondary: #3F6212;
  --bio-accent: #10B981;
  --bio-emerald: #059669;
  --bio-mint-border: #A7F3D0;
  --bio-mint: #6EE7B7;
  --bio-pastel: #D1FAE5;
  --bio-text-muted: #4B6B5B;
}

strong, p {
  color: inherit;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--bio-forest);
  background: linear-gradient(135deg, var(--bio-bg-1) 0%, var(--bio-bg-2) 50%, var(--bio-bg-3) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bio-forest);
}

h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h2 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

p {
  color: var(--bio-text-muted);
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--bio-emerald);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--bio-forest);
}

.mono {
  font-family: 'JetBrains Mono', 'Menlo', monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.tech-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--bio-secondary);
  letter-spacing: 0.04em;
}

.container-bio {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240, 247, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bio-mint-border);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-side.right {
  justify-content: flex-end;
}

.nav-side a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 24px;
  color: var(--bio-forest);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-side a:hover {
  background: var(--bio-accent);
  color: var(--bio-white);
}

.nav-side a.cta-nav {
  background: var(--bio-accent);
  color: var(--bio-white);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.nav-side a.cta-nav:hover {
  background: var(--bio-emerald);
  color: var(--bio-white);
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--bio-emerald);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--bio-forest);
  line-height: 1.2;
}

.brand-name-en {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--bio-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.burger-btn {
  display: none;
  background: transparent;
  border: 2px solid var(--bio-mint-border);
  border-radius: 16px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bio-forest);
  border-radius: 2px;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(16, 185, 129, 0.95);
  backdrop-filter: blur(20px);
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer a {
  color: var(--bio-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 600;
  padding: 12px 24px;
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 2px solid var(--bio-white);
  color: var(--bio-white);
  width: 48px;
  height: 48px;
  border-radius: 24px;
  font-size: 24px;
  cursor: pointer;
}

.hero-stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(167, 243, 208, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(167, 243, 208, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 2;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  animation: floatBlob 25s ease-in-out infinite;
}

.blob.b1 {
  width: 480px;
  height: 480px;
  background: var(--bio-mint);
  top: -100px;
  left: -100px;
}

.blob.b2 {
  width: 380px;
  height: 380px;
  background: var(--bio-pastel);
  bottom: -80px;
  right: -80px;
  animation-delay: -7s;
}

.blob.b3 {
  width: 320px;
  height: 320px;
  background: var(--bio-accent);
  top: 40%;
  left: 50%;
  animation-delay: -14s;
  opacity: 0.4;
}

.blob.b4 {
  width: 260px;
  height: 260px;
  background: var(--bio-white);
  bottom: 20%;
  left: 30%;
  animation-delay: -10s;
  opacity: 0.6;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(60px, -40px) rotate(15deg); }
  50% { transform: translate(-30px, 50px) rotate(-10deg); }
  75% { transform: translate(40px, 30px) rotate(20deg); }
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--bio-emerald);
  background: var(--bio-pastel);
  padding: 6px 14px;
  border-radius: 16px;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--bio-forest);
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--bio-accent);
  display: block;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--bio-text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bio-accent);
  color: var(--bio-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 36px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
  min-height: 56px;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--bio-emerald);
  transform: translateY(-2px);
  color: var(--bio-white);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bio-white);
  color: var(--bio-emerald);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: 32px;
  border: 2px solid var(--bio-accent);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  min-height: 56px;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: var(--bio-pastel);
  color: var(--bio-forest);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 40px;
  overflow: hidden;
  background: var(--bio-pastel);
  box-shadow: 0 30px 60px rgba(6, 78, 59, 0.18);
  border: 1px solid var(--bio-mint-border);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  background: var(--bio-white);
  padding: 18px 22px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(6, 78, 59, 0.16);
  border: 1px solid var(--bio-mint-border);
  z-index: 5;
}

.hero-floating-card.tl {
  top: 24px;
  left: -30px;
}

.hero-floating-card.br {
  bottom: 30px;
  right: -30px;
}

.float-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--bio-emerald);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.float-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--bio-forest);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section.compact {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--bio-emerald);
  background: var(--bio-pastel);
  padding: 6px 14px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--bio-forest);
  margin-bottom: 16px;
}

.section-lead {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--bio-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}

.bento-cell {
  background: var(--bio-white);
  border-radius: 32px;
  padding: 28px;
  border: 1px solid var(--bio-mint-border);
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-cell:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.18);
  border-color: var(--bio-accent);
  z-index: 10;
}

.bento-cell.large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
}

.bento-cell.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-cell.medium-text {
  grid-column: span 1;
  grid-row: span 2;
  justify-content: space-between;
}

.bento-cell.wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--bio-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--bio-emerald);
}

.bento-cell h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--bio-forest);
  margin-bottom: 8px;
}

.bento-cell p {
  font-size: 14px;
  color: var(--bio-text-muted);
  line-height: 1.5;
}

.bento-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 4px 10px;
  background: var(--bio-pastel);
  color: var(--bio-emerald);
  border-radius: 12px;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.node-graph {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.node-graph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, var(--bio-mint-border) 1px, transparent 2px),
    radial-gradient(circle at 80% 80%, var(--bio-mint-border) 1px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.4;
  pointer-events: none;
}

.process-node {
  position: relative;
  background: var(--bio-white);
  border-radius: 32px;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--bio-mint-border);
  transition: all 0.25s ease;
  z-index: 2;
}

.process-node:hover {
  border-color: var(--bio-accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(16, 185, 129, 0.2);
}

.node-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bio-accent);
  color: var(--bio-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.process-node h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--bio-forest);
  margin-bottom: 8px;
}

.process-node p {
  font-size: 13px;
  color: var(--bio-text-muted);
  line-height: 1.5;
}

.split-sticky {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sticky-pane {
  position: sticky;
  top: 120px;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bio-pastel);
  border: 1px solid var(--bio-mint-border);
}

.sticky-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scroll-pane {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.scroll-pane h2 {
  font-size: 44px;
  font-weight: 600;
  color: var(--bio-forest);
  letter-spacing: -0.02em;
}

.scroll-pane p {
  font-size: 16px;
  color: var(--bio-text-muted);
  line-height: 1.7;
}

.fact-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bio-white);
  padding: 16px 24px;
  border-radius: 24px;
  border: 1px solid var(--bio-mint-border);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--bio-forest);
  font-size: 15px;
}

.fact-pill span.dot {
  width: 12px;
  height: 12px;
  background: var(--bio-accent);
  border-radius: 50%;
}

.fact-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.flex-grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  background: var(--bio-white);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--bio-mint-border);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: var(--bio-pastel);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: scale(1.06);
  border-color: var(--bio-accent);
  z-index: 10;
  box-shadow: 0 24px 48px rgba(16, 185, 129, 0.22);
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--bio-accent);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.benefit-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--bio-forest);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.benefit-card p {
  font-size: 14px;
  color: var(--bio-text-muted);
  line-height: 1.55;
  position: relative;
  z-index: 2;
}

.masonry {
  column-count: 3;
  column-gap: 22px;
}

.masonry-item {
  break-inside: avoid;
  background: var(--bio-white);
  border-radius: 28px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid var(--bio-mint-border);
  transition: all 0.25s ease;
  display: block;
  color: var(--bio-forest);
}

.masonry-item:hover {
  transform: scale(1.02);
  border-color: var(--bio-accent);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
  z-index: 10;
}

.masonry-img {
  width: 100%;
  height: auto;
  display: block;
}

.masonry-cap {
  padding: 20px 22px;
}

.masonry-cap .loc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--bio-emerald);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.masonry-cap h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--bio-forest);
}

.hover-reveals {
  max-width: 760px;
  margin: 0 auto;
}

.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8px;
  border-bottom: 1px solid var(--bio-mint-border);
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  color: var(--bio-forest);
}

.team-row:hover {
  padding-left: 24px;
  color: var(--bio-emerald);
  z-index: 10;
}

.team-row .nm {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.team-row .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--bio-text-muted);
}

.team-row .years {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--bio-emerald);
}

.team-tooltip {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bio-white);
  padding: 14px;
  border-radius: 24px;
  border: 1px solid var(--bio-mint-border);
  box-shadow: 0 16px 36px rgba(6, 78, 59, 0.15);
  display: none;
  gap: 14px;
  align-items: center;
  z-index: 5;
}

.team-row:hover .team-tooltip {
  display: flex;
}

.team-tooltip img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.team-tooltip .ti-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--bio-forest);
  font-size: 15px;
}

.team-tooltip .ti-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--bio-text-muted);
}

.coverflow-wrap {
  position: relative;
  padding: 40px 0;
}

.coverflow-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--bio-accent) transparent;
}

.coverflow-card {
  flex: 0 0 380px;
  scroll-snap-align: center;
  background: var(--bio-white);
  border-radius: 28px;
  padding: 36px;
  border: 1px solid var(--bio-mint-border);
  transition: all 0.3s ease;
}

.coverflow-card.active {
  transform: scale(1.04);
  border-color: var(--bio-accent);
  box-shadow: 0 24px 48px rgba(16, 185, 129, 0.2);
}

.stars {
  color: var(--bio-accent);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 4px;
}

.coverflow-card .qt {
  font-size: 16px;
  color: var(--bio-forest);
  line-height: 1.6;
  margin-bottom: 22px;
  font-weight: 500;
}

.coverflow-card .who {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--bio-forest);
}

.coverflow-card .where {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--bio-text-muted);
}

.coverflow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bio-white);
  border: 2px solid var(--bio-accent);
  color: var(--bio-emerald);
  font-size: 22px;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.18);
  transition: all 0.2s ease;
}

.coverflow-btn:hover {
  background: var(--bio-accent);
  color: var(--bio-white);
}

.coverflow-btn.prev {
  left: -20px;
}

.coverflow-btn.next {
  right: -20px;
}

.accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: none;
}

.acc-item {
  background: var(--bio-white);
  border-radius: 20px;
  border: 1px solid var(--bio-mint-border);
  overflow: hidden;
  transition: all 0.25s ease;
}

.acc-item.open {
  border-color: var(--bio-accent);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.14);
}

.acc-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--bio-forest);
  text-align: left;
}

.acc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bio-pastel);
  color: var(--bio-emerald);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.acc-item.open .acc-icon {
  transform: rotate(45deg);
  background: var(--bio-accent);
  color: var(--bio-white);
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 26px;
  color: var(--bio-text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.acc-item.open .acc-a {
  max-height: 400px;
  padding: 0 26px 24px;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--bio-white);
  border-radius: 40px;
  padding: 48px;
  border: 1px solid var(--bio-mint-border);
}

.field {
  margin-bottom: 24px;
}

.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--bio-emerald);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--bio-mint-border);
  padding: 12px 4px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--bio-forest);
  outline: none;
  transition: border-color 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--bio-text-muted);
  opacity: 0.7;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--bio-accent);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  background: var(--bio-white);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid var(--bio-mint-border);
}

.info-card .lab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--bio-emerald);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.info-card .val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--bio-forest);
}

.info-card .val a {
  color: var(--bio-forest);
}

.info-card .val a:hover {
  color: var(--bio-emerald);
}

.site-footer {
  background: var(--bio-emerald);
  color: var(--bio-white);
  border-radius: 40px 40px 0 0;
  padding: 80px 0 32px;
  margin-top: 80px;
}

.site-footer .container-bio {
  color: var(--bio-white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand .brand-name {
  color: var(--bio-white);
  font-size: 18px;
}

.footer-brand .brand-name-en {
  color: rgba(255, 255, 255, 0.75);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--bio-white);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--bio-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  max-width: 420px;
  background: var(--bio-white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(6, 78, 59, 0.25);
  z-index: 999;
  border: 1px solid var(--bio-mint-border);
}

.cookie-banner .ct {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--bio-forest);
  margin-bottom: 8px;
}

.cookie-banner .cd {
  font-size: 13px;
  color: var(--bio-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.cookie-banner .ca {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner button {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  min-height: 44px;
}

.cookie-banner .accept {
  background: var(--bio-accent);
  color: var(--bio-white);
}

.cookie-banner .decline {
  background: transparent;
  color: var(--bio-text-muted);
  border: 1px solid var(--bio-mint-border);
}

.cookie-banner a {
  font-size: 13px;
  color: var(--bio-emerald);
  text-decoration: underline;
}

.reveals {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveals.visible {
  opacity: 1;
  transform: translateY(0);
}

.thanks-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.thanks-card {
  background: var(--bio-white);
  padding: 60px 48px;
  border-radius: 40px;
  border: 1px solid var(--bio-mint-border);
  max-width: 640px;
  box-shadow: 0 24px 60px rgba(16, 185, 129, 0.15);
}

.thanks-icon {
  width: 88px;
  height: 88px;
  background: var(--bio-accent);
  color: var(--bio-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin: 0 auto 24px;
}

.thanks-card h1 {
  font-size: 40px;
  color: var(--bio-forest);
  margin-bottom: 16px;
}

.thanks-card p {
  font-size: 16px;
  color: var(--bio-text-muted);
  margin-bottom: 32px;
}

.article-card {
  background: var(--bio-white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--bio-mint-border);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.18);
  border-color: var(--bio-accent);
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.article-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--bio-emerald);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--bio-forest);
}

.article-card p {
  font-size: 14px;
  color: var(--bio-text-muted);
  margin-bottom: 16px;
  flex: 1;
}

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}

.legal-wrap h1 {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--bio-forest);
}

.legal-wrap h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--bio-forest);
}

.legal-wrap p {
  margin-bottom: 14px;
  color: var(--bio-text-muted);
}

.legal-wrap ul {
  margin: 12px 0 16px 24px;
  color: var(--bio-text-muted);
}

.legal-wrap li {
  margin-bottom: 8px;
}

.service-detail-wrap {
  padding: 80px 0;
}

.service-grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.service-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid var(--bio-mint-border);
  display: block;
}

.service-detail-wrap h1 {
  font-size: 52px;
  margin-bottom: 20px;
  color: var(--bio-forest);
}

.service-detail-wrap .lead {
  font-size: 17px;
  color: var(--bio-text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
}

.price-tag {
  display: inline-block;
  background: var(--bio-pastel);
  color: var(--bio-emerald);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  padding: 12px 24px;
  border-radius: 18px;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  margin: 24px 0;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--bio-mint-border);
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--bio-forest);
  font-size: 15px;
}

.feature-list li::before {
  content: '✓';
  color: var(--bio-accent);
  font-weight: 700;
  font-size: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bio-pastel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compact-hero {
  padding: 100px 0 60px;
  text-align: center;
}

.compact-hero h1 {
  font-size: 52px;
  margin-bottom: 16px;
}

.compact-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .nav-side {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    position: relative;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-visual {
    aspect-ratio: 16 / 10;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .bento-cell.large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-cell.medium-text {
    grid-column: span 1;
    grid-row: span 2;
  }

  .bento-cell.wide {
    grid-column: span 2;
  }

  .node-graph {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-sticky {
    grid-template-columns: 1fr;
  }

  .sticky-pane {
    position: relative;
    top: 0;
    aspect-ratio: 16 / 10;
  }

  .flex-grow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry {
    column-count: 2;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid-2 {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container-bio {
    padding: 0 18px;
  }

  .section {
    padding: 70px 0;
  }

  .hero-stage {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .compact-hero h1 {
    font-size: 32px;
  }

  .compact-hero p {
    font-size: 15px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-cell.large,
  .bento-cell.medium-text,
  .bento-cell.wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 220px;
  }

  .node-graph {
    grid-template-columns: 1fr;
  }

  .flex-grow-grid {
    grid-template-columns: 1fr;
  }

  .masonry {
    column-count: 1;
  }

  .coverflow-card {
    flex: 0 0 86%;
    padding: 28px 22px;
  }
  .coverflow-btn {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .thanks-card {
    padding: 40px 24px;
  }

  .thanks-card h1 {
    font-size: 28px;
  }

  .team-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .team-row .nm {
    font-size: 20px;
    width: 100%;
  }

  .team-row .years {
    margin-left: auto;
  }

  .hero-floating-card {
    display: none;
  }

  .service-detail-wrap h1 {
    font-size: 32px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .legal-wrap h1 {
    font-size: 28px;
  }
}
