/* Axiora Global Systems — cinematic dark, Linear×Stripe×Vercel craft */
:root {
  --bg: #05070f;
  --bg-elev: #0a0f1c;
  --bg-card: rgba(16, 22, 40, 0.72);
  --bg-card-solid: #101628;
  --border: rgba(125, 211, 252, 0.1);
  --border-strong: rgba(34, 211, 238, 0.32);
  --text: #f5f7ff;
  --text-muted: #c5d0e0;
  --accent: #22d3ee;
  --accent-2: #a78bfa;
  --accent-3: #6366f1;
  --accent-gold: #f5c542;
  --accent-amber: #f59e0b;
  --glow: rgba(34, 211, 238, 0.4);
  --glow-violet: rgba(167, 139, 250, 0.35);
  --glow-gold: rgba(245, 197, 66, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1160px;
  --header-h: 68px;
  --header-gap: 12px;
  --header-offset: calc(var(--header-h) + var(--header-gap));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; background: var(--bg); color-scheme: dark; }
html.theme-light { color-scheme: light; }
html.theme-dark { color-scheme: dark; }
html.ax-jump-top { scroll-behavior: auto !important; }
html::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-gap);
  background: var(--bg);
  z-index: 120;
  pointer-events: none;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-gap);
}

/* Cinematic mesh + grid backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -25%, rgba(34, 211, 238, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 95% 20%, rgba(167, 139, 250, 0.1), transparent 50%),
    radial-gradient(ellipse 45% 35% at 5% 70%, rgba(99, 102, 241, 0.08), transparent 50%),
    radial-gradient(ellipse 40% 30% at 80% 85%, rgba(245, 197, 66, 0.06), transparent 55%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: #05070f;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}
.skip-link:focus { left: 1rem; top: 1rem; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 0.2s; }
a:hover { color: #67e8f9; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: var(--header-gap);
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(5, 7, 15, 0.75);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-link .logo-word { height: 40px; width: auto; }
.logo-link--live { gap: 0.6rem; }
.logo-mark {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  overflow: hidden;
}
.logo-mark::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 180deg, transparent 40%, #22d3ee, #f5c542, transparent 75%);
  animation: ax-bot-spin 4s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 8px;
  background: #05070f;
  z-index: 0;
}
.logo-mark img {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}
.logo-link--live:hover .logo-mark,
.logo-link--live:focus-visible .logo-mark {
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.45);
}
.logo-link--live:hover .logo-mark::before,
.logo-link--live:focus-visible .logo-mark::before {
  animation-duration: 2.2s;
}

.nav-toggle {
  display: none;
  background: rgba(16, 22, 40, 0.8);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: var(--text); background: rgba(34, 211, 238, 0.06); }
.site-nav a[aria-current="page"] { color: var(--accent); }

.nav-cta {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(245, 197, 66, 0.12)) !important;
  border: 1px solid var(--border-strong);
  color: var(--text) !important;
  margin-left: 0.35rem;
}
.nav-cta:hover {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(245, 197, 66, 0.22)) !important;
  box-shadow: 0 0 24px var(--glow);
}

/* ——— Layout ——— */
main { position: relative; z-index: 1; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.section-header {
  max-width: 640px;
  margin-bottom: 1.35rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.85rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 1.25rem 1.5rem;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.hero > *:not(.hero-canvas):not(.hero-mesh) { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  width: fit-content;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--glow);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.35rem);
  max-width: 18ch;
  margin-bottom: 0.75rem;
}

.hero h1 span {
  display: inline;
  background: linear-gradient(120deg, #9bf6ff 0%, #22d3ee 26%, #f5c542 68%, #fff4c2 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 0 14px rgba(34, 211, 238, 0.45))
    drop-shadow(0 0 28px rgba(245, 197, 66, 0.22));
  animation: hero-title-glow 7s ease-in-out infinite alternate;
}
@keyframes hero-title-glow {
  0% {
    background-position: 0% 50%;
    filter:
      drop-shadow(0 0 12px rgba(34, 211, 238, 0.38))
      drop-shadow(0 0 22px rgba(245, 197, 66, 0.16));
  }
  100% {
    background-position: 100% 50%;
    filter:
      drop-shadow(0 0 20px rgba(34, 211, 238, 0.55))
      drop-shadow(0 0 36px rgba(245, 197, 66, 0.28));
  }
}

.hero-lead {
  font-size: clamp(1.12rem, 2.2vw, 1.35rem);
  color: #f3f7ff;
  font-weight: 600;
  max-width: 28rem;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}
.hero-support {
  max-width: 44rem;
}

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

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, #22d3ee, #f5c542 55%, #f59e0b);
  color: #05070f;
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.3), 0 8px 32px rgba(245, 197, 66, 0.22);
}
.btn-primary:hover {
  color: #05070f;
  box-shadow: 0 0 0 1px rgba(245, 197, 66, 0.45), 0 12px 40px rgba(34, 211, 238, 0.35);
}

.btn-ghost {
  background: rgba(16, 22, 40, 0.6);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--border-strong);
  background: rgba(34, 211, 238, 0.08);
  color: var(--text);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.12);
}

/* ——— Glass / bento cards ——— */
.glass {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}

.glass:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.08), 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(34, 211, 238, 0.06);
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.bento-card {
  padding: 1.75rem;
  grid-column: span 4;
}

.bento-card.wide { grid-column: span 8; }
.bento-card.tall { grid-column: span 4; min-height: 220px; }
.bento-card.full { grid-column: span 12; }

.bento-card h3 {
  font-size: 1.2rem;
  margin: 0.75rem 0 0.5rem;
}

.bento-card p { color: var(--text-muted); font-size: 0.95rem; }

.bento--ways {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.bento--ways .bento-card,
.bento--ways .bento-card.wide,
.bento--ways .bento-card.tall {
  grid-column: auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.bento--ways .bento-cta {
  margin-top: auto;
  padding-top: 1.25rem;
}
.bento--ways .bento-cta .btn {
  display: inline-flex;
}
.solutions-how {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .bento--ways .bento-card,
  .bento--ways .bento-card.wide,
  .bento--ways .bento-card.tall {
    grid-column: auto;
  }
  .solutions-how {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .bento--ways {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }
  .page-hero .lead,
  .page-hero .hero-trust {
    font-size: 0.98rem;
    max-width: none;
  }
}
@media (max-width: 560px) {
  .solutions-how {
    grid-template-columns: 1fr;
  }
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(167, 139, 250, 0.12));
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.price-tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--accent);
}

.price-tag small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.card-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.card-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 1.15rem;
  position: relative;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* ——— Feature grid ——— */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.feature-card {
  padding: 1.75rem;
}

.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ——— Pillars strip ——— */
.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.pillar-chip {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(16, 22, 40, 0.8);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.pillar-chip:hover {
  color: var(--text);
  border-color: var(--border-strong);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
}

/* ——— CTA band ——— */
.cta-band {
  max-width: var(--max);
  margin: 0 auto 4.5rem;
  padding: 0 1.25rem;
}

.cta-inner {
  padding: 3rem 2rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(167, 139, 250, 0.1)),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 50%, rgba(34, 211, 238, 0.12), transparent 40%),
              radial-gradient(circle at 70% 50%, rgba(167, 139, 250, 0.1), transparent 40%);
  pointer-events: none;
}

.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 0.75rem; }
.cta-inner p { color: var(--text-muted); margin-bottom: 1.5rem; max-width: 28rem; margin-left: auto; margin-right: auto; }

/* ——— Page hero (inner) ——— */
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.85rem;
}

.page-hero .lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 38rem;
}
.page-hero .hero-trust {
  margin-top: 0.85rem;
  max-width: 38rem;
}

/* ——— Leadership ——— */
.leader-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.leader-avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #05070f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-bottom: 0.5rem;
}

.leader-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.leader-card h3 { font-size: 1.35rem; }
.leader-card p { color: var(--text-muted); }

/* ——— Contact form ——— */
.form-grid {
  display: grid;
  gap: 1.15rem;
  max-width: 560px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: rgba(10, 15, 28, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:hover,
.form-row select:hover,
.form-row textarea:hover { border-color: rgba(34, 211, 238, 0.25); }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
  outline: none;
}

.form-row textarea { min-height: 140px; resize: vertical; }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: #6ee7b7;
  font-size: 0.95rem;
}
.form-success.is-visible { display: block; }

.contact-aside {
  padding: 1.75rem;
}

.contact-aside h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.contact-aside p, .contact-aside address {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* ——— Legal ——— */
.legal-block {
  padding: 1.75rem;
  margin-bottom: 1rem;
}
.legal-block h2 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.legal-block p, .legal-block address {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.95rem;
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(5, 7, 15, 0.9);
  padding: 2.5rem 1.25rem 2rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 7vw, 6rem);
  row-gap: 1.5rem;
  align-items: start;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.footer-logo-mark {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
}
.footer-logo-mark img {
  width: 40px;
  height: 40px;
}
.footer-logo-mark::after {
  border-radius: 8px;
}
.footer-logo-word {
  height: 32px;
  width: auto;
  max-width: min(180px, 100%);
}
.footer-brand {
  max-width: none;
  min-width: 0;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 36ch;
  margin-top: 0.55rem;
}
.footer-brand .footer-blurb {
  max-width: 34ch;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.55;
  font-size: 0.86rem;
}
.footer-brand .footer-kicker {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e7eef8;
  max-width: 28ch;
}
.footer-brand .footer-pay {
  margin-top: 0.4rem;
}
@media (max-width: 560px) {
  .footer-logo-mark { width: 36px; height: 36px; flex-basis: 36px; }
  .footer-logo-mark img { width: 32px; height: 32px; }
  .footer-logo-word { height: 28px; }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-nav a:hover { color: var(--accent); }

.footer-cols {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  padding-left: clamp(0.75rem, 3vw, 1.75rem);
}
.footer-col {
  display: block;
  margin: 0;
  min-width: 0;
}
.footer-col-title {
  display: block;
  margin: 0 0 0.08rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: #e7eef8;
}
.footer-col a {
  display: inline;
  margin-right: 0.32rem;
  font-size: 0.76rem;
}

.footer-copy {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
}
.footer-brand .footer-company {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #e7eef8;
  max-width: 36ch;
}
.footer-brand .footer-ids {
  width: auto;
  margin-top: 0.35rem;
  max-width: 36ch;
  color: var(--text-muted);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  line-height: 1.55;
  text-align: left;
  opacity: 0.9;
}

/* ——— Reveal animations ——— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.glass:hover { transform: translateY(-4px); }

/* ——— Reduced motion ——— */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .glass:hover, .btn:hover { transform: none; }
  .hero-badge::before { animation: none; }
  .hero-canvas { display: none; }
  .hero h1 span {
    animation: none;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.28));
  }
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .bento-card, .bento-card.wide, .bento-card.tall { grid-column: span 6; }
  .bento-card.full { grid-column: span 12; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

.site-nav {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}
.site-nav ul {
  flex-wrap: nowrap;
}
.site-nav a {
  white-space: nowrap;
}
.nav-mobile-extra { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .header-actions { display: none; }
  .nav-mobile-extra { display: list-item; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex: none;
    background: rgba(5, 7, 15, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.25rem;
    z-index: 40;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0.25rem; flex-wrap: nowrap; }
  .nav-cta { margin-left: 0; text-align: center; }
  .bento-card, .bento-card.wide, .bento-card.tall, .bento-card.full { grid-column: span 12; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 2rem 1.25rem; }
}

@media (min-width: 901px) {
  .site-nav { display: block !important; }
  .nav-toggle { display: none !important; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .site-nav a { padding: 0.3rem 0.42rem !important; font-size: 0.8rem; }
  .header-action { padding: 0.32rem 0.5rem; font-size: 0.78rem; }
}

/* ——— Extra motion polish (appended) ——— */
.site-header {
  transition: background 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.site-header.is-scrolled {
  background: rgba(5, 7, 15, 0.92);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(34, 211, 238, 0.15);
}

/* Mobile nav slide */
@media (max-width: 720px) {
  .site-nav {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease), padding 0.35s;
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-nav.is-open {
    max-height: 720px;
    opacity: 1;
    pointer-events: auto;
    padding-top: 1rem;
    padding-bottom: 1.25rem;
  }
  .site-nav ul li {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .site-nav.is-open ul li {
    opacity: 1;
    transform: none;
  }
  .site-nav.is-open ul li:nth-child(1) { transition-delay: 0.04s; }
  .site-nav.is-open ul li:nth-child(2) { transition-delay: 0.07s; }
  .site-nav.is-open ul li:nth-child(3) { transition-delay: 0.1s; }
  .site-nav.is-open ul li:nth-child(4) { transition-delay: 0.13s; }
  .site-nav.is-open ul li:nth-child(5) { transition-delay: 0.16s; }
  .site-nav.is-open ul li:nth-child(6) { transition-delay: 0.19s; }
  .site-nav.is-open ul li:nth-child(7) { transition-delay: 0.22s; }
  .site-nav.is-open ul li:nth-child(8) { transition-delay: 0.25s; }
}

/* Page load fade for main */
@keyframes page-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
main {
  animation: page-in 0.7s var(--ease) both;
}

@supports (view-transition-name: none) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.35s;
  }
}

/* Primary CTA — cyan→gold (Life Path 1 solar + Axiora-5 digital) */
.btn-primary {
  position: relative;
  overflow: hidden;
  color: #05070f !important;
  background: linear-gradient(135deg, #22d3ee 0%, #67e8f9 28%, #f5c542 72%, #f59e0b 100%) !important;
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.4), 0 8px 36px rgba(34, 211, 238, 0.28), 0 0 48px rgba(245, 197, 66, 0.22) !important;
}
.btn-primary:hover {
  color: #05070f !important;
  box-shadow: 0 0 0 1px rgba(245, 197, 66, 0.55), 0 12px 44px rgba(34, 211, 238, 0.4), 0 0 64px rgba(245, 197, 66, 0.3) !important;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.4) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.65s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::after { transform: translateX(130%); }


/* Card glow ring on hover */
.glass {
  position: relative;
}
.glass::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(34,211,238,0), rgba(34,211,238,0.35), rgba(245,197,66,0.28), rgba(34,211,238,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.glass:hover::before { opacity: 1; }

/* Stagger helpers */
.reveal { will-change: opacity, transform; }

/* Hero mesh accent orb (CSS fallback when canvas off) */
.hero-mesh {
  position: absolute;
  right: -5%;
  top: 10%;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.35), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(167, 139, 250, 0.28), transparent 50%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: mesh-float 12s ease-in-out infinite alternate;
}
@keyframes mesh-float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-30px, 24px) scale(1.08); }
}

.service-hero-card .price-tag { margin-top: 1.25rem; }

.prose {
  color: var(--text-muted);
  max-width: 42rem;
}
.prose p + p { margin-top: 1rem; }
.prose strong { color: var(--text); font-weight: 600; }

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.25);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  main { animation: none; }
  .hero-mesh { animation: none; }
  .site-nav, .site-nav ul li { transition: none !important; }
  .btn-primary::after { display: none; }
}

/* ——— Final wow pass ——— */
.price-tag {
  color: var(--accent) !important;
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
}

.bento-card.wide {
  background:
    linear-gradient(145deg, rgba(34, 211, 238, 0.06), rgba(167, 139, 250, 0.04)),
    var(--bg-card);
}

.bento-card.full {
  background:
    linear-gradient(120deg, rgba(99, 102, 241, 0.08), rgba(34, 211, 238, 0.04)),
    var(--bg-card);
}

.hero h1 {
  text-wrap: balance;
}

.hero-actions .btn-primary {
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.35), 0 10px 40px rgba(34, 211, 238, 0.35), 0 0 60px rgba(99, 102, 241, 0.2);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.section-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.leader-avatar {
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.35);
}

.cta-inner {
  box-shadow: 0 0 80px rgba(34, 211, 238, 0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Noise film for cinematic grain (CSS-only, tiny) */
.film-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: 0.018;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (max-width: 720px) {
  .hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    max-width: none;
  }
  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.35rem;
  }
  .hero-badge { margin-bottom: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .film-grain { display: none; }
}

/* ——— Digital Store ——— */
.store-hero h1 { max-width: 18ch; }
.store-grad {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-gold) 50%, #fde68a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.store-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.store-trust-pill {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(16, 22, 40, 0.75);
  border: 1px solid rgba(245, 197, 66, 0.22);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}
.store-trust-pill:first-child {
  color: #fde68a;
  border-color: rgba(245, 197, 66, 0.4);
  background: rgba(245, 197, 66, 0.08);
}

.store-cat-nav {
  position: sticky;
  top: var(--header-offset);
  z-index: 40;
  width: 100%;
  margin: 0;
  padding: 0.55rem 0 0.45rem;
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  background: rgba(5, 7, 15, 0.78);
  border-bottom: 1px solid transparent;
}

.store-cat-nav.is-stuck {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.store-cat-track {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.store-cat-chip {
  flex: 0 0 auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  background: rgba(16, 22, 40, 0.75);
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.store-cat-chip:hover,
.store-cat-chip.is-active {
  color: #fde68a;
  border-color: rgba(245, 197, 66, 0.4);
  background: rgba(245, 197, 66, 0.08);
  box-shadow: none;
}

.store-category {
  scroll-margin-top: calc(var(--header-h) + 72px);
  padding-top: 3.25rem;
  padding-bottom: 2.5rem;
}

.store-category.is-highlight {
  position: relative;
}

.store-category.is-highlight::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 0.5rem;
  bottom: 0.5rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(34, 211, 238, 0.18);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.04), transparent 40%);
  pointer-events: none;
  animation: store-pulse 1.6s var(--ease) both;
}

@keyframes store-pulse {
  from { opacity: 0; transform: scale(0.985); }
  40% { opacity: 1; }
  to { opacity: 0; transform: scale(1); }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.product-card {
  position: relative;
  padding: 1.65rem 1.65rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 100%;
  overflow: hidden;
}
.tool-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 5;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #05070f;
  background: linear-gradient(135deg, #f5c542, #f59e0b);
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.2;
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.product-card h3 {
  font-size: 1.15rem;
  margin: 0.15rem 0 0.35rem;
}

.product-benefit {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 0.5rem;
}

.product-card .price-tag {
  margin-top: 0.35rem;
  margin-bottom: 0.85rem;
}

.price-tag--muted {
  color: var(--text-muted) !important;
  text-shadow: none !important;
  font-size: 1.1rem;
}

.product-buy {
  width: 100%;
  margin-top: auto;
}

.product-buy.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}

.product-trust {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

.product-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #05070f;
  background: linear-gradient(135deg, #22d3ee, #818cf8);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.product-badge-alt {
  background: linear-gradient(135deg, #a78bfa, #6366f1);
  color: #fff;
}

.product-badge-soon {
  background: rgba(148, 163, 184, 0.15);
  color: var(--text-muted);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.product-card--soon {
  opacity: 0.88;
}

.product-card--soon:hover {
  opacity: 1;
}

@media (min-width: 901px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  #clinic .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .product-grid { grid-template-columns: 1fr; }
  .store-cat-nav { top: var(--header-offset); }
  .store-cat-track { padding: 0 1.25rem; gap: 0.4rem; }
  .store-cat-chip { font-size: 0.84rem; padding: 0.45rem 0.85rem; }
  .store-category { scroll-margin-top: calc(var(--header-h) + 64px); }
  .store-hero h1 { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .store-category.is-highlight::before { animation: none; opacity: 0; }
  .store-cat-chip { transition: none; }
}

/* ——— Homepage enrichment (company + store) ——— */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  max-width: var(--max);
  margin: 0.25rem auto 0;
  padding: 0 1.25rem 1rem;
  position: relative;
  z-index: 1;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(16, 22, 40, 0.65);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust-pill strong {
  color: var(--accent-gold);
  font-weight: 600;
}
.trust-pill {
  border-color: rgba(245, 197, 66, 0.18);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.product-grid .product-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0.35rem 0 0.5rem;
  line-height: 1.35;
}
.product-grid .product-card p.product-benefit {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
  min-height: 0;
}
.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.product-card .tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-2);
  border: 1px solid rgba(167, 139, 250, 0.35);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}
.product-actions .btn { font-size: 0.85rem; padding: 0.55rem 0.9rem; }
.product-grid .product-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  min-height: 0;
}

.cat-lane-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.cat-lane {
  display: block;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cat-lane:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 24px var(--glow);
  text-decoration: none;
  color: inherit;
}
.cat-lane strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.cat-lane span {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.division-card {
  padding: 1.35rem 1.4rem;
}
.division-card .div-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.division-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}
.division-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step-card {
  position: relative;
  padding: 1.4rem 1.3rem 1.3rem;
}
.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  padding: 1.15rem 1.35rem;
}
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cta-band .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
}

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-lane-grid { grid-template-columns: repeat(2, 1fr); }
  .division-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .product-grid,
  .cat-lane-grid,
  .division-grid,
  .steps-grid,
  .audience-grid { grid-template-columns: 1fr; }
  .trust-strip { justify-content: flex-start; }
}

/* ——— Spacing tighten (2026-09-19) ——— */
.hero { min-height: 0 !important; padding-top: 0.85rem !important; padding-bottom: 1.1rem !important; justify-content: flex-start !important; }
.hero-badge { margin-bottom: 0.65rem !important; }
.hero h1 { margin-bottom: 0.65rem !important; }
.hero-lead { margin-bottom: 1rem !important; }
.section { padding-top: 2.25rem !important; padding-bottom: 2.25rem !important; }
.section-header { margin-bottom: 1.25rem !important; }
.trust-strip { margin-top: 0 !important; padding-bottom: 0.75rem !important; }
.product-grid { gap: 0.85rem !important; }
.product-grid .product-card { min-height: 0 !important; padding: 1.15rem !important; }
.site-header .header-inner { gap: 0.75rem; }
.site-nav ul { gap: 0 !important; }
.site-nav a { padding: 0.35rem 0.55rem !important; }
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
}

/* ——— Store product media (2026-09-19e) ——— */
.product-card-media {
  margin: -1.15rem -1.15rem 0.85rem;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(129, 140, 248, 0.18) 50%, rgba(167, 139, 250, 0.1));
  border-bottom: 1px solid var(--border);
}
.product-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}
.product-card-media--placeholder {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(34, 211, 238, 0.22), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(129, 140, 248, 0.2), transparent 50%),
    linear-gradient(145deg, #0f1424, #1a2240);
}
.product-cat-label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2, #a78bfa);
}
.product-card--featured {
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.08);
}
.product-grid--featured {
  margin-bottom: 0.5rem;
}
.chip-count {
  opacity: 0.65;
  font-weight: 500;
  margin-left: 0.15rem;
}
.division-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #05070f;
  background: linear-gradient(135deg, #22d3ee, #818cf8);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
@media (max-width: 900px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .industry-grid { grid-template-columns: 1fr; }
}

/* Blog / Journal */
.blog-article{max-width:46rem;margin:0 auto;padding:0 1.25rem 4rem}
.blog-article .prose{font-size:1.05rem;line-height:1.75;color:rgba(232,240,255,.88)}
.blog-article .prose h2{font-family:Syne,sans-serif;font-size:1.35rem;margin:2.25rem 0 .75rem;color:#fff}
.blog-article .prose h3{font-size:1.1rem;margin:1.5rem 0 .5rem;color:#e8f0ff}
.blog-article .prose p{margin:0 0 1rem}
.blog-article .prose ul{margin:0 0 1.25rem;padding-left:1.2rem}
.blog-article .prose li{margin:.35rem 0}
.blog-meta{display:flex;flex-wrap:wrap;gap:.75rem 1.25rem;font-size:.85rem;color:rgba(232,240,255,.55);margin:0 0 1.75rem}
.blog-cta{margin:2.5rem 0;padding:1.5rem;border-radius:16px;border:1px solid rgba(245,158,11,.35);background:linear-gradient(145deg,rgba(245,158,11,.12),rgba(34,211,238,.06))}
.blog-cta p{margin:0 0 1rem;color:rgba(232,240,255,.9)}
.blog-list{display:grid;gap:1rem;max-width:52rem;margin:0 auto;padding:0 1.25rem 4rem}
.blog-list a.blog-card{display:block;padding:1.25rem 1.4rem;text-decoration:none;color:inherit}
.blog-list a.blog-card h3{margin:.25rem 0 .5rem;font-family:Syne,sans-serif}
.blog-list a.blog-card p{margin:0;color:rgba(232,240,255,.65);font-size:.95rem}


/* Product SEO pages */
.product-page{padding-top:2rem}
.product-page-hero{padding:1.75rem 1.5rem;border-radius:18px;max-width:42rem;margin:0 auto;text-align:left}
.product-page-icon{font-size:1.6rem;opacity:.85;margin-bottom:.5rem}
.product-page-hero h1{font-family:Syne,sans-serif;font-size:clamp(1.45rem,3vw,2rem);margin:.25rem 0 0.75rem;line-height:1.2}
.product-page-price{font-size:1.5rem;font-weight:700;color:#fbbf24;margin:0 0 1.25rem}
.product-page .hero-actions{display:flex;flex-wrap:wrap;gap:.75rem;margin-bottom:.75rem}


/* Software Tools category */
.product-card--scripts .product-badge{background:linear-gradient(135deg,#22d3ee,#6366f1);color:#04101a}
.product-grid--scripts{margin-top:1rem}

/* ——— Futuristic polish pass 20260919futur1 (store / product / blog) ——— */

.store-cat-chip {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Product cards — denser glass + gold edge on hover (CSS only) */
.product-grid .product-card.glass {
  background:
    linear-gradient(160deg, rgba(34, 211, 238, 0.05), transparent 42%),
    var(--bg-card);
  overflow: hidden;
}
.product-grid .product-card.glass:hover {
  border-color: rgba(245, 197, 66, 0.28);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.1),
    0 22px 48px rgba(0, 0, 0, 0.4),
    0 0 36px rgba(34, 211, 238, 0.1),
    0 0 28px rgba(245, 197, 66, 0.06);
  transform: translateY(-3px);
}
.product-card .price-tag {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #fde68a, var(--accent-gold) 45%, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.product-card .btn-ghost.product-details {
  width: 100%;
  margin-top: 0.4rem;
  text-align: center;
  justify-content: center;
}
.product-card-media {
  position: relative;
}
.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 7, 15, 0.45));
  pointer-events: none;
}
.product-card--tools .product-card-media::after {
  display: none;
}
.product-badge {
  background: linear-gradient(135deg, #22d3ee, #f5c542 70%, #f59e0b);
  box-shadow: 0 0 16px rgba(245, 197, 66, 0.25);
}
.product-card--featured {
  border-color: rgba(245, 197, 66, 0.28);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.1), 0 0 32px rgba(245, 197, 66, 0.06);
}
.product-card--featured .product-card-media {
  background:
    radial-gradient(ellipse at 25% 20%, rgba(245, 197, 66, 0.2), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(34, 211, 238, 0.22), transparent 50%),
    linear-gradient(145deg, #0f1424, #1a2240);
}

/* Scripts lane — distinct from ZIP pack catalog */
#scripts.store-category {
  position: relative;
}
#scripts.store-category::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: 0.25rem;
  bottom: 0.25rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(34, 211, 238, 0.28);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.07), rgba(99, 102, 241, 0.06) 50%, transparent 70%);
  box-shadow: inset 0 0 60px rgba(34, 211, 238, 0.04);
  pointer-events: none;
}
#scripts .section-header { position: relative; z-index: 1; }
#scripts .section-eyebrow {
  color: #67e8f9;
  letter-spacing: 0.12em;
}
.product-card--scripts {
  border-color: rgba(34, 211, 238, 0.32) !important;
  background:
    linear-gradient(155deg, rgba(34, 211, 238, 0.1), rgba(99, 102, 241, 0.08) 45%, transparent 70%),
    var(--bg-card) !important;
}
.product-card--scripts .product-badge {
  background: linear-gradient(135deg, #22d3ee, #6366f1);
  color: #04101a;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.35);
}
.product-card--scripts .product-cat-label { color: #67e8f9; }
.product-card--scripts .product-trust,
.script-ux-line {
  color: #a5f3fc !important;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-top: 1px solid rgba(34, 211, 238, 0.18);
  padding-top: 0.65rem;
  margin-top: 0.85rem;
}
.product-card-media--placeholder {
  background:
    radial-gradient(ellipse at 30% 25%, rgba(34, 211, 238, 0.35), transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(99, 102, 241, 0.28), transparent 50%),
    linear-gradient(145deg, #0a1224, #121a38) !important;
  position: relative;
}
.product-card-media--placeholder::before {
  content: "⚙";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  opacity: 0.55;
  color: #67e8f9;
  text-shadow: 0 0 28px rgba(34, 211, 238, 0.5);
  z-index: 1;
}

/* Store hero — align with homepage cinematic language */
.store-hero.page-hero {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}
.store-hero.page-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  width: min(640px, 90vw);
  height: 280px;
  background:
    radial-gradient(ellipse at center, rgba(34, 211, 238, 0.12), transparent 65%),
    radial-gradient(ellipse at 70% 40%, rgba(245, 197, 66, 0.08), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.store-hero > * { position: relative; z-index: 1; }
.store-trust-pill {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Product SEO pages — premium hero chrome */
.product-page {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.product-page > .section-eyebrow {
  text-align: center;
  margin-bottom: 1.25rem;
}
.product-page > .section-eyebrow a {
  color: var(--accent);
  text-decoration: none;
}
.product-page > .section-eyebrow a:hover { color: #67e8f9; }
.product-page-hero.glass {
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem 1.75rem 1.65rem;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(34, 211, 238, 0.08), rgba(245, 197, 66, 0.05) 40%, transparent 70%),
    var(--bg-card);
  border-color: rgba(34, 211, 238, 0.22);
  box-shadow:
    0 0 0 1px rgba(245, 197, 66, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 48px rgba(34, 211, 238, 0.06);
}
.product-page-hero.glass::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 90%;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.12), transparent 65%);
  pointer-events: none;
}
.product-page-hero h1 {
  position: relative;
  z-index: 1;
  background: linear-gradient(120deg, #fff 0%, #e2e8f0 55%, #fde68a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-page-price,
.price-tag.product-page-price {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  background: linear-gradient(120deg, #fde68a, var(--accent-gold), #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
.product-page .hero-actions {
  position: relative;
  z-index: 1;
}
.product-page .prose {
  max-width: 42rem;
  margin: 2.25rem auto 0;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(16, 22, 40, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.product-page .prose h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 1.75rem 0 0.65rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.product-page .prose h2:first-of-type { margin-top: 0.5rem; }
.product-page .prose ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}
.product-page .prose li { margin: 0.35rem 0; }
.product-page .prose li::marker { color: var(--accent); }

/* Blog index + article chrome */
.blog-list {
  gap: 1.1rem;
  padding-bottom: 3.5rem;
}
.blog-list a.blog-card.glass {
  position: relative;
  padding: 1.45rem 1.55rem;
  background:
    linear-gradient(145deg, rgba(34, 211, 238, 0.06), rgba(245, 197, 66, 0.04) 50%, transparent),
    var(--bg-card);
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}
.blog-list a.blog-card.glass:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 197, 66, 0.3);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35), 0 0 32px rgba(34, 211, 238, 0.1);
  text-decoration: none;
  color: inherit;
}
.blog-list a.blog-card h3 {
  background: linear-gradient(120deg, #fff, #fde68a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.blog-list a.blog-card::after {
  content: "→";
  position: absolute;
  right: 1.4rem;
  top: 1.45rem;
  color: var(--accent);
  opacity: 0.55;
  font-size: 1.1rem;
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.blog-list a.blog-card:hover::after {
  opacity: 1;
  transform: translateX(3px);
}
.page-hero .section-eyebrow + h1,
.blog-article .page-hero h1 {
  max-width: 22ch;
}
.blog-article .page-hero {
  position: relative;
  text-align: left;
  max-width: 46rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 0.5rem;
}
.blog-article .page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 72%;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-gold));
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}
.blog-article .page-hero h1 {
  padding-left: 1.1rem;
  background: linear-gradient(120deg, #fff 10%, #e2e8f0 60%, #fde68a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.blog-article .blog-meta {
  padding-left: 1.1rem;
}
.blog-article .blog-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 66, 0.2);
  background: rgba(16, 22, 40, 0.65);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
}
.blog-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 197, 66, 0.35);
  background:
    linear-gradient(145deg, rgba(245, 158, 11, 0.14), rgba(34, 211, 238, 0.08)),
    rgba(16, 22, 40, 0.7);
  box-shadow: 0 0 40px rgba(245, 197, 66, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.blog-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(34,211,238,0.4), rgba(245,197,66,0.35), transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}
.blog-index-hero.page-hero {
  position: relative;
  padding-bottom: 0.5rem;
}
.blog-index-hero .lead { max-width: 42ch; margin-left: auto; margin-right: auto; }

@media (prefers-reduced-motion: reduce) {
  .product-grid .product-card.glass:hover,
  .blog-list a.blog-card.glass:hover {
    transform: none;
  }
  .blog-list a.blog-card:hover::after { transform: none; }
  .product-card-media--placeholder::before { text-shadow: none; }
}


/* Plain-language product card blurb */
.product-blurb {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.product-card--featured .product-blurb {
  min-height: 2.8em;
}


/* === FINAL REFINEMENT 20260920 === */
.need-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.need-card {
  display: block;
  padding: 1.15rem 1.2rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s;
}
.need-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.need-card h3 {
  font-family: Syne, sans-serif;
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}
.need-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.product-perfect {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0.75rem;
}
.product-perfect span {
  color: var(--accent-gold);
  font-weight: 600;
}
.product-headline {
  font-size: 1.15rem;
  color: var(--accent);
  margin: 0.5rem 0 0.75rem;
  max-width: 36rem;
}
.product-blurb--lead {
  font-size: 1.05rem;
  max-width: 36rem;
}
.product-prose {
  max-width: 42rem;
  margin: 2rem auto 0;
}
.product-cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  margin: 1.75rem 0;
}
.how-steps {
  padding-left: 1.1rem;
}
.how-steps li {
  margin: 0.65rem 0;
}
.faq-item {
  margin: 0.65rem 0;
  padding: 0.85rem 1rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}
.faq-item p {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
}
.faq-list {
  max-width: 42rem;
  margin: 0 auto;
}
.trust-strip {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin: 0;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.trust-list li {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.trust-list li::before {
  content: "✓ ";
  color: var(--accent);
}
.section-cta {
  text-align: center;
  margin-top: 1.75rem;
}
.footer-inner--rich {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 7vw, 6rem);
  row-gap: 1.5rem;
}
@media (max-width: 720px) {
  .site-footer {
    padding: 1.75rem 1rem 1.35rem;
  }
  .footer-cols {
    gap: 0.7rem;
  }
  .footer-col-title {
    font-size: 0.72rem;
  }
  .footer-col a {
    margin-right: 0.28rem;
    font-size: 0.72rem;
  }
  .footer-brand p,
  .footer-brand .footer-kicker,
  .footer-brand .footer-pay {
    font-size: 0.82rem;
  }
  .footer-brand .footer-blurb {
    max-width: 100%;
    font-size: 0.8rem;
  }
  .footer-cols {
    padding-left: 0.65rem;
  }
  .footer-brand .footer-kicker {
    font-size: 0.86rem;
  }
  .footer-brand .footer-company,
  .footer-brand .footer-ids {
    max-width: none;
    font-size: 0.7rem;
  }
  .footer-copy {
    font-size: 0.72rem;
  }
}
.store-search-wrap {
  margin: 1.25rem 0 0.75rem;
  max-width: 32rem;
}
.store-search {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: rgba(8, 12, 24, 0.9);
  color: var(--text);
  font: inherit;
  font-size: 1.02rem;
}
.store-search:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.store-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin: 0.75rem 0 0.5rem;
}
.store-filters label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.store-filter {
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
  font: inherit;
}
.store-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.store-trust-pill {
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.store-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
}
.product-card h3 a {
  color: inherit;
  text-decoration: none;
}
.product-card h3 a:hover {
  color: var(--accent);
}
.related-block {
  margin-top: 3rem;
}
.related-block h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.product-card .product-blurb {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0.35rem 0 0;
}
@media (max-width: 900px) {
  .need-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .need-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-list { justify-content: flex-start; }
  .product-cta-inline { flex-direction: column; align-items: flex-start; }
}

/* === HOMEPAGE FINAL POLISH 20260920 === */
#popular .product-trust,
#axiora-tools .product-trust { display: none; }
.product-grid--featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}
.product-grid--tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 52rem;
}
.product-grid--premium .product-card--tools {
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.08);
}
.product-card-media,
.product-page-cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #0f1424;
  margin-bottom: 1rem;
}
.product-card-media img,
.product-page-cover img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.product-page-cover--placeholder {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(34, 211, 238, 0.22), transparent 55%),
    linear-gradient(145deg, #0f1424, #1a2240);
}
.product-card-media--fit,
.product-page-cover--fit {
  aspect-ratio: 1 / 1;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  background: #05070f;
}
.product-card--tools .product-card-media {
  aspect-ratio: 1 / 1;
}
.section--tight { padding-top: 2.25rem; padding-bottom: 2.25rem; }
.how-grid .feature-card,
.why-grid .feature-card { padding: 1.1rem 1.15rem; }
.faq-cta-band { text-align: center; padding: 1.5rem 1.25rem; }
@media (max-width: 1024px) {
  .product-grid--featured { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .product-grid--featured,
  .product-grid--tools { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .need-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .how-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 414px) {
  .product-grid--featured,
  .product-grid--tools { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 0.65rem !important; }
  .product-card { padding: 0.9rem !important; }
  .product-card h3 { font-size: 0.95rem; }
  .product-blurb { font-size: 0.82rem; }
  .need-grid { gap: 0.65rem; }
  .need-card { padding: 0.9rem 0.85rem; }
  .need-card h3 { font-size: 0.92rem; }
}
@media (max-width: 320px) {
  .product-grid--featured,
  .product-grid--tools { grid-template-columns: 1fr !important; }
  .need-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Explore by Need — compact tabs (no tall category blocks) */
.store-explore-need { padding-top: 1.25rem; padding-bottom: 0.5rem; }
.section-header--compact { margin-bottom: 0.85rem; }
.section-header--compact h2 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
.store-need-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  max-width: 100%;
}
.store-need-tab {
  appearance: none; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: inherit; font: inherit; font-size: 0.88rem; font-weight: 600;
  padding: 0.45rem 0.85rem; border-radius: 999px; cursor: pointer;
  white-space: nowrap; transition: background .15s, border-color .15s, color .15s;
}
.store-need-tab:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); }
.store-need-tab.is-active {
  background: linear-gradient(135deg, rgba(212,175,55,0.22), rgba(212,175,55,0.08));
  border-color: rgba(212,175,55,0.55); color: #f3e6b0;
}
.store-cat-nav--compact { margin-bottom: 0; }
.store-filters { display: flex; flex-wrap: wrap; gap: 0.65rem 0.85rem; align-items: flex-end; }
.store-filters label { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.78rem; opacity: 0.9; }
.store-showing { margin: 0.35rem 0 0.75rem; font-size: 0.95rem; font-weight: 600; color: rgba(243,230,176,0.92); }
.store-clear-filters { align-self: flex-end; }
#all-products-grid .product-card {
  display: flex; flex-direction: column; min-height: 100%;
}
#all-products-grid .product-card .product-buy { margin-top: auto; }
#all-products-grid .product-blurb {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 3.6em;
}
.store-empty { text-align: center; padding: 1.5rem 1rem; }
@media (max-width: 720px) {
  .store-need-tabs {
    flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; padding-bottom: 0.35rem;
  }
  .store-filters { gap: 0.55rem; }
  .store-filters label { min-width: calc(50% - 0.4rem); flex: 1 1 140px; }
}
@media (min-width: 721px) {
  .store-need-tabs { max-height: 5.5rem; overflow: hidden; }
}
html, body { max-width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* === VINOD FINAL 20260920 === */
.store-trust-pill--subtle {
  opacity: 0.75;
  font-size: 0.75rem;
}

[hidden] { display: none !important; }
.store-empty { display: none !important; text-align: center; padding: 1.5rem 1rem; color: var(--text-muted); }
.store-empty.is-visible:not([hidden]) { display: block !important; }
.store-clear-inline { margin-top: 0.85rem; }

.header-actions { display: flex; align-items: center; gap: 0.45rem; flex-shrink: 1; }
.header-action {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
}
.header-action:hover { color: var(--text); border-color: var(--border); }
.header-action--contact {
  border-color: rgba(34, 211, 238, 0.35);
  color: var(--text);
}

.support-note {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(245, 197, 66, 0.35);
  background: rgba(245, 197, 66, 0.08);
  color: #f8e7b0;
  font-weight: 600;
}

.industry-card { display: flex; flex-direction: column; gap: 0.75rem; }
.industry-card .btn { align-self: flex-start; margin-top: auto; }
.division-note { font-size: 0.88rem; color: var(--text-muted); max-width: 52rem; }

.journal-toolbar { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1rem 0 1.5rem; }
.journal-search { flex: 1 1 220px; min-width: 0; width: 100%; padding: 0.75rem 1rem; border-radius: 12px; border: 1px solid var(--border); background: rgba(16,22,40,0.7); color: var(--text); font: inherit; }
.journal-cats { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.journal-cat {
  appearance: none; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04); color: inherit; font: inherit;
  font-size: 0.85rem; font-weight: 600; padding: 0.4rem 0.8rem; border-radius: 999px; cursor: pointer;
}
.journal-cat.is-active { border-color: rgba(34,211,238,0.5); color: var(--accent); }
.journal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.journal-card { padding: 1.2rem 1.25rem; display: flex; flex-direction: column; gap: 0.55rem; min-width: 0; }
.journal-card h2 { font-size: 1.15rem; line-height: 1.35; }
.journal-card h2 a { color: inherit; text-decoration: none; }
.journal-meta { font-size: 0.8rem; color: var(--text-muted); }
.article-layout { max-width: 760px; margin: 0 auto; }
.article-related { margin-top: 2rem; }

.product-preview-note { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem; }
.product-receive, .product-not { margin: 0.6rem 0 1rem; padding-left: 1.15rem; }
.pdp-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.25rem 0; }
@media (max-width: 640px) { .pdp-meta-grid { grid-template-columns: 1fr; } }

.faq-group { margin-bottom: 1.5rem; }
.faq-group h2 {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 1.05rem;
}
.faq-item {
  margin: 0.55rem 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(16, 22, 40, 0.45);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 1rem;
  color: var(--text);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--accent);
}
.faq-item[open] {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.12);
}
.faq-item[open] summary { color: var(--accent); }
.faq-item p {
  margin: 0;
  padding: 0 1rem 0.95rem;
  color: var(--text-muted);
}

.leader-role { color: var(--accent); font-weight: 600; font-size: 0.88rem; margin-bottom: 0.25rem; }

.load-more-wrap { text-align: center; margin: 1.25rem 0 0.5rem; }

@media (max-width: 414px) {
  .header-inner { padding: 0 0.85rem; gap: 0.45rem; }
  .logo-link .logo-word { height: 32px; }
  .header-action { padding: 0.35rem 0.55rem; font-size: 0.8rem; }
  .store-filters label { min-width: 100%; }
  .btn { white-space: normal; }
  .page-hero h1, .hero h1 { overflow-wrap: break-word; }
}

@media (max-width: 320px) {
  .header-actions { gap: 0.2rem; }
  .store-trust-row { gap: 0.35rem; }
}

/* Header: never clip the primary menu (homepage, store, all pages) */
.site-header {
  height: auto;
  min-height: var(--header-h);
  overflow: visible;
}
.header-inner {
  max-width: none;
  width: 100%;
}
.site-nav {
  display: block !important;
  flex: 1 0 auto;
  min-width: 0;
}
.site-nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.site-nav a {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 0.3rem 0.45rem !important;
}
@media (max-width: 860px) {
  .nav-toggle { display: block !important; }
  .header-actions { display: none !important; }
  .nav-mobile-extra { display: list-item !important; }
  .site-nav:not(.is-open) {
    display: none !important;
  }
  .site-nav.is-open {
    display: block !important;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 80;
    background: rgba(5, 7, 15, 0.96);
    padding: 1rem 1.25rem 1.25rem;
  }
  .site-nav.is-open ul {
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open ul li {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (min-width: 861px) {
  .nav-toggle { display: none !important; }
  .header-actions { display: flex !important; }
  .nav-mobile-extra { display: none !important; }
  .site-nav {
    display: block !important;
    position: static;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
  }
}

/* Homepage: keep a live-star band above the copy */
.hero.hero--compact {
  padding-top: 5.75rem !important;
  padding-bottom: 2.35rem !important;
}
.hero-support {
  margin-bottom: 0.45rem;
}
.hero.hero--compact .hero-actions {
  margin-top: 1.45rem;
}
@media (max-width: 720px) {
  .hero.hero--compact {
    padding-top: 4rem !important;
    padding-bottom: 1.85rem !important;
  }
  .hero.hero--compact .hero-actions {
    margin-top: 1.25rem;
  }
}
@media (max-width: 414px) {
  .page-hero h1, .hero h1 { overflow-wrap: break-word; }
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.product-preview-block { margin: 1.75rem 0 2rem; }
.product-preview-block h2 { margin-bottom: 0.5rem; }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}
.preview-card {
  margin: 0;
  background: rgba(16, 22, 40, 0.72);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.preview-card img { display: block; width: 100%; height: auto; }
.preview-card figcaption {
  padding: 0.55rem 0.75rem 0.7rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.journal-cta { margin-top: 1.75rem; padding: 1.35rem 1.4rem; }
.footer-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 1.25rem 0.15rem;
}
.footer-cta-inner {
  text-align: center;
  padding: 1rem 1rem 1.1rem;
  border-top: 1px solid var(--border);
}
.footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  margin: 0 0 0.35rem;
}
.footer-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 0.8rem;
}
.pdp-clarity {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1.15rem 0 0;
}
.pdp-clarity div {
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(5, 7, 15, 0.35);
}
.pdp-clarity dt {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.pdp-clarity dd { margin: 0; font-size: 0.9rem; color: var(--text); }
.product-receive {
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1rem 0.85rem 1.4rem;
  background: rgba(34, 211, 238, 0.05);
}
@media (max-width: 640px) {
  .pdp-clarity { grid-template-columns: 1fr; }
  .footer-cta .btn { width: 100%; }
}
@media (max-width: 720px) {
  .preview-grid { grid-template-columns: 1fr; }
}

/* Inner-page galaxy heroes — Store, Solutions, Industries, About, Contact, Journal */
.page-hero--galaxy {
  position: relative;
  overflow: hidden;
  padding-top: 4.25rem;
  padding-bottom: 1.75rem;
}
.page-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}
.page-hero--galaxy::before {
  content: "";
  position: absolute;
  inset: -15% -8% 10%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 70% at 18% 28%, rgba(34, 211, 238, 0.16), transparent 58%),
    radial-gradient(ellipse 48% 55% at 88% 18%, rgba(167, 139, 250, 0.14), transparent 52%),
    radial-gradient(ellipse 40% 45% at 72% 78%, rgba(245, 197, 66, 0.07), transparent 55%);
  animation: galaxy-drift 18s ease-in-out infinite alternate;
}
.page-hero--galaxy > *:not(.page-hero-canvas) { position: relative; z-index: 1; }
.page-hero--galaxy.store-hero::before {
  left: auto;
  top: auto;
  width: auto;
  height: auto;
  transform: none;
}
@keyframes galaxy-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-18px, 12px) scale(1.05); }
}
@media (max-width: 720px) {
  .page-hero--galaxy { padding-top: 3.25rem; padding-bottom: 1.35rem; }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-canvas { display: none; }
  .page-hero--galaxy::before { animation: none; }
}

/* === DESIGN FREEZE POLISH 20260920qa13 === */
/* Decorative tape / ribbon / label — visual only, never interactive */
.hero-badge,
.section-eyebrow,
.tag,
.tool-badge,
.store-trust-pill,
.division-pill,
.product-cat-label,
.leader-role {
  cursor: default;
  text-decoration: none;
}
.hero-badge:hover,
.hero-badge:focus,
.hero-badge:active,
.section-eyebrow:hover,
.section-eyebrow:focus,
.section-eyebrow:active,
.tag:hover,
.tag:focus,
.tool-badge:hover,
.store-trust-pill:hover,
.division-pill:hover,
.product-cat-label:hover,
.leader-role:hover {
  cursor: default;
  text-decoration: none;
  transform: none;
  filter: none;
  box-shadow: none;
  opacity: 1;
}

/* Genuine links inside an eyebrow (product / journal crumbs) keep hover */
.section-eyebrow a {
  cursor: pointer;
  pointer-events: auto;
  text-decoration: none;
}
.section-eyebrow a:hover {
  color: #67e8f9;
  text-decoration: none;
}

/* Non-clickable glass on Home / About — no lift, glow, or pointer */
.feature-card:not(a):not(.industry-card):not(.product-card),
.bento-card:not(a) {
  cursor: default;
}
.feature-card:not(a):not(.industry-card):not(.product-card):hover,
.bento-card:not(a):hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}
.feature-card:not(a):not(.industry-card):not(.product-card):hover::before,
.bento-card:not(a):hover::before {
  opacity: 0;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.promise-card,
.promise-card.glass,
.promise-card.feature-card {
  cursor: default;
  text-align: center;
  padding: 1.45rem 0.95rem 1.35rem;
  min-height: 11.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(245, 197, 66, 0.09), transparent 62%);
  transition: none;
}
.promise-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.04rem;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.promise-card h3::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.5rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}
.promise-card p {
  margin: 0;
  max-width: 32ch;
  line-height: 1.5;
  font-size: 0.9rem;
  text-align: center;
}
.promise-card:hover,
.promise-card.glass:hover,
.promise-card.feature-card:hover {
  cursor: default;
  transform: none;
  border-color: var(--border);
  box-shadow: none;
  background-image: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(245, 197, 66, 0.09), transparent 62%);
}
.promise-card:hover::before,
.promise-card.glass:hover::before,
.promise-card.feature-card:hover::before {
  opacity: 0;
}
@media (max-width: 900px) {
  .promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
  .promise-card { min-height: 9.5rem; padding: 1.4rem 1.15rem 1.3rem; }
  .promise-card h3 { font-size: 1.1rem; }
  .promise-card p { max-width: 32ch; }
}
@media (max-width: 560px) {
  .promise-grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .promise-card { min-height: 0; padding: 1.25rem 1.1rem 1.2rem; }
  .promise-card p { max-width: 36ch; font-size: 0.92rem; }
}
@media (prefers-reduced-motion: reduce) {
  .promise-card,
  .promise-card:hover,
  .promise-card.feature-card:hover {
    transform: none;
    transition: none;
  }
}

/* Interactive surfaces keep hover */
a.glass:hover,
a.need-card:hover,
.product-card.glass:hover,
.industry-card.glass:hover {
  cursor: pointer;
}

/* How it works — tiny live step dots (decorative only) */
.how-steps .how-step-dot,
.how-step-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 0 0.7rem;
  background: var(--accent);
  box-shadow: 0 0 8px var(--glow);
  pointer-events: none;
  cursor: default;
  animation: how-step-live 3.6s ease-in-out infinite;
}
.how-steps .how-step:nth-child(1) .how-step-dot { animation-delay: 0s; }
.how-steps .how-step:nth-child(2) .how-step-dot { animation-delay: 1.2s; }
.how-steps .how-step:nth-child(3) .how-step-dot { animation-delay: 2.4s; }
.how-step-dot:hover,
.how-step-dot:focus,
.how-step-dot:active {
  cursor: default;
  text-decoration: none;
}
@keyframes how-step-live {
  0%, 22%, 100% {
    opacity: 0.28;
    transform: scale(0.85);
    box-shadow: 0 0 6px rgba(34, 211, 238, 0.15);
  }
  8%, 14% {
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 14px var(--glow), 0 0 22px rgba(245, 197, 66, 0.28);
  }
}
@media (prefers-reduced-motion: reduce) {
  .how-step-dot { animation: none; opacity: 0.75; transform: none; }
}

/* Chat with us + back to top */
#ax-dock {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right));
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  pointer-events: none;
}
#ax-dock > * { pointer-events: auto; }
.ax-totop {
  appearance: none;
  border: 1px solid var(--border-strong);
  background: rgba(16, 22, 40, 0.92);
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
}
.ax-totop:hover {
  border-color: rgba(34, 211, 238, 0.55);
  color: var(--text);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
}

/* Futuristic Axiora Bot launcher — round AX icon + circular live glow */
.ax-chat-launch {
  appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 58px;
  padding: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 12, 24, 0.88);
  color: #e8f7ff;
  font: inherit;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.35),
    0 0 22px rgba(34, 211, 238, 0.28),
    0 10px 28px rgba(0, 0, 0, 0.4);
  transition: gap 0.28s var(--ease), padding 0.28s var(--ease), box-shadow 0.28s;
}
.ax-chat-launch::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 180deg, transparent 40%, #22d3ee, #f5c542, transparent 75%);
  opacity: 0.85;
  animation: ax-bot-spin 4s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.ax-chat-launch::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(160deg, #0a1226 0%, #071018 60%, #0c1730 100%);
  z-index: 0;
}
.ax-chat-orb,
.ax-chat-launch-name { position: relative; z-index: 1; }
.ax-chat-orb {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
}
.ax-chat-orb-img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}
.ax-chat-launch-name {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d7f6ff;
  text-shadow: 0 0 12px rgba(34, 211, 238, 0.45);
  transform: translateX(8px);
  transition: max-width 0.28s var(--ease), opacity 0.22s, transform 0.28s var(--ease), margin 0.28s;
}
.ax-chat-launch:hover,
.ax-chat-launch:focus-visible,
.ax-chat-launch[aria-expanded="true"] {
  gap: 0.55rem;
  padding-right: 1.05rem;
  box-shadow:
    0 0 0 1px rgba(245, 197, 66, 0.4),
    0 0 32px rgba(34, 211, 238, 0.4),
    0 12px 32px rgba(0, 0, 0, 0.45);
  outline: none;
}
.ax-chat-launch:hover::before,
.ax-chat-launch:focus-visible::before,
.ax-chat-launch[aria-expanded="true"]::before {
  animation-duration: 2.2s;
}
.ax-chat-launch:hover .ax-chat-launch-name,
.ax-chat-launch:focus-visible .ax-chat-launch-name,
.ax-chat-launch[aria-expanded="true"] .ax-chat-launch-name {
  max-width: 9.5rem;
  opacity: 1;
  transform: translateX(0);
  margin-right: 0.35rem;
}
@keyframes ax-bot-spin {
  to { transform: rotate(360deg); }
}
.ax-chat {
  width: min(22.5rem, calc(100vw - 1.7rem));
  max-height: min(32rem, 70vh);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(10, 14, 28, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.ax-chat[hidden],
.ax-totop[hidden] { display: none !important; }
.ax-chat-head {
  position: relative;
  padding: 0.85rem 2.4rem 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
}
.ax-chat-title { font-weight: 700; margin: 0; }
.ax-chat-sub { margin: 0.2rem 0 0; font-size: 0.78rem; color: var(--text-muted); }
.ax-chat-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.ax-chat-log {
  flex: 1 1 auto;
  overflow: auto;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 10rem;
}
.ax-msg { display: flex; }
.ax-msg--user { justify-content: flex-end; }
.ax-bubble {
  max-width: 92%;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
}
.ax-msg--bot .ax-bubble {
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.18);
}
.ax-msg--user .ax-bubble {
  background: rgba(245, 197, 66, 0.14);
  border: 1px solid rgba(245, 197, 66, 0.28);
}
.ax-bubble a { color: var(--accent); }
.ax-bubble--wait { opacity: 0.65; }
.ax-chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0 0.85rem 0.45rem;
}
.ax-chat-chips button {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: inherit;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
}
.ax-chat-form {
  display: flex;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem 0.8rem;
  border-top: 1px solid var(--border);
}
.ax-chat-form input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(16, 22, 40, 0.8);
  color: var(--text);
  font: inherit;
}
.ax-chat-send { padding: 0.55rem 0.85rem; }
@media (max-width: 560px) {
  .ax-chat { max-height: min(28rem, 64vh); }
  .ax-chat-launch { height: 54px; padding: 3px; }
  .ax-chat-orb { flex-basis: 48px; width: 48px; height: 48px; }
  .ax-chat-orb-img { width: 46px; height: 46px; }
  .logo-mark { flex-basis: 36px; width: 36px; height: 36px; }
  .logo-mark img { width: 32px; height: 32px; }
  .logo-link .logo-word { height: 32px; }
  .logo-link--live { gap: 0.45rem; }
}
@media (prefers-reduced-motion: reduce) {
  .ax-chat-launch::before,
  .logo-mark::before { animation: none; }
  .ax-chat-launch,
  .ax-chat-launch-name { transition: none; }
}

html.theme-light #ax-dock,
#ax-dock.ax-bot-light { color: #0b1220; }
html.theme-light .ax-chat-launch,
#ax-dock.ax-bot-light .ax-chat-launch {
  background: rgba(244, 247, 251, 0.92);
  color: #0b1220;
  box-shadow: 0 10px 28px rgba(15, 35, 70, 0.12);
}
html.theme-light .ax-chat-launch::after,
#ax-dock.ax-bot-light .ax-chat-launch::after {
  background: linear-gradient(160deg, #ffffff 0%, #f4f7fb 60%, #eef3f9 100%);
}
html.theme-light .ax-chat-launch-name,
#ax-dock.ax-bot-light .ax-chat-launch-name {
  color: #07152f;
  text-shadow: none;
}
html.theme-light .ax-chat-launch-tag,
#ax-dock.ax-bot-light .ax-chat-launch-tag {
  color: #3d4f66;
}
html.theme-light .ax-totop,
#ax-dock.ax-bot-light .ax-totop {
  background: #ffffff;
  color: #0b1220;
  border-color: rgba(8, 145, 178, 0.35);
  box-shadow: 0 10px 28px rgba(15, 35, 70, 0.12);
}
html.theme-light .ax-chat,
#ax-dock.ax-bot-light .ax-chat {
  background: #ffffff;
  border-color: rgba(15, 35, 70, 0.12);
  box-shadow: 0 18px 50px rgba(15, 35, 70, 0.16);
  color: #0b1220;
}
html.theme-light .ax-chat-head,
#ax-dock.ax-bot-light .ax-chat-head {
  border-bottom-color: rgba(15, 35, 70, 0.12);
}
html.theme-light .ax-chat-close,
#ax-dock.ax-bot-light .ax-chat-close {
  color: #0b1220;
}
html.theme-light .ax-chat-form,
#ax-dock.ax-bot-light .ax-chat-form {
  border-top-color: rgba(15, 35, 70, 0.12);
}
html.theme-light .ax-chat-form input,
#ax-dock.ax-bot-light .ax-chat-form input {
  background: #f4f7fb;
  color: #0b1220;
}
html.theme-light .ax-chat-chips button,
#ax-dock.ax-bot-light .ax-chat-chips button {
  background: #e7eef6;
  color: #0b1220;
  border-color: rgba(15, 35, 70, 0.12);
}
html.theme-light .ax-msg--bot .ax-bubble,
#ax-dock.ax-bot-light .ax-msg--bot .ax-bubble {
  background: rgba(18, 107, 255, 0.08);
  border-color: rgba(18, 107, 255, 0.22);
}

/* Header uses the supplied square AX icon; bot uses the round AX icon */

/* Live language selector — compact, visible next to Menu on mobile */
.lang-switch {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.lang-switch select {
  appearance: none;
  -webkit-appearance: none;
  max-width: 9.2rem;
  height: 36px;
  padding: 0 1.55rem 0 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.32);
  background:
    rgba(16, 22, 40, 0.88)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2394a3b8' d='M1 1l5 5 5-5'/></svg>")
    no-repeat right 0.55rem center;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
}
.lang-switch select:hover,
.lang-switch select:focus {
  border-color: rgba(34, 211, 238, 0.6);
  outline: none;
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.18);
}
.lang-switch select option,
.lang-switch select optgroup { color: #0b1220; }
@media (max-width: 860px) {
  .header-actions {
    display: flex !important;
    order: 3;
    margin-left: auto;
    gap: 0;
  }
  .header-actions .header-action { display: none !important; }
  .header-actions .lang-switch { display: flex; }
  .nav-toggle { order: 4; }
  .logo-link { order: 1; }
  .logo-link .logo-word { height: 34px; }
  .logo-mark { flex-basis: 38px; width: 38px; height: 38px; }
  .logo-mark img { width: 34px; height: 34px; }
  .site-nav { order: 2; }
  .lang-switch select { max-width: 7.6rem; height: 34px; font-size: 0.8rem; padding-right: 1.4rem; }
}

/* Hide Google Website Translator chrome — keep page layout intact */
#google_translate_element,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
iframe.skiptranslate,
iframe.goog-te-menu-frame,
.goog-te-menu-frame,
body > .skiptranslate,
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-combo,
.goog-logo-link,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-te-spinner-pos,
.goog-te-ftab,
.goog-te-ftab-link,
.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-aZ2wEe,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO,
[class*="VIpgJd-ZVi9od-ORHb"],
[class*="VIpgJd-ZVi9od-aZ2wEe"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  max-height: 0 !important;
  width: 0 !important;
  max-width: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  border: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}
html.translated-ltr,
html.translated-rtl,
html.translated-ltr body,
html.translated-rtl body,
body {
  top: 0 !important;
  margin-top: 0 !important;
  position: static !important;
}
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}
font font { letter-spacing: inherit; }

html.ax-wait-lang { background: var(--bg); }
html.ax-wait-lang body { opacity: 0 !important; visibility: hidden !important; }
html.ax-lang-ready body,
html.ax-lang-timeout body { opacity: 1 !important; visibility: visible !important; }

/* Public-friendly dark: keep the theme, make shop-owner reading easier */
.hero-lead {
  color: var(--text);
  font-size: clamp(1.12rem, 2.2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.4;
}
.hero-support,
.lead {
  color: var(--text-muted);
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  line-height: 1.65;
}
.hero-trust {
  color: var(--text);
  font-weight: 600;
}
.how-step h3 {
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 1.2rem;
}
.product-trust {
  color: var(--text-muted);
  font-size: 0.88rem;
}
.product-page-price,
.price-tag {
  letter-spacing: 0.01em;
}
.need-cta {
  font-weight: 700;
}
.store-filter,
.store-filters label {
  font-size: 0.95rem;
}
.btn-primary::after {
  opacity: 0.55;
}

.pay-trust {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}
.tool-purchase-clarity {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.7rem;
  margin: 0.7rem 0 0;
  padding: 0;
  color: #e7eef8;
  font-size: 0.86rem;
}
.tool-purchase-clarity li {
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(245, 197, 66, 0.28);
  border-radius: 999px;
  background: rgba(245, 197, 66, 0.08);
}
.support-paths {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.support-paths h3 { margin-top: 1rem; }
.support-paths h3:first-child { margin-top: 0; }
#journal-empty { display: none !important; }
#journal-empty.is-visible:not([hidden]) { display: block !important; }

/* ——— Industries / business verticals ——— */
.page-hero--industries {
  padding-top: 3.15rem;
  padding-bottom: 1.05rem;
}
.page-hero--industries .lead,
.page-hero--industries .hero-trust {
  max-width: 44rem;
}
.vert-glance { padding-top: 0.55rem; padding-bottom: 0.15rem; }
.vert-glance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.vert-glance-item {
  padding: 0.9rem 1rem 1rem;
}
.vert-glance-item.glass:hover {
  transform: none;
  cursor: default;
}
.vert-glance-label {
  margin: 0 0 0.3rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8d39a;
}
.vert-glance-item p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.vert-intro { padding-top: 1.35rem; }
.vert-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem 1.75rem;
  align-items: center;
}
.vert-intro-copy h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}
.vert-intro-copy p + p { margin-top: 0.75rem; }
.vert-intro-copy p { color: var(--text-muted); }
.vert-visual {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(34, 211, 238, 0.08), transparent 62%),
    #070b16;
}
.vert-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.vert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.vert-card {
  padding: 1.5rem 1.45rem 1.55rem;
  gap: 0.62rem;
}
.vert-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.vert-icon-wrap {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(5, 7, 15, 0.35);
}
.vert-card.glass:hover {
  transform: translateY(-3px);
  cursor: default;
  border-color: rgba(245, 197, 66, 0.24);
  box-shadow: 0 0 0 1px rgba(245, 197, 66, 0.06), 0 16px 34px rgba(0, 0, 0, 0.3);
}
.vert-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  opacity: 0.88;
}
.vert-card h3 {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  margin: 0.05rem 0 0;
  line-height: 1.3;
}
.vert-card > p:last-child {
  line-height: 1.6;
}
.vert-status {
  display: inline-flex;
  align-self: flex-start;
  margin: 0.15rem 0 0;
  padding: 0.16rem 0.52rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(5, 7, 15, 0.28);
}
.vert-status--focus {
  color: #e8d39a;
  border-color: rgba(245, 197, 66, 0.28);
}
.vert-status--current { color: #c9d5e6; }
.vert-status--expanding { color: #b7c4d6; }
.vert-status--developing { color: #9eacbf; }
.vert-status--future,
.vert-status--approvals { color: #8b99ad; }
.vert-secondary-section .section-header,
.vert-scope .section-header { max-width: 46rem; }
.vert-secondary-section .section-header h2 {
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
}
.vert-secondary {
  max-width: 36rem;
}
.vert-scope .faq-item { margin-top: 0.35rem; }
.vert-group-title {
  margin: 1.35rem 0 0.7rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.vert-group-title:first-of-type { margin-top: 0.35rem; }
.vert-journey-section .section-header { max-width: 46rem; }
.vert-journey-section .grid-2 { margin-bottom: 0.9rem; }
.vert-journey-section .card-list { margin-top: 0.75rem; }
.vert-journey {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.2rem;
  margin: 0;
  padding: 1.15rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 22, 40, 0.58), rgba(5, 7, 15, 0.35));
}
.vert-journey-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #e8eef8;
}
.vert-journey-icon {
  display: grid;
  place-items: center;
}
.vert-journey-icon .vert-icon {
  width: 15px;
  height: 15px;
}
.vert-journey-item:not(:last-child)::after {
  content: "";
  width: 22px;
  height: 1px;
  margin: 0 0.1rem 0 0.15rem;
  background: linear-gradient(90deg, rgba(245, 197, 66, 0.5), rgba(34, 211, 238, 0.28));
}
.vert-note {
  max-width: 42rem;
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  background: rgba(16, 22, 40, 0.45);
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
@media (max-width: 900px) {
  .page-hero--industries {
    padding-top: 2.35rem;
    padding-bottom: 0.55rem;
  }
  .vert-intro-grid { grid-template-columns: 1fr; }
  .vert-visual { max-width: 36rem; }
}
@media (max-width: 720px) {
  .vert-glance-grid { grid-template-columns: 1fr; }
  .vert-grid { grid-template-columns: 1fr; }
  .vert-journey {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem 1rem 0.4rem 1.15rem;
    border-left: 1px solid rgba(245, 197, 66, 0.22);
    border-radius: 0 12px 12px 0;
  }
  .vert-journey-item {
    position: relative;
    padding: 0.7rem 0 0.7rem 1rem;
  }
  .vert-journey-item:not(:last-child)::after { display: none; }
  .vert-journey-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.8;
    box-shadow: 0 0 8px rgba(245, 197, 66, 0.28);
  }
}
@media (prefers-reduced-motion: reduce) {
  .vert-card.glass:hover { transform: none; }
}

/* Day/night theme — Auto uses this computer’s local clock */
.theme-switch {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.theme-switch select {
  appearance: none;
  -webkit-appearance: none;
  max-width: 7.6rem;
  height: 36px;
  padding: 0 1.55rem 0 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background:
    var(--bg-card-solid)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2394a3b8' d='M1 1l5 5 5-5'/></svg>")
    no-repeat right 0.55rem center;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
}
.theme-switch select:hover,
.theme-switch select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 14px var(--glow);
}
.theme-switch select option,
.theme-switch select optgroup { color: #0b1220; }
@media (max-width: 860px) {
  .header-actions .theme-switch { display: flex; }
  .theme-switch select { max-width: 6.4rem; height: 34px; font-size: 0.8rem; padding-right: 1.4rem; }
}

html.theme-light {
  --bg: #f4f7fb;
  --bg-elev: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.88);
  --bg-card-solid: #ffffff;
  --border: rgba(15, 35, 70, 0.12);
  --border-strong: rgba(8, 145, 178, 0.38);
  --text: #0b1220;
  --text-muted: #3d4f66;
  --glow: rgba(8, 145, 178, 0.22);
  --glow-violet: rgba(99, 102, 241, 0.16);
  --glow-gold: rgba(180, 130, 20, 0.2);
}
html.theme-light a:hover { color: #0e7490; }
html.theme-light .skip-link { color: #f4f7fb; }
html.theme-light .site-header,
html.theme-light .site-header.is-scrolled {
  background: rgba(244, 247, 251, 0.9);
  box-shadow: 0 8px 28px rgba(15, 35, 70, 0.08);
}
html.theme-light .site-footer {
  background: rgba(255, 255, 255, 0.94);
}
html.theme-light .site-nav {
  background: rgba(255, 255, 255, 0.96);
}
html.theme-light .journal-search {
  background: #ffffff;
}
html.theme-light .journal-cat {
  border-color: rgba(15, 35, 70, 0.12);
  background: rgba(15, 35, 70, 0.04);
}
html.theme-light .support-note {
  color: #6b4e00;
}
html.theme-light .tool-purchase-clarity {
  color: var(--text);
}
html.theme-light body::before {
  background:
    radial-gradient(ellipse 90% 55% at 50% -25%, rgba(8, 145, 178, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 95% 20%, rgba(99, 102, 241, 0.07), transparent 50%),
    radial-gradient(ellipse 45% 35% at 5% 70%, rgba(34, 211, 238, 0.06), transparent 50%),
    radial-gradient(ellipse 40% 30% at 80% 85%, rgba(245, 197, 66, 0.05), transparent 55%);
}
html.theme-light body::after {
  opacity: 0.08;
}
