/* Waylight landing — Mercury-inspired: calm, restrained, one accent, copy first. */

:root {
  --paper: #faf9f7;
  --paper-tint: #f1efe9;
  --ink: #16181d;
  --ink-soft: #565b66;
  --line: #e5e2da;
  --accent: #4a5fc1;
  --accent-deep: #3c4da3;
  --ink-section: #14161c;
  --ink-section-text: #c9cdd6;
  --ink-section-head: #f4f5f7;
  --shell: 1080px;
  --radius: 10px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", "Didot", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 24px;
}

.shell.narrow { max-width: 760px; }

/* ---------- Type ---------- */

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 600; }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 5.75rem);
  letter-spacing: -0.01em;
  line-height: 1.04;
  font-weight: 550;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.5vw, 3.6rem);
  letter-spacing: -0.005em;
  line-height: 1.1;
  font-weight: 550;
  margin-bottom: 1.5rem;
}
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

p { color: var(--ink-soft); }
h1 + p, h2 + p { max-width: 62ch; }
em { font-style: italic; }
strong { color: var(--ink); }

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  max-width: 56ch;
  margin: 2rem 0 2.75rem;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 64px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0;
  color: var(--ink);
  text-decoration: none;
}

.site-nav { display: flex; gap: 1.75rem; margin-right: auto; }

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.site-nav a:hover { color: var(--ink); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }

.btn-ghost { color: var(--ink); }
.btn-ghost:hover { color: var(--accent); }

.cta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ---------- Sections ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 160px;
  background: #171c29;
}

.hero h1 { color: var(--ink-section-head); }
.hero .lede { color: var(--ink-section-text); }
.hero .eyebrow { color: #8d9dea; }
.hero .btn-ghost { color: var(--ink-section-head); }
.hero .btn-ghost:hover { color: #8d9dea; }

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.hero .shell { position: relative; z-index: 1; }

.section { padding: 110px 0; border-top: 1px solid var(--line); }

.section-tint { background: var(--paper-tint); }

.section-ink {
  background: var(--ink-section);
  border-top: none;
}

.section-ink h2 { color: var(--ink-section-head); }
.section-ink h3 { color: var(--ink-section-head); font-size: 1.1rem; }
.section-ink p { color: var(--ink-section-text); }
.section-ink .eyebrow { color: #8d9dea; }

/* ---------- How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--paper-tint);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ---------- Trust ---------- */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  margin-top: 5rem;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-section-head);
  max-width: 30ch;
  line-height: 1.3;
}

/* ---------- CTA ---------- */

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}

.calendly-inline-widget { margin-bottom: 2rem; }

.contact-line { color: var(--ink); font-weight: 500; }
.contact-line a { color: var(--accent); text-decoration: none; }
.contact-line a:hover { text-decoration: underline; }
.contact-note { margin-top: 0.5rem; font-size: 0.9375rem; }

/* ---------- FAQ ---------- */

details {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
}

details:last-of-type { border-bottom: 1px solid var(--line); }

summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 400;
}

details[open] summary::after { content: "–"; }

details p { margin-top: 0.75rem; max-width: 62ch; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-muted { color: var(--ink-soft); font-size: 0.9375rem; }
.footer-muted a { color: var(--ink-soft); }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .steps, .trust-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .hero { padding: 88px 0 100px; }
  .section { padding: 76px 0; }
  h1 br, h2 br { display: none; }
}
