/* ============================================================
   SafetyIQ — whsiq.com landing
   Pure HTML+CSS, no JS, no build step.
   Theme: dark premium with aurora accents.
   ============================================================ */

:root {
  /* Surfaces */
  --bg-0: #060912;
  --bg-1: #0a0f1f;
  --bg-2: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.55);
  --bg-card-solid: #0f172a;

  /* Ink */
  --ink: #f8fafc;
  --ink-2: #cbd5e1;
  --muted: #94a3b8;

  /* Lines */
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.32);

  /* Brand */
  --accent: #22d3ee;          /* electric cyan */
  --accent-2: #10b981;        /* emerald — keeps continuity with prior brand */
  --accent-3: #a855f7;        /* deep violet for accents */
  --accent-hover: #06b6d4;

  /* Status */
  --danger: #f87171;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  --maxw: 1180px;

  --font-ui: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI",
             Roboto, "Helvetica Neue", Arial, sans-serif;

  --shadow-card:
    0 20px 60px -20px rgba(2, 6, 23, 0.85),
    0 6px 20px -8px rgba(34, 211, 238, 0.10);
  --shadow-glow:
    0 30px 80px -20px rgba(2, 6, 23, 0.85),
    0 12px 40px -8px rgba(168, 85, 247, 0.18);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font: 16px/1.55 var(--font-ui);
  color: var(--ink);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 160ms ease;
}
a:hover { color: var(--accent-hover); }

.container {
  max-width: var(--maxw);
  padding: 0 24px;
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   Aurora background (sits behind everything, fixed)
   ============================================================ */
.bg-aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 15% 5%,  rgba(34, 211, 238, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 25%, rgba(168, 85, 247, 0.13), transparent 60%),
    radial-gradient(ellipse 70% 60% at 50% 95%, rgba(16, 185, 129, 0.10), transparent 60%),
    linear-gradient(180deg, #060912 0%, #0a0f1f 50%, #060912 100%);
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.aurora-blob-1 {
  width: 560px; height: 560px; left: -160px; top: -180px;
  background: radial-gradient(circle, #22d3ee 0%, transparent 70%);
  animation: drift1 22s ease-in-out infinite alternate;
}
.aurora-blob-2 {
  width: 520px; height: 520px; right: -180px; top: 28%;
  background: radial-gradient(circle, #a855f7 0%, transparent 70%);
  animation: drift2 26s ease-in-out infinite alternate;
}
.aurora-blob-3 {
  width: 480px; height: 480px; left: 30%; bottom: -200px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  animation: drift3 24s ease-in-out infinite alternate;
}

@keyframes drift1 { from { transform: translate(0,0) scale(1); }   to { transform: translate(60px, 80px) scale(1.10); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1); }   to { transform: translate(-90px, 50px) scale(1.05); } }
@keyframes drift3 { from { transform: translate(0,0) scale(1); }   to { transform: translate(40px, -70px) scale(1.08); } }

.aurora-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 80%);
}

/* All real content sits above the aurora */
.nav, main, .footer, .foot { position: relative; z-index: 1; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(6, 9, 18, 0.6);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  position: sticky; top: 0; z-index: 50;
}
.nav__row {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 19px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.24);
  box-shadow: 0 4px 18px -6px rgba(34, 211, 238, 0.5);
}
.brand-text {
  background: linear-gradient(120deg, #f8fafc 0%, #22d3ee 50%, #a855f7 110%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.nav nav { display: flex; gap: 22px; align-items: center; }
.nav nav a {
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 160ms ease;
}
.nav nav a:hover { color: var(--ink); }
@media (max-width: 720px) {
  .nav nav a:not(.cta) { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #051024;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: linear-gradient(120deg, #22d3ee 0%, #10b981 60%, #a855f7 130%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  box-shadow:
    0 8px 24px -6px rgba(34, 211, 238, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 120ms ease, box-shadow 200ms ease, background-position 400ms ease;
}
.cta:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
  text-decoration: none;
  color: #051024;
  box-shadow:
    0 12px 32px -6px rgba(168, 85, 247, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.cta svg { transition: transform 200ms ease; }
.cta:hover svg { transform: translateX(2px); }
.cta--small { padding: 8px 14px; font-size: 13.5px; }
.cta--big { padding: 16px 26px; font-size: 16px; }

.cta--ghost {
  background: rgba(15, 23, 42, 0.6);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.cta--ghost:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(34, 211, 238, 0.5);
  color: var(--ink);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 88px 0 96px;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 60px;
  align-items: center;
}
.hero__copy { animation: rise 700ms cubic-bezier(.2,.7,.2,1) both; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.28);
  color: #67e8f9;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 8px #22d3ee;
  animation: pulse 1.8s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 1.05;
  margin: 0 0 22px;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.grad-text {
  background: linear-gradient(120deg, #22d3ee 0%, #10b981 50%, #a855f7 110%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: shimmer 9s linear infinite;
}

.lede {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.small { color: var(--muted); font-size: 13.5px; margin: 0; }

/* ---- Hero product mockup ---- */
.hero__visual {
  position: relative;
  height: 460px;
  animation: rise 700ms 120ms cubic-bezier(.2,.7,.2,1) both;
}
.mock {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.mock--desktop {
  top: 12px; left: 0; right: 60px;
  height: 320px;
  animation: float-d 8s ease-in-out infinite alternate;
}
.mock--phone {
  bottom: 0; right: 0;
  width: 198px;
  height: 380px;
  border-radius: 32px;
  padding: 12px 10px;
  animation: float-p 7s ease-in-out infinite alternate;
}

.mock__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.6);
}
.mock__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(148,163,184,0.35); }
.mock__dot:nth-child(1) { background: #f87171; }
.mock__dot:nth-child(2) { background: #fbbf24; }
.mock__dot:nth-child(3) { background: #34d399; }
.mock__url {
  margin-left: auto;
  font-size: 11.5px;
  color: var(--muted);
  font-family: ui-monospace, Consolas, monospace;
}
.mock__body { padding: 18px 20px; }
.mock__row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.mock__chip {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 999px;
}
.mock__title { font-size: 14px; font-weight: 600; color: var(--ink); }

.mock__stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.mock__stat {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}
.mock__stat-num {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mock__stat-lbl {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.mock__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.mock__bar {
  flex: 1;
  height: var(--w);
  background: linear-gradient(180deg, #22d3ee, #10b981);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}

/* Phone mock */
.mock__phone-notch {
  width: 60px; height: 5px;
  margin: 0 auto 8px;
  background: rgba(0,0,0,0.6);
  border-radius: 99px;
}
.mock__phone-screen {
  background: rgba(6, 9, 18, 0.8);
  border-radius: 22px;
  padding: 14px 12px;
  height: calc(100% - 12px);
  border: 1px solid var(--line);
}
.mock__phone-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.mock__phone-back { color: var(--muted); font-size: 18px; }
.mock__phone-h { font-size: 13px; font-weight: 600; }
.mock__sync {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #34d399;
}
.mock__sync-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #34d399; box-shadow: 0 0 6px #34d399;
}
.mock__field {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 8px;
}
.mock__field-lbl {
  display: block;
  font-size: 9.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mock__field-val {
  display: block;
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  margin-top: 2px;
}
.mock__check {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  font-size: 11.5px;
  color: #6ee7b7;
  margin-bottom: 6px;
}
.mock__check-box {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: #10b981;
  color: #051024;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.mock__btn {
  margin-top: 10px;
  text-align: center;
  padding: 10px;
  background: linear-gradient(120deg, #22d3ee, #10b981);
  color: #051024;
  font-weight: 700;
  font-size: 12.5px;
  border-radius: 8px;
}

@keyframes float-d { from { transform: translateY(0); } to { transform: translateY(-10px); } }
@keyframes float-p { from { transform: translateY(0); } to { transform: translateY(8px); } }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { height: 420px; max-width: 460px; margin: 0 auto; }
  .mock--desktop { right: 40px; }
}
@media (max-width: 540px) {
  .hero { padding: 56px 0 64px; }
  .hero__visual { display: none; }
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 9, 18, 0.5);
}
.trust__lede {
  text-align: center;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
.trust__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.trust__item {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.trust__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--line-strong);
}

/* ============================================================
   Stats
   ============================================================ */
.stats { padding: 56px 0; }
.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.stat__num {
  display: block;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #22d3ee, #10b981);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.stat__num--symbol {
  background: linear-gradient(120deg, #a855f7, #22d3ee);
  -webkit-background-clip: text;
          background-clip: text;
}
.stat__pct, .stat__suffix {
  font-size: 0.5em;
  font-weight: 700;
  margin-left: 2px;
}
.stat__lbl {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .stats__row { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Section primitives
   ============================================================ */
.section { padding: 88px 0; }
.section--muted {
  background: rgba(6, 9, 18, 0.55);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--alt { background: rgba(15, 23, 42, 0.35); }

.section__title {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.section__lede {
  margin: 0 0 36px;
  color: var(--ink-2);
  font-size: 16px;
  max-width: 640px;
}

/* Generic section h2 (used by simple sections like beta perks) */
.section h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

/* ============================================================
   Cards / How-it-works grid
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 880px) { .grid--3 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.4), rgba(168, 85, 247, 0.18) 50%, transparent 80%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.32);
  box-shadow:
    0 30px 70px -20px rgba(2, 6, 23, 0.9),
    0 0 0 1px rgba(34, 211, 238, 0.15);
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.10);
  border: 1px solid rgba(34, 211, 238, 0.28);
  color: #67e8f9;
  margin-bottom: 18px;
}
.card h3 {
  font-size: 18px; font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.card p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }

/* ============================================================
   Feature list
   ============================================================ */
.feature-list, .plain {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 760px) { .feature-list { grid-template-columns: 1fr; } }

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: border-color 200ms ease, transform 200ms ease;
}
.feature-list li:hover {
  border-color: rgba(34, 211, 238, 0.32);
  transform: translateY(-2px);
}
.feature-list strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}
.feature-list span {
  display: block;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.55;
}
.feat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(168, 85, 247, 0.08));
  border: 1px solid rgba(34, 211, 238, 0.24);
  font-size: 16px;
  line-height: 1;
}

/* Plain list (beta perks) */
.plain li {
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: 14.5px;
  position: relative;
  padding-left: 44px;
}
.plain li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22d3ee, #10b981);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.4);
}
.plain li::after {
  content: "✓";
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translateY(-50%);
  color: #051024;
  font-size: 11px;
  font-weight: 800;
}

/* ============================================================
   Contact CTA section
   ============================================================ */
.contact-section {
  padding: 96px 0;
}
.contact-card {
  text-align: center;
  padding: 56px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.12), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(168, 85, 247, 0.12), transparent 50%);
  pointer-events: none;
}
.contact-card > * { position: relative; }
.contact-card .section__title { margin-bottom: 14px; }
.contact-card p {
  color: var(--ink-2);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 30px;
}

/* ============================================================
   Footer (.footer used by index, .foot used by download/join)
   ============================================================ */
.footer, .foot {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: rgba(6, 9, 18, 0.6);
  color: var(--muted);
  font-size: 13.5px;
}
.footer__row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer nav, .foot nav { display: flex; gap: 18px; }
.footer a, .foot a { color: var(--ink-2); }
.footer a:hover, .foot a:hover { color: var(--ink); }
.foot p { margin: 4px 0; }

/* ============================================================
   Privacy page (.prose)
   ============================================================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  position: relative;
  z-index: 1;
}
.prose h1 {
  font-size: clamp(30px, 4vw, 40px);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #f8fafc, #22d3ee);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.prose h2 {
  font-size: 22px;
  margin: 36px 0 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.prose h3 {
  font-size: 17px;
  margin: 26px 0 8px;
  color: var(--ink);
}
.prose p, .prose li { color: var(--ink-2); line-height: 1.65; }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { padding-left: 22px; }
.prose hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 32px 0;
}
.prose code {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--line);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 13.5px;
  color: #67e8f9;
  font-family: ui-monospace, Consolas, monospace;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.prose th, .prose td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.prose th { color: var(--ink); font-weight: 600; background: rgba(15, 23, 42, 0.4); }

/* ============================================================
   Download page (.steps, .req-table, .hint)
   ============================================================ */
.steps {
  counter-reset: step;
  padding: 0;
  list-style: none;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 60px;
  margin-bottom: 24px;
  line-height: 1.65;
  color: var(--ink-2);
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #22d3ee, #10b981);
  color: #051024;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 6px 20px -6px rgba(34, 211, 238, 0.5);
}
.steps li ul { margin-top: 8px; padding-left: 20px; }
.steps strong { color: var(--ink); }
.steps em { color: var(--accent); font-style: normal; }

.req-table {
  width: 100%;
  max-width: 680px;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.req-table th, .req-table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  font-size: 14.5px;
  color: var(--ink-2);
}
.req-table th {
  width: 140px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.req-table tr + tr th, .req-table tr + tr td {
  border-top: 1px solid var(--line);
}

.hint {
  color: var(--muted);
  font-size: 13.5px;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer { from { background-position: 0% 0; } to { background-position: 200% 0; } }
@keyframes pulse  { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .aurora-blob, .grad-text, .pill-dot, .mock--desktop, .mock--phone,
  .hero__copy, .hero__visual { animation: none !important; }
  .cta { transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Small-screen tightening
   ============================================================ */
@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .contact-section { padding: 64px 0; }
  .contact-card { padding: 36px 22px; }
}
