/* GENERATED FILE — do not edit. Source: src/styles/. Rebuild: npm run build */
/* Flashbag — shared site stylesheet (GENERATED-ADJACENT: edit this file, not the
   built assets/css/site.css). Design tokens, reset, typography, buttons, header,
   use-cases dropdown, mobile menu and footer — everything all four pages share.
   Page-specific rules live in src/styles/pages/<page>.css and load after this. */

/* -------------------------------------------------------------- Design tokens */
:root {
  --bg: #fafaf7;
  --bg-warm: #f5f2ec;
  --white: #ffffff;
  --ink: #1e1919;
  --ink-2: #4a4744;
  --muted: #6b6763;
  --blue: #0061ff;
  --blue-2: #004fd6;
  --blue-soft: #eaf1ff;
  --orange: #f97316;
  --orange-2: #fb923c;
  --yellow: #fbbf24;
  --yellow-soft: #fef3c7;
  --border: #e8e4dd;
  --border-strong: #d9d4cb;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(30, 25, 25, .04), 0 1px 3px rgba(30, 25, 25, .06);
  --shadow-md: 0 12px 32px rgba(30, 25, 25, .08), 0 4px 10px rgba(30, 25, 25, .04);
  --shadow-lg: 0 40px 80px rgba(30, 25, 25, .12), 0 12px 24px rgba(30, 25, 25, .06);
  --green: #16a34a;
  --green-soft: #dcfce7;
  --ink-3: #6b6763;
  --purple: #7c3aed;
  --purple-soft: #ede9fe;
}

/* -------------------------------------------------------------- Reset & base */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* -------------------------------------------------------------- Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .16);
}
.h1-hl {
  background: linear-gradient(to bottom, transparent 52%, #fde047 52%);
  padding: 0 5px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.page-head {
  padding: 96px 0 48px;
  text-align: center;
}
h1 {
  font-size: clamp(40px, 4.9vw, 66px);
  line-height: 1.05; letter-spacing: -0.03em;
  font-weight: 800; margin: 0 0 20px; color: var(--ink);
}
.page-head p.lede {
  font-size: 19px; color: var(--ink-2);
  max-width: 56ch; margin: 0 auto; line-height: 1.55;
}

/* -------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--blue);
  color: white !important;
  font-weight: 600;
  font-size: 15px;
  transition: background .18s ease, transform .12s ease, box-shadow .2s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--blue-2); }
.btn .arrow {
  display: inline-flex;
  transition: transform .18s ease;
}
.btn:hover .arrow { transform: translateX(3px); }
.btn.lg { padding: 16px 30px; font-size: 16px; }
.btn.ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--border-strong);
}
.btn.ghost:hover { border-color: var(--ink); background: transparent; }
.btn.full { width: 100%; justify-content: center; }
.btn.disabled {
  background: var(--bg-warm); color: var(--muted) !important;
  cursor: not-allowed; border: 1px solid var(--border);
}
.btn.disabled:hover { background: var(--bg-warm); }

/* -------------------------------------------------------------- Header / navigation */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, .9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
header.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;   /* explicit shorthand: do not rely on .container */
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand img {
  width: 36px; height: 36px;
  border-radius: 9px;
}
.brand-group { display: flex; align-items: flex-start; gap: 8px; }
.version-pill {
  display: inline-flex; align-items: center;
  padding: 3px 9px;
  background: var(--ink);
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin-top: 6px;
  transition: background .18s ease, transform .12s ease;
  white-space: nowrap;
}
.version-pill:hover { background: #000000; transform: translateY(-1px); }
.nav-primary {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-right: auto;
  margin-left: 24px;
}
.nav-primary a {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.nav-primary a:hover { color: var(--blue); }
.nav-utility {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-utility a {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.nav-utility a:hover { color: var(--blue); }
.nav-hamburger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
  background: var(--white);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: background .18s ease, border-color .18s ease;
}
.nav-hamburger:hover { background: var(--bg-warm); }
.nav-hamburger svg { width: 20px; height: 20px; color: var(--ink); }
.nav-hamburger .icon-close { display: none; }
.nav-hamburger[aria-expanded="true"] .icon-open { display: none; }
.nav-hamburger[aria-expanded="true"] .icon-close { display: inline-flex; }
.nav-primary .has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-primary .has-dropdown .chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  opacity: 0.8;
  transition: transform .25s ease;
  margin-left: 2px;
}
.nav-primary .has-dropdown .chevron svg {
  width: 100%; height: 100%;
}
.nav-primary .has-dropdown[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}
.nav-primary a.active { color: var(--blue); }

/* -------------------------------------------------------------- Use-cases dropdown */
.nav-dropdown {
  position: fixed;
  top: 73px;
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(15, 23, 42, .1);
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .28s cubic-bezier(.22,.7,.22,1), transform .28s cubic-bezier(.22,.7,.22,1), visibility .28s;
  z-index: 45;
}
.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-dropdown-eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px 10px;
}
.nav-dropdown-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  transition: background .15s ease;
  align-items: flex-start;
  text-decoration: none;
}
.nav-dropdown-item:hover { background: var(--bg); }
.nav-dropdown-item .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.nav-dropdown-item .icon svg { width: 22px; height: 22px; }
.ic-blue   { background: #0061ff;  color: #ffffff; }
.ic-yellow { background: #fbbf24;  color: #0b1e3f; }
.ic-orange { background: #f97316;  color: #ffffff; }
.ic-black  { background: #0b1e3f;  color: #fbbf24; }
.nav-dropdown-item .item-body { min-width: 0; }
.nav-dropdown-item .title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.nav-dropdown-item .desc {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
  font-weight: 500;
}
.nav-dropdown-item.explore-all { border: 1px dashed var(--border-strong); }
.nav-dropdown-item.explore-all:hover { border-style: solid; background: var(--white); }
.nav-dropdown-item.explore-all .icon { background: var(--ink); color: white; font-weight: 800; }
.nav-dropdown-item.explore-all .title { color: var(--ink); }
.nav-backdrop {
  position: fixed;
  top: 73px;
  left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, .52);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s;
  z-index: 40;
  pointer-events: none;
}
.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* -------------------------------------------------------------- Mobile menu */
.mobile-menu {
  position: fixed;
  top: 73px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(15, 23, 42, .1);
  padding: 20px 24px 28px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .28s cubic-bezier(.22,.7,.22,1), transform .28s cubic-bezier(.22,.7,.22,1), visibility .28s;
  z-index: 45;
  display: none;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu-links {
  display: flex; flex-direction: column;
  margin-bottom: 20px;
}
.mobile-menu-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px;
  font-size: 17px; font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-menu-links a:last-child { border-bottom: none; }
.mobile-menu-links a:active { color: var(--blue); }
.mobile-menu .btn { width: 100%; justify-content: center; padding: 15px 24px; font-size: 16px; }

/* -------------------------------------------------------------- Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  font-size: 14px;
  color: var(--muted);
  background: var(--bg);
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.foot-links { display: flex; gap: 24px; }
.foot-links a:hover { color: var(--blue); }
.foot-legal { text-align: right; }
.foot-legal .entity { margin-top: 4px; opacity: 0.8; }

/* -------------------------------------------------------------- Motion utilities */
.reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.985);
  transition: opacity 1.05s cubic-bezier(.22, .7, .22, 1), transform 1.05s cubic-bezier(.22, .7, .22, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
.reveal-children > * {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.985);
  transition: opacity .95s cubic-bezier(.22, .7, .22, 1), transform .95s cubic-bezier(.22, .7, .22, 1);
  will-change: opacity, transform;
}
.reveal-children.is-visible > * { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
.reveal-children.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-children.is-visible > *:nth-child(2) { transition-delay: .1s; }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: .2s; }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: .3s; }
.reveal-children.is-visible > *:nth-child(5) { transition-delay: .4s; }
.reveal-children.is-visible > *:nth-child(6) { transition-delay: .5s; }

/* -------------------------------------------------------------- Responsive */
@media (max-width: 900px) {
  .nav-primary { display: none; }
  .nav-utility a:not(.btn) { display: none; }
  .nav-utility .btn { display: none; }
  .nav-hamburger { display: inline-flex !important; }
  .mobile-menu { display: block; }
  .foot-legal { text-align: left; }
  .nav-dropdown-grid { grid-template-columns: 1fr 1fr !important; }
  .foot-inner {
      flex-direction: column !important;
      align-items: flex-start !important;
      justify-content: flex-start !important;
      gap: 24px !important;
    }
  .foot-links {
      flex-direction: column !important;
      gap: 14px !important;
      width: 100%;
    }
}

@media (max-width: 560px) {
  .nav-dropdown-grid { grid-template-columns: 1fr !important; }
}

@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(12px); animation: fadeUp .7s ease forwards; }
  .fade-up.delay-1 { animation-delay: .08s; }
  .fade-up.delay-2 { animation-delay: .16s; }
  .fade-up.delay-3 { animation-delay: .24s; }
  @keyframes fadeUp { to { opacity: 1; transform: none; } }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-children > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}
