/* ── Artise Biomedical — Main Stylesheet (Redesign 2025) ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Noto+Sans+TC:wght@400;500;700;900&family=Crimson+Pro:ital,wght@1,300&display=swap');

/* ═══ DESIGN TOKENS ═══════════════════════════════════════════ */
:root {
  --navy:    #0d1b2e;
  --navy2:   #132033;
  --navy3:   #1a2d45;
  --cyan:    #38c8e8;
  --cyan2:   #1fadc8;
  --teal:    #0fbba8;
  --blue:    #3d8ef8;
  --purple:  #8b5cf6;
  --amber:   #f59e0b;
  --green:   #10b981;
  --white:   #ffffff;
  --light:   #cde4f0;
  --muted:   #7a9ab8;
  --glass:   rgba(255,255,255,0.05);
  --glass2:  rgba(255,255,255,0.08);
  --border:  rgba(255,255,255,0.10);
  --border2: rgba(255,255,255,0.16);
  --shadow:  0 8px 32px rgba(0,0,0,0.45);
  --radius:  14px;
  --radius-lg: 20px;
}

/* ═══ RESET & BASE ═════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans TC', system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font-family: inherit; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ═══ TYPOGRAPHY ═══════════════════════════════════════════════ */
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Noto Sans TC', sans-serif; line-height: 1.2; }
.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--cyan);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--cyan); border-radius: 2px; }
.eyebrow.teal { color: var(--teal); }
.eyebrow.teal::before { background: var(--teal); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; margin-bottom: 20px; color: var(--white);
}
.section-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 560px;
  margin-bottom: 48px; line-height: 1.75;
}
.section-body { font-size: .975rem; color: var(--muted); line-height: 1.82; margin-bottom: 16px; }
.gradient-text, .grad-text {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ═══ NAVIGATION ═══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 28px; height: 68px;
  display: flex; align-items: center;
  background: rgba(13,27,46,0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled { background: rgba(10,21,38,.97); box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 8px 40px rgba(0,0,0,.4); }
.nav-inner {
  width: 100%; max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  margin-right: 20px; flex-shrink: 0;
}
.nav-logo-img { height: 32px; width: auto; }
.nav-toggle {
  display: none; background: none; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,.15); color: rgba(255,255,255,.75);
  padding: 7px 10px; border-radius: 8px; font-size: 1.1rem; line-height: 1;
  margin-left: auto; transition: border-color .2s, color .2s;
}
.nav-toggle:hover { border-color: var(--cyan); color: var(--cyan); }

/* Nav menu */
.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; }
#mobile-nav-auth { display: none; }
.nav-link {
  padding: 6px 13px; border-radius: 8px; font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.75); transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: var(--glass2); }
.nav-link.active-link { color: var(--cyan); }

/* Products dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.75); font-size: .875rem; font-weight: 500;
  padding: 6px 13px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-dropdown-trigger:hover { color: var(--white); background: var(--glass2); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: -8px; min-width: 170px;
  background: rgba(10,18,32,.98); backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.09); border-radius: 12px;
  padding: 6px; box-shadow: 0 24px 64px rgba(0,0,0,.55);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px); transition: opacity .2s, transform .2s;
  z-index: 200;
}
.nav-dropdown-static:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown-item {
  display: block; padding: 8px 12px; border-radius: 8px;
  color: rgba(255,255,255,.72); font-size: .86rem; font-weight: 500;
  transition: background .15s, color .15s;
}
.nav-dropdown-item:hover { background: rgba(56,200,232,.12); color: var(--cyan); }
.nav-dropdown-user {
  display: block; padding: 8px 12px; font-size: .82rem;
  color: rgba(255,255,255,.45); font-weight: 600; letter-spacing: .03em;
}
.nav-dropdown-divider { height: 1px; background: rgba(255,255,255,.07); margin: 4px 0; }
.nav-dropdown-logout { color: #f87171 !important; }
.nav-dropdown-logout:hover { background: rgba(248,113,113,.12) !important; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
#nav-auth { display: flex; align-items: center; }
#nav-auth .nav-link {
  display: inline-flex; align-items: center; justify-content: center;
  height: 34px; padding: 0 12px; border-radius: 8px;
  border: 1px solid var(--border); font-size: .8rem; font-weight: 700;
}
.nav-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 34px; min-width: 34px; border-radius: 8px;
  color: rgba(255,255,255,.72); border: 1px solid var(--border); cursor: pointer;
  font-size: .75rem; font-weight: 700; letter-spacing: .5px;
  padding: 0 10px; gap: 4px; background: none;
  transition: color .2s, background .2s, border-color .2s; text-decoration: none;
}
.nav-icon-btn:hover { color: var(--cyan); border-color: rgba(56,200,232,.4); background: rgba(56,200,232,.06); }
.nav-admin { display: none; }
.cart-badge {
  position: absolute; top: 2px; right: 2px;
  background: #ef4444; color: #fff; font-size: .5rem; font-weight: 800;
  border-radius: 50%; width: 15px; height: 15px;
  display: flex; align-items: center; justify-content: center;
}
.nav-cart-icon { position: relative; }

/* Mobile menu */
@media (max-width: 768px) {
  /* Remove backdrop-filter on mobile nav — it would make .nav a containing block
     for position:fixed children, trapping nav-menu inside the 68px nav bar */
  .nav {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: rgba(10,21,38,.97);
  }
  .nav.scrolled { background: rgba(8,17,32,.99); }
  /* Shrink logo so nav-actions don't overflow on small screens */
  .nav-logo-img { height: 24px; }
  /* Hide auth in nav bar on mobile — it appears inside the hamburger menu instead */
  #nav-auth { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; flex-direction: column; align-items: flex-start;
    position: fixed; top: 68px; left: 0; right: 0;
    height: calc(100dvh - 68px);
    background: rgba(8,16,30,.98);
    padding: 16px; border-top: 1px solid rgba(255,255,255,.07);
    gap: 2px; z-index: 1001; overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu .nav-link,
  .nav-menu .nav-dropdown-trigger { padding: 12px 16px; font-size: 1rem; width: 100%; }
  .nav-menu .nav-dropdown-menu { position: static; opacity: 1; pointer-events: auto; transform: none;
    box-shadow: none; background: rgba(255,255,255,.04); margin: 4px 0; }
  #mobile-nav-auth { width: 100%; margin-top: 8px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 8px; }
  #mobile-nav-auth .nav-link { padding: 12px 16px; font-size: 1rem; width: 100%; display: block; }
  #mobile-nav-auth .mobile-user-name { padding: 8px 16px; font-size: .8rem; color: rgba(255,255,255,.4); font-weight: 600; }
}

/* ═══ HERO ═════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 68px;
}
.hero-dark { /* alias */ min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 68px; }
.hero-bg, .hero-dark-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(56,200,232,.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(15,187,168,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(139,92,246,.07) 0%, transparent 60%),
    linear-gradient(160deg, #0d1b2e 0%, #0a1525 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .25;
  background-image:
    linear-gradient(rgba(56,200,232,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,200,232,.3) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero-content, .hero-dark-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  width: 100%; max-width: 1160px;
  margin: 0 auto; padding: 80px 28px;
}
.hero-left, .hero-dark-content > div:first-child { }
.hero-badge, .hero-dark-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(56,200,232,.12); border: 1px solid rgba(56,200,232,.3);
  color: var(--cyan); font-size: .78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.hero-badge::before, .hero-dark-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--cyan);
  border-radius: 50%; box-shadow: 0 0 6px var(--cyan);
}
.hero-title, .hero-dark-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -.5px;
}
.hero-sub, .hero-dark-sub {
  font-size: 1.1rem; color: var(--muted); line-height: 1.8; max-width: 480px; margin-bottom: 40px;
}
.hero-actions, .hero-dark-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual, .hero-dark-visual {
  display: flex; align-items: center; justify-content: center; position: relative;
}
/* Orb */
.orb { width: 440px; height: 440px; position: relative; }
.orb-core {
  position: absolute; inset: 20%; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,200,232,.25) 0%, rgba(15,187,168,.15) 50%, transparent 70%);
  box-shadow: 0 0 80px rgba(56,200,232,.2), inset 0 0 40px rgba(56,200,232,.1);
  animation: pulse-orb 4s ease-in-out infinite;
}
.orb-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(56,200,232,.25);
  animation: spin-ring linear infinite;
}
.orb-ring:nth-child(2) { inset: 5%; animation-duration: 20s; }
.orb-ring:nth-child(3) { inset: 14%; animation-duration: 14s; animation-direction: reverse; border-color: rgba(15,187,168,.2); }
.orb-ring:nth-child(4) { inset: 23%; animation-duration: 9s; border-color: rgba(139,92,246,.2); }
.orb-glyph {
  position: absolute; inset: 35%;
  display: flex; align-items: center; justify-content: center; font-size: 3.2rem;
  filter: drop-shadow(0 0 16px rgba(56,200,232,.6));
  animation: pulse-orb 4s ease-in-out infinite;
}
.orb-brain {
  position: absolute; inset: 28%;
  width: 44%; height: 44%; object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(56,200,232,.55)) drop-shadow(0 0 44px rgba(15,187,168,.25));
  animation: pulse-orb 4s ease-in-out infinite;
  pointer-events: none;
}
/* Mynd product nodes — 5 brand glyphs orbiting the brain */
.mynd-node {
  position: absolute;
  width: 74px; height: 74px;
  margin: -37px 0 0 -37px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  animation: float-node ease-in-out infinite;
  box-shadow: 0 6px 22px rgba(0,0,0,.28);
  transition: transform .3s ease, box-shadow .3s ease;
}
.mynd-node:hover { transform: translateY(-4px) scale(1.06); }
.mynd-node .eco-scalar-glyph,
.mynd-node .eco-velo-glyph,
.mynd-node .eco-visio-glyph,
.mynd-node .eco-vibo-glyph,
.mynd-node .eco-sora-glyph { font-size: 1.85rem; }
/* Positions: 5 nodes at 72° intervals around a 440px orb (radius 190 from center 220,220) */
.node-scalar { top: 30px;  left: 220px; border-color: rgba(56,200,232,.45); box-shadow: 0 6px 22px rgba(56,200,232,.25); }
.node-velo   { top: 161px; left: 401px; border-color: rgba(15,187,168,.45); box-shadow: 0 6px 22px rgba(15,187,168,.22); animation-delay: .6s; }
.node-visio  { top: 374px; left: 332px; border-color: rgba(61,142,248,.45); box-shadow: 0 6px 22px rgba(61,142,248,.22); animation-delay: 1.2s; }
.node-vibo   { top: 374px; left: 108px; border-color: rgba(139,92,246,.45); box-shadow: 0 6px 22px rgba(139,92,246,.22); animation-delay: 1.8s; }
.node-sora   { top: 161px; left: 39px;  border-color: rgba(245,158,11,.45); box-shadow: 0 6px 22px rgba(245,158,11,.22); animation-delay: 2.4s; }
/* Brain rings (original compat) */
.brain-visual { position: relative; width: 300px; height: 300px; display: flex; align-items: center; justify-content: center; }
.brain-ring { position: absolute; border-radius: 50%; top: 50%; left: 50%; animation: pulse-ring 3.5s ease-in-out infinite; }
.ring1 { width: 130px; height: 130px; border: 1.5px solid rgba(56,200,232,.45); animation-delay: 0s; }
.ring2 { width: 200px; height: 200px; border: 1px solid rgba(56,200,232,.24); animation-delay: .7s; }
.ring3 { width: 280px; height: 280px; border: 1px solid rgba(56,200,232,.12); animation-delay: 1.4s; }
.brain-icon { font-size: 3rem; filter: drop-shadow(0 0 16px rgba(56,200,232,.6)); }
/* Floating nodes */
.node {
  position: absolute; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--muted); animation: float-node ease-in-out infinite;
}
.node:nth-child(5)  { width:54px;height:54px; top:8%;  left:6%;  animation-duration:6s; color:var(--blue); }
.node:nth-child(6)  { width:44px;height:44px; top:20%; right:2%; animation-duration:7.5s; animation-delay:.8s; color:var(--teal); }
.node:nth-child(7)  { width:48px;height:48px; bottom:16%;left:4%;animation-duration:5.5s;animation-delay:1.2s;color:var(--purple); }
.node:nth-child(8)  { width:40px;height:40px; bottom:8%;right:8%;animation-duration:8s;  animation-delay:2s;  color:var(--amber); }
@keyframes spin-ring { to { transform: rotate(360deg); } }
@keyframes pulse-orb { 0%,100%{opacity:.8;transform:scale(1)} 50%{opacity:1;transform:scale(1.05)} }
@keyframes pulse-ring { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:.55} 50%{transform:translate(-50%,-50%) scale(1.1);opacity:.2} }
@keyframes float-node { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* ═══ BUTTONS ══════════════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; text-decoration: none; transition: all .25s; }
.btn-primary, .btn-blue {
  padding: 13px 28px; border-radius: 10px; font-size: 1rem; font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #0d1b2e; border: none;
}
.btn-primary:hover, .btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(56,200,232,.35); }
.btn-teal {
  padding: 12px 24px; border-radius: 10px; font-size: .95rem; font-weight: 700;
  background: linear-gradient(135deg, var(--teal), #0d9a8a);
  color: #0d1b2e; border: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,187,168,.35); }
.btn-secondary, .btn-outline-light {
  padding: 13px 28px; border-radius: 10px; font-size: 1rem; font-weight: 600;
  background: var(--glass2); border: 1px solid var(--border2);
  color: var(--white); display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover, .btn-outline-light:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-ghost, .btn-outline-dark {
  padding: 12px 24px; border-radius: 10px; font-size: .95rem; font-weight: 600;
  background: transparent; border: 1px solid var(--border2);
  color: rgba(255,255,255,.8); display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover, .btn-outline-dark:hover { background: var(--glass2); transform: translateY(-2px); }
.btn-outline {
  padding: 12px 28px; border-radius: 10px; font-size: .95rem; font-weight: 600;
  background: transparent; border: 1px solid var(--border2);
  color: rgba(255,255,255,.8); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn-eco {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 8px; font-size: .83rem; font-weight: 700;
  border: 1px solid currentColor; background: transparent; transition: all .2s; cursor: pointer;
}
.btn-eco:hover { background: var(--card-color, var(--cyan)); color: #0d1b2e !important; border-color: var(--card-color, var(--cyan)); }

/* ═══ STORY SECTION ═══════════════════════════════════════════ */
.story-section, .section-white { background: var(--navy2); position: relative; overflow: hidden; }
.story-section::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; }
.story-body { font-size: 1.05rem; color: var(--muted); line-height: 1.85; margin-bottom: 32px; }
.story-links { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.story-link {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; font-weight: 600; color: var(--cyan2);
  padding: 11px 16px; border-radius: 12px;
  border: 1px solid rgba(56,200,232,.15); background: rgba(56,200,232,.06);
  transition: background .25s cubic-bezier(.4,0,.2,1), transform .25s cubic-bezier(.34,1.56,.64,1), border-color .25s;
}
.story-link:hover { background: rgba(56,200,232,.12); border-color: rgba(56,200,232,.3); transform: translateX(5px); }
/* Loop diagram */
.loop-diagram { display: flex; flex-direction: column; align-items: center; width: 100%; }
.loop-row { display: flex; align-items: center; width: 100%; justify-content: center; }
.loop-node {
  width: 108px; height: 108px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border: 2px solid; flex-shrink: 0; transition: transform .3s, box-shadow .3s; cursor: default;
}
.loop-node:hover { transform: scale(1.07); }
.loop-node .icon { font-size: 1.75rem; display: flex; align-items: center; justify-content: center; line-height: 1; }
.loop-node .icon .eco-velo-glyph,
.loop-node .icon .eco-visio-glyph,
.loop-node .icon .eco-vibo-glyph { font-size: 2.1rem; }
.loop-node .loop-node-icon { font-size: 1.75rem; margin-bottom: 4px; }
.loop-node .lbl, .loop-node .loop-node-label {
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; text-align: center;
}
.loop-node.assess  { background: rgba(15,187,168,.08);  border-color: rgba(15,187,168,.40); color: var(--teal);  box-shadow: 0 0 0 6px rgba(15,187,168,.05); }
.loop-node.monitor { background: rgba(61,142,248,.08);  border-color: rgba(61,142,248,.40); color: var(--blue);  box-shadow: 0 0 0 6px rgba(61,142,248,.05); }
.loop-node.train   { background: rgba(139,92,246,.08);  border-color: rgba(139,92,246,.40); color: var(--purple); box-shadow: 0 0 0 6px rgba(139,92,246,.05); }
.loop-node.node-assess  { background: rgba(61,142,248,.08);  border-color: rgba(61,142,248,.35);  color: var(--blue);  }
.loop-node.node-monitor { background: rgba(56,200,232,.08);  border-color: rgba(56,200,232,.35);  color: var(--cyan);  }
.loop-node.node-train   { background: rgba(15,187,168,.08);  border-color: rgba(15,187,168,.35);  color: var(--teal);  }
.loop-node.assess:hover  { box-shadow: 0 0 0 10px rgba(61,142,248,.08), 0 12px 32px rgba(61,142,248,.2); }
.loop-node.monitor:hover { box-shadow: 0 0 0 10px rgba(56,200,232,.08), 0 12px 32px rgba(56,200,232,.2); }
.loop-node.train:hover   { box-shadow: 0 0 0 10px rgba(15,187,168,.08), 0 12px 32px rgba(15,187,168,.2); }
.loop-arrow-h { padding: 0 14px; display: flex; align-items: center; font-size: 1.1rem; color: var(--muted); }
.loop-return { width: 80%; border-top: 2px dashed rgba(255,255,255,.15); margin: 14px auto 0; position: relative; }
.loop-return-label {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-55%);
  font-size: .7rem; font-weight: 700; color: var(--muted);
  background: var(--navy2); padding: 0 10px; white-space: nowrap; letter-spacing: .04em;
}
.loop-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; margin-top: 28px; }
.loop-stat {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 18px; text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.loop-stat:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.3); }
.loop-stat-val, .loop-stat-card .loop-stat-val { font-size: 1.55rem; font-weight: 900; line-height: 1; font-family: 'Space Grotesk', sans-serif; }
.loop-stat-lbl, .loop-stat-label { font-size: .72rem; color: var(--muted); margin-top: 5px; font-weight: 600; }

/* ═══ SIGMACOG SECTION ═════════════════════════════════════════ */
.section-dark, .sigmacog-section {
  background: linear-gradient(160deg, #0a1420 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.sigmacog-section::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,187,168,.08) 0%, transparent 70%);
  pointer-events: none;
}
.section-title.white { color: var(--white); }
.section-body.light, .section-sub.light { color: rgba(255,255,255,.6); }
.section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--cyan2); margin-bottom: 16px; padding: 5px 14px; background: rgba(56,200,232,.08); border-radius: 9999px; border: 1px solid rgba(56,200,232,.2); }
.section-eyebrow.teal { color: var(--teal); background: rgba(15,187,168,.09); border-color: rgba(15,187,168,.22); }
.sigmacog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sigmacog-features { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.sigmacog-features li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.72); font-size: .915rem; line-height: 1.6; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.feat-item { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: rgba(255,255,255,.8); }
.feat-dot {
  width: 6px; height: 6px; border-radius: 50%; margin-top: 7px; flex-shrink: 0;
  background: var(--teal); box-shadow: 0 0 6px var(--teal);
}
.feat-dot.teal { background: var(--teal); box-shadow: 0 0 10px rgba(15,187,168,.5); }
.sigmacog-actions, .sig-actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* Dashboard card */
@keyframes bar-fill { from { width: 0 !important; } }
.dashboard-card {
  background: rgba(10,18,32,.92); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 96px rgba(0,0,0,.55), 0 0 0 1px rgba(75,185,219,.06);
  position: relative;
}
.dashboard-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75,185,219,.4), transparent);
}
.dash-titlebar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px; background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dash-dot { width: 11px; height: 11px; border-radius: 50%; }
.dash-dot-r { background: #ff5f57; } .dash-dot-y { background: #febc2e; } .dash-dot-g { background: #28c840; }
.dash-title-text { font-size: .73rem; font-weight: 600; color: rgba(255,255,255,.36); margin-left: 8px; }
.dash-body { padding: 20px; }
.dash-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
.dash-user { font-size: .88rem; color: rgba(255,255,255,.75); font-weight: 600; }
.dash-score-badge { background: linear-gradient(135deg,rgba(20,184,166,.18),rgba(59,130,246,.18)); border: 1px solid rgba(20,184,166,.28); border-radius: 9999px; padding: 4px 14px; font-size: .8rem; font-weight: 700; color: var(--teal); }
.dash-metric { margin-bottom: 16px; }
.dash-metric-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; }
.dash-metric-name { font-size: .8rem; color: rgba(255,255,255,.58); font-weight: 500; }
.dash-metric-score { font-size: .78rem; font-weight: 800; padding: 3px 10px; border-radius: 9999px; }
.dash-bar-track { height: 7px; background: rgba(255,255,255,.06); border-radius: 4px; overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: 4px; animation: bar-fill 1.4s cubic-bezier(.4,0,.2,1) both; }
.dash-footer-row { display: flex; gap: 12px; margin-top: 20px; }
.dash-stat-mini { flex: 1; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 12px; text-align: center; }
.dash-stat-mini-val { font-size: 1.12rem; font-weight: 900; }
.dash-stat-mini-label { font-size: .63rem; color: rgba(255,255,255,.36); margin-top: 3px; }
/* Legacy dashboard compat */
.sigmacog-card-demo { background: rgba(10,18,32,.92); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; overflow: hidden; }
.demo-header { display: flex; align-items: center; gap: 6px; padding: 12px 16px; background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.06); }
.demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.demo-dot.red{background:#ff5f57}.demo-dot.yellow{background:#febc2e}.demo-dot.green{background:#28c840}
.demo-title { font-size: .72rem; color: rgba(255,255,255,.36); margin-left: 6px; }
.demo-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.demo-metric { display: flex; flex-direction: column; gap: 5px; }
.demo-bar { height: 6px; background: rgba(255,255,255,.07); border-radius: 3px; overflow: hidden; }
.demo-fill { height: 100%; border-radius: 3px; }
.demo-score { font-size: .75rem; font-weight: 700; color: var(--cyan); align-self: flex-end; }

/* ═══ ECOSYSTEM ════════════════════════════════════════════════ */
.eco-section, .section-gray { background: var(--navy); }
.eco-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.eco-section .container { max-width: 1320px; }
.eco-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.eco-card {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px;
  position: relative; display: flex; flex-direction: column;
  transition: all .3s; cursor: default; overflow: hidden;
  min-width: 0;
}
.eco-card .eco-glow-clip {
  position: absolute; inset: 0; border-radius: var(--radius-lg);
  overflow: hidden; pointer-events: none; z-index: 0;
}
.eco-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--card-color, var(--cyan)), transparent);
  opacity: 0; transition: opacity .3s;
}
.eco-card:hover { transform: translateY(-6px); border-color: var(--card-color, var(--cyan)); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.eco-card:hover::before { opacity: 1; }
.eco-glow-clip::after {
  content: ''; position: absolute; bottom: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, var(--card-color, var(--cyan)) 0%, transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.eco-card:hover .eco-glow-clip::after { opacity: .08; }
.eco-card[data-color="cyan"]   { --card-color: var(--cyan); }
.eco-card[data-color="blue"]   { --card-color: var(--blue); }
.eco-card[data-color="teal"]   { --card-color: var(--teal); }
.eco-card[data-color="purple"] { --card-color: var(--purple); }
.eco-card[data-color="amber"]  { --card-color: var(--amber); }
.eco-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px; flex-shrink: 0;
}
.eco-card[data-color="cyan"]   .eco-icon-wrap { background: rgba(56,200,232,.12); }
.eco-card[data-color="blue"]   .eco-icon-wrap { background: rgba(61,142,248,.12); }
.eco-card[data-color="teal"]   .eco-icon-wrap { background: rgba(15,187,168,.12); }
.eco-card[data-color="purple"] .eco-icon-wrap { background: rgba(139,92,246,.12); }
.eco-card[data-color="amber"]  .eco-icon-wrap { background: rgba(245,158,11,.12); }
.eco-scalar-glyph {
  font-family: 'Crimson Pro', serif; font-style: italic; font-weight: 300;
  font-size: 2rem; color: var(--cyan); letter-spacing: -.05em; line-height: 1;
}
.eco-visio-glyph {
  font-family: 'Crimson Pro', serif; font-style: italic; font-weight: 300;
  font-size: 2rem; color: var(--blue); letter-spacing: -.05em; line-height: 1;
}
.eco-vibo-glyph {
  font-family: 'Crimson Pro', serif; font-style: italic; font-weight: 300;
  font-size: 2rem; color: var(--purple); letter-spacing: -.05em; line-height: 1;
}
.eco-velo-glyph {
  font-family: 'Crimson Pro', serif; font-style: italic; font-weight: 300;
  font-size: 2rem; color: var(--teal); letter-spacing: -.05em; line-height: 1;
}
.eco-sora-glyph {
  font-family: 'Crimson Pro', serif; font-style: italic; font-weight: 300;
  font-size: 2rem; color: var(--amber); letter-spacing: -.05em; line-height: 1;
}
.eco-name { font-family: 'Space Grotesk', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .5px; margin-bottom: 6px; }
.eco-badge { display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 9999px; margin-bottom: 8px; }
.eco-card[data-color="cyan"]   .eco-name, .eco-card[data-color="cyan"]   .eco-badge { color: var(--cyan); background: rgba(56,200,232,.12); }
.eco-card[data-color="blue"]   .eco-name, .eco-card[data-color="blue"]   .eco-badge { color: var(--blue); background: rgba(61,142,248,.12); }
.eco-card[data-color="teal"]   .eco-name, .eco-card[data-color="teal"]   .eco-badge { color: var(--teal); background: rgba(15,187,168,.12); }
.eco-card[data-color="purple"] .eco-name, .eco-card[data-color="purple"] .eco-badge { color: var(--purple); background: rgba(139,92,246,.12); }
.eco-card[data-color="amber"]  .eco-name, .eco-card[data-color="amber"]  .eco-badge { color: var(--amber); background: rgba(245,158,11,.12); }
.eco-tagline { font-size: .8rem; color: var(--muted); font-style: italic; margin-bottom: 14px; line-height: 1.55; min-height: calc(.8rem * 1.55 * 2); }
.eco-desc { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.eco-link { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; margin-top: auto; text-decoration: none; transition: gap .2s; }
.eco-card[data-color="cyan"]   .btn-eco, .eco-card[data-color="cyan"]   .eco-link { color: var(--cyan); }
.eco-card[data-color="blue"]   .btn-eco, .eco-card[data-color="blue"]   .eco-link { color: var(--blue); }
.eco-card[data-color="teal"]   .btn-eco, .eco-card[data-color="teal"]   .eco-link { color: var(--teal); }
.eco-card[data-color="purple"] .btn-eco, .eco-card[data-color="purple"] .eco-link { color: var(--purple); }
.eco-card[data-color="amber"]  .btn-eco, .eco-card[data-color="amber"]  .eco-link { color: var(--amber); }

/* ═══ HARDWARE ═════════════════════════════════════════════════ */
.hw-section { background: var(--navy2); position: relative; }
.hw-section::before, .hw-section::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--border), transparent 95%);
}
.hw-section::before { top: 0; } .hw-section::after { bottom: 0; }
.hw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 36px; }
.hw-card {
  background: var(--navy3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all .3s; cursor: pointer;
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: inherit;
}
.hw-card:hover { border-color: rgba(56,200,232,.3); box-shadow: 0 8px 32px rgba(0,0,0,.3), 0 0 20px rgba(56,200,232,.08); transform: translateY(-4px); }
.hw-icon, .hw-card-img-wrap {
  font-size: 2rem; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass); border-radius: 12px;
}
.hw-card-img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; display: block; }
.hw-card h4, .hw-card-name { font-size: 1.05rem; font-weight: 700; }
.hw-card p,  .hw-card-desc { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.hw-card-tag { font-size: .71rem; font-weight: 800; color: var(--cyan2); text-transform: uppercase; letter-spacing: .09em; }
.hw-badge {
  display: inline-flex; padding: 4px 10px; border-radius: 20px;
  background: rgba(56,200,232,.1); border: 1px solid rgba(56,200,232,.2);
  font-size: .72rem; font-weight: 700; color: var(--cyan); width: fit-content;
}
.hw-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.hw-cta { text-align: center; }

/* ═══ PRICING ══════════════════════════════════════════════════ */
.pricing-section { background: var(--navy2); position: relative; }
.pricing-section::before, .pricing-section::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--border), transparent 95%);
}
.pricing-section::before { top: 0; } .pricing-section::after { bottom: 0; }
.pricing-header { text-align: center; margin-bottom: 48px; }
.billing-toggle {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--navy3); border: 1px solid var(--border);
  border-radius: 40px; padding: 6px 20px;
  font-size: .85rem; font-weight: 600; margin-top: 20px;
}
.toggle-track {
  width: 44px; height: 24px; border-radius: 12px;
  background: rgba(255,255,255,.12); position: relative;
  cursor: pointer; transition: background .3s; flex-shrink: 0;
}
.toggle-track.on { background: var(--blue); }
.toggle-knob {
  width: 18px; height: 18px; border-radius: 50%; background: #fff;
  position: absolute; top: 3px; left: 3px;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}
.toggle-track.on .toggle-knob { transform: translateX(20px); }
.billing-label { color: rgba(255,255,255,.65); }
.billing-label.active { color: var(--white); }
.save-pill { background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.3); color: var(--green); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; align-items: stretch; max-width: 920px; margin: 0 auto; }
.pricing-card {
  background: var(--navy3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  position: relative; transition: all .3s; display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,.4); border-color: rgba(255,255,255,.2); }
.pricing-card.featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 12px 48px rgba(61,142,248,.2); background: linear-gradient(160deg, var(--navy3) 70%, rgba(61,142,248,.06) 100%); }
.pricing-card.featured:hover { box-shadow: 0 0 0 1px var(--blue), 0 20px 64px rgba(61,142,248,.3); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), #2563eb); color: #fff;
  font-size: .75rem; font-weight: 700; padding: 5px 18px; border-radius: 20px;
  box-shadow: 0 4px 14px rgba(61,142,248,.4); white-space: nowrap;
}
.plan-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.plan-desc { font-size: .85rem; color: var(--muted); margin-bottom: 24px; line-height: 1.6; min-height: 40px; }
.plan-price { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 900; line-height: 1; letter-spacing: -.02em; margin-bottom: 4px; }
.plan-price sup { font-size: 1.1rem; vertical-align: top; margin-top: 8px; font-weight: 700; }
.plan-price-period { font-size: .85rem; color: var(--muted); margin-bottom: 20px; }
.plan-limit { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: 24px; line-height: 1.55; min-height: 68px; display: flex; align-items: center; }
.plan-features { list-style: none; flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; font-size: .875rem; color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.05); }
.plan-features li:last-child { border-bottom: none; }
.check { color: var(--green); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.plan-cta { display: block; text-align: center; padding: 13px; border-radius: 10px; font-weight: 700; font-size: .925rem; transition: all .25s; cursor: pointer; }
.plan-cta:hover { transform: translateY(-2px); }
.plan-cta-outline { border: 1.5px solid var(--border2); color: rgba(255,255,255,.8); background: transparent; }
.plan-cta-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(56,200,232,.06); }
.plan-cta-solid { background: linear-gradient(135deg, var(--blue), #2563eb); color: #fff; border: none; box-shadow: 0 4px 18px rgba(61,142,248,.35); }
.plan-cta-solid:hover { box-shadow: 0 8px 28px rgba(61,142,248,.55); }
/* Enterprise monthly/yearly display swap */
.pricing-card.enterprise .ent-price-monthly,
.pricing-card.enterprise .ent-period-monthly { display: none; }
.pricing-card.enterprise.monthly-mode .ent-price-yearly,
.pricing-card.enterprise.monthly-mode .ent-period-yearly { display: none; }
.pricing-card.enterprise.monthly-mode .ent-price-monthly {
  display: inline-block;
  font-size: 1.6rem; font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -.01em;
  color: var(--cyan);
  background: rgba(56,200,232,.08);
  border: 1px dashed rgba(56,200,232,.35);
  border-radius: 12px;
  padding: 14px 22px;
  line-height: 1;
}
.pricing-card.enterprise.monthly-mode .ent-period-monthly { display: block; font-style: italic; }
.pricing-card.enterprise .plan-price.ent-price-wrap { min-height: 48px; display: flex; align-items: center; }
.pricing-card.enterprise .price-from {
  font-size: 1rem; font-weight: 700; color: var(--muted);
  margin-left: 6px; vertical-align: baseline;
}

/* ═══ DOWNLOADS CTA ════════════════════════════════════════════ */
.dl-section {
  background: linear-gradient(135deg, #091724 0%, #0d1e30 100%);
  position: relative; overflow: hidden; text-align: center;
}
.dl-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,187,168,.08) 0%, transparent 70%);
  pointer-events: none;
}
.dl-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.dl-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ═══ CONTACT ══════════════════════════════════════════════════ */
.contact-section { background: var(--navy); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--navy3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px; transition: border-color .3s;
}
.contact-card:hover { border-color: rgba(56,200,232,.3); }
.contact-icon {
  font-size: 1.4rem; width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(56,200,232,.08); border: 1px solid rgba(56,200,232,.15); border-radius: 10px;
}
.contact-info h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.contact-info p, .contact-info a { font-size: .875rem; color: var(--muted); display: block; }
.contact-info a:hover { color: var(--cyan); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 100%; min-height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; display: block; border: 0; }

/* ═══ FOOTER ═══════════════════════════════════════════════════ */
.footer { background: var(--navy2); border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img, .footer-brand .nav-logo-img { height: 28px; width: auto; }
.footer-company, .footer-name { font-size: .875rem; color: var(--muted); }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-contact a { font-size: .875rem; color: var(--muted); }
.footer-contact a:hover { color: var(--cyan); }
.footer-links { display: flex; gap: 14px; }
.footer-link { font-size: .82rem; color: rgba(255,255,255,.35); text-decoration: none; }
.footer-link:hover, .footer-link.active { color: var(--cyan); }

/* ═══ TOAST ════════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--navy3); border: 1px solid var(--border);
  color: var(--white); font-size: .875rem; font-weight: 600;
  padding: 12px 20px; border-radius: 10px; max-width: 320px;
  box-shadow: var(--shadow); transform: translateY(20px); opacity: 0;
  transition: transform .3s, opacity .3s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-success { border-left: 3px solid var(--green); }
.toast-error   { border-left: 3px solid #ef4444; }
.toast-info    { border-left: 3px solid var(--cyan); }

/* ═══ PAGE HEADER (other pages) ════════════════════════════════ */
.page-header { background: var(--navy2); padding: 80px 0 48px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--white); }
.page-header-sub { font-size: 1.05rem; color: var(--muted); }

/* ═══ MISC COMPAT ══════════════════════════════════════════════ */
.section-body.light { color: rgba(255,255,255,.62); }
/* [data-lang] visibility is controlled entirely by i18n.js inline styles */

/* ═══ RESPONSIVE ═══════════════════════════════════════════════ */
@media (max-width: 1240px) {
  .eco-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .hero-content, .hero-dark-content { grid-template-columns: 1fr; gap: 48px; padding: 64px 28px; }
  .hero-visual, .hero-dark-visual { display: none; }
  .story-grid, .sigmacog-grid { grid-template-columns: 1fr; gap: 48px; }
  .eco-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hw-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .eco-grid { grid-template-columns: 1fr; }
  .hw-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .loop-node { width: 76px; height: 76px; }
  .loop-node .icon, .loop-node .loop-node-icon { font-size: 1.2rem; }
  .loop-node .lbl, .loop-node .loop-node-label { font-size: .58rem; }
  .loop-arrow-h { padding: 0 4px; font-size: .85rem; }
}

/* ═══ COMPAT VARS (dark-theme mapped) ══════════════════════════ */
:root {
  --gray1: rgba(255,255,255,0.04);
  --gray2: rgba(255,255,255,0.10);
  --gray3: rgba(255,255,255,0.18);
  --text:  var(--white);
  --light: var(--navy3);
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
}

/* ═══ LANG TOGGLE (alias) ═══════════════════════════════════════ */
.lang-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  height: 34px; min-width: 34px; border-radius: 8px;
  color: rgba(255,255,255,.72); border: 1px solid var(--border);
  cursor: pointer; font-size: .75rem; font-weight: 700;
  padding: 0 10px; background: none; letter-spacing: .5px;
  transition: color .2s, background .2s, border-color .2s;
}
.lang-toggle:hover { color: var(--cyan); border-color: rgba(56,200,232,.4); background: rgba(56,200,232,.06); }

/* ═══ BUTTONS (shared) ══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 8px; font-size: .875rem; font-weight: 600;
  cursor: pointer; border: none; transition: all .2s;
  text-decoration: none; font-family: inherit;
}
.btn-sm { padding: 7px 14px; font-size: .82rem; }
.btn-lg { padding: 13px 28px; font-size: 1rem; }
.btn-primary { background: linear-gradient(135deg, var(--cyan), var(--teal)); color: #0d1b2e; }
.btn-primary:hover { box-shadow: 0 6px 20px rgba(56,200,232,.35); transform: translateY(-1px); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-outline-dark, .btn-outline {
  background: none; border: 1px solid var(--border2);
  color: rgba(255,255,255,.8);
}
.btn-outline-dark:hover, .btn-outline:hover {
  background: var(--glass2); border-color: rgba(56,200,232,.4); color: var(--cyan);
}
.btn-outline-light { background: none; border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.8); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); }
.btn-blue { background: linear-gradient(135deg, var(--blue), #2563eb); color: #fff; }
.btn-blue:hover { box-shadow: 0 6px 20px rgba(61,142,248,.35); }

/* ═══ CATEGORY TABS ═════════════════════════════════════════════ */
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.cat-tab {
  background: var(--glass); border: 1px solid var(--border);
  color: var(--muted); padding: 8px 18px; border-radius: 20px;
  font-size: .875rem; font-weight: 600; cursor: pointer; transition: all .2s;
}
.cat-tab.active, .cat-tab:hover {
  background: rgba(56,200,232,.12); border-color: rgba(56,200,232,.3); color: var(--cyan);
}

/* ═══ PRODUCT GRID ══════════════════════════════════════════════ */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card {
  background: var(--glass2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: rgba(56,200,232,.3); box-shadow: 0 8px 28px rgba(0,0,0,.35);
  transform: translateY(-2px);
}
.product-img-wrap {
  display: flex; align-items: center; justify-content: center;
  background: var(--navy3); height: 180px; overflow: hidden; cursor: pointer;
}
.product-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 12px; }
.product-card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.product-model { font-size: .72rem; color: var(--cyan); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.product-name { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.link-btn { background: none; border: none; cursor: pointer; color: inherit; font: inherit; padding: 0; text-align: left; }
.product-desc { font-size: .82rem; color: var(--muted); line-height: 1.55; flex: 1; margin-bottom: 12px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.product-price { font-weight: 700; color: var(--white); font-size: .95rem; }
.product-price.contact { color: var(--cyan); font-size: .82rem; }
.product-price.lg { font-size: 1.4rem; }
.product-btns { display: flex; gap: 6px; }
.empty-msg { color: var(--muted); text-align: center; padding: 40px; }
.loading-placeholder { color: var(--muted); padding: 32px 0; text-align: center; }

/* ═══ MODAL ═════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.72);
  z-index: 2000; display: flex; align-items: center;
  justify-content: center; padding: 24px;
}
.modal-box {
  background: var(--navy2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); width: 100%; max-width: 700px;
  max-height: 90vh; overflow-y: auto; position: relative; padding: 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.08); border: 1px solid var(--border);
  color: var(--white); width: 32px; height: 32px; border-radius: 50%;
  font-size: 1rem; cursor: pointer; transition: background .2s; font-family: inherit;
}
.modal-close:hover { background: rgba(255,255,255,.15); }
.modal-product { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; }
.modal-product-img {
  background: var(--navy3); border-radius: var(--radius); padding: 24px;
  display: flex; align-items: center; justify-content: center;
}
.modal-product-img img { max-width: 100%; max-height: 280px; object-fit: contain; }
.modal-product-name { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.modal-product-desc { color: var(--muted); font-size: .9rem; line-height: 1.7; margin-bottom: 16px; }
.modal-product-footer { display: flex; align-items: center; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.specs-section { margin-top: 16px; }
.specs-section h4 { font-size: .85rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.specs-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table th { text-align: left; color: var(--muted); padding: 7px 4px; font-weight: 500; width: 45%; }
.specs-table td { padding: 7px 4px; font-weight: 600; color: var(--white); }
.variant-selector { margin: 16px 0; }
.variant-label { font-size: .8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.variant-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-btn {
  padding: 6px 16px; border-radius: 20px; border: 1.5px solid var(--border);
  background: var(--glass); color: var(--white); font-size: .9rem; cursor: pointer; transition: all .18s;
}
.variant-btn:hover:not(:disabled) { border-color: var(--cyan); color: var(--cyan); }
.variant-btn.active { border-color: var(--cyan); background: rgba(56,200,232,.15); color: var(--cyan); font-weight: 600; }
.variant-btn.oos, .variant-btn:disabled { opacity: .45; cursor: not-allowed; text-decoration: line-through; }
@media (max-width: 600px) { .modal-product { grid-template-columns: 1fr; } }

/* ═══ DOWNLOADS PAGE ════════════════════════════════════════════ */
.dl-group { margin-bottom: 36px; }
.dl-group-title {
  font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.dl-cards { display: flex; flex-direction: column; gap: 10px; }
.dl-card {
  display: flex; align-items: center; gap: 16px; padding: 18px 24px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); transition: border-color .2s, box-shadow .2s;
}
.dl-card:hover:not(.dl-locked) { border-color: rgba(56,200,232,.3); box-shadow: 0 4px 16px rgba(0,0,0,.3); }
.dl-card.dl-locked { opacity: .65; }
.dl-card-body { flex: 1; }
.dl-card-name { font-weight: 700; color: var(--white); font-size: .95rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dl-badge-lock { font-size: .82rem; opacity: .75; }
.dl-card-desc { font-size: .82rem; color: var(--muted); margin-top: 3px; }
.dl-card-action { flex-shrink: 0; }
.dl-version { font-size: .72rem; background: rgba(255,255,255,.07); color: var(--muted); padding: 2px 8px; border-radius: 10px; }
.dl-empty { color: var(--muted); text-align: center; padding: 40px; }

/* ═══ FORMS ═════════════════════════════════════════════════════ */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .82rem; font-weight: 700; color: var(--cyan); margin-bottom: 6px; }
.form-input, .form-select {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border2); border-radius: 8px;
  background: rgba(255,255,255,.05); color: var(--white);
  font-size: .95rem; font-family: inherit; outline: none; transition: border .2s;
}
.form-input:focus, .form-select:focus { border-color: var(--cyan); }
.form-input::placeholder { color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
select.form-select option { background: var(--navy2); color: var(--white); }

/* ═══ AUTH PAGES ════════════════════════════════════════════════ */
.auth-wrap {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 88px 20px 40px;
}
.auth-card {
  background: var(--glass2); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; width: 100%; max-width: 440px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-title { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.auth-sub { font-size: .875rem; color: var(--muted); }
.auth-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.auth-tab {
  flex: 1; padding: 10px; text-align: center; font-size: .9rem; font-weight: 600;
  cursor: pointer; color: var(--muted); border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all .2s; background: none; border-top: none; border-left: none; border-right: none;
}
.auth-tab.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.alert { padding: 12px 16px; border-radius: 8px; font-size: .875rem; margin-bottom: 16px; }
.alert-error { background: rgba(248,113,113,.1); color: #f87171; border: 1px solid rgba(248,113,113,.2); }
.alert-success { background: rgba(16,185,129,.1); color: var(--green); border: 1px solid rgba(16,185,129,.2); }

/* ═══ ACCOUNT PAGE ══════════════════════════════════════════════ */
.account-wrap { max-width: 900px; margin: 0 auto; padding: 88px 28px 60px; }
.account-tabs { display: flex; gap: 4px; margin-bottom: 28px; border-bottom: 1px solid var(--border); padding-bottom: 4px; }
.account-tab {
  padding: 9px 20px; border-radius: 8px 8px 0 0; font-size: .9rem; font-weight: 600;
  cursor: pointer; color: var(--muted); background: none;
  border: 1px solid transparent; border-bottom: none; transition: all .2s; font-family: inherit;
}
.account-tab.active {
  color: var(--cyan); background: var(--glass); border-color: var(--border);
  border-bottom-color: var(--navy);
}
.account-card {
  background: var(--glass2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.account-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.member-type-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.member-type-tab {
  padding: 8px 20px; border-radius: 8px; font-size: .9rem; font-weight: 600;
  cursor: pointer; color: var(--muted);
  background: var(--glass); border: 1px solid var(--border); transition: all .2s; font-family: inherit;
}
.member-type-tab.active { background: rgba(56,200,232,.12); border-color: rgba(56,200,232,.3); color: var(--cyan); }
.profile-joined { font-size: .82rem; color: var(--muted); margin-top: 16px; }
.order-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.order-table th { text-align: left; color: var(--muted); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 8px 12px; border-bottom: 1px solid var(--border); }
.order-table td { padding: 12px; border-bottom: 1px solid rgba(255,255,255,.05); color: rgba(255,255,255,.8); }
.order-table tr:last-child td { border-bottom: none; }
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: .75rem; font-weight: 700; }
.status-pending { background: rgba(245,158,11,.15); color: var(--amber); }
.status-processing { background: rgba(61,142,248,.15); color: var(--blue); }
.status-completed { background: rgba(16,185,129,.15); color: var(--green); }

/* ═══ MY-MEMBERS PAGE ════════════════════════════════════════════ */
.members-wrap { max-width: 1000px; margin: 0 auto; padding: 88px 28px 60px; }
.members-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
.members-header h1 { font-size: 1.6rem; font-weight: 800; color: var(--white); }
.members-header p { font-size: .9rem; color: var(--muted); margin-top: 4px; }
.members-search { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.search-input {
  padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px;
  background: var(--glass); color: var(--white); font-size: .875rem;
  outline: none; transition: border .2s; min-width: 220px; font-family: inherit;
}
.search-input:focus { border-color: var(--cyan); }
.search-input::placeholder { color: var(--muted); }
.member-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.member-table th { text-align: left; color: var(--muted); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.member-table td { padding: 12px; border-bottom: 1px solid rgba(255,255,255,.05); color: rgba(255,255,255,.8); }
.member-table tr:last-child td { border-bottom: none; }
.member-table tr:hover td { background: rgba(255,255,255,.02); }

/* ═══ CART PAGE ═════════════════════════════════════════════════ */
.cart-wrap { max-width: 1000px; margin: 0 auto; padding: 88px 28px 60px; }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
/* Table-based cart (used by page-cart.js) */
.cart-main { overflow-x: auto; min-width: 0; }
.cart-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.cart-table th { text-align: left; padding: 10px 12px; color: var(--muted); font-weight: 600; border-bottom: 1px solid var(--border); font-size: .78rem; text-transform: uppercase; letter-spacing: .03em; }
.cart-table td { padding: 12px; border-bottom: 1px solid rgba(255,255,255,.05); vertical-align: middle; }
.cart-table .cart-row:last-child td { border-bottom: none; }
.cart-img-cell { width: 64px; padding-right: 4px; }
.cart-thumb { width: 52px; height: 52px; object-fit: contain; border-radius: 6px; background: rgba(255,255,255,.05); display: block; }
.cart-name-cell { min-width: 160px; }
.cart-item-name { font-weight: 600; color: var(--white); line-height: 1.3; }
.cart-item-note { font-size: .75rem; color: var(--muted); margin-top: 3px; }
.cart-price-cell, .cart-sub-cell { white-space: nowrap; color: var(--cyan2); font-weight: 600; text-align: right; }
.cart-qty-cell { width: 80px; text-align: center; }
.cart-rm-cell { width: 36px; text-align: center; }
.qty-input { width: 60px; padding: 4px 6px; background: rgba(255,255,255,.06); border: 1px solid var(--border); border-radius: 5px; color: #fff; font-size: .85rem; text-align: center; }
.btn-icon { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 1rem; padding: 4px 6px; border-radius: 4px; transition: color .15s; line-height: 1; }
.btn-icon:hover { color: #e74c3c; }
/* Checkout sidebar */
.cart-aside { position: sticky; top: 88px; }
.order-form { background: var(--glass2); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.order-form h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin: 0 0 16px; }
.order-form .form-input { display: block; width: 100%; padding: 9px 12px; background: rgba(255,255,255,.06); border: 1.5px solid var(--border); border-radius: 8px; color: #fff; font-size: .88rem; box-sizing: border-box; outline: none; margin-bottom: 10px; font-family: inherit; }
.order-form .form-input:focus { border-color: var(--cyan); }
.order-form textarea.form-input { resize: vertical; }
.order-total { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid var(--border); margin-top: 4px; font-size: 1rem; font-weight: 700; color: var(--white); }
.btn-block { width: 100%; }
.cart-item {
  display: flex; gap: 16px; padding: 20px;
  background: var(--glass2); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px;
}
.cart-item-img {
  width: 72px; height: 72px; background: var(--navy3);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; overflow: hidden;
}
.cart-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cart-item-price { color: var(--muted); font-size: .875rem; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border2); background: none; cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: border-color .2s;
}
.qty-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.cart-empty { text-align: center; padding: 60px 0; color: var(--muted); }
.summary-box {
  background: var(--glass2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; position: sticky; top: 88px;
}
.summary-box h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: .9rem; color: var(--muted); }
.summary-total {
  font-weight: 700; font-size: 1.1rem; color: var(--white);
  border-top: 1px solid var(--border); padding-top: 12px; margin-top: 12px;
  display: flex; justify-content: space-between;
}
.order-type-tabs { display: flex; gap: 0; margin-bottom: 20px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border2); }
.order-type-tab {
  flex: 1; padding: 10px; text-align: center; font-size: .85rem; font-weight: 600;
  cursor: pointer; background: var(--glass); color: var(--muted); border: none; transition: all .15s; font-family: inherit;
}
.order-type-tab.active { background: var(--cyan); color: #0d1b2e; }
@media (max-width: 768px) { .cart-layout { grid-template-columns: 1fr; } }

/* ═══ LOCATIONS / REFERENCES PAGES ══════════════════════════════ */
.ref-card, .loc-card {
  background: var(--glass2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; transition: border-color .2s;
}
.ref-card:hover, .loc-card:hover { border-color: rgba(56,200,232,.3); }
.ref-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.ref-meta { font-size: .82rem; color: var(--cyan); margin-bottom: 8px; }
.ref-abstract { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.ref-link { color: var(--cyan); font-size: .82rem; font-weight: 600; }
.ref-link:hover { text-decoration: underline; }

/* ═══ BADGES ════════════════════════════════════════════════════ */
.badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: .72rem; font-weight: 700; }
.badge-cyan { background: rgba(56,200,232,.15); color: var(--cyan); }
.badge-green { background: rgba(16,185,129,.15); color: var(--green); }
.badge-red { background: rgba(248,113,113,.12); color: #f87171; }
.badge-navy { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }

/* ═══ ACPT PAGE ═════════════════════════════════════════════════ */
.acpt-banner {
  background: linear-gradient(135deg, var(--navy2) 0%, rgba(15,187,168,.08) 100%);
  border: 1px solid rgba(15,187,168,.2); border-radius: var(--radius-lg);
  padding: 40px; display: flex; align-items: center; gap: 32px; margin: 48px 0;
}
.acpt-banner-text { flex: 1; }
.acpt-banner-text h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.acpt-banner-text p { color: var(--muted); font-size: .9rem; }

/* ═══ RESPONSIVE (INNER PAGES) ══════════════════════════════════ */
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .account-wrap, .members-wrap, .cart-wrap { padding: 80px 16px 40px; }
  .account-card { padding: 20px; }
  .acpt-banner { flex-direction: column; }
  .modal-product { grid-template-columns: 1fr; }
}
