/* airoom.dev — flat colors only, no gradients, ever. */
:root {
  --bg: #0b0e14;
  --panel: #10141d;
  --line: #1e2635;
  --text: #e8edf6;
  --text-dim: #9fb0c9;
  --text-mute: #5f6d8c;
  --accent: #5eead4;
  --accent2: #38bdf8;
  --font-display: 'Chakra Petch', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent2); text-decoration: none; }

/* ---- nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 14, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.5px;
}
.logo__tld { color: var(--text-mute); font-weight: 500; }

/* ---- buttons ---- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #06251f;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 12px 26px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn:hover { background: #7df3e1; transform: translateY(-1px); }
.btn--small { padding: 8px 18px; font-size: 13.5px; }

/* ---- hero ---- */
.hero {
  max-width: 1060px;
  margin: 0 auto;
  padding: 84px 24px 30px;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.5px;
}
.accent { color: var(--accent); }
.hero__sub {
  max-width: 640px;
  margin: 22px auto 0;
  color: var(--text-dim);
  font-size: 18px;
}
.hero__cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__note {
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ---- live demo window ---- */
.demo {
  margin: 56px auto 0;
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.demo__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.demo__dot { width: 11px; height: 11px; border-radius: 50%; }
.demo__dot--r { background: #f16a5d; }
.demo__dot--y { background: #f5bf4f; }
.demo__dot--g { background: #57c353; }
.demo__title {
  margin-left: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-mute);
  text-transform: uppercase;
}
#office {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

/* ---- features ---- */
.features {
  max-width: 1060px;
  margin: 90px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
}
.card__icon { font-size: 22px; margin-bottom: 12px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.card p { color: var(--text-dim); font-size: 14.5px; }

/* ---- how ---- */
.how {
  max-width: 1060px;
  margin: 100px auto 0;
  padding: 0 24px;
  text-align: center;
}
.how h2, .privacy h2, .waitlist h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
}
.steps {
  list-style: none;
  max-width: 560px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
}
.steps li { display: flex; gap: 18px; align-items: flex-start; }
.steps li div { color: var(--text-dim); font-size: 15px; }
.steps li strong { color: var(--text); font-family: var(--font-display); font-size: 16px; }
.steps__n {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* ---- privacy ---- */
.privacy {
  max-width: 680px;
  margin: 100px auto 0;
  padding: 0 24px;
  text-align: center;
}
.privacy p { margin-top: 16px; color: var(--text-dim); }
.privacy code {
  font-size: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1px 7px;
  color: var(--accent);
}

/* ---- waitlist ---- */
.waitlist {
  max-width: 560px;
  margin: 100px auto;
  padding: 40px 28px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.waitlist p { margin-top: 12px; color: var(--text-dim); font-size: 15px; }
.download__cta { margin-top: 26px; }
.download__meta {
  margin-top: 14px !important;
  font-family: var(--font-display);
  font-size: 12.5px !important;
  letter-spacing: 0.6px;
  color: var(--text-mute) !important;
}
.download__meta a { color: var(--text-dim); text-decoration: underline; }

/* ---- footer ---- */
.footer {
  border-top: 1px solid var(--line);
  padding: 26px 24px 34px;
  text-align: center;
  color: var(--text-mute);
  font-size: 13.5px;
}
.footer__sep { margin: 0 10px; }

/* secondary call to action, beside the download button */
.btn--ghost {
  background: none;
  border: 2px solid var(--accent, #5eead4);
  color: var(--accent, #5eead4);
}
.btn--ghost:hover {
  background: rgba(94, 234, 212, 0.1);
}

/* ---- price ---- */
.price {
  max-width: 420px;
  margin: 42px auto 0;
  padding: 26px 24px;
  border: 2px solid var(--line, #202736);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}
.price__tag {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  font-family: 'Chakra Petch', monospace;
  line-height: 1;
  color: var(--accent, #5eead4);
}
.price__cur {
  font-size: 24px;
  margin-top: 6px;
}
.price__n {
  font-size: 62px;
  font-weight: 700;
  letter-spacing: -2px;
}
.price__what {
  margin: 6px 0 18px;
  font-size: 13px;
  letter-spacing: 0.4px;
  opacity: 0.7;
}
.price__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: left;
  font-size: 14px;
}
.price__list li::before {
  content: '▪';
  color: var(--accent, #5eead4);
  margin-right: 9px;
}
.price__fine {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.6;
}
