/* ===== hejbetty.ai marketing site — brand tokens lifted from App/styles.css
   ("Jobsite Aurora"). Kept deliberately small and dependency-free: no build
   step, no framework — mirrors the PWA's plain-HTML/CSS approach. ===== */
:root {
  --bg: #000000;
  --surface: #171A21;
  --surface-raised: rgba(23, 26, 33, 0.72);

  --primary: #4E8D76;
  --primary-deep: #3C6E5C;
  --primary-grad: linear-gradient(135deg, #4E8D76 0%, #3C6E5C 100%);

  --magic: #4E8D76;
  --magic-soft: rgba(78, 141, 118, 0.14);
  --magic-grad: linear-gradient(135deg, #74B49C 0%, #4E8D76 60%, #3C6E5C 100%);
  --magic-glow: 0 8px 28px rgba(78, 141, 118, 0.35);

  --text: #F4F6FA;
  --muted: #8A93A6;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);

  --radius-card: 14px;
  --radius-pill: 999px;

  --font: "SF Pro Text", "SF Pro", -apple-system, BlinkMacSystemFont,
          "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "SF Pro Display", "SF Pro", -apple-system,
                  BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;

  --ease: cubic-bezier(.2, .8, .2, 1);
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.1; }

/* ===== Wordmark ===== */
.wordmark, .footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  display: inline-flex;
  align-items: baseline;
}
.wordmark .hej, .footer-brand .hej { font-size: 0.82em; font-weight: 600; color: var(--muted); margin-right: 0.12em; }
.wordmark .betty, .footer-brand .betty { font-size: 1.12em; font-weight: 700; color: var(--text); }
.wordmark .dot, .footer-brand .dot { color: var(--magic); font-weight: 800; }
.wordmark .tld, .footer-brand .tld { color: var(--muted); font-weight: 500; letter-spacing: -0.02em; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--ease) 150ms, box-shadow var(--ease) 220ms, background 220ms;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary {
  background: var(--primary-grad);
  color: #fff;
  box-shadow: var(--magic-glow);
}
.btn--primary:hover { box-shadow: 0 10px 34px rgba(78, 141, 118, 0.5); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--magic); color: #fff; }
.btn--lg { font-size: 18px; padding: 16px 30px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color 150ms; }
.site-nav a:hover { color: var(--text); }
.site-nav .btn { color: var(--text); }

/* ===== Hero ===== */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 24px 64px;
  text-align: center;
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
  color: var(--magic);
  background: var(--magic-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin: 0 0 22px;
}
.hero h1 { font-size: clamp(34px, 7vw, 60px); margin: 0 0 20px; }
.grad {
  background: var(--magic-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede { font-size: clamp(17px, 2.4vw, 20px); color: var(--muted); margin: 0 auto 30px; max-width: 620px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-fine { color: var(--muted); font-size: 14px; margin-top: 18px; }

/* ===== Sections ===== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 24px;
}
.section--alt {
  max-width: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-title { font-size: clamp(26px, 4vw, 38px); text-align: center; margin: 0 0 44px; }

/* ===== Steps ===== */
.steps, .features {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.step, .feature {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px 24px;
}
.section--alt .feature { background: rgba(0, 0, 0, 0.35); }
.step-num {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--magic-soft);
  border: 1px solid var(--border-strong);
  color: var(--magic);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3, .feature h3 { font-size: 20px; margin: 0 0 8px; }
.step p, .feature p { color: var(--muted); margin: 0; font-size: 15.5px; }

/* ===== CTA ===== */
.cta {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 84px 24px;
  text-align: center;
}
.cta-inner {
  background: var(--magic-grad);
  border-radius: 24px;
  padding: 56px 28px;
  box-shadow: var(--magic-glow);
}
.cta h2 { font-size: clamp(28px, 5vw, 42px); margin: 0 0 8px; color: #fff; }
.cta p { color: rgba(255, 255, 255, 0.9); margin: 0 0 26px; font-size: 18px; }
.cta .btn--primary { background: #fff; color: var(--primary-deep); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }

/* ===== FAQ ===== */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 4px 22px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--magic);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.6;
}

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border); }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-nav { display: flex; gap: 22px; }
.footer-nav a { color: var(--muted); font-size: 15px; transition: color 150ms; }
.footer-nav a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: 14px; width: 100%; margin: 8px 0 0; }

@media (max-width: 640px) {
  .site-nav a:not(.btn) { display: none; }
  .hero { padding-top: 56px; }
}
