/* ── TurnQueue Shared Marketing Styles (site.css) ───────────────── */

/* 1. FOUNDATION & RESET */
:root {
  --white: #ffffff;
  --card: #F5F5F4;
  --ink: #0C0C0C;
  --ink-2: #404040;
  --ink-3: #909090;
  --border: #E8E8E7;
  --green: #166534;
  --green-bg: #F0FDF4;
  --accent: #b24826;
  --font-h: 'Jost', sans-serif;
  --font-b: 'Manrope', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, canvas, svg {
  max-width: 100%;
  height: auto;
}

/* 2. TYPOGRAPHY */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}

h1 {
  font-family: var(--font-h);
  font-size: clamp(34px, 3.5vw, 58px);
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--ink);
  font-weight: 500;
}

h2 {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--ink);
}

.sec-p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 500px;
}

/* 3. SHELL COMPONENTS */
.w {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.hdr {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav { display: flex; gap: 24px; }
.nav a {
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.12s;
}
.nav a:hover { color: var(--ink); }

/* 4. BUTTONS & NOTES */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.12s, transform 0.1s;
}

.btn-cta:hover { opacity: 0.85; }
.btn-cta:active { transform: scale(0.98); }

.hero-note, .price-foot {
  font-size: 13px;
  color: var(--ink-3);
  display: block;
}

/* 5. FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px;
  background: var(--card);
}

.ftr {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ftr-logo {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.ftr-links {
  display: flex;
  gap: 24px;
}

.ftr-links a {
  font-size: 14px;
  color: var(--ink-3);
  text-decoration: none;
}

.ftr-links a:hover { color: var(--ink); }

/* ── Mobile Logic ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header { padding: 0 16px; }
  .w { padding: 0 20px; }
  .site-footer { padding: 48px 20px; }
  .ftr { flex-direction: column; text-align: center; }
  .ftr-links { flex-direction: column; gap: 12px; }
}
