/* ============================================================
   ASCEND LABS — Design System
   Luxury Men's Performance Supplement Brand
   Dark & Gold | Masculine | Scientific | Minimal
   ============================================================ */

/* Fonts */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ── Color Tokens ── */
:root {
  --bg:            #080808;
  --surface:       #0f0f0e;
  --surface-2:     #161614;
  --surface-3:     #1e1d1b;
  --border:        #2a2824;
  --border-light:  #3a3830;
  --text:          #f0ede8;
  --text-muted:    #8a8880;
  --text-faint:    #4a4844;
  --gold:          #c9a86e;
  --gold-bright:   #d4bc84;
  --gold-dark:     #957840;
  --gold-bg:       rgba(201,168,110,0.08);
  --emerald:       #1e4d3a;
  --emerald-bright:#2a6b50;
  --white:         #f8f6f1;
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
  --radius-full:   9999px;
  --transition:    200ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-gold:   0 0 40px rgba(201, 168, 110, 0.15);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.5);
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Satoshi', -apple-system, sans-serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7.5rem);

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem;
  --sp-4: 1rem; --sp-6: 1.5rem; --sp-8: 2rem;
  --sp-10: 2.5rem; --sp-12: 3rem; --sp-16: 4rem;
  --sp-20: 5rem; --sp-24: 6rem; --sp-32: 8rem;

  /* Content */
  --narrow: 640px; --default: 960px; --wide: 1200px;
}

/* ── Base ── */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  min-height: 100dvh;
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.1; }
p, li { text-wrap: pretty; max-width: 68ch; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

::selection {
  background: rgba(201,168,110,0.25);
  color: var(--text);
}

/* ── Utility Classes ── */
.container { max-width: var(--wide); margin: 0 auto; padding: 0 var(--sp-6); }
.container--narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 var(--sp-6); }
.container--default { max-width: var(--default); margin: 0 auto; padding: 0 var(--sp-6); }

.section { padding-block: clamp(var(--sp-16), 8vw, var(--sp-32)); }
.section--sm { padding-block: clamp(var(--sp-8), 5vw, var(--sp-16)); }

.gold { color: var(--gold); }
.gold-bright { color: var(--gold-bright); }
.muted { color: var(--text-muted); }

.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-2xl);
  line-height: 1.05;
  color: var(--text);
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-xl);
  line-height: 1.1;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.85em 2em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,110,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-bg);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover { background: var(--surface-3); color: var(--text); }

.btn-lg { padding: 1em 2.5em; font-size: var(--text-base); }
.btn-xl { padding: 1.1em 3em; font-size: var(--text-lg); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--sp-4) 0;
  transition: all 300ms ease;
}
.nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-3) 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
}
.nav-links a {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: var(--sp-4); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all var(--transition);
}

/* ── Mobile Menu — always fixed/hidden, regardless of viewport ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text);
}
.mobile-menu-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  background: none;
  border: none;
  transition: color var(--transition);
}
.mobile-menu-close:hover { color: var(--text); }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-4) 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-8);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}
.card-gold {
  border-color: rgba(201,168,110,0.2);
  background: linear-gradient(135deg, rgba(201,168,110,0.05) 0%, var(--surface) 60%);
}
.card-gold:hover { border-color: rgba(201,168,110,0.35); }

/* ── Gradient Line ── */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ── Pain Points Grid ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-4);
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}
.pain-item:hover { border-color: rgba(201,168,110,0.25); }
.pain-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

/* ── Ingredients Grid ── */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-4);
}
.ingredient-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.ingredient-card:hover { border-color: rgba(201,168,110,0.3); }
.ingredient-card:hover::before { opacity: 1; }
.ingredient-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid rgba(201,168,110,0.2);
  padding: 0.25em 0.75em;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-3);
}
.ingredient-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text);
  margin-bottom: var(--sp-2);
}
.ingredient-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: none;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  align-items: start;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.price-card-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201,168,110,0.08) 0%, var(--surface) 50%);
  transform: scale(1.04);
}
.price-card-featured:hover { transform: scale(1.04) translateY(-4px); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #080808;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3em 1.2em;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.price-type {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}
.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.price-period {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--sp-1);
}
.price-savings {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-bg);
  padding: 0.2em 0.8em;
  border-radius: var(--radius-full);
  margin-top: var(--sp-3);
}
.price-features {
  list-style: none;
  margin: var(--sp-6) 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: none;
}
.price-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  position: relative;
}
.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  font-family: var(--font-display);
  margin-bottom: var(--sp-4);
}
.testimonial-text {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--sp-6);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text);
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 2px; margin-bottom: var(--sp-4); }

/* ── Bonus Stack ── */
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}
.bonus-item:hover { border-color: rgba(201,168,110,0.25); }
.bonus-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2ch;
}
.bonus-value {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}
.bonus-title { font-weight: 700; color: var(--text); margin-bottom: var(--sp-2); }
.bonus-desc { font-size: var(--text-sm); color: var(--text-muted); max-width: none; }

/* ── Guarantee ── */
.guarantee-box {
  background: var(--surface);
  border: 1px solid rgba(201,168,110,0.25);
  border-radius: var(--radius-lg);
  padding: clamp(var(--sp-8), 5vw, var(--sp-16));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guarantee-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.guarantee-seal {
  width: 100px;
  height: 100px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  flex-direction: column;
  gap: 2px;
}
.guarantee-seal-days {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.guarantee-seal-label {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6) 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: var(--sp-4); }
.faq-answer p { color: var(--text-muted); font-size: var(--text-base); line-height: 1.7; }

/* ── Footer ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-faint);
  line-height: 1.6;
  max-width: 72ch;
}
.footer-copy {
  font-size: var(--text-xs);
  color: var(--text-faint);
  white-space: nowrap;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Misc ── */
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.gap-8 { gap: var(--sp-8); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.flex { display: flex; } .flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr; } }

/* ── Product Page Specific ── */
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
@media (max-width: 900px) {
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-hero-grid .product-img { max-width: 400px; margin: 0 auto; }
}
.product-img {
  position: relative;
}
.product-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.product-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(201,168,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Order Page Specific ── */
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-12);
  align-items: start;
}
@media (max-width: 900px) { .order-grid { grid-template-columns: 1fr; } }
.order-form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}
.form-group { margin-bottom: var(--sp-4); }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.05em;
}
.form-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75em 1em;
  font-size: var(--text-sm);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,110,0.1);
}
.form-input::placeholder { color: var(--text-faint); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.order-bump {
  background: var(--surface-2);
  border: 2px dashed rgba(201,168,110,0.3);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  cursor: pointer;
  transition: border-color var(--transition);
}
.order-bump:hover { border-color: rgba(201,168,110,0.5); }
.order-bump input[type=checkbox] { accent-color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.order-summary { position: sticky; top: 100px; }
.order-summary-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}
.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
}
.order-line:last-child { border-bottom: none; }
.order-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-4);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--text);
}
.secure-badges {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-top: var(--sp-4);
}
.secure-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ── About Page ── */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/lab-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.95) 40%, rgba(8,8,8,0.4));
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6);
}
.value-card {
  padding: var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.value-card:hover {
  border-color: rgba(201,168,110,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: var(--sp-4);
  display: block;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-6);
}
