/* ==========================================================================
   PostBoard Media · AI Blueprint · page-unique CSS
   --------------------------------------------------------------------------
   Only rules NOT already provided by site.css live here: the hero + clock
   visual, deliverables grid, the math grids, who-pills, the how-it-works
   timeline, pricing internals, the booking section + Cal.com embed, FAQ
   internals, the sticky mobile CTA, plus small utility classes introduced
   to replace inline style="" attributes.

   FIXES applied vs. the old inline styles:
     - gold-on-light text -> var(--gold-ink)
     - mist-as-text -> var(--slate)
     - .hour-cell.stolen: gold fill -> var(--gold-12) bg + 1px var(--gold)
       border (accent, not fill)
   ========================================================================== */


/* ============ HERO ============ */
.hero {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 70%, var(--navy-soft) 100%);
  color: var(--cream);
  padding: 80px 32px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, var(--gold-12), transparent 40%),
    radial-gradient(circle at 88% 80%, var(--gold-08), transparent 45%);
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: var(--fs-2xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  font-size: var(--fs-display);
  letter-spacing: -.015em;
  margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub {
  font-size: 1.12rem;
  color: var(--cream-82);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-stat-row { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 32px; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat .n {
  font-family: var(--mono);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.hero-stat .l {
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cream-60);
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust {
  font-size: var(--fs-xs);
  color: var(--cream-60);
  margin-top: 18px;
  font-weight: 300;
}

/* Hero right: clock visual */
.hero-clock {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-25);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.hero-clock-label {
  font-family: var(--mono);
  font-size: var(--fs-2xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero-clock-title {
  font-family: var(--serif);
  font-size: var(--fs-lg);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 24px;
}
.hours-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}
.hour-cell {
  aspect-ratio: 1;
  border-radius: var(--radius-xs);
  background: rgba(250,247,240,0.06);
  border: 1px solid rgba(250,247,240,0.08);
  position: relative;
}
.hour-cell.stolen {
  background: var(--gold-12);
  border-color: var(--gold);
}
.hour-cell.stolen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 45%, rgba(15,51,71,0.4) 50%, transparent 55%);
}
.hours-legend {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--cream-70);
  font-family: var(--mono);
  letter-spacing: .02em;
}
.hours-legend .stolen-n { color: var(--gold); font-weight: 700; }
.hero-clock-foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(250,247,240,0.1);
  font-size: var(--fs-sm);
  color: var(--cream-70);
  font-style: italic;
}
@media (max-width: 900px) {
  .hero { padding: 48px 20px 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-clock { order: 2; }
}


/* ============ WHAT YOU GET ============ */
.deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.deliv-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 26px;
  position: relative;
}
.deliv-card:hover { border-color: var(--gold); }
.deliv-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  background: var(--navy);
  color: var(--gold);
  font-family: var(--mono);
  font-size: var(--fs-xs);
  font-weight: 700;
  margin-bottom: 18px;
}
.deliv-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--navy);
}
.deliv-card p {
  font-size: var(--fs-sm);
  color: var(--slate);
  font-weight: 300;
  line-height: 1.55;
}


/* ============ THE MATH ============ */
.math-section { background: var(--white); }
.math-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: stretch;
}
.math-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}
.math-box.dark {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--cream);
  border-color: transparent;
}
.math-box h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-xl);
  margin-bottom: 24px;
  color: var(--navy);
}
.math-box.dark h3 { color: var(--gold); }
.math-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.math-box.dark .math-row { border-bottom-color: rgba(250,247,240,0.12); }
.math-row:last-of-type { border-bottom: none; }
.math-row .lbl { font-size: var(--fs-sm); color: var(--slate); font-weight: 400; }
.math-box.dark .math-row .lbl { color: var(--cream-82); }
.math-row .val {
  font-family: var(--mono);
  font-size: var(--fs-base);
  color: var(--navy);
  font-weight: 600;
}
.math-box.dark .math-row .val { color: var(--gold); }
.math-row.total {
  padding-top: 22px;
  border-top: 2px solid var(--navy);
  margin-top: 8px;
}
.math-box.dark .math-row.total { border-top-color: var(--gold); }
.math-row.total .lbl { font-weight: 600; color: var(--navy); font-size: var(--fs-base); }
.math-box.dark .math-row.total .lbl { color: var(--cream); }
.math-row.total .val { font-size: var(--fs-lg); color: var(--gold-ink); }
.math-box.dark .math-row.total .val { color: var(--gold); }
.math-callout {
  font-family: var(--serif);
  font-size: var(--fs-2xl);
  line-height: 1.1;
  color: var(--gold-ink);
  margin: 6px 0 10px;
}
.math-foot {
  font-size: var(--fs-xs);
  color: var(--slate);
  font-style: italic;
  font-weight: 300;
  margin-top: 18px;
}
.math-box.dark .math-foot { color: var(--cream-60); }
@media (max-width: 900px) {
  .math-grid { grid-template-columns: 1fr; gap: 24px; }
}


/* ============ WHO IT'S FOR ============ */
.who-section { background: var(--cream-2); }
.who-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.who-pill {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--navy);
  transition: transform var(--ease-fast), border-color var(--ease-fast), background var(--ease-fast);
}
.who-pill:hover { background: var(--navy); color: var(--cream); transform: translateY(-2px); }
.who-criteria {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-xs);
  font-size: var(--fs-base);
  color: var(--slate);
  font-weight: 300;
  line-height: 1.6;
}
.who-criteria strong { color: var(--navy); font-weight: 600; }
.who-criteria em { font-style: italic; color: var(--gold-ink); }


/* ============ HOW IT WORKS ============ */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 8px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 80%, transparent 100%);
  z-index: 0;
}
.how-step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.how-num {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-round);
  background: var(--cream);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--navy);
  font-size: var(--fs-md);
  margin-bottom: 18px;
}
.how-step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-md);
  color: var(--navy);
  margin-bottom: 6px;
}
.how-step .label {
  font-family: var(--mono);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-ink);
  margin-bottom: 4px;
  font-weight: 600;
}
.how-step p {
  font-size: var(--fs-sm);
  color: var(--slate);
  font-weight: 300;
  line-height: 1.55;
}
@media (max-width: 820px) {
  .how-steps { grid-template-columns: 1fr; gap: 28px; }
  .how-steps::before { display: none; }
  .how-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
    padding: 0;
  }
  .how-num { flex-shrink: 0; margin-bottom: 0; }
}


/* ============ PRICING ============ */
.pricing-section { background: var(--cream-2); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFCF5 100%);
  box-shadow: var(--shadow-md);
}
.price-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.price-tier {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 10px;
  font-weight: 600;
}
.price-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-xl);
  margin-bottom: 6px;
  color: var(--navy);
}
.price-blurb {
  font-size: var(--fs-sm);
  color: var(--slate);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.5;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.price-amount .num {
  font-family: var(--serif);
  font-size: var(--fs-3xl);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1;
}
.price-amount .unit { font-size: var(--fs-sm); color: var(--slate); font-weight: 400; }
.price-note { font-size: var(--fs-xs); color: var(--slate); margin-bottom: 24px; font-weight: 300; }
.price-includes { list-style: none; margin-bottom: 28px; }
.price-includes li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: var(--fs-sm);
  color: var(--slate);
  font-weight: 400;
}
.price-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--green-ink);
  font-weight: 700;
}
.price-includes li strong { color: var(--navy); font-weight: 600; }
.price-card .btn { width: 100%; }
.price-friction {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--slate);
  margin-top: 12px;
  font-weight: 300;
  font-style: italic;
}
@media (max-width: 820px) {
  .pricing-grid { grid-template-columns: 1fr; }
}


/* ============ BOOKING (PRIMARY CTA) ============ */
.book-section {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.book-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 30%, var(--gold-25), transparent 50%);
}
.book-section .section-title { color: var(--cream); }
.book-section .section-eyebrow { color: var(--gold); }
.book-section .section-sub { color: var(--cream-70); }
.book-section .section-title em { color: var(--gold); }
.book-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.book-cta-wrap { display: flex; flex-direction: column; gap: 14px; }
.book-cta-wrap .btn { width: 100%; justify-content: center; }
.book-cta-wrap .or {
  text-align: center;
  font-family: var(--mono);
  font-size: var(--fs-2xs);
  color: var(--cream-60);
  letter-spacing: .12em;
  margin: 4px 0;
  text-transform: uppercase;
}
.book-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.book-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: var(--fs-base);
  color: var(--cream-82);
  font-weight: 300;
  line-height: 1.5;
}
.book-list .ico {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-round);
  background: var(--gold-12);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: var(--fs-sm);
  font-weight: 700;
}
.book-list strong { color: var(--cream); font-weight: 600; }
@media (max-width: 820px) {
  .book-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Transparent outline button on the booking dark surface */
.btn-blueprint { background: transparent; }

/* Footer brand logo keeps the page's original 42px sizing */
.footer-logo { height: 42px; width: auto; }

/* Cal.com inline embed wrapper */
.cal-embed-wrap {
  margin-top: 48px;
  background: var(--cream);
  border: 1px solid var(--gold-25);
  border-radius: var(--radius-xl);
  padding: 8px;
  box-shadow: 0 24px 60px rgba(15,51,71,0.32), 0 0 0 1px var(--gold-12);
  position: relative;
  overflow: hidden;
}
.cal-embed-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
  border-radius: 0 0 3px 3px;
}
.cal-embed-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 16px;
  gap: 12px;
}
.cal-embed-header .ce-eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-2xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-ink);
  font-weight: 600;
}
.cal-embed-header .ce-title {
  font-family: var(--serif);
  font-size: var(--fs-md);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.2;
}
.cal-embed-header .ce-meta {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--slate);
  background: rgba(27,75,102,0.06);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  letter-spacing: .04em;
}
#cal-inline {
  min-height: 640px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 700px) {
  .cal-embed-wrap { margin-top: 32px; padding: 6px; }
  #cal-inline { min-height: 760px; }
  .cal-embed-header { padding: 14px 14px 12px; }
  .cal-embed-header .ce-title { font-size: var(--fs-base); }
}


/* ============ FAQ ============ */
.faq-section { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: var(--fs-md);
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--gold-ink); }
.faq-q .plus {
  font-family: var(--sans);
  font-size: var(--fs-lg);
  color: var(--gold-ink);
  font-weight: 300;
  transition: transform var(--ease);
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 0 22px; }
.faq-a p {
  color: var(--slate);
  font-weight: 300;
  line-height: 1.65;
  font-size: var(--fs-base);
}
.faq-a em { font-style: italic; color: var(--gold-ink); }


/* ============ STICKY MOBILE CTA ============ */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--navy-deep);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
}
.sticky-mobile .btn { flex: 1; padding: 12px 14px; font-size: var(--fs-sm); }
/* Sticky-CTA outline button uses gold accent on the navy bar */
.sticky-mobile .btn-outline { color: var(--gold); border-color: var(--gold); }
@media (max-width: 820px) {
  .sticky-mobile { display: flex; }
  body { padding-bottom: 74px; }
}
