/* ============================================================================
   Argos Operating System — argos-os.com
   Design system. Dark, glassmorphic, premium. No dependencies beyond Google Fonts.
   Evolved from the argos-os.intelamation.net landing system.
   ============================================================================ */

:root {
  --bg: #030912;
  --bg-2: #06101e;
  --bg-3: #0a1628;
  --blue: #0070f3;
  --purple: #7c3aed;
  --cyan: #00d4ff;
  --green: #34d399;
  --text: #e6edf7;
  --muted: #9aa7bd;
  --muted-2: #6f7f96;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-strong: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(162, 184, 220, 0.10);
  --glass-border-strong: rgba(162, 184, 220, 0.18);
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  --grad: linear-gradient(135deg, #0070f3 0%, #7c3aed 60%, #00d4ff 100%);
  --grad-2: linear-gradient(135deg, #0070f3, #7c3aed);
  --container: 1180px;
  --space: clamp(64px, 9vw, 104px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--cyan); text-decoration: none; transition: color .15s ease; }
a:hover { color: #66e7ff; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.015em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.narrow { max-width: 820px; }

/* ---------- Background ---------- */
.bg-gradient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(0, 112, 243, 0.18), transparent 60%),
    radial-gradient(900px 500px at 100% 8%, rgba(124, 58, 237, 0.16), transparent 60%),
    radial-gradient(700px 400px at 50% 110%, rgba(0, 212, 255, 0.10), transparent 60%),
    linear-gradient(180deg, #030912 0%, #050e1c 100%);
}
.bg-orb { position: fixed; border-radius: 50%; filter: blur(80px); opacity: 0.4; z-index: 0; pointer-events: none; animation: drift 18s ease-in-out infinite; }
.bg-orb-1 { width: 420px; height: 420px; top: -100px; left: -100px; background: #0070f3; }
.bg-orb-2 { width: 360px; height: 360px; top: 32%; right: -120px; background: #7c3aed; animation-delay: -6s; }
.bg-orb-3 { width: 300px; height: 300px; bottom: -100px; left: 28%; background: #00d4ff; opacity: 0.22; animation-delay: -12s; }
@keyframes drift { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(20px,-30px,0); } }
@media (prefers-reduced-motion: reduce) { .bg-orb { animation: none; } html { scroll-behavior: auto; } }

/* ---------- Utility bar ---------- */
.utility {
  position: relative; z-index: 51;
  background: rgba(2, 6, 14, 0.85);
  border-bottom: 1px solid var(--glass-border);
  font-size: 12.5px; color: var(--muted);
}
.utility-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 7px 24px; flex-wrap: wrap; }
.utility-meta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.utility-meta .dot { color: var(--cyan); }
.utility-meta a { color: var(--text); font-weight: 600; }
.utility-actions { display: flex; gap: 18px; align-items: center; }
.utility-actions a { color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.utility-actions a:hover { color: var(--text); }
.utility-actions .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); display: inline-block; }
@media (max-width: 860px) { .utility-meta span:nth-child(n+2) { display: none; } }
@media (max-width: 620px) { .utility-actions a span.lbl { display: none; } }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); background: rgba(3, 9, 18, 0.72); border-bottom: 1px solid var(--glass-border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 13px 24px; max-width: var(--container); margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-mark { flex-shrink: 0; }
.brand-text { font-family: 'Fraunces', serif; font-weight: 600; font-size: 21px; letter-spacing: -0.01em; }
.brand-os { color: var(--cyan); font-weight: 500; margin-left: 5px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > a { color: var(--muted); font-size: 14.5px; font-weight: 500; }
.nav-links > a:hover, .nav-links > a.active { color: var(--text); }
.nav-cta { padding: 9px 16px !important; border-radius: var(--radius-pill); border: 1px solid var(--glass-border-strong); background: var(--glass-bg-strong); color: var(--text) !important; }
.nav-cta:hover { border-color: var(--cyan); }
.nav-right { display: flex; align-items: center; gap: 22px; }
/* Prominent, always-visible Argos Service login */
.nav-signin { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border-radius: var(--radius-pill); font-weight: 700; font-size: 15.5px; letter-spacing: 0.01em; background: var(--grad-2); color: #fff !important; border: 1px solid transparent; box-shadow: 0 6px 22px rgba(0, 112, 243, 0.42); white-space: nowrap; transition: transform .15s, box-shadow .15s, filter .15s; }
.nav-signin:hover { transform: translateY(-1px); filter: brightness(1.09); box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5); color: #fff !important; }
.nav-signin svg { width: 16px; height: 16px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-right { gap: 12px; }
  .nav-signin { padding: 9px 17px; font-size: 14.5px; }
  .nav-links { position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(4, 10, 20, 0.98); backdrop-filter: blur(20px); padding: 84px 24px 24px; transform: translateY(-100%);
    transition: transform .28s ease; height: 100vh; z-index: 49; }
  .nav-links.open { transform: translateY(0); }
  .nav-links > a { padding: 15px 4px; border-bottom: 1px solid var(--glass-border); font-size: 17px; }
  .nav-cta { margin-top: 16px; text-align: center; }
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px; border-radius: var(--radius-pill); font-weight: 600; font-size: 15px; border: 1px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .15s, border-color .15s, background .15s; font-family: inherit; }
.btn-primary { background: var(--grad-2); color: #fff !important; box-shadow: 0 8px 28px rgba(0, 112, 243, 0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(124, 58, 237, 0.45); }
.btn-ghost { background: var(--glass-bg-strong); color: var(--text) !important; border-color: var(--glass-border-strong); }
.btn-ghost:hover { border-color: var(--cyan); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; font-size: 16px; }

/* ---------- Sections / headings ---------- */
.section { padding: var(--space) 0; }
.section-tight { padding: calc(var(--space) * 0.6) 0; }
.eyebrow { display: inline-block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--cyan); padding: 6px 13px; border-radius: var(--radius-pill); border: 1px solid var(--glass-border); background: var(--glass-bg); margin-bottom: 20px; font-family: 'Manrope', sans-serif; font-weight: 600; }
.section-title { font-size: clamp(30px, 4vw, 46px); line-height: 1.1; margin: 0 0 14px; }
.section-sub { color: var(--muted); font-size: 17px; max-width: 720px; margin: 0 0 44px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.gradient-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Hero ---------- */
.hero { padding: clamp(64px, 9vw, 104px) 0 clamp(48px, 7vw, 80px); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-inner { max-width: 720px; }
.display { font-size: clamp(40px, 6.4vw, 74px); line-height: 1.04; letter-spacing: -0.022em; margin: 0 0 22px; }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); max-width: 680px; margin: 0 0 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 28px; }
.hero-meta { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); padding: 9px 15px; border-radius: var(--radius-pill); border: 1px solid var(--glass-border); background: var(--glass-bg); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); flex-shrink: 0; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); border: 1px solid var(--glass-border-strong); box-shadow: 0 30px 80px rgba(0,0,0,.55); aspect-ratio: 4/3.4; object-fit: cover; }
.hero-visual::after { content: ""; position: absolute; inset: -1px; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(0,112,243,.25), transparent 40%, rgba(0,212,255,.2)); pointer-events: none; mix-blend-mode: screen; }
/* Clickable trust chip below the hero image -> live /_trust verification */
.hero-trust { display: flex; align-items: center; gap: 13px; margin-top: 16px; padding: 13px 16px; background: var(--glass-bg-strong); border: 1px solid var(--glass-border-strong); border-radius: 14px; color: var(--text); transition: border-color .2s, transform .15s; position: relative; z-index: 2; }
.hero-trust:hover { border-color: var(--cyan); transform: translateY(-2px); color: var(--text); }
.hero-trust .hf-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--grad-2); display: grid; place-items: center; flex-shrink: 0; }
.hero-trust .hero-trust-txt { flex: 1; line-height: 1.32; }
.hero-trust .hero-trust-txt strong { display: block; font-size: 14px; font-family: 'Manrope', sans-serif; }
.hero-trust .hero-trust-txt > span { font-size: 11.5px; color: var(--muted); }
.hero-trust .arrow { color: var(--cyan); font-weight: 700; transition: transform .15s; }
.hero-trust:hover .arrow { transform: translateX(4px); }
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .hero-visual { display: none; } }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-split { grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } .grid-split { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card { position: relative; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 26px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: border-color .2s, transform .2s, background .2s; color: var(--text); }
.card:hover { border-color: var(--glass-border-strong); background: var(--glass-bg-strong); }
a.card:hover { transform: translateY(-3px); }
.card h3 { font-size: 22px; margin: 14px 0 7px; }
.card p { color: var(--muted); margin: 0; font-size: 15px; }
.card-icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, rgba(0,112,243,0.18), rgba(124,58,237,0.18)); border: 1px solid var(--glass-border-strong); color: var(--cyan); }
.card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.tagline { font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cyan); margin-bottom: 9px; font-weight: 600; }
.module { display: flex; flex-direction: column; }
.module-soon .tagline { color: #c4a8ff; }
.module .card-link { margin-top: 16px; font-size: 14px; color: var(--cyan); font-weight: 600; }
.module-soon .card-link { color: var(--muted); }
.arrow { display: inline-block; transition: transform .15s; }
a.card.module:hover .arrow { transform: translateX(4px); }
.replaces { font-size: 12.5px; color: var(--muted-2); margin-top: 12px; }
.replaces b { color: var(--muted); font-weight: 600; }

/* ---------- Badges ---------- */
.badge { display: inline-block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; padding: 5px 10px; border-radius: var(--radius-pill); border: 1px solid var(--glass-border-strong); }
.badge-live { color: var(--green); border-color: rgba(52, 211, 153, 0.35); background: rgba(52, 211, 153, 0.08); }
.badge-soon { color: #c4a8ff; border-color: rgba(124, 58, 237, 0.35); background: rgba(124, 58, 237, 0.12); }
.badge-beta { color: var(--cyan); border-color: rgba(0, 212, 255, 0.35); background: rgba(0, 212, 255, 0.08); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 28px 18px; }
.stat-num { font-family: 'Fraunces', serif; font-size: clamp(34px, 4.5vw, 52px); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--muted); font-size: 14px; margin-top: 10px; }
@media (max-width: 680px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Built different ---------- */
.diff { display: flex; flex-direction: column; gap: 20px; }
.diff-item { display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: start; padding: 30px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); backdrop-filter: blur(12px); }
.diff-num { font-family: 'Fraunces', serif; font-size: 56px; line-height: 1; background: var(--grad-2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.diff-body h3 { font-size: 24px; margin: 0 0 9px; }
.diff-body p { color: var(--muted); margin: 0; font-size: 16px; }
@media (max-width: 640px) { .diff-item { grid-template-columns: 1fr; gap: 8px; } .diff-num { font-size: 42px; } }

/* ---------- Pricing ---------- */
.tier { display: flex; flex-direction: column; }
.tier-name { font-family: 'Fraunces', serif; font-size: 23px; font-weight: 600; margin-bottom: 6px; }
.tier-price { font-size: 18px; color: var(--muted); margin-bottom: 22px; }
.tier-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.tier-list li { font-size: 15px; color: var(--text); padding-left: 26px; position: relative; }
.tier-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--grad-2); }
.tier-featured { border-color: rgba(0, 212, 255, 0.35); background: linear-gradient(180deg, rgba(0,112,243,0.08), rgba(124,58,237,0.08)); box-shadow: 0 10px 40px rgba(0,112,243,0.18); }
.tier-badge { position: absolute; top: -12px; left: 26px; background: var(--grad-2); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--radius-pill); }

/* ---------- Feature split (image + text) ---------- */
.split-img { border-radius: var(--radius-lg); border: 1px solid var(--glass-border-strong); box-shadow: var(--shadow); aspect-ratio: 16/11; object-fit: cover; }
.split-body h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 16px; line-height: 1.12; }
.checklist { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 13px; }
.checklist li { position: relative; padding-left: 32px; color: var(--text); font-size: 15.5px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: rgba(52,211,153,0.14); border: 1px solid rgba(52,211,153,0.5); }
.checklist li::after { content: ""; position: absolute; left: 7px; top: 8px; width: 6px; height: 10px; border: solid var(--green); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ---------- Pills / partners ---------- */
.pill-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { padding: 9px 17px; border-radius: var(--radius-pill); border: 1px solid var(--glass-border); background: var(--glass-bg); font-size: 14px; color: var(--text); }
.logo-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.logo-cell { padding: 18px; text-align: center; border: 1px solid var(--glass-border); border-radius: 12px; background: var(--glass-bg); color: var(--muted); font-weight: 600; font-size: 14px; }
@media (max-width: 760px) { .logo-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA card ---------- */
.cta-card { text-align: center; padding: 58px 32px; border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(0,112,243,0.10), rgba(124,58,237,0.10)); border: 1px solid var(--glass-border-strong); backdrop-filter: blur(12px); }
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 10px; }

/* ---------- Status tiles ---------- */
.status-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.status-tile { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border: 1px solid var(--glass-border); border-radius: 12px; background: var(--glass-bg); }
.status-tile .ok { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); flex-shrink: 0; }
.status-tile strong { font-size: 15px; display: block; font-family: 'Manrope', sans-serif; }
.status-tile span { font-size: 12.5px; color: var(--muted); }
@media (max-width: 760px) { .status-tiles { grid-template-columns: 1fr; } }

/* ---------- Contact form ---------- */
.form-card { padding: clamp(26px, 4vw, 40px); }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.field input, .field textarea, .field select { font: inherit; color: var(--text); background: rgba(0,0,0,0.25); border: 1px solid var(--glass-border-strong); border-radius: 11px; padding: 12px 14px; width: 100%; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,112,243,0.25); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-status { margin-top: 14px; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--green); } .form-status.err { color: #fb7185; }

/* ---------- Prose (legal / long-form) ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 26px; margin: 38px 0 14px; }
.prose h3 { font-size: 19px; margin: 26px 0 10px; font-family: 'Manrope', sans-serif; font-weight: 700; }
.prose p, .prose li { color: var(--muted); font-size: 15.5px; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--cyan); }
.prose strong { color: var(--text); }
.page-head { padding: 56px 0 8px; }
.page-head h1 { font-size: clamp(34px, 5vw, 52px); margin: 14px 0 10px; }
.page-head .updated { color: var(--muted-2); font-size: 13.5px; }

/* ---------- Footer ---------- */
.footer { padding: 60px 0 36px; border-top: 1px solid var(--glass-border); margin-top: 40px; position: relative; z-index: 1; background: rgba(2, 6, 14, 0.5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr; gap: 36px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-tagline { color: var(--muted); font-size: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--glass-border); display: grid; place-items: center; color: var(--muted); }
.footer-social a:hover { color: var(--text); border-color: var(--cyan); }
.footer-col h4 { font-family: 'Manrope', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin: 0 0 14px; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--glass-border); color: var(--muted-2); font-size: 13px; }
.footer-bottom .powered a { color: var(--muted); font-weight: 600; }
.footer-bottom .powered a:hover { color: var(--cyan); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(2) { transition-delay: .08s; }
.stagger.visible > *:nth-child(3) { transition-delay: .16s; }
.stagger.visible > *:nth-child(4) { transition-delay: .24s; }
.stagger.visible > *:nth-child(5) { transition-delay: .32s; }
.stagger.visible > *:nth-child(6) { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) { .reveal, .stagger > * { opacity: 1 !important; transform: none !important; } }
