/* ============================================================
   ThalaCol™ Landing Page v2 — Premium K-Beauty Design System
   Desktop First · 8% side margins · Min body 17px
   ============================================================ */

/* ——— Variables ——— */
:root {
  --navy: #0A1E3C;
  --navy-dark: #060E1F;
  --navy-mid: #0F2545;
  --navy-light: #1A3A6B;
  --gold: #C9A84C;
  --gold-light: #E0C47A;
  --color-gold-light: #E0C47A;
  --gold-pale: #FBF3E0;
  --rose: #D94F72;
  --rose-dark: #B83058;
  --rose-pale: #FDF2F5;
  --rose-soft: #F8D7E3;
  --cream: #FAFAF7;
  --white: #FFFFFF;
  --text: #161626;
  --text-mid: #3D3D55;
  --text-muted: #7A7A9A;
  --border: rgba(201, 168, 76, 0.2);

  --font-serif: 'Noto Serif TC', 'Playfair Display', Georgia, serif;
  --font-sans: 'Noto Sans TC', 'Inter', sans-serif;
  --font-display: 'Playfair Display', 'Noto Serif TC', serif;

  /* 10% left-right page margin */
  --page-pad: 10%;
  --page-max: 1440px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 100px;

  --trans: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 8px 40px rgba(10, 30, 60, 0.10);
  --shadow-lift: 0 24px 70px rgba(10, 30, 60, 0.20);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin-bottom: 1.3em;
}

p:last-child {
  margin-bottom: 0;
}

/* ——— Layout Helpers ——— */
.page-wrap {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.section {
  padding: 100px 0;
}

.bg-white {
  background: var(--white);
}

.bg-cream {
  background: var(--cream);
}

.bg-navy-dark {
  background: var(--navy-dark);
}

.bg-rose-pale {
  background: var(--rose-pale);
}

.text-center {
  text-align: center;
}

/* ——— Typography System ——— */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}

.eyebrow--gold {
  color: var(--gold);
}

.eyebrow--navy {
  color: var(--navy);
}

.section-h2 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 22px;
  letter-spacing: -0.015em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-h2 em {
  display: inline-block;
  font-style: italic;
  padding-right: 0.3em;
  margin-right: -0.1em;
  padding-bottom: 0.05em;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.color-white {
  color: #fff;
}

.color-white-70 {
  color: rgba(255, 255, 255, 0.72);
}

.color-gold {
  color: var(--gold-light);
  font-weight: 600;
}

.color-rose {
  color: var(--rose);
  font-weight: 600;
}

.gradient-gold {
  display: inline-block;
  padding-right: 0.3em;
  margin-right: -0.1em;
  padding-bottom: 0.05em;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-rose {
  display: inline-block;
  padding-right: 0.3em;
  margin-right: -0.1em;
  padding-bottom: 0.05em;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-lead {
  font-size: 20px;
  color: var(--text-mid);
  line-height: 1.82;
  max-width: 860px;
  margin-bottom: 56px;
}

.section-lead strong {
  color: var(--navy);
  font-weight: 600;
}

/* ——— Buttons ——— */
.btn-rose {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 17px 40px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  transition: var(--trans);
  box-shadow: 0 10px 36px rgba(217, 79, 114, 0.40);
}

.btn-rose:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(217, 79, 114, 0.58);
}

.btn-rose--xl {
  font-size: 18px;
  padding: 22px 60px;
  margin-top: 52px;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  transition: var(--trans);
}

.btn-outline-white:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

/* ——— NAVBAR ——— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px var(--page-pad);
  transition: var(--trans);
}

.navbar.scrolled {
  background: rgba(6, 14, 31, 0.96);
  backdrop-filter: blur(24px);
  padding: 13px var(--page-pad);
  box-shadow: 0 4px 32px rgba(6, 14, 31, 0.4);
}

.nav-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 14px;
}

.nav-brand {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-subbrand {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  transition: var(--trans);
  position: relative;
}

.nav-links a:hover {
  color: #FFFFFF !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.nav-links a.active {
  color: var(--gold-light) !important;
  font-weight: 600;
}

.nav-links a.active:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark)) !important;
  color: #fff !important;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
  font-size: 16px !important;
  box-shadow: 0 4px 20px rgba(217, 79, 114, 0.38);
}

.nav-cta:hover {
  box-shadow: 0 8px 32px rgba(217, 79, 114, 0.55) !important;
  transform: translateY(-2px);
}

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(6, 14, 31, 0.88) 0%,
      rgba(10, 30, 60, 0.75) 50%,
      rgba(10, 30, 60, 0.35) 100%);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 140px var(--page-pad) 100px;
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.hero-title em,
.hero-em {
  display: inline-block;
  font-style: italic;
  padding-right: 0.35em;
  margin-right: -0.12em;
  padding-bottom: 0.05em;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--rose) 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-kpi-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  padding: 22px 16px;
  margin-bottom: 36px;
  max-width: 680px;
}

.hero-kpi {
  flex: 1;
  text-align: center;
  padding: 0 6px;
}

.hero-kpi-sep {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.kpi-val {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
}

.kpi-val em {
  font-size: 30px;
  font-style: normal;
  color: var(--rose);
  font-weight: 600;
}

.kpi-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-clinical-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  font-style: italic;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: var(--page-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  z-index: 2;
}

.scroll-bar {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
  animation: scroll-anim 2.2s ease-in-out infinite;
}

@keyframes scroll-anim {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.4;
  }

  50% {
    transform: scaleY(1.3);
    opacity: 0.9;
  }
}

/* ——— INTRO BANNER ——— */
.intro-banner {
  background: var(--navy);
  padding: 40px 0;
}

.intro-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.intro-item {
  text-align: center;
  flex: 1;
}

.intro-sep {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
}

.intro-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 5px;
}

.intro-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* ——— PRO-X INTRO ——— */
.prox-intro-split {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: center;
}

.prox-intro-text p {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.85;
}

.prox-intro-text strong {
  color: var(--navy);
  font-weight: 600;
}

.prox-intro-img-wrap {
  position: relative;
}

.prox-intro-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.prox-intro-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 30, 60, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.4;
}

.prox-intro-badge small {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

/* ——— STORY BLOCKS ——— */
.story-block {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
  margin-bottom: 60px;
}

.story-text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.88;
}

.story-h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.bg-rose-pale .story-h3,
.trip-text .story-h3 {
  color: var(--navy) !important;
}

.story-stats-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.big-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  text-align: center;
  transition: var(--trans);
}

.big-stat-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.big-stat-card--rose {
  background: rgba(217, 79, 114, 0.1);
  border-color: rgba(217, 79, 114, 0.3);
}

.big-stat-num {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.big-stat-num span {
  font-size: 30px;
  color: var(--gold);
  font-weight: 400;
}

.big-stat-card--rose .big-stat-num span {
  color: var(--rose);
}

.big-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* PEPT-1 Explainer */
.pept1-explainer {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 32px 40px;
}

.pept1-explainer h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.pept1-explainer p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
}

/* ——— TRIPEPTIDE ——— */
.trip-split {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 72px;
  align-items: start;
}

.trip-img-wrap {
  position: relative;
}

.trip-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.trip-img--glow {
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.trip-text p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.85;
}

.trip-text strong {
  color: var(--navy);
  font-weight: 600;
}

.gph-stat-note {
  font-size: 13.5px;
  color: var(--text-muted);
  opacity: 0.85;
  margin-top: 24px;
  margin-bottom: 8px;
}

.gph-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 0;
}

.gph-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}

.gph-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.gph-num small {
  font-size: 20px;
  font-weight: 400;
  color: var(--rose);
}

.gph-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ——— SPECS SHOWCASE (compact design with photo) ——— */
.specs-section {
  padding: 68px 0;
}

.specs-showcase {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 32px;
}

.specs-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 29, 58, 0.08);
  border: 1px solid rgba(10, 30, 60, 0.08);
  background: var(--cream);
  min-height: 280px;
}

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

.specs-right-col {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10, 30, 60, 0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  justify-content: space-between;
}

.sspec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  border-bottom: 1px solid rgba(10, 30, 60, 0.07);
  gap: 16px;
  transition: var(--trans);
}

.sspec-item:last-child {
  border-bottom: none;
}

.sspec-item:hover {
  background: rgba(201, 168, 76, 0.04);
}

.sspec-left {
  flex: 1;
}

.sspec-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.sspec-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.sspec-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--rose-dark);
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 140px;
  text-align: right;
}

.sspec-val span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 3px;
}

.spec-card {
  background: var(--cream);
  border: 1px solid rgba(10, 30, 60, 0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--trans);
}

.spec-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.spec-card--hero {
  grid-row: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spec-card--hero .spec-label {
  color: rgba(255, 255, 255, 0.55);
}

.spec-card--hero .spec-val {
  color: #fff;
}

.spec-card--hero .spec-note {
  color: rgba(255, 255, 255, 0.55);
}

.spec-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.spec-val {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 14px;
}

.spec-val span {
  font-size: 17px;
  font-weight: 400;
  color: var(--rose);
}

.spec-note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ——— FULL IMAGE SECTIONS ——— */
.section-fullimg {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fullimg-bg {
  position: absolute;
  inset: 0;
}

.fullimg-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fullimg-overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 14, 31, 0.85) 0%, rgba(6, 14, 31, 0.75) 50%, rgba(6, 14, 31, 0.20) 100%);
}

/* Clinical Evidence Section Background - shifted right for facial skin clarity */
.clinical-full {
  background-color: #060e1f;
}

.clinical-full .fullimg-bg {
  background-color: #060e1f;
}

.clinical-full .fullimg-bg img {
  transform: translateX(22%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 15%, rgba(0, 0, 0, 1) 32%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 15%, rgba(0, 0, 0, 1) 32%);
}

.clinical-full .fullimg-overlay-right {
  background: linear-gradient(90deg, rgba(6, 14, 31, 0.95) 0%, rgba(6, 14, 31, 0.88) 40%, rgba(6, 14, 31, 0.20) 66%, transparent 85%);
}

.fullimg-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 14, 31, 0.85) 0%, rgba(6, 14, 31, 0.3) 50%, transparent 100%);
}

.fullimg-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.fullimg-content {
  max-width: 640px;
}

.clinical-lead {
  font-size: 18px;
  line-height: 1.82;
  margin-bottom: 40px;
}

.clinical-nums {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
}

.clin-num-item {
  text-align: center;
}

.clin-big {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.clin-big span {
  font-size: 30px;
  font-weight: 400;
  color: var(--rose);
}

.clin-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  line-height: 1.4;
}

.persist-box {
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.persist-box strong {
  color: var(--gold-light);
}

/* ——— CLINICAL CHART ——— */
.chart-layout-grid {
  display: grid;
  grid-template-columns: 68fr 32fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 36px;
}

.chart-layout-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #FAFBFC;
  border: 1px solid rgba(10, 30, 60, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px 24px;
}

.chart-layout-side {
  display: flex;
  height: 100%;
}

.chart-side-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #07152B;
}

.chart-side-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.chart-side-card:hover .chart-side-img {
  transform: scale(1.03);
}

.chart-side-glass {
  position: absolute;
  inset: auto 14px 14px 14px;
  background: rgba(7, 21, 43, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  z-index: 2;
}

.chart-side-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.chart-side-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  font-family: var(--font-serif);
}

.chart-side-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin: 0;
}

.chart-wrap {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 20px;
}

.chart-axis-y {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 44px;
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
  min-width: 42px;
}

.chart-bars-area {
  flex: 1;
  display: flex;
  gap: 24px;
  align-items: flex-end;
  border-left: 1px solid rgba(10, 30, 60, 0.1);
  border-bottom: 1px solid rgba(10, 30, 60, 0.1);
  padding: 0 24px 0 24px;
  min-height: 280px;
}

.chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.chart-bar-wrap {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}

.cbar {
  width: 70%;
  max-width: 80px;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  transition: var(--trans);
}

.cbar-val {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.cbar--base {
  background: rgba(10, 30, 60, 0.18);
}

.cbar--base .cbar-val {
  color: var(--text-muted);
}

.cbar--rose {
  background: linear-gradient(180deg, var(--rose) 0%, var(--rose-dark) 100%);
}

.cbar--gold {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
}

.chart-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  padding-bottom: 4px;
}

.chart-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* ——— ORIGIN FULL IMAGE ——— */
.origin-bg img {
  object-position: center 25%;
}

.origin-bg .fullimg-overlay-bottom {
  background: linear-gradient(0deg, rgba(3, 10, 24, 0.35) 0%, transparent 40%);
}

.origin-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px var(--page-pad) 100px;
}

.origin-text-block {
  max-width: 440px;
  background: rgba(4, 13, 30, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.origin-text-block .eyebrow--gold {
  display: inline-block;
  color: #FFE699;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.origin-text-block .section-h2 {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1.22;
}

.origin-text-block p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.85;
  margin: 0;
}

.origin-feat-grid {
  margin-bottom: 64px;
}

.origin-feat {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 72px;
  align-items: center;
}

.feat-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.feat-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.feat-h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin: 16px 0 20px;
  line-height: 1.3;
}

.feat-text p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.85;
}

.origin-clean-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.clean-card {
  background: var(--white);
  border: 1px solid rgba(10, 30, 60, 0.08);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}

.clean-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.4);
}

.clean-icon-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px;
  margin-bottom: 20px;
}

.clean-h {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.clean-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ——— CERTIFICATIONS ——— */
.cert-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.8;
  max-width: 820px;
  margin-bottom: 48px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 64px;
}

.cert-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: var(--trans);
}

.cert-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.cert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  min-height: 44px;
}

.cert-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.3;
}

.cert-badge-img {
  height: 38px;
  width: auto;
  max-width: 68px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 6px;
  padding: 3px 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.cert-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.tu-banner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  display: flex;
  gap: 60px;
  align-items: center;
}

.tu-left {
  flex: 1;
}

.tu-sup {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.tu-title-big {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.tu-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 0 0 200px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 48px;
}

.tu-kpi {
  text-align: center;
}

.tu-n {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.tu-n small {
  font-size: 20px;
  color: var(--gold);
  font-weight: 400;
}

.tu-l {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

/* ——— APPLICATIONS ——— */
.app-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.app-card {
  background: var(--white);
  border: 1px solid rgba(10, 30, 60, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--trans);
  display: flex;
  flex-direction: row;
}

.app-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.35);
}

.app-thumb-wrap {
  width: 220px;
  min-width: 220px;
  height: auto;
  overflow: hidden;
  background: #f4f6f9;
}

.app-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.app-card:hover .app-thumb-img {
  transform: scale(1.06);
}

.app-card-body {
  padding: 26px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.app-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.35;
}

.app-card p {
  font-size: 15px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.7;
}



/* ——— VIDEO ——— */
.video-section {
  padding: 40px 0 60px;
  background: var(--navy-dark);
}

.video-full-wrap {
  width: 100%;
  margin: 0 0 20px;
}

.video-responsive-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  background: #000;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.video-responsive-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.video-caption {
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
  margin-top: 14px;
}

/* ——— CONTACT ——— */
.contact-section {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}

.contact-bg {
  position: absolute;
  inset: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 11, 24, 0.88);
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact-badge-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  margin-bottom: 30px;
}

.contact-desc {
  font-size: 18px;
  margin: 20px auto 52px;
  max-width: 620px;
  line-height: 1.82;
}

.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.contact-card {
  background: rgba(13, 27, 49, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--trans);
}

.contact-card--rose {
  background: rgba(217, 79, 114, 0.24);
  border-color: rgba(217, 79, 114, 0.7);
  box-shadow: 0 16px 36px rgba(217, 79, 114, 0.28);
}

.contact-card:hover {
  background: rgba(18, 36, 66, 0.95);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55);
}

.contact-card--rose:hover {
  background: rgba(217, 79, 114, 0.35);
  border-color: rgba(217, 79, 114, 0.9);
}

.cc-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: #D94F72;
  line-height: 1;
  margin-bottom: 14px;
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.contact-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  font-weight: 400;
}

/* ——— FOOTER ——— */
.footer {
  background: #030A18;
  padding: 64px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-brand-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.footer-nav {
  display: flex;
  gap: 36px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--trans);
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  width: 100%;
}

.footer-copy p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.7;
}

.footer-disclaimer {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.58) !important;
  margin-bottom: 8px;
  line-height: 1.6 !important;
}

.footer-legal {
  font-style: italic;
  margin-top: 6px;
}

/* ——— SCROLL REVEAL ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .origin-clean-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .chart-layout-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .chart-side-card {
    min-height: 320px;
  }

  .specs-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .app-row {
    grid-template-columns: 1fr;
  }

  .app-card {
    flex-direction: column;
  }

  .app-thumb-wrap {
    width: 100%;
    height: 200px;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand-wrap {
    flex-direction: column;
    gap: 10px;
  }

  .clinical-full .fullimg-bg img {
    transform: translateX(10%);
  }
}

@media (max-width: 640px) {
  .origin-clean-row {
    grid-template-columns: 1fr;
  }

  .clinical-full .fullimg-bg img {
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
}