/* ============================================================
   Ethos Ink HQ — marketing site styles (vanilla CSS, no framework)
   Ported from the approved "A Dossier" design handoff.
   Palette: plum-taupe ground, plum-dark ink, burnt-orange accent,
   lime highlighter (the Ethos Ink family pop).
   Type: Bricolage Grotesque · IBM Plex Sans · JetBrains Mono.
   ============================================================ */

:root {
  --cream:        #fdfaf2;
  --plum-taupe:   #efe5e7;   /* page background */
  --warm-white:   #fff8f5;
  --mock-canvas:  #faf6ef;
  --plum-dark:    #321f29;   /* dark sections, text, primary btn */
  --orange:       #ad3e12;
  --lime:         #dbe85a;
  --ink-92:       rgba(50, 31, 41, 0.92);
  --ink-82:       rgba(50, 31, 41, 0.82);
  --ink-74:       rgba(50, 31, 41, 0.74);
  --ink-50:       rgba(50, 31, 41, 0.5);
  --ink-45:       rgba(50, 31, 41, 0.45);
  --hairline:     rgba(50, 31, 41, 0.1);
  --card-border:  rgba(50, 31, 41, 0.13);

  --display: 'Bricolage Grotesque', sans-serif;
  --sans:    'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;
}

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

html, body { margin: 0; padding: 0; background: var(--plum-taupe); }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--plum-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hq-wrap {
  background: var(--plum-taupe);
  color: var(--plum-dark);
  max-width: 1320px;
  margin: 0 auto;
  overflow: clip;
}

/* ============================================================
   Shared helpers
   ============================================================ */
.hq-pad { padding: 84px 56px; }
.hq-divider { border-top: 1px solid var(--hairline); }
.hq-italic { font-style: italic; }
.hq-lime-text { color: var(--lime); }
.hq-orange-text { color: var(--orange); }
.hq-cream-text { color: var(--cream); }

.hq-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hq-eyebrow-orange { color: var(--orange); }
.hq-eyebrow-lime { color: var(--lime); }
.hq-eyebrow-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 999px;
  margin-right: 12px;
  vertical-align: middle;
}

.hq-h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 84px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 18ch;
  text-wrap: pretty;
}
.hq-h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
}

/* The signature lime highlighter stripe */
.hq-mark {
  background: linear-gradient(180deg, transparent 61%, var(--lime) 61% 90%, transparent 90%);
  padding: 0 0.08em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Numbered nav markers */
.hq-num { font-family: var(--mono); font-size: 10px; color: var(--ink-45); }

/* ============================================================
   Buttons / pills / cards (interactive)
   ============================================================ */
.hq-cta {
  transition: transform .15s ease, box-shadow .25s ease;
  text-decoration: none;
}
.hq-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 28px -14px rgba(50, 31, 41, 0.45); }

.hq-pill {
  font-family: var(--mono);
  font-size: 12px;
  padding: 8px 13px;
  border: 1px solid rgba(253, 250, 242, 0.3);
  border-radius: 999px;
  color: var(--cream);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.hq-pill:hover { transform: translateY(-2px); background: var(--lime); border-color: var(--plum-dark); color: var(--plum-dark); }

.hq-card { transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease; }
.hq-card:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -26px rgba(50, 31, 41, 0.4); border-color: rgba(50, 31, 41, 0.28); }

/* Animated nav link underline */
.hq-link { position: relative; }
.hq-link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -3px;
  height: 1.5px; background: var(--orange); transition: right .3s ease;
}
.hq-link:hover::after { right: 0; }

/* Dotted grain overlay for dark / orange sections */
.hq-grain { position: relative; }
.hq-grain::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1.4px);
  background-size: 22px 22px; opacity: 0.6;
}
.hq-grain > * { position: relative; z-index: 1; }

@keyframes hqpulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ============================================================
   Nav
   ============================================================ */
.hq-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px; position: sticky; top: 0; z-index: 50;
  background: rgba(239, 229, 231, 0.86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.hq-wordmark {
  display: inline-flex; align-items: baseline; gap: 9px;
  font-family: var(--display); font-size: 23px; font-weight: 500;
  letter-spacing: -0.01em; color: var(--plum-dark); text-decoration: none;
}
.hq-wm-hq {
  position: relative; display: inline-block;
  font-family: var(--mono); font-size: 23px; font-weight: 600; letter-spacing: 0.08em;
}
.hq-wm-hq-txt { position: relative; z-index: 1; }
.hq-wm-hq-bar {
  position: absolute; left: -3px; right: -3px; bottom: 2px; height: 7px;
  background: var(--lime); z-index: 0; border-radius: 1px;
}
.hq-navlinks { display: flex; gap: 26px; font-size: 13.5px; font-weight: 500; }
.hq-navlinks a {
  text-decoration: none; color: var(--plum-dark);
  display: flex; gap: 6px; align-items: baseline;
}
.hq-nav-cta {
  font-size: 13px; padding: 11px 18px; background: var(--plum-dark); color: var(--cream);
  border-radius: 999px; display: inline-flex; align-items: center; gap: 9px; font-weight: 500;
}
.hq-pulse-dot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--lime);
  animation: hqpulse 2s infinite;
}
.hq-dot-static { width: 7px; height: 7px; border-radius: 999px; background: var(--lime); }

/* Hamburger + mobile drawer */
.hq-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0 9px; background: transparent;
  border: 1px solid rgba(50, 31, 41, 0.2); border-radius: 10px; cursor: pointer;
}
.hq-burger span { display: block; height: 2px; width: 100%; background: var(--plum-dark); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.hq-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hq-burger.open span:nth-child(2) { opacity: 0; }
.hq-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hq-mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  flex-direction: column; gap: 2px; padding: 10px 22px 20px;
  background: rgba(239, 229, 231, 0.98);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(50, 31, 41, 0.12);
}
.hq-mobile-menu.open { display: flex; }
.hq-mobile-menu > a:not(.hq-cta) {
  text-decoration: none; color: var(--plum-dark);
  display: flex; gap: 9px; align-items: baseline; padding: 12px 2px;
  font-size: 17px; font-weight: 500; border-bottom: 1px solid rgba(50, 31, 41, 0.08);
}
.hq-mobile-menu .hq-num { font-size: 11px; }
.hq-mobile-cta {
  margin-top: 14px; justify-content: center; font-size: 15px; padding: 14px 18px;
  background: var(--plum-dark); color: var(--cream); border-radius: 999px;
  display: inline-flex; align-items: center; gap: 9px; font-weight: 500;
}

/* ============================================================
   Right-edge section rail (scrollspy)
   ============================================================ */
.hq-rail {
  position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 60;
  display: flex; flex-direction: column; gap: 3px; align-items: flex-end;
}
.hq-rail-item {
  display: flex; align-items: center; justify-content: flex-end; gap: 11px;
  text-decoration: none; padding: 4px 0; cursor: pointer;
}
.hq-rail-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream); background: var(--plum-dark); padding: 3px 9px; border-radius: 6px;
  white-space: nowrap; opacity: 0; transform: translateX(8px);
  transition: opacity .22s ease, transform .22s ease, color .22s ease; pointer-events: none;
}
.hq-rail-tick {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: rgba(50, 31, 41, 0.32);
  transition: width .22s ease, height .22s ease, background .22s ease; flex-shrink: 0;
}
.hq-rail:hover .hq-rail-label { opacity: 1; transform: translateX(0); }
.hq-rail-item:hover .hq-rail-tick { width: 28px; background: var(--plum-dark); }
.hq-rail-item.active .hq-rail-tick { width: 34px; height: 3px; background: var(--lime); }
.hq-rail-item.active .hq-rail-label { color: var(--lime); }

/* ============================================================
   Hero
   ============================================================ */
.hq-hero { padding: 78px 56px 64px; background: var(--plum-taupe); }
.hq-hero .hq-eyebrow { display: inline-flex; align-items: center; margin-bottom: 30px; }
.hq-hero .hq-eyebrow-dot { margin-right: 0; }
.hq-hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 54px; align-items: end; margin-top: 44px; }
.hq-hero-lede { font-size: 20px; line-height: 1.5; margin: 0; max-width: 62ch; color: var(--ink-82); text-wrap: pretty; }
.hq-hero-cta-col { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.hq-cta-orange {
  display: inline-flex; align-items: center; gap: 13px; background: var(--orange); color: var(--cream);
  padding: 18px 26px; border-radius: 999px; font-size: 16px; font-weight: 500;
}
.hq-cta-glyph {
  width: 30px; height: 30px; border-radius: 999px; background: var(--cream); color: var(--orange);
  display: grid; place-items: center; font-weight: 700;
}
.hq-hero-note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-50); line-height: 1.6; }

/* ---- Product mockup ---- */
.hq-mock {
  margin-top: 60px; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(50, 31, 41, 0.14);
  box-shadow: 0 50px 90px -50px rgba(50, 31, 41, 0.5); background: #fff;
}
.hq-mock-bar { display: flex; align-items: center; gap: 8px; padding: 11px 16px; background: var(--cream); border-bottom: 1px solid var(--hairline); }
.hq-mock-dot { width: 11px; height: 11px; border-radius: 999px; }
.hq-mock-url { margin-left: 14px; font-family: var(--mono); font-size: 11px; color: var(--ink-45); letter-spacing: 0.04em; }
.hq-mockgrid { display: grid; grid-template-columns: 218px 1fr; }
.hq-mock-side { background: var(--orange); color: var(--cream); padding: 22px 16px; display: flex; flex-direction: column; min-height: 520px; }
.hq-mock-wm { display: inline-flex; align-items: baseline; gap: 7px; font-family: var(--display); font-size: 19px; font-weight: 500; }
.hq-mock-wm-hq { position: relative; font-family: var(--mono); font-size: 15px; font-weight: 700; letter-spacing: 0.1em; }
.hq-mock-wm-hq > span:first-child { position: relative; z-index: 1; }
.hq-mock-wm-bar { position: absolute; left: -2px; right: -2px; bottom: 1px; height: 5px; background: var(--lime); z-index: 0; }
.hq-mock-ver { font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; color: rgba(253, 250, 242, 0.6); margin-top: 7px; margin-bottom: 26px; }
.hq-mock-nav { display: flex; align-items: center; gap: 11px; padding: 11px 12px; font-size: 13.5px; color: rgba(253, 250, 242, 0.78); }
.hq-mock-nav-active { border-radius: 9px; background: rgba(253, 250, 242, 0.16); font-weight: 600; color: var(--cream); margin-bottom: 3px; }
.hq-mock-settings { margin-top: auto; padding-top: 18px; display: flex; align-items: center; gap: 11px; font-size: 13px; color: rgba(253, 250, 242, 0.78); }
.hq-mock-user { margin-top: 14px; display: flex; align-items: center; gap: 10px; padding: 10px; border: 1px solid rgba(253, 250, 242, 0.22); border-radius: 10px; }
.hq-mock-avatar { width: 30px; height: 30px; border-radius: 999px; background: var(--lime); color: var(--plum-dark); display: grid; place-items: center; font-family: var(--mono); font-size: 11px; font-weight: 700; }
.hq-mock-user-txt { line-height: 1.2; }
.hq-mock-user-name { font-size: 13px; font-weight: 600; }
.hq-mock-user-co { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.1em; color: rgba(253, 250, 242, 0.6); }
.hq-mock-main { background: var(--mock-canvas); padding: 26px 28px; }
.hq-mock-greet { font-family: var(--display); font-size: 26px; font-weight: 500; }
.hq-mock-date { color: var(--ink-50); font-size: 13px; margin-top: 2px; }
.hq-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 22px; }
.hq-stat { background: #fff; border: 1px solid var(--hairline); border-radius: 11px; padding: 15px 16px; }
.hq-stat-n { font-size: 30px; font-weight: 600; }
.hq-stat-l { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; color: var(--ink-50); margin-top: 4px; }
.hq-mock-attn-head { display: flex; justify-content: space-between; align-items: baseline; margin-top: 24px; margin-bottom: 11px; }
.hq-mock-attn-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--orange); }
.hq-mock-attn-count { font-family: var(--mono); font-size: 11px; color: rgba(50, 31, 41, 0.4); }
.hq-mock-list { background: #fff; border: 1px solid var(--hairline); border-radius: 11px; overflow: hidden; }
.hq-mock-row { display: flex; align-items: center; gap: 13px; padding: 14px 16px; }
.hq-mock-row-border { border-bottom: 1px solid rgba(50, 31, 41, 0.07); }
.hq-mock-status { width: 8px; height: 8px; border-radius: 999px; flex-shrink: 0; }
.hq-mock-row-body { flex: 1; }
.hq-mock-row-title { font-size: 13.5px; font-weight: 500; }
.hq-mock-row-sub { font-size: 11.5px; color: var(--ink-50); }
.hq-mock-row-meta { font-family: var(--mono); font-size: 10px; color: rgba(50, 31, 41, 0.4); }
.hq-mockcards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.hq-mock-sum { background: #fff; border: 1px solid var(--hairline); border-radius: 11px; padding: 15px 16px; }
.hq-mock-sum-title { font-size: 13.5px; font-weight: 600; }
.hq-mock-sum-title span { color: rgba(50, 31, 41, 0.4); font-weight: 400; }
.hq-mock-sum-body { margin-top: 10px; font-size: 12.5px; color: rgba(50, 31, 41, 0.6); line-height: 1.7; }
.hq-mock-caption { margin-top: 14px; font-family: var(--mono); font-size: 10.5px; color: var(--ink-45); text-align: center; letter-spacing: 0.04em; }

/* ============================================================
   Problem
   ============================================================ */
.hq-h2 { font-size: 56px; }
#problem .hq-h2 { line-height: 1.08; max-width: 1000px; }
.hq-problem-body { margin-top: 42px; display: flex; flex-direction: column; gap: 30px; }
.hq-problem-p { font-size: 19px; line-height: 1.6; margin: 0; color: var(--ink-82); max-width: 76ch; }
.hq-problem-aside {
  background: var(--plum-dark); color: var(--cream); border-left: 4px solid var(--lime);
  padding: 36px 42px; border-radius: 0 16px 16px 0;
}
.hq-aside-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--lime); margin-bottom: 16px; }
.hq-aside-lead { font-size: 23px; line-height: 1.45; margin: 0; font-weight: 500; color: var(--cream); max-width: 62ch; }
.hq-aside-p { font-size: 16px; line-height: 1.6; margin: 18px 0 0; color: rgba(253, 250, 242, 0.78); max-width: 80ch; }
.hq-aside-close { font-family: var(--display); font-style: italic; font-size: 22px; margin: 18px 0 0; color: var(--cream); }

/* ============================================================
   Solution (orange full-bleed)
   ============================================================ */
.hq-section-orange { padding: 90px 56px; background: var(--orange); color: var(--cream); }
.hq-h2-idea { font-size: 60px; line-height: 1.04; max-width: 18ch; text-wrap: pretty; }
.hq-idea-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; margin-top: 42px; align-items: start; }
.hq-idea-p { font-size: 19px; line-height: 1.6; margin: 0; color: rgba(253, 250, 242, 0.92); }
.hq-idea-p + .hq-idea-p { margin-top: 22px; }
.hq-idea-emph { font-style: italic; font-family: var(--display); }
.hq-idea-card { background: var(--cream); color: var(--plum-dark); border-radius: 16px; padding: 32px 30px; }
.hq-idea-card-lead { font-family: var(--display); font-size: 23px; line-height: 1.25; margin: 0 0 22px; letter-spacing: -0.01em; }
.hq-idea-checks { display: flex; flex-direction: column; gap: 14px; }
.hq-check { display: flex; gap: 12px; align-items: baseline; font-size: 16px; }
.hq-check-mark { color: var(--orange); font-weight: 700; }

/* ============================================================
   Your HQ (inside)
   ============================================================ */
#inside .hq-h2 { font-size: 58px; line-height: 1.04; }
.hq-inside-intro { font-size: 18px; line-height: 1.6; margin: 20px 0 0; max-width: 60ch; color: var(--ink-74); }
.hq-inside-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 38px; }
.hq-inside-card { background: #fff; border: 1px solid var(--card-border); border-radius: 14px; padding: 28px 28px 30px; }
.hq-inside-card-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.hq-inside-no { font-family: var(--mono); font-size: 11px; color: var(--orange); }
.hq-inside-title { font-family: var(--display); font-weight: 500; font-size: 25px; margin: 0; letter-spacing: -0.01em; }
.hq-inside-body { font-size: 15.5px; line-height: 1.6; margin: 0; color: var(--ink-74); }
.hq-integrations {
  margin-top: 18px; background: var(--plum-dark); color: var(--cream); border-radius: 14px;
  padding: 30px 32px; display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between;
}
.hq-integrations-txt { max-width: 46ch; }
.hq-integrations-body { font-size: 15.5px; line-height: 1.6; margin: 0; color: rgba(253, 250, 242, 0.82); }
.hq-pills { display: flex; flex-wrap: wrap; gap: 9px; max-width: 420px; }

/* ============================================================
   Stories (persona switcher)
   ============================================================ */
.hq-stories { background: var(--plum-taupe); }
#stories .hq-h2 { line-height: 1.04; }
.hq-stories-intro { font-size: 18px; line-height: 1.6; margin: 18px 0 30px; max-width: 62ch; color: var(--ink-74); }
.hq-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.hq-tab {
  font-family: var(--sans); font-size: 15px; font-weight: 500; padding: 11px 20px; border-radius: 999px;
  cursor: pointer; background: transparent; color: var(--plum-dark);
  border: 1px solid rgba(50, 31, 41, 0.2);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.hq-tab-dot { display: inline-block; width: 6px; height: 6px; border-radius: 999px; margin-right: 9px; vertical-align: middle; background: currentColor; opacity: 0.5; }
.hq-tab-active { background: var(--plum-dark); color: var(--cream); border-color: var(--plum-dark); }
.hq-tab-active .hq-tab-dot { background: var(--lime); opacity: 1; }

.hq-persona { background: var(--cream); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; }
.hq-persona-head { background: var(--orange); color: var(--cream); padding: 24px 30px; }
.hq-persona-name { font-family: var(--mono); font-size: 16px; color: var(--lime); font-weight: 600; display: flex; align-items: center; gap: 9px; }
.hq-persona-name-dot { display: inline-block; width: 7px; height: 7px; border-radius: 999px; background: var(--lime); }
.hq-persona-role { font-size: 15px; color: rgba(253, 250, 242, 0.82); margin-top: 6px; }
.hq-persona-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.hq-persona-cell { padding: 26px 30px; }
.hq-persona-cell-tl { border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.hq-persona-cell-tr { border-bottom: 1px solid var(--hairline); }
.hq-persona-cell-bl { border-right: 1px solid var(--hairline); }
.hq-persona-shift { background: var(--warm-white); }
.hq-persona-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 10px; }
.hq-persona-shift .hq-persona-label { margin-bottom: 12px; }
.hq-persona-problem { font-family: var(--display); font-size: 17px; line-height: 1.45; letter-spacing: -0.01em; color: var(--ink-74); }
.hq-persona-stack { font-size: 15px; line-height: 1.6; color: var(--ink-74); }
.hq-persona-shift-txt { font-family: var(--display); font-size: 21px; line-height: 1.35; margin: 0; letter-spacing: -0.01em; }
.hq-persona-includes { display: flex; flex-direction: column; gap: 9px; }
.hq-persona-inc { display: flex; gap: 10px; align-items: baseline; font-size: 14.5px; line-height: 1.5; color: var(--ink-82); }
.hq-persona-inc span { color: var(--orange); }

/* ============================================================
   How it Works (journey)
   ============================================================ */
#journey .hq-h2, .hq-h2-journey { font-size: 58px; line-height: 1.04; max-width: 20ch; }
.hq-journey-intro { font-size: 18px; line-height: 1.6; margin: 20px 0 38px; max-width: 64ch; color: var(--ink-74); }
.hq-phases { display: flex; flex-direction: column; gap: 16px; }
.hq-phase {
  background: #fff; border: 1px solid var(--card-border); border-radius: 14px; padding: 30px 32px;
  display: grid; grid-template-columns: 200px 1fr; gap: 30px; align-items: start;
}
.hq-phase-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--orange); }
.hq-phase-title { font-family: var(--display); font-size: 27px; font-weight: 500; margin-top: 8px; line-height: 1.1; letter-spacing: -0.01em; }
.hq-phase-lede { font-style: italic; font-family: var(--display); font-size: 17px; color: var(--orange); margin-top: 8px; }
.hq-phase-body { font-size: 16px; line-height: 1.6; margin: 0; color: var(--ink-82); }
.hq-phase-note { font-size: 14px; line-height: 1.6; margin: 14px 0 0; color: rgba(50, 31, 41, 0.55); font-style: italic; }
.hq-process { margin-top: 56px; }
.hq-process-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 8px; }
.hq-process-title { font-family: var(--display); font-weight: 600; font-size: 34px; margin: 0 0 28px; letter-spacing: -0.01em; }
.hq-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hq-step { background: var(--plum-dark); border: 1px solid rgba(253, 250, 242, 0.14); border-radius: 13px; padding: 24px 22px 26px; }
.hq-step-no { font-family: var(--display); font-size: 46px; line-height: 1; color: var(--lime); font-weight: 600; }
.hq-step-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 14px; color: var(--lime); }
.hq-step-body { font-size: 14px; line-height: 1.55; margin: 10px 0 0; color: rgba(253, 250, 242, 0.74); }

/* ============================================================
   Who It's For (orange full-bleed)
   ============================================================ */
.hq-h2-whofor { font-size: 64px; line-height: 1.02; max-width: 18ch; }
.hq-whofor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; margin-top: 42px; max-width: 1000px; }
.hq-whofor-item { display: flex; gap: 14px; align-items: baseline; font-size: 19px; line-height: 1.5; padding: 14px 0; border-bottom: 1px solid rgba(253, 250, 242, 0.18); }
.hq-whofor-check { color: var(--lime); font-weight: 700; flex-shrink: 0; }
.hq-whofor-close { font-family: var(--display); font-style: italic; font-size: 30px; line-height: 1.3; margin: 40px 0 0; max-width: 46ch; }

/* ============================================================
   Pricing
   ============================================================ */
#pricing .hq-h2 { font-size: 58px; line-height: 1.04; }
.hq-pricing-intro { font-size: 18px; line-height: 1.6; margin: 20px 0 38px; max-width: 62ch; color: var(--ink-74); }
.hq-pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hq-price-card { background: var(--plum-dark); color: var(--cream); border-radius: 16px; padding: 34px 34px 36px; }
.hq-price-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--lime); }
.hq-price { font-family: var(--display); font-size: 60px; line-height: 1; margin: 14px 0 6px; letter-spacing: -0.02em; }
.hq-price-mo { font-size: 24px; }
.hq-price-sub { font-size: 15px; line-height: 1.6; color: rgba(253, 250, 242, 0.82); margin: 0; }
p.hq-price-sub { margin: 8px 0 0; }
.hq-pricing-grow { font-size: 16px; line-height: 1.6; margin: 24px 0 0; color: var(--ink-74); }
.hq-pricing-cta-row { display: flex; justify-content: flex-end; margin-top: 26px; }
.hq-pricing-cta-row .hq-cta-orange { padding: 17px 26px; }
.hq-pricing-cta-row .hq-cta-glyph { width: 28px; height: 28px; }

/* ============================================================
   FAQ
   ============================================================ */
.hq-faq-section { background: var(--plum-taupe); }
#faq .hq-h2 { font-size: 58px; line-height: 1.04; }
.hq-faq-sub { font-size: 17px; margin: 14px 0 34px; color: var(--ink-50); font-style: italic; font-family: var(--display); }
.hq-faq-list { max-width: 920px; }
.hq-faq { border-top: 1px solid rgba(50, 31, 41, 0.18); padding: 6px 0; }
.hq-faq summary { display: flex; align-items: center; gap: 16px; padding: 22px 0; list-style: none; cursor: pointer; }
.hq-faq summary::-webkit-details-marker { display: none; }
.hq-chev { color: var(--orange); font-size: 18px; transition: transform .25s ease; flex-shrink: 0; }
.hq-faq[open] .hq-chev { transform: rotate(90deg); }
.hq-q { font-family: var(--display); font-size: 24px; font-weight: 500; letter-spacing: -0.01em; transition: color .2s ease; }
.hq-faq[open] summary .hq-q { color: var(--orange); }
.hq-a { font-size: 16px; line-height: 1.65; margin: 0 0 22px 34px; max-width: 74ch; color: var(--ink-82); }
.hq-faq-end { border-top: 1px solid rgba(50, 31, 41, 0.18); }

/* ============================================================
   Team
   ============================================================ */
.hq-h2-team { line-height: 1.04; max-width: 20ch; }
.hq-team-grid { display: grid; grid-template-columns: 340px 1fr; gap: 50px; margin-top: 42px; align-items: start; }
.hq-team-people { display: flex; flex-direction: column; gap: 16px; }
.hq-team-person { display: flex; gap: 16px; align-items: center; }
.hq-team-photo { width: 64px; height: 64px; flex-shrink: 0; border-radius: 999px; object-fit: cover; object-position: 50% 20%; }
.hq-team-name { font-family: var(--display); font-size: 23px; font-weight: 500; }
.hq-team-role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(50, 31, 41, 0.55); }
.hq-team-p { font-size: 19px; line-height: 1.6; margin: 0; color: var(--ink-82); }
.hq-team-p + .hq-team-p { margin-top: 20px; }

/* ============================================================
   Book (plum-dark full-bleed)
   ============================================================ */
.hq-book { padding: 96px 56px; background: var(--plum-dark); color: var(--cream); text-align: center; }
.hq-h2-book { font-size: 68px; line-height: 1.02; margin: 0 auto; max-width: 16ch; }
.hq-book-p { font-size: 19px; line-height: 1.6; margin: 24px auto 0; max-width: 60ch; color: rgba(253, 250, 242, 0.82); }
.hq-calendly-panel {
  max-width: 880px; margin: 42px auto 0; background: var(--cream); border-radius: 20px; padding: 8px;
  box-shadow: 0 44px 90px -44px rgba(0, 0, 0, 0.65); border: 1px solid rgba(253, 250, 242, 0.12);
}
.hq-calendly { min-width: 320px; height: 700px; border-radius: 14px; overflow: hidden; position: relative; }
.hq-calendly-loading {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(50, 31, 41, 0.4);
}
.hq-book-note { margin-top: 30px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: rgba(253, 250, 242, 0.5); }

/* ============================================================
   Footer
   ============================================================ */
.hq-footer { padding: 54px 56px 40px; background: var(--plum-taupe); border-top: 1px solid rgba(50, 31, 41, 0.12); }
.hq-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.hq-footer-wm { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--display); font-size: 22px; font-weight: 500; }
.hq-footer-hq { font-family: var(--mono); font-size: 22px; font-weight: 700; letter-spacing: 0.1em; border-bottom: 3px solid var(--lime); }
.hq-footer-desc { font-size: 14.5px; line-height: 1.6; margin: 16px 0 0; max-width: 42ch; color: rgba(50, 31, 41, 0.66); }
.hq-footer-div { font-family: var(--mono); font-size: 11px; color: var(--ink-50); margin-top: 18px; }
.hq-footer-div a { color: var(--orange); text-decoration: none; }
.hq-footer-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 14px; }
.hq-footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.hq-footer-links a { text-decoration: none; color: var(--plum-dark); width: fit-content; }
.hq-footer-links a.hq-link { display: flex; gap: 6px; align-items: baseline; }
.hq-footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 38px;
  padding-top: 22px; border-top: 1px solid rgba(50, 31, 41, 0.12);
  font-family: var(--mono); font-size: 11px; color: var(--ink-50);
}
.hq-footer-bottom a { color: inherit; }
.hq-footer-bottom .hq-footer-div a, .hq-footer-bottom span > a { text-decoration: underline; }
.hq-footer-legal { display: flex; gap: 18px; }
.hq-footer-legal a { color: var(--ink-50); text-decoration: none; }

/* ============================================================
   Responsive — single breakpoint at 900px
   ============================================================ */
@media (max-width: 900px) {
  .hq-rail { display: none !important; }
  .hq-navlinks { display: none !important; }
  .hq-nav-cta { display: none !important; }
  .hq-burger { display: flex; }
  .hq-nav { padding: 15px 22px; }

  .hq-hide-mobile { display: none !important; }
  .hq-grid { grid-template-columns: 1fr !important; }
  .hq-h1 { font-size: 44px; }
  .hq-h2, .hq-h2-idea, .hq-h2-journey, .hq-h2-whofor, .hq-h2-book,
  #inside .hq-h2, #journey .hq-h2, #pricing .hq-h2, #faq .hq-h2 { font-size: 33px; }
  .hq-pad { padding: 52px 22px; }
  .hq-section-orange { padding: 52px 22px; }
  .hq-hero { padding: 52px 22px; }
  .hq-book { padding: 52px 22px; }
  .hq-mock { transform: none; }
  .hq-mockgrid { grid-template-columns: 1fr; }
  .hq-stats { grid-template-columns: 1fr 1fr; }
  .hq-mockcards { grid-template-columns: 1fr; }
  .hq-price { font-size: 44px; }
  .hq-phase { grid-template-columns: 1fr; }
  .hq-persona-body { grid-template-columns: 1fr; }
  .hq-persona-cell-tl, .hq-persona-cell-bl { border-right: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
