/* ═══════════════════════════════════════════════════════════
   PepMaster Peptide Supply — shared site stylesheet
   Used by every page. Page-specific layout lives in a small
   inline <style> block on that page only when genuinely unique.
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --navy:    #0A1628;
  --blue:    #0F3460;
  --accent:  #00B4D8;
  --teal:    #0077B6;
  --light:   #CAF0F8;
  --white:   #FFFFFF;
  --offwhite:#F8FAFC;
  --gray:    #64748B;
  --border:  #E2E8F0;
  --text:    #1E293B;
  --gold:    #F0A500;
  --amber:   #B45309;
  --amber-bg:#FEF3C7;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a { color: inherit; }

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 180, 216, 0.2);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon { width: 42px; height: 42px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-name span { color: var(--accent); }

.logo-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(202, 240, 248, 0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.current { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: #00C8F0 !important;
  transform: translateY(-1px);
}

/* ─── PAGE HERO (compact, for subpages) ─────────────── */
.page-hero {
  background: linear-gradient(135deg, #0A1628 0%, #0F2744 40%, #0A1E3A 100%);
  padding: 152px 2rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(202,240,248,0.5);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(202,240,248,0.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span.current { color: rgba(202,240,248,0.5); }

.page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
  max-width: 760px;
}

.page-hero p.lede {
  font-size: 1.02rem;
  color: rgba(202,240,248,0.75);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 1.1rem;
}

.page-hero .hero-ruo {
  font-size: 0.78rem;
  color: rgba(202,240,248,0.42);
  margin-bottom: 1.75rem;
}

.page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── HOMEPAGE HERO (full height) ───────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0A1628 0%, #0F2744 40%, #0A1E3A 100%);
  display: flex;
  align-items: center;
  padding-top: 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,119,182,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  background: linear-gradient(90deg, #00B4D8, #48CAE4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(202,240,248,0.75);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 520px;
}

.hero-ruo {
  font-size: 0.78rem;
  color: rgba(202,240,248,0.45);
  margin-bottom: 1.75rem;
}

.hero-actions, .page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,180,216,0.35);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #00C8F0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,180,216,0.45);
}

.btn-primary.flat { background: var(--teal); box-shadow: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,180,216,0.08);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
}

.stat-value span { color: var(--accent); }

.stat-label {
  font-size: 0.75rem;
  color: rgba(202,240,248,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.vial-container { position: relative; z-index: 2; }

.vial-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,180,216,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.flagship-vials {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.25rem;
}

.flagship-vial {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flagship-vial .vial-img {
  width: 125px;
  filter: drop-shadow(0 20px 60px rgba(0,180,216,0.4));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.flagship-center .vial-img { width: 175px; animation-delay: 0.3s; }
.flagship-side { opacity: 0.94; margin-bottom: 8px; }
.flagship-side:first-child .vial-img { animation-delay: 0.6s; }
.flagship-side:last-child .vial-img { animation-delay: 0.9s; }

.flagship-label {
  margin-top: 0.65rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0,180,216,0.14);
  border: 1px solid rgba(0,180,216,0.3);
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}

.molecule-ring {
  position: absolute;
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow 20s linear infinite;
}

.ring-1 { width: 340px; height: 340px; }
.ring-2 { width: 420px; height: 420px; border-style: dashed; animation-duration: 30s; animation-direction: reverse; }
.ring-3 { width: 500px; height: 500px; opacity: 0.5; animation-duration: 45s; }

.molecule-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.ring-1 .molecule-dot:nth-child(1) { top: -4px; left: calc(50% - 4px); }
.ring-1 .molecule-dot:nth-child(2) { bottom: -4px; right: calc(50% - 4px); }
.ring-2 .molecule-dot:nth-child(1) { top: -4px; right: 80px; background: #48CAE4; }
.ring-2 .molecule-dot:nth-child(2) { bottom: -4px; left: 80px; background: #48CAE4; }

@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ─── TRUST BAR ───────────────────────────────────── */
.trust-bar {
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}

.trust-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg { width: 16px; height: 16px; fill: white; }

/* ─── SECTION SHARED ──────────────────────────────── */
section { padding: 6rem 2rem; scroll-margin-top: 88px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-inner.narrow { max-width: 820px; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 620px;
  line-height: 1.7;
}

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.centered .section-sub { margin-left: auto; margin-right: auto; }

h2.plain, h3.plain {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.prose { max-width: 720px; }
.prose p { margin-bottom: 1.1rem; color: var(--text); line-height: 1.75; }
.prose p.muted { color: var(--gray); font-size: 0.95rem; }
.prose ul { margin: 0 0 1.1rem 1.2rem; }
.prose li { margin-bottom: 0.5rem; line-height: 1.65; }

/* ─── CATALOG / PRODUCT CARDS ─────────────────────── */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-tab {
  background: var(--offwhite);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.18s;
}

.filter-tab:hover { border-color: var(--accent); color: var(--accent); }

.filter-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.catalog-grid.compact { grid-template-columns: repeat(4, 1fr); }

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(0,180,216,0.12);
  transform: translateY(-2px);
}

.product-card.hidden { display: none; }
.cat-heading {
  grid-column: 1 / -1;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 1.25rem 0 0;
}
.cat-heading:first-child { margin-top: 0; }
.cat-heading.hidden { display: none; }

.product-card.unavailable { opacity: 0.82; }

.pc-image {
  width: 100%;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--offwhite);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pc-image img { max-width: 100%; max-height: 100%; object-fit: contain; }

.pc-unavailable-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--amber-bg);
  color: var(--amber);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 100px;
}

.pc-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.pc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.pc-inn { font-size: 0.75rem; color: var(--gray); font-style: italic; margin-bottom: 0.85rem; }
.pc-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.6; flex: 1; margin-bottom: 1rem; }

.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pc-spec { font-size: 0.78rem; color: var(--gray); }
.pc-spec strong { font-family: 'Space Grotesk', sans-serif; font-size: 0.88rem; color: var(--navy); font-weight: 700; }

.pc-links { display: flex; gap: 0.85rem; align-items: center; }

.pc-inquire {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

.pc-inquire:hover { color: var(--teal); }
.pc-inquire.secondary { color: var(--gray); }
.pc-inquire.secondary:hover { color: var(--navy); }

/* ─── DOCUMENTATION GRID ───────────────────────────── */
.doc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }

.doc-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 1.5rem; text-align: left; }

.doc-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(0,180,216,0.14), rgba(0,119,182,0.14));
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.doc-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; }
.doc-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.doc-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

/* ─── WHOLESALE: VOLUME BANDS + FACTS ─────────────── */
.moq-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 2.5rem;
}

.volume-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 3rem; }

.volume-card { background: var(--offwhite); border: 1.5px solid var(--border); border-radius: 14px; padding: 1.75rem 1.5rem; text-align: center; }
.volume-card.top { background: var(--navy); border-color: var(--navy); }

.volume-tier { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem; }
.volume-card.top .volume-tier { color: var(--light); }

.volume-units { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.volume-card.top .volume-units { color: var(--white); }

.volume-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }
.volume-card.top .volume-desc { color: rgba(202,240,248,0.7); }

.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.fact-card { border: 1.5px solid var(--border); border-radius: 12px; padding: 1.5rem; }
.fact-card h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
.fact-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

/* ─── QUALITY SECTION ─────────────────────────────── */
#quality { background: var(--navy); position: relative; overflow: hidden; }

#quality::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
  pointer-events: none;
}

#quality .section-title { color: var(--white); }
#quality .section-sub { color: rgba(202,240,248,0.65); }
#quality .section-label { color: var(--accent); }

.quality-flow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0,180,216,0.08);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 3rem;
  line-height: 2;
}

.quality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.quality-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,180,216,0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.2s;
}

.quality-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(0,180,216,0.35); transform: translateY(-3px); }

.quality-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,180,216,0.2), rgba(0,119,182,0.2));
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}

.quality-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; }
.quality-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.quality-card p { font-size: 0.875rem; color: rgba(202,240,248,0.6); line-height: 1.65; }

/* ─── DISTRIBUTOR PANEL ────────────────────────────── */
#distributors { background: var(--offwhite); }

.distributor-panel {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 3.5rem 3rem;
}

.distributor-panel .section-label, .distributor-panel .section-title { text-align: center; }
.distributor-panel p { font-size: 1rem; color: var(--gray); line-height: 1.75; max-width: 560px; margin: 0 auto 2rem; }

/* ─── DATA TABLES (compound identity / specs / analytical) ── */
.data-table-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

.data-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; background: var(--white); }

.data-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.1rem;
  text-align: left;
  white-space: nowrap;
}

.data-table tbody tr { border-bottom: 1px solid var(--border); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(0,180,216,0.04); }
.data-table td { padding: 0.8rem 1.1rem; vertical-align: top; }
.data-table td.label { color: var(--gray); width: 220px; font-weight: 500; }
.data-table td strong { color: var(--navy); }

.evidence-box {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
  margin-top: 1.25rem;
}

.evidence-box strong { color: var(--navy); }
.evidence-box .cite { display: block; margin-top: 0.5rem; font-size: 0.78rem; color: var(--gray); }

/* ─── CROSS-LINKS ROW ──────────────────────────────── */
.cross-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.cross-links a { color: var(--teal); font-weight: 600; text-decoration: none; }
.cross-links a:hover { color: var(--accent); }

/* ─── CONTACT / QUOTE ─────────────────────────────── */
#quote, .quote-band {
  background: linear-gradient(135deg, #0A1628 0%, #0F2744 100%);
  position: relative;
  overflow: hidden;
}

#quote::before, .quote-band::before {
  content: '';
  position: absolute;
  bottom: -20%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,180,216,0.1) 0%, transparent 70%);
  pointer-events: none;
}

#quote .section-label, .quote-band .section-label { color: var(--accent); }
#quote .section-title, .quote-band .section-title { color: var(--white); }
#quote .section-sub, .quote-band .section-sub { color: rgba(202,240,248,0.65); }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info { position: relative; z-index: 1; }
.contact-points { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }
.contact-point { display: flex; align-items: flex-start; gap: 1rem; }

.cp-icon {
  width: 44px; height: 44px;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.cp-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; }
.cp-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(202,240,248,0.45); margin-bottom: 3px; }
.cp-value { font-size: 0.9rem; color: var(--white); font-weight: 500; }
.cp-value a { color: var(--white); text-decoration: none; }
.cp-value a:hover { color: var(--accent); }

.inquiry-form { background: var(--white); border-radius: 20px; padding: 2.5rem; position: relative; z-index: 1; }
.form-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.form-subtitle { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.75rem; }

.form-section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin: 1.75rem 0 0.85rem; }
.form-section-label:first-of-type { margin-top: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group label span { color: #ef4444; }
.form-group label .opt { color: var(--gray); font-weight: 500; }
.form-hint { font-size: 0.78rem; color: var(--gray); margin-top: -0.3rem; line-height: 1.5; }

.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,180,216,0.12); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 110px; }

.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.checkbox-row { display: flex; align-items: center; gap: 0.55rem; font-size: 0.83rem; color: var(--text); }
.checkbox-row input { width: 15px; height: 15px; accent-color: var(--accent); }

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,119,182,0.35); }
.form-disclaimer { font-size: 0.72rem; color: var(--gray); text-align: center; margin-top: 1rem; line-height: 1.5; }

/* ─── FOOTER ──────────────────────────────────────── */
footer { background: #050D1A; color: rgba(255,255,255,0.55); padding: 3rem 2rem 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand p { font-size: 0.85rem; line-height: 1.65; margin-top: 1rem; max-width: 360px; }
.footer-nav h4 { font-size: 0.8rem; font-weight: 700; color: var(--white); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent); }

.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.78rem; line-height: 1.5; }
.footer-disclaimer { font-size: 0.72rem; color: rgba(255,255,255,0.35); max-width: 600px; line-height: 1.55; text-align: right; }

/* ─── LEGAL PAGE TYPOGRAPHY ────────────────────────── */
.legal-body h2 { font-family: 'Space Grotesk', sans-serif; color: var(--navy); font-size: 1.25rem; margin: 2.25rem 0 0.85rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--text); font-size: 0.95rem; line-height: 1.75; margin-bottom: 0.9rem; }
.legal-body ul { margin-left: 1.3rem; margin-bottom: 0.9rem; }
.legal-body .updated { color: var(--gray); font-size: 0.85rem; margin-bottom: 2.5rem; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner, .contact-wrapper { grid-template-columns: 1fr; }
  .catalog-grid, .catalog-grid.compact { grid-template-columns: 1fr 1fr; }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .doc-grid { grid-template-columns: 1fr 1fr; }
  .volume-grid { grid-template-columns: 1fr 1fr; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { order: -1; }
  .hero h1 { font-size: 2rem; }
  .flagship-vial .vial-img { width: 90px; }
  .flagship-center .vial-img { width: 130px; }
  .ring-1 { width: 260px; height: 260px; }
  .ring-2 { width: 320px; height: 320px; }
  .ring-3 { width: 380px; height: 380px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { text-align: left; }
  .distributor-panel { padding: 2.5rem 1.75rem; }
  .page-hero { padding: 128px 1.5rem 3.5rem; }
}

@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .hero { padding-top: 100px; }
  .nav-links { display: none; }
  section { padding: 4rem 1.25rem; scroll-margin-top: 80px; }
  .catalog-grid, .catalog-grid.compact { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .volume-grid { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .page-hero { padding: 112px 1.25rem 3rem; }
}

/* ─── SCROLL REVEAL ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; animation: revealFallback 0s 1.8s forwards; }
@keyframes revealFallback { to { opacity: 1; transform: translateY(0); } }
.reveal.visible { opacity: 1; transform: none; animation: none; }
