/* Armchair Mogul — marketing site. Dark, minimal, modern; shares the app's
   teal→blue gradient on near-black so the site and product feel like one thing. */
:root {
  --bg: #0b0e14;
  --bg2: #131822;
  --bg3: #1b2230;
  --line: #232b3a;
  --txt: #e7edf5;
  --dim: #8a96a8;
  --accent: #6e8bff;
  --accent2: #38e0c4;
  --grad: linear-gradient(120deg, #38e0c4, #6e8bff);
  --radius: 16px;
  --maxw: 1120px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg); color: var(--txt);
  -webkit-font-smoothing: antialiased; line-height: 1.55;
  overflow-x: hidden;
}
/* ambient gradient glows */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(620px 480px at 12% -6%, rgba(56,224,196,.13), transparent 70%),
    radial-gradient(700px 560px at 92% 4%, rgba(110,139,255,.15), transparent 70%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: 11px; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s, background .2s; white-space: nowrap; }
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--grad); color: #06121a; box-shadow: 0 8px 30px rgba(56,224,196,.18); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(56,224,196,.28); }
.btn-ghost { background: rgba(255,255,255,.03); border-color: var(--line); color: var(--txt); }
.btn-ghost:hover { border-color: var(--accent2); transform: translateY(-2px); }
.btn-lg { padding: 15px 26px; font-size: 16px; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px);
  background: rgba(11,14,20,.72); border-bottom: 1px solid rgba(255,255,255,.05); }
.nav .wrap { display: flex; align-items: center; gap: 22px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; letter-spacing: .2px; }
.brand .logo { width: 30px; height: 30px; display: inline-flex; }
.brand .logo svg { width: 100%; height: 100%; }
.nav-links { display: flex; gap: 26px; margin-left: 18px; }
.nav-links a { color: var(--dim); font-size: 14.5px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--txt); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-cta .gh { color: var(--dim); display: inline-flex; align-items: center; gap: 7px; font-size: 14px; }
.nav-cta .gh:hover { color: var(--txt); }

/* ---------- hero ---------- */
.hero { padding: 76px 0 30px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--accent2); background: rgba(56,224,196,.08); border: 1px solid rgba(56,224,196,.22);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 26px; letter-spacing: .2px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent2); box-shadow: 0 0 0 4px rgba(56,224,196,.18); }
.hero h1 { font-size: clamp(38px, 6vw, 68px); line-height: 1.04; letter-spacing: -1.6px; font-weight: 800; margin-bottom: 22px; }
.hero p.sub { font-size: clamp(17px, 2.2vw, 21px); color: var(--dim); max-width: 660px; margin: 0 auto 34px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--dim); display: inline-flex; align-items: center; gap: 8px; }
.hero-note svg { width: 15px; height: 15px; color: var(--accent2); }

/* ---------- app mockup ---------- */
.showcase { margin: 56px auto 0; max-width: 980px; position: relative; }
.showcase::after { content: ''; position: absolute; inset: -1px; border-radius: 18px; pointer-events: none;
  background: linear-gradient(120deg, rgba(56,224,196,.5), rgba(110,139,255,.5)); -webkit-mask:
    linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; padding: 1px; opacity: .5; }
.appwin { background: var(--bg2); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.6); }
.appwin-top { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.015); }
.appwin-top .am { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; }
.appwin-top .am .logo { width: 18px; height: 18px; display: inline-flex; }
.appwin-top .pill { margin-left: auto; font-size: 11px; color: var(--accent2); background: rgba(56,224,196,.1);
  border: 1px solid rgba(56,224,196,.2); padding: 3px 10px; border-radius: 999px; }
.appwin-body { display: grid; grid-template-columns: 168px 1fr; min-height: 340px; }
.appwin-main { display: flex; flex-direction: column; min-width: 0; }
.appwin-side { border-right: 1px solid var(--line); padding: 14px 12px; background: rgba(0,0,0,.12); }
.appwin-side .sh { font-size: 10px; letter-spacing: 1px; color: var(--dim); margin-bottom: 12px; }
.appwin-side .v { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--dim); padding: 7px 8px; border-radius: 8px; margin-bottom: 4px; }
.appwin-side .v.on { color: var(--txt); background: var(--bg3); }
.appwin-side .v .d { width: 7px; height: 7px; border-radius: 50%; background: var(--accent2); flex: none; }
.appwin-side .v.off .d { background: #3a4456; }
/* phase bar — the venture's real lifecycle (Idea → Sell) */
.phasebar { display: flex; align-items: center; gap: 8px; padding: 12px 16px 0; flex-wrap: wrap; }
.phasebar .ph { font-size: 10.5px; font-weight: 700; letter-spacing: .4px; color: var(--dim);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 11px; white-space: nowrap; }
.phasebar .ph.done { color: var(--accent2); border-color: rgba(56,224,196,.35); }
.phasebar .ph.now { color: #06121a; background: var(--grad); border-color: transparent; }
.phasebar i { flex: none; width: 10px; height: 1px; background: var(--line); }

.board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 14px 16px; flex: 1; }
.bcol { background: rgba(255,255,255,.018); border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.bcol h4 { font-size: 10.5px; letter-spacing: .8px; text-transform: uppercase; color: var(--dim); margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; gap: 6px; }
.bcol h4 span { margin-left: auto; }
.bcol h4 .kebab { font-weight: 800; font-style: normal; color: var(--dim); cursor: default; line-height: 1; }
.bcard { background: var(--bg3); border: 1px solid var(--line); border-radius: 9px; padding: 9px 10px; margin-bottom: 8px; }
.bcard .cid { font-size: 10px; font-weight: 700; color: var(--dim); display: flex; align-items: center; gap: 6px; }
.bcard .cid .who { margin-left: auto; width: 14px; height: 14px; color: var(--accent2); display: inline-flex; }
.bcard .ct { font-size: 12px; color: var(--txt); margin-top: 4px; line-height: 1.35; }
.bcard.glow { border-color: var(--accent2); box-shadow: 0 0 0 3px rgba(56,224,196,.12); }
.bcard.dim .ct { color: var(--dim); font-size: 11.5px; }
.bcard .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent2); box-shadow: 0 0 0 3px rgba(56,224,196,.16); }
.bcard .who.you { color: var(--accent); }

/* live activity line (the app's "what am I doing right now") */
.liveline { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--txt);
  border-top: 1px solid var(--line); padding: 11px 16px; background: rgba(0,0,0,.12); }
.liveline .ld { width: 8px; height: 8px; border-radius: 50%; background: var(--accent2); flex: none;
  box-shadow: 0 0 0 3px rgba(56,224,196,.18); animation: livepulse 2.2s ease-in-out infinite; }
.liveline em { margin-left: auto; font-style: normal; color: var(--dim); font-size: 11px; }
@keyframes livepulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(56,224,196,.18); } 50% { box-shadow: 0 0 0 6px rgba(56,224,196,.06); } }

/* floating Skills panel — overlaps the app window's lower-right corner */
.skillfloat { position: absolute; right: -18px; bottom: -34px; width: 250px;
  background: var(--bg2); border: 1px solid rgba(56,224,196,.3); border-radius: 14px; padding: 13px 14px;
  box-shadow: 0 24px 70px rgba(0,0,0,.55); }
.skillfloat .sf-head { font-size: 10px; letter-spacing: 1px; font-weight: 700; color: var(--dim); margin-bottom: 9px; }
.skillfloat .sf-row { display: flex; align-items: center; gap: 10px; padding: 8px 9px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--bg3); }
.skillfloat .sf-row + .sf-row { margin-top: 8px; }
.skillfloat .sf-main { min-width: 0; }
.skillfloat .sf-main b { display: block; font-size: 12.5px; }
.skillfloat .sf-main small { display: block; font-size: 10.5px; color: var(--dim); margin-top: 1px; }
.skillfloat .sf-run { margin-left: auto; flex: none; font-size: 11px; font-weight: 800; color: #06121a;
  background: var(--grad); border-radius: 999px; padding: 4px 11px; }

/* ---------- generic section ---------- */
section.block { padding: 92px 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.sec-head .kicker { font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--accent2); margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -1px; font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.sec-head p { color: var(--dim); font-size: 17px; }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { background: var(--bg2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px;
  transition: transform .18s ease, border-color .18s; }
.feature:hover { transform: translateY(-4px); border-color: rgba(56,224,196,.35); }
.feature .ic { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(56,224,196,.1); border: 1px solid rgba(56,224,196,.2); margin-bottom: 16px; }
.feature .ic svg { width: 22px; height: 22px; color: var(--accent2); }
.feature h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.2px; }
.feature p { color: var(--dim); font-size: 14.5px; line-height: 1.6; }

/* "also in the box" chip strip */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.chip { font-size: 12.5px; font-weight: 600; color: var(--dim); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 15px; background: rgba(255,255,255,.02); }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; background: var(--bg2); border: 1px solid var(--line); border-radius: var(--radius); }
.step .n { font-size: 13px; font-weight: 800; color: #06121a; background: var(--grad); width: 30px; height: 30px;
  border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -.2px; }
.step p { color: var(--dim); font-size: 14.5px; }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 820px; margin: 0 auto; }
.plan { background: var(--bg2); border: 1px solid var(--line); border-radius: 20px; padding: 32px 30px; display: flex; flex-direction: column; }
.plan.pro { border-color: rgba(56,224,196,.4); position: relative; background:
  linear-gradient(180deg, rgba(56,224,196,.05), transparent 40%), var(--bg2); }
.plan .tag { position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 700; letter-spacing: .6px;
  color: #06121a; background: var(--grad); padding: 4px 11px; border-radius: 999px; }
.plan .pname { font-size: 14px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
.plan .price { font-size: 44px; font-weight: 800; letter-spacing: -1.5px; line-height: 1; }
.plan .price small { font-size: 16px; font-weight: 600; color: var(--dim); letter-spacing: 0; }
.beta-pill { display: inline-block; font-size: 18px; font-weight: 800; letter-spacing: -.3px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-beta { font-size: 10px; font-weight: 800; letter-spacing: 1px; color: var(--accent2); border: 1px solid rgba(56,224,196,.4); border-radius: 999px; padding: 2px 7px; vertical-align: middle; margin-left: 2px; }
.plan .pdesc { color: var(--dim); font-size: 14.5px; margin: 12px 0 22px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan li { display: flex; gap: 11px; font-size: 14.5px; color: var(--txt); align-items: flex-start; }
.plan li svg { width: 18px; height: 18px; color: var(--accent2); flex: none; margin-top: 1px; }
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ---------- faq ---------- */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--bg2); border: 1px solid var(--line); border-radius: 14px; padding: 0 22px; }
.faq details[open] { border-color: rgba(56,224,196,.3); }
.faq summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 12px;
  font-size: 15.5px; font-weight: 600; padding: 18px 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; margin-left: auto; font-size: 20px; font-weight: 500; color: var(--dim); transition: transform .18s ease; }
.faq details[open] summary::after { transform: rotate(45deg); color: var(--accent2); }
.faq details p { color: var(--dim); font-size: 14.5px; line-height: 1.65; padding: 0 0 20px; }
.faq details p b { color: var(--txt); }

/* ---------- download ---------- */
.download { text-align: center; }
.dl-card { background:
  linear-gradient(120deg, rgba(56,224,196,.08), rgba(110,139,255,.08)), var(--bg2);
  border: 1px solid var(--line); border-radius: 24px; padding: 56px 32px; }
.dl-card h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -1px; margin-bottom: 14px; font-weight: 800; }
.dl-card p { color: var(--dim); font-size: 17px; max-width: 520px; margin: 0 auto 30px; }
.dl-os { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.dl-os .btn { min-width: 168px; justify-content: center; }
.dl-beta { font-size: 10px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--dim); border: 1px solid var(--line); border-radius: 999px; padding: 1px 7px; margin-left: 2px; }
.dl-soon { opacity: .45; cursor: not-allowed; pointer-events: none; }
.dl-fine { margin-top: 20px; font-size: 13px; color: var(--dim); line-height: 1.8; }
.dl-fine b { color: var(--txt); font-weight: 600; }
.dl-all { color: var(--accent2); text-decoration: underline; text-underline-offset: 3px; }
.dl-all:hover { color: var(--txt); }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0; margin-top: 40px; }
footer .wrap { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
footer .brand { font-size: 14px; }
footer .brand .logo { width: 24px; height: 24px; }
footer .fnote { color: var(--dim); font-size: 13px; }
footer .flinks { margin-left: auto; display: flex; gap: 22px; }
footer .flinks a { color: var(--dim); font-size: 13.5px; }
footer .flinks a:hover { color: var(--txt); }

/* ---------- quality floor ---------- */
:focus-visible { outline: 2px solid var(--accent2); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .skillfloat { position: static; width: auto; margin-top: 14px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .features, .steps { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .appwin-body { grid-template-columns: 1fr; }
  .appwin-side { display: none; }
  .board { grid-template-columns: 1fr 1fr; }
  section.block { padding: 66px 0; }
}
@media (max-width: 540px) {
  .board { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 10px; }
  .liveline em { display: none; }
}
