/* Aspyra landing — premium, Mac-first, PDF-Expert-style */

:root {
  --ink: #15161a;
  --ink-soft: #3b3d44;
  --muted: #6b6f76;
  --line: #e7e8ec;
  --bg: #ffffff;
  --bg-alt: #f5f6f8;
  --accent: #4f46e5;          /* indigo */
  --accent-dark: #4338ca;
  --accent-soft: #eef0ff;
  --gold: #f5a623;            /* Python-yellow wink */
  --green: #16a34a;
  --green-soft: #e7f6ec;
  --amber-soft: #fef3e2;
  --blue-soft: #e8f0ff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px -20px rgba(20, 22, 40, 0.28);
  --shadow-soft: 0 8px 30px -12px rgba(20, 22, 40, 0.18);
  --maxw: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1.02rem;
  border: none;
  border-radius: 999px;
  padding: 15px 26px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: .95rem; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px -8px rgba(79,70,229,.6); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 12px 26px -8px rgba(79,70,229,.7); }
.btn-primary:active { transform: translateY(0); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(231,232,236,.7);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-size: 1.45rem; font-weight: 700; letter-spacing: -.02em; }
.brand .py, .app-brand .py, .footer-brand .py { color: var(--accent); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 92px 0 40px; text-align: center; }
.hero-glow {
  position: absolute; inset: -20% 0 auto 0; height: 720px; z-index: -1;
  background:
    radial-gradient(600px 380px at 30% 8%, rgba(79,70,229,.18), transparent 60%),
    radial-gradient(560px 360px at 78% 4%, rgba(245,166,35,.14), transparent 60%),
    radial-gradient(700px 460px at 50% 0%, rgba(124,110,255,.12), transparent 65%);
  filter: blur(6px);
}
.eyebrow {
  display: inline-block;
  font-size: .9rem; font-weight: 600; letter-spacing: .02em;
  color: var(--accent); background: var(--accent-soft);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04; letter-spacing: -.035em; font-weight: 700;
  color: var(--ink); margin-bottom: 22px;
}
.lede {
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  color: var(--muted); max-width: 640px; margin: 0 auto 34px;
}

/* ---------- signup ---------- */
.signup { max-width: 520px; margin: 0 auto; }
.signup-center { margin: 0 auto; }
.js-waitlist { display: flex; gap: 10px; }
.js-waitlist input[type=email] {
  flex: 1; min-width: 0;
  font-family: var(--font); font-size: 1.02rem;
  padding: 15px 18px; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--ink); transition: border .2s, box-shadow .2s;
}
.js-waitlist input[type=email]:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.microcopy { font-size: .88rem; color: var(--muted); margin-top: 12px; }
.form-status.ok { color: var(--green); font-weight: 600; }
.form-status.err { color: #dc2626; font-weight: 600; }

/* ---------- mac window mockup ---------- */
.hero-visual { margin-top: 64px; perspective: 1600px; }
.mac-window {
  max-width: 940px; margin: 0 auto; text-align: left;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.mac-titlebar {
  display: flex; align-items: center; gap: 14px;
  height: 42px; padding: 0 16px;
  background: linear-gradient(#fbfbfd, #f1f2f5); border-bottom: 1px solid var(--line);
}
.dots { display: inline-flex; gap: 8px; }
.dots i { width: 12px; height: 12px; border-radius: 50%; display: block; }
.dots i:nth-child(1) { background: #ff5f57; }
.dots i:nth-child(2) { background: #febc2e; }
.dots i:nth-child(3) { background: #28c840; }
.mac-title { font-size: .9rem; color: var(--muted); font-weight: 600; }
.mac-body { display: grid; grid-template-columns: 210px 1fr; min-height: 420px; }

.app-sidebar { background: var(--bg-alt); border-right: 1px solid var(--line); padding: 20px 16px; display: flex; flex-direction: column; }
.app-brand { font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 22px; padding: 0 8px; }
.app-nav { display: flex; flex-direction: column; gap: 4px; }
.app-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; color: var(--ink-soft); font-weight: 500; font-size: .96rem; }
.app-nav a .ico { color: var(--muted); width: 16px; text-align: center; }
.app-nav a.active { background: #fff; color: var(--accent); box-shadow: var(--shadow-soft); }
.app-nav a.active .ico { color: var(--accent); }
.app-foot { margin-top: auto; font-size: .78rem; color: var(--muted); padding: 8px; }

.app-main { padding: 24px; }
.app-statrow { display: flex; gap: 14px; margin-bottom: 22px; }
.stat { flex: 1; background: var(--bg-alt); border-radius: var(--radius-sm); padding: 14px 16px; }
.stat b { display: block; font-size: 1.7rem; font-weight: 700; letter-spacing: -.02em; }
.stat span { font-size: .82rem; color: var(--muted); }

.app-list { display: flex; flex-direction: column; gap: 10px; }
.app-card { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: box-shadow .2s; }
.app-card:hover { box-shadow: var(--shadow-soft); }
.avatar { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 1.05rem; flex-shrink: 0; }
.a1 { background: #d97757; } .a2 { background: #5e6ad2; } .a3 { background: #14233c; } .a4 { background: #1e1e1e; } .a5 { background: #000; }
.meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.meta b { font-weight: 600; font-size: .98rem; }
.meta i { font-style: normal; color: var(--muted); font-size: .85rem; }

.pill { font-size: .76rem; font-weight: 600; padding: 6px 12px; border-radius: 999px; white-space: nowrap; }
.pill.ready { background: var(--accent-soft); color: var(--accent); }
.pill.tailoring { background: var(--blue-soft); color: #2563eb; }
.pill.submitted { background: var(--green-soft); color: var(--green); }
.pill.interview { background: var(--amber-soft); color: #c2740a; }

/* ---------- app mockup: faithful pipeline (top tabs) ---------- */
.app-shell { display: flex; flex-direction: column; min-height: 470px; background: #fff; }
.app-topbar { display: flex; align-items: center; gap: 20px; padding: 0 18px; height: 54px; border-bottom: 1px solid var(--line); background: #fff; }
.app-topbar .app-brand { font-size: 1.12rem; font-weight: 700; letter-spacing: -.02em; margin: 0; }
.app-tabs { display: flex; gap: 2px; min-width: 0; }
.app-tabs a { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 9px; color: var(--muted); font-weight: 500; font-size: .9rem; white-space: nowrap; }
.app-tabs a.active { color: var(--accent); background: var(--accent-soft); }
.app-tabs a em { font-style: normal; font-size: .7rem; font-weight: 700; background: #eceef2; color: var(--muted); padding: 1px 7px; border-radius: 999px; }
.app-tabs a.active em { background: #fff; color: var(--accent); }
.app-content { padding: 16px 18px 20px; background: var(--bg-alt); flex: 1; }
.app-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 12px; }
.seg { display: inline-flex; background: #eceef2; border-radius: 10px; padding: 3px; gap: 2px; }
.seg span { font-size: .79rem; font-weight: 500; color: var(--muted); padding: 6px 11px; border-radius: 8px; white-space: nowrap; }
.seg span.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-soft); }
.sortby { font-size: .79rem; color: var(--muted); white-space: nowrap; }
.pipe-list { display: flex; flex-direction: column; gap: 10px; }
.pipe-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 15px 16px; transition: box-shadow .2s; }
.pipe-card:hover { box-shadow: var(--shadow-soft); }
.pc-top { display: flex; align-items: center; gap: 13px; }
.pc-co { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.pc-co b { font-weight: 600; font-size: 1rem; }
.pc-co i { font-style: normal; color: var(--muted); font-size: .85rem; }
.pc-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pc-name { font-weight: 700; font-size: 1.06rem; letter-spacing: -.01em; color: var(--ink); }
.pc-role { color: var(--muted); font-size: .88rem; margin: 3px 0 0; }
.fit { font-size: .76rem; font-weight: 700; padding: 5px 10px; border-radius: 8px; white-space: nowrap; }
.fit.f-hi { background: var(--green-soft); color: var(--green); }
.fit.f-mid { background: var(--amber-soft); color: #c2740a; }
.pc-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.bdg { font-size: .73rem; font-weight: 500; color: #9aa0a8; background: var(--bg-alt); padding: 4px 9px; border-radius: 7px; white-space: nowrap; }
.bdg.ok { color: var(--green); background: var(--green-soft); }
/* app header (mirrors the real app: brand + meta + control, then tabs) */
.app-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line); background: #fff; gap: 12px; }
.app-brand-copy { display: flex; flex-direction: column; gap: 2px; }
.app-head .app-brand { font-size: 1.12rem; font-weight: 700; letter-spacing: -.02em; margin: 0; }
.app-meta { font-size: .76rem; color: var(--muted); }
.app-pill-ghost { font-size: .78rem; font-weight: 600; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; white-space: nowrap; }
.app-tabs { padding: 7px 12px; border-bottom: 1px solid var(--line); background: #fff; }

/* filled fields that actually look filled */
.filled.lines { padding: 10px 12px; }
.filled.lines i { display: block; height: 7px; border-radius: 4px; background: rgba(67,56,202,.30); margin-bottom: 7px; }
.filled.lines i:last-child { margin-bottom: 0; }
.lw90 { width: 90%; } .lw80 { width: 80%; } .lw60 { width: 60%; } .lw45 { width: 45%; }

/* auto-fill / auto-submit toggles */
.mini-review .review-head { color: var(--ink); font-size: .92rem; margin-bottom: 2px; }
.auto-stack { margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 11px; }
.auto-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: .9rem; color: var(--ink-soft); }
.auto-row.sync { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: .82rem; }
.toggle { font-size: .72rem; font-weight: 700; border-radius: 999px; padding: 4px 12px; background: var(--bg-alt); color: var(--muted); border: 1px solid var(--line); white-space: nowrap; }
.toggle.on { background: var(--accent); color: #fff; border-color: var(--accent); }

/* outreach mini */
.mini-outreach .oc-row { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.oc-av { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-weight: 700; font-size: .82rem; flex-shrink: 0; }
.oc-meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.oc-meta b { font-weight: 600; font-size: .95rem; }
.oc-meta i { font-style: normal; color: var(--muted); font-size: .82rem; }
.oc-ch { font-size: .72rem; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.oc-msg { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px; padding: 12px; margin-bottom: 10px; }
.oc-msg i { display: block; height: 7px; border-radius: 4px; background: rgba(67,56,202,.22); margin-bottom: 7px; }
.oc-msg i:last-child { margin-bottom: 0; }

/* mock-interview mini */
.mini-mock .mock-q { font-size: .95rem; font-weight: 600; color: var(--ink); background: var(--bg-alt); border-radius: 10px; padding: 12px 14px; margin-bottom: 14px; }
.mock-scores { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.ms-row { display: flex; align-items: center; gap: 12px; font-size: .84rem; color: var(--ink-soft); }
.ms-row > span:first-child { width: 72px; flex-shrink: 0; }
.ms-bar { flex: 1; height: 8px; background: #eceef2; border-radius: 999px; overflow: hidden; }
.ms-bar i { display: block; height: 100%; background: var(--accent); border-radius: 999px; }

/* "built for you, not the companies" + per-application workspace */
.foryou { padding: 100px 0; text-align: center; background: #fff; border-top: 1px solid var(--line); }
.foryou h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.12; letter-spacing: -.03em; margin-bottom: 18px; }
.foryou > .container > p { color: var(--muted); font-size: 1.14rem; max-width: 620px; margin: 0 auto 42px; }
.workspace { max-width: 620px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; text-align: left; }
.ws-head { font-size: .95rem; font-weight: 600; color: var(--ink); padding-bottom: 15px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.ws-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.ws-item { font-size: .92rem; font-weight: 500; color: var(--ink-soft); background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
@media (max-width: 560px) { .ws-grid { grid-template-columns: 1fr; } }

/* agents tab badge + agents mini */
.app-tabs a { padding: 8px 10px; }
.app-tabs a .prov { font-style: normal; font-size: .66rem; font-weight: 700; background: var(--accent-soft); color: var(--accent); padding: 1px 7px; border-radius: 999px; }
.mini-agents .ag-prov { display: inline-flex; background: #eceef2; border-radius: 10px; padding: 3px; gap: 2px; margin-bottom: 14px; }
.ag-opt { font-size: .84rem; font-weight: 600; color: var(--muted); padding: 6px 16px; border-radius: 8px; }
.ag-opt.active { background: #fff; color: var(--accent); box-shadow: var(--shadow-soft); }
.ag-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 2px; font-size: .9rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.ag-row:last-of-type { border-bottom: none; }
.ag-model { font-size: .78rem; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 4px 10px; border-radius: 8px; }
.mini-agents .ff-done { margin-top: 12px; }

/* auto-submit vs review = one either/or choice, not two toggles */
.auto-choice { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ac-label { font-size: .9rem; color: var(--ink-soft); }
.ac-seg { display: inline-flex; background: #eceef2; border-radius: 999px; padding: 3px; gap: 2px; }
.ac-seg span { font-size: .74rem; font-weight: 600; color: var(--muted); padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.ac-seg span.active { background: #fff; color: var(--accent); box-shadow: var(--shadow-soft); }

@media (max-width: 560px) {
  .app-head { flex-wrap: wrap; padding: 12px 14px; }
  .app-tabs { flex-wrap: wrap; }
  .app-toolbar { flex-direction: column; align-items: flex-start; }
  .seg { flex-wrap: wrap; }
}

/* ---------- manifesto ---------- */
.manifesto { padding: 110px 0; text-align: center; }
.manifesto p { font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.32; letter-spacing: -.02em; max-width: 880px; margin: 0 auto; color: var(--ink-soft); font-weight: 500; }
.manifesto strong { color: var(--ink); font-weight: 700; }

/* ---------- features ---------- */
.features { background: var(--bg-alt); padding: 30px 0 40px; }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--line); }
.feature:last-child { border-bottom: none; }
.feature.reverse .feature-text { order: 2; }
.feature-text h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.1; letter-spacing: -.03em; margin-bottom: 16px; }
.feature-text p { font-size: 1.12rem; color: var(--muted); max-width: 460px; }
.feature-visual { display: flex; justify-content: center; }

.mini { width: 100%; max-width: 380px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 22px; }
.mini-row { display: flex; align-items: center; gap: 10px; padding: 12px 4px; font-size: .96rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.mini-row:last-child { border-bottom: none; }
.mini-row.faint { color: #aab0b8; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #cdd2d9; flex-shrink: 0; }
.dot.g { background: var(--green); } .dot.a { background: var(--gold); }

.mini-cv .cv-line { height: 11px; border-radius: 6px; background: #eceef2; margin: 11px 0; }
.cv-line.w90 { width: 90%; } .cv-line.w80 { width: 80%; } .cv-line.w75 { width: 75%; } .cv-line.w70 { width: 70%; } .cv-line.w60 { width: 60%; }
.cv-tag { display: inline-block; background: var(--accent-soft); color: var(--accent); font-size: .8rem; font-weight: 600; padding: 6px 12px; border-radius: 8px; margin: 8px 0 14px; }

.mini-form .ff { margin-bottom: 14px; }
.mini-form label { display: block; font-size: .78rem; color: var(--muted); margin-bottom: 6px; }
.filled { display: block; background: var(--accent-soft); border: 1px solid #dcdcff; border-radius: 8px; padding: 9px 12px; font-size: .92rem; color: var(--accent-dark); font-weight: 600; }
.filled.tall { height: 38px; }
.ff-done { font-size: .82rem; color: var(--green); font-weight: 600; margin-top: 4px; }

.mini-review .review-head { font-size: .8rem; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.review-card { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; }
.review-card b { display: block; font-size: 1.05rem; }
.review-card i { font-style: normal; color: var(--muted); font-size: .88rem; display: block; margin-bottom: 14px; }
.review-btn { background: var(--accent); color: #fff; border: none; border-radius: 999px; padding: 10px 18px; font-weight: 600; font-size: .9rem; font-family: var(--font); cursor: pointer; }

.mini-inbox .inbox-row { display: flex; align-items: center; gap: 10px; padding: 13px 4px; font-size: .92rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.mini-inbox .inbox-row:last-child { border-bottom: none; }

/* ---------- pillars ---------- */
.pillars { padding: 110px 0; }
.pillars-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.pillar { text-align: center; }
.pillar-ico { width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 16px; background: linear-gradient(135deg, var(--accent), #7c6eff); box-shadow: 0 10px 24px -10px rgba(79,70,229,.7); }
.pillar h3 { font-size: 1.3rem; letter-spacing: -.02em; margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: 1.02rem; max-width: 300px; margin: 0 auto; }

/* ---------- final cta ---------- */
.cta { position: relative; overflow: hidden; text-align: center; padding: 120px 0; background: var(--ink); color: #fff; }
.cta-glow { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(79,70,229,.55), transparent 60%),
    radial-gradient(500px 280px at 80% 100%, rgba(245,166,35,.22), transparent 60%); }
.cta-inner { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -.03em; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,.72); font-size: 1.18rem; max-width: 520px; margin: 0 auto 32px; }
.cta .js-waitlist input[type=email] { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.cta .js-waitlist input[type=email]::placeholder { color: rgba(255,255,255,.5); }
.cta .js-waitlist input[type=email]:focus { border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.15); }
.cta .microcopy { color: rgba(255,255,255,.55); }

/* ---------- footer ---------- */
.footer { padding: 56px 0; text-align: center; background: var(--bg); border-top: 1px solid var(--line); }
.footer-brand { font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; }
.footer-tag { color: var(--muted); margin: 6px 0 18px; }
.footer-fine { font-size: .84rem; color: #9aa0a8; }
.footer-fine .wink { color: var(--accent); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; gap: 30px; padding: 56px 0; }
  .feature.reverse .feature-text { order: 0; }
  .feature-text p { max-width: none; }
  .pillars-inner { grid-template-columns: 1fr; gap: 48px; }
  .pillars { padding: 80px 0; }
  .manifesto { padding: 80px 0; }
}
@media (max-width: 560px) {
  .hero { padding: 64px 0 30px; }
  .js-waitlist { flex-direction: column; }
  .js-waitlist .btn { width: 100%; }
  .mac-body { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .app-statrow { flex-wrap: wrap; }
  .stat { min-width: 30%; }
}
