/* FlowNest marketing site — shared styles (sacred-minimal, mobile-first) */
:root {
  --bg: #0a0f1e;
  --bg-card: #0f1b2d;
  --gold: #c9a85c;
  --sand: #e8d5b7;
  --ink: rgba(232, 213, 183, 0.72);
  --ink-dim: rgba(232, 213, 183, 0.45);
  --line: rgba(201, 168, 92, 0.18);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.75;
  font-size: 16px;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
/* Nav */
nav { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(10,15,30,.92); backdrop-filter: blur(12px); z-index: 50; }
.nav-inner { max-width: 960px; margin: 0 auto; padding: .9rem 1.5rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.brand { color: var(--gold); font-weight: 400; letter-spacing: .15em; font-size: 1.05rem; }
.brand:hover { text-decoration: none; }
.nav-links { display: flex; gap: 1.1rem; flex-wrap: wrap; font-size: .8rem; margin-left: auto; align-items: center; }
.nav-links a { color: rgba(232, 213, 183, 0.68); }
.nav-links a:hover { color: var(--sand); text-decoration: none; }
@media (max-width: 640px) {
  .nav-inner { padding: .7rem 1rem; gap: .6rem; flex-wrap: nowrap; }
  .nav-links { gap: .9rem; font-size: .74rem; margin-left: auto; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; white-space: nowrap; }
  .nav-links::-webkit-scrollbar { display: none; }
}
.btn { display: inline-block; padding: .8rem 1.8rem; border-radius: 999px; border: 1px solid rgba(201,168,92,.4); background: rgba(201,168,92,.1); color: var(--gold); font-size: .85rem; letter-spacing: .08em; transition: all .3s; }
.btn:hover { background: rgba(201,168,92,.22); text-decoration: none; }
.btn-sm { padding: .45rem 1.1rem; font-size: .75rem; }
/* Type */
h1 { color: var(--sand); font-weight: 300; font-size: clamp(1.9rem, 5vw, 2.8rem); line-height: 1.2; letter-spacing: .01em; margin: 2.5rem 0 1.2rem; }
h2 { color: var(--sand); font-weight: 300; font-size: 1.35rem; margin: 3rem 0 1rem; }
h3 { color: var(--gold); font-weight: 400; font-size: 1.05rem; margin: 2rem 0 .6rem; }
p, li { margin-bottom: 1rem; }
ul, ol { padding-left: 1.4rem; }
.lede { font-size: 1.12rem; color: var(--sand); }
.dim { color: var(--ink-dim); font-size: .85rem; }
.eyebrow { color: rgba(201,168,92,.55); font-size: .72rem; letter-spacing: .35em; text-transform: uppercase; margin-top: 3rem; }
/* Cards */
.card { background: rgba(15,27,45,.55); border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem 1.6rem; margin: 1.4rem 0; }
.card h3 { margin-top: 0; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .grid2 { grid-template-columns: 1fr; } }
.exercise { border-color: rgba(201,168,92,.35); background: rgba(201,168,92,.05); }
.note { border-left: 2px solid var(--line); padding: .3rem 0 .3rem 1rem; font-size: .85rem; color: var(--ink-dim); margin: 1.5rem 0; }
/* Forms */
input, select, textarea { width: 100%; background: rgba(10,15,30,.8); border: 1px solid var(--line); border-radius: 12px; padding: .85rem 1rem; color: var(--sand); font-family: inherit; font-size: .95rem; margin-bottom: 1rem; }
input:focus, select:focus, textarea:focus { outline: none; border-color: rgba(201,168,92,.5); }
label { display: block; font-size: .8rem; color: var(--ink-dim); margin-bottom: .35rem; letter-spacing: .05em; }
/* Footer */
footer { border-top: 1px solid var(--line); margin-top: 5rem; padding: 2.5rem 0 3.5rem; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between; font-size: .8rem; color: var(--ink-dim); }
footer a { color: rgba(232, 213, 183, 0.66); display: block; margin-bottom: .4rem; }
footer a:hover { color: var(--sand); }
.hero { text-align: center; padding: 4.5rem 0 1rem; }
.hero .star { font-size: 2.2rem; color: var(--gold); display: inline-block; margin-bottom: 1rem; }
.center { text-align: center; }
.steps { counter-reset: step; }
.steps .card { position: relative; padding-left: 3.4rem; }
.steps .card::before { counter-increment: step; content: counter(step); position: absolute; left: 1.2rem; top: 1.4rem; width: 1.6rem; height: 1.6rem; border-radius: 50%; border: 1px solid rgba(201,168,92,.4); color: var(--gold); font-size: .8rem; display: flex; align-items: center; justify-content: center; }
.hidden { display: none; }
table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .9rem; }
th, td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--line); }
th { color: var(--gold); font-weight: 400; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
