/**
 * Layout ports.
 *
 * The prototype set section layout via inline JSX style objects rather than in
 * its stylesheets, so none of it survived the CSS extraction. These rules
 * reproduce those inline styles as classes.
 *
 * The route stylesheets (portfolio/contact/blueprint/proposal.css) are kept
 * verbatim from the prototype — put new rules here, not there, so the extracted
 * files can be regenerated from source if the prototype changes.
 */

/* --- Shared section shell ---------------------------------------------- */
.wmd-section {
  padding: 140px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.wmd-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 70px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--wmd-line);
  flex-wrap: wrap;
}

.wmd-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
}

.wmd-section-intro {
  max-width: 340px;
  margin: 0;
  color: var(--wmd-gray);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .wmd-section { padding: 90px 24px; }
  .wmd-section-head { margin-bottom: 48px; }
}

/* --- Hero --------------------------------------------------------------- */
.wmd-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.wmd-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.wmd-hero-title {
  margin: 18px 0 0;
  font-size: clamp(48px, 8vw, 132px);
}

.wmd-hero-line--accent { color: var(--wmd-peri); }

.wmd-hero-logo {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  position: relative;
  top: -.04em;
  margin-left: .18em;
}

.wmd-hero-logo svg {
  height: .72em;
  width: auto;
  display: inline-block;
}

.wmd-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-top: 90px;
  flex-wrap: wrap;
}

.wmd-hero-intro {
  max-width: 420px;
  margin: 0;
  padding-top: 20px;
  color: var(--wmd-gray);
  font-size: 16px;
  line-height: 1.7;
}

.wmd-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.wmd-hero-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  line-height: 1.8;
  color: var(--wmd-gray);
  text-align: right;
}

@media (max-width: 800px) {
  .wmd-hero { padding: 130px 24px 70px; }
  .wmd-hero-bottom { margin-top: 56px; align-items: flex-start; }
  .wmd-hero-meta { text-align: left; }
}

/* --- Marquee ------------------------------------------------------------ */
.wmd-marquee-wrap {
  border-top: 1px solid var(--wmd-line);
  border-bottom: 1px solid var(--wmd-line);
  overflow: hidden;
  padding: 36px 0;
}

/* --- Work --------------------------------------------------------------- */
.wmd-work-list { display: flex; flex-direction: column; }

.wmd-work-index {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--wmd-gray-dim);
}

.wmd-work-industry {
  display: block;
  margin-top: 5px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--wmd-gray);
}

.wmd-work-label {
  margin-bottom: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--wmd-peri);
}

.wmd-work-value { font-size: 17px; color: var(--wmd-white); }
.wmd-work-value--title { font-family: 'Space Grotesk', sans-serif; font-weight: 500; }
.wmd-work-value--muted { color: var(--wmd-gray); line-height: 1.6; }

.wmd-work-field { margin-bottom: 20px; }
.wmd-work-field:last-child { margin-bottom: 0; }

.wmd-work-overview { margin: 0; font-size: 17px; color: var(--wmd-gray); line-height: 1.75; }

.wmd-work-col-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.wmd-work-col-right .wmd-btn { align-self: flex-start; font-size: 11px; }

/* --- Services ----------------------------------------------------------- */
/*
 * The prototype built these rows from <div>s with inline styles. They're
 * <button>s here so they're keyboard-operable — which means the UA button
 * defaults (background: buttonface, border, centred inherit-less text) have to
 * be reset explicitly, or the row paints as a grey system button.
 */
.wmd-service-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--wmd-line);
}

.wmd-service-item {
  border-bottom: 1px solid var(--wmd-line);
}

.wmd-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 36px 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.wmd-service-num {
  flex-shrink: 0;
  min-width: 80px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--wmd-gray-dim);
}

.wmd-service-main { flex: 1; }

.wmd-service-row h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
}

.wmd-service-tagline {
  display: block;
  margin-top: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--wmd-gray);
}

.wmd-service-body-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  padding: 0 0 36px 100px;
}

.wmd-service-copy {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--wmd-gray);
}

.wmd-service-includes-label {
  margin-bottom: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--wmd-peri);
}

/* The prototype's .wmd-includes-grid ships margin-top: 20px, which double-spaces
   under the label it now sits beneath. */
.wmd-service-body-inner .wmd-includes-grid { margin-top: 0; }

@media (max-width: 800px) {
  .wmd-service-row { padding: 28px 0; gap: 12px; }
  .wmd-service-num { min-width: 44px; }
  .wmd-service-row h3 { font-size: 24px; }
  .wmd-service-body-inner { grid-template-columns: 1fr; padding: 0 0 28px; }
}

/* --- Phase pills -------------------------------------------------------- */
/*
 * Same button-reset story: .wmd-phase-pill never declares a background because
 * it was a <div>. As a <button> it inherits buttonface and paints solid white
 * against the dark canvas.
 */
.wmd-phase-pill {
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  cursor: pointer;
}

/* --- Process ------------------------------------------------------------ */
.wmd-process-num {
  margin-bottom: 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--wmd-peri);
}

.wmd-process-card h3 { margin: 0 0 14px; font-size: 22px; }
.wmd-process-card p { margin: 0; font-size: 13px; color: var(--wmd-gray); line-height: 1.7; }

/* --- Tools -------------------------------------------------------------- */
.wmd-toolkit-purpose {
  margin: 0;
  font-size: 12px;
  color: var(--wmd-gray);
  line-height: 1.65;
}

.wmd-toolkit-card h3 {
  margin: 0;
  font-size: 15px;
  color: var(--wmd-peri);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.wmd-tool-names { display: flex; flex-direction: column; }

/* --- About -------------------------------------------------------------- */
.wmd-about-body { color: var(--wmd-gray); font-size: 16px; line-height: 1.8; }
.wmd-about-body p { margin: 0 0 18px; }
.wmd-about-body p:last-child { margin-bottom: 0; }

.wmd-about-heading { margin: 18px 0 26px; font-size: clamp(30px, 4vw, 52px); }

.wmd-about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 32px 0;
  background: var(--wmd-line);
  border: 1px solid var(--wmd-line);
}

.wmd-about-fact { background: var(--wmd-black); padding: 20px 22px; }

.wmd-about-fact-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--wmd-peri);
  margin-bottom: 6px;
}

.wmd-about-fact-value { font-family: 'Space Grotesk', sans-serif; font-size: 16px; color: var(--wmd-white); }

.wmd-about-portrait img { display: block; width: 100%; height: auto; border-radius: 16px; }

/* --- Testimonials (editorial headline bands) ---------------------------- */
.wmd-hl-opener { padding: 140px 48px 80px; max-width: 1400px; margin: 0 auto; }

.wmd-hl-opener-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--wmd-line);
  flex-wrap: wrap;
}

.wmd-hl-opener .wmd-eyebrow { margin-bottom: 20px; }

.wmd-hl-heading {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 52px);
  letter-spacing: -.02em;
  line-height: 1.05;
  max-width: 560px;
}

.wmd-hl-note {
  max-width: 300px;
  margin: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: .02em;
  line-height: 1.8;
  color: var(--wmd-gray);
}

.wmd-hl-band { padding: 90px 48px; max-width: 1400px; margin: 0 auto; display: flex; }
.wmd-hl-band--left { justify-content: flex-start; }
.wmd-hl-band--center { justify-content: center; }
.wmd-hl-band--right { justify-content: flex-end; }

.wmd-hl-item { max-width: 900px; }
.wmd-hl-band--center .wmd-hl-item { text-align: center; }
.wmd-hl-band--right .wmd-hl-item { text-align: right; }
.wmd-hl-item--sm { max-width: 560px; }
.wmd-hl-item--md { max-width: 700px; }

.wmd-hl-item blockquote { margin: 0; }

.wmd-hl-stars { display: flex; gap: 6px; margin-bottom: 32px; }
.wmd-hl-band--center .wmd-hl-stars { justify-content: center; }
.wmd-hl-band--right .wmd-hl-stars { justify-content: flex-end; }
.wmd-hl-stars svg { width: 28px; height: 28px; }

.wmd-hl-item .wmd-hl-attr { margin-top: 24px; }
.wmd-hl-band--center .wmd-hl-attr { justify-content: center; }
.wmd-hl-band--right .wmd-hl-attr { justify-content: flex-end; }

.wmd-hl-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--wmd-gray-dim);
  display: inline-block;
  flex-shrink: 0;
}

/* --- Reputation snapshot ------------------------------------------------ */
.wmd-rep-section { padding: 120px 48px; max-width: 1400px; margin: 0 auto; }
.wmd-rep-opener { margin-bottom: 64px; }
.wmd-rep-opener .wmd-eyebrow { margin-bottom: 20px; }

.wmd-rep-note {
  max-width: 480px;
  margin: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .04em;
  line-height: 1.8;
  color: var(--wmd-gray);
}

.wmd-rep-sep { font-size: 20px; padding: 0 24px; }

@media (max-width: 800px) {
  .wmd-hl-opener { padding: 90px 24px 60px; }
  .wmd-hl-band { padding: 60px 24px; }
  .wmd-rep-section { padding: 80px 0; }
  .wmd-rep-opener { padding: 0 24px; }
}

/* --- Carousel (Proposal) ------------------------------------------------ */
.wmd-testi-statement {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.5;
  letter-spacing: -.01em;
  color: var(--wmd-white);
}

.wmd-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 80px 44px;
  background: var(--wmd-black-soft);
  border: 1px solid var(--wmd-line);
  border-radius: 20px;
}

.wmd-carousel-mark {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  line-height: .6;
  color: var(--wmd-peri);
  opacity: .5;
  margin-bottom: 26px;
}

.wmd-carousel-viewport { text-align: center; }

.wmd-carousel-slide[hidden] { display: none; }

.wmd-carousel-attr { margin-top: 26px; }

.wmd-carousel-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  color: var(--wmd-white);
}

.wmd-carousel-meta {
  margin-top: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wmd-gray);
}

/* Arrows are pinned to the card edges so a longer quote can't shift them. */
.wmd-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.wmd-carousel-btn--prev { left: 20px; }
.wmd-carousel-btn--next { right: 20px; }

.wmd-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

@media (max-width: 800px) {
  .wmd-carousel { padding: 44px 20px 36px; }
  .wmd-carousel-btn { position: static; transform: none; }
  .wmd-carousel-arrows { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
}

/* --- Contact CTA -------------------------------------------------------- */
.wmd-cta {
  padding: 140px 48px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--wmd-line);
}

.wmd-cta-heading { margin: 18px 0 20px; font-size: clamp(38px, 6vw, 92px); max-width: 900px; }

.wmd-cta-intro { max-width: 460px; margin: 0 0 36px; color: var(--wmd-gray); font-size: 16px; line-height: 1.7; }

.wmd-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.wmd-cta-details {
  display: flex;
  gap: 64px;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--wmd-line);
  flex-wrap: wrap;
}

.wmd-cta-detail-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--wmd-peri);
  margin-bottom: 8px;
}

.wmd-cta-detail-value { font-size: 15px; color: var(--wmd-white); }
.wmd-cta-detail-value a { text-decoration: none; transition: color .3s; }
.wmd-cta-detail-value a:hover { color: var(--wmd-peri); }

@media (max-width: 800px) {
  .wmd-cta { padding: 90px 24px; }
  .wmd-cta-details { gap: 32px; margin-top: 48px; }
}

/* ======================================================================== */
/* Contact                                                                  */
/* ======================================================================== */

.c-peri { color: #7a7cff; }

.c-hero { padding: 160px 48px 100px; max-width: 1400px; margin: 0 auto; }

.c-hero-title {
  margin: 0 0 28px;
  max-width: 700px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(48px, 8vw, 112px);
  letter-spacing: -.03em;
  line-height: 1;
}

.c-hero-body { max-width: 520px; }

.c-hero-intro {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(247, 247, 245, .65);
}

.c-hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(247, 247, 245, .35);
}

.c-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7a7cff;
  flex-shrink: 0;
  display: inline-block;
}

.c-dot--sm { width: 4px; height: 4px; }

.c-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #f7f7f5;
}

.c-scroll-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(122, 124, 255, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a7cff;
  font-size: 20px;
  animation: c-bob 2.4s ease-in-out infinite;
}

.c-scroll-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, .4);
  transition: color .3s;
}

.c-scroll-cue:hover .c-scroll-label { color: #f7f7f5; }

.c-form-section { padding: 80px 48px 120px; max-width: 1400px; margin: 0 auto; }

.c-form-direct {
  margin-top: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(247, 247, 245, .35);
}

.c-form-direct a { color: #7a7cff; text-decoration: none; }
.c-form-missing { color: rgba(247, 247, 245, .5); font-size: 14px; margin: 0; }

.c-side { display: flex; flex-direction: column; gap: 32px; }

.c-side-heading {
  margin: 0 0 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 22px;
}

.c-side-label {
  margin-bottom: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, .35);
}

.c-info-cards { display: flex; flex-direction: column; gap: 12px; }

.c-info-num {
  margin-bottom: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  color: #7a7cff;
}

.c-info-title {
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #f7f7f5;
}

.c-info-desc { margin: 0; font-size: 13px; line-height: 1.7; color: rgba(247, 247, 245, .5); }

.c-divider--mb { margin-bottom: 24px; }

.c-typical { list-style: none; margin: 0; padding: 0; }

.c-typical li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(247, 247, 245, .06);
  font-size: 13px;
  color: rgba(247, 247, 245, .6);
}

.c-typical li:last-child { border-bottom: none; }

.c-based { font-family: 'Space Grotesk', sans-serif; font-size: 15px; color: #f7f7f5; }

.c-based-note {
  margin-top: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(247, 247, 245, .35);
}

.c-cta-inner { padding: 120px 64px; max-width: 900px; margin: 0 auto; text-align: center; position: relative; }

.c-cta-heading {
  margin: 0 0 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 6vw, 80px);
  letter-spacing: -.02em;
  line-height: 1.05;
}

.c-cta-intro {
  max-width: 460px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(247, 247, 245, .5);
}

@media (max-width: 800px) {
  .c-hero { padding: 130px 24px 70px; }
  .c-form-section { padding: 60px 24px 90px; }
  .c-cta-inner { padding: 80px 24px; }
}

/* --- Gravity Forms, dressed to match the prototype's form -------------- */
/*
 * GF ships its own stylesheet with high specificity, so these overrides are
 * scoped under .c-form-card and lean on !important where GF's own rules would
 * otherwise win.
 */
.c-form-card .gform_wrapper { margin: 0; }

.c-form-card .gform_heading { display: none; }

/*
 * GF's "orbital" theme lays fields out on its own 12-column grid and pins every
 * gfield to `grid-column: 1 / -1`, which flattens the prototype's two-up rows.
 * Both need !important to win against it.
 */
.c-form-card .gform_fields {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
}

.c-form-card .gfield { grid-column: auto !important; }
.c-form-card .gfield--width-full { grid-column: 1 / -1 !important; }

.c-form-card .gfield_label {
  display: block;
  margin-bottom: 10px;
  font-family: 'IBM Plex Mono', monospace !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, .5) !important;
}

.c-form-card .gfield_required { color: #7a7cff !important; }

/* The prototype marks required fields with a periwinkle asterisk, not GF's
   "(Required)" text. The form is set to the asterisk indicator; this styles it. */
.c-form-card .gfield_required_asterisk {
  color: #7a7cff !important;
  font-size: 12px;
  margin-left: 2px;
}

.c-form-card input[type="text"],
.c-form-card input[type="email"],
.c-form-card input[type="tel"],
.c-form-card input[type="url"],
.c-form-card select,
.c-form-card textarea {
  width: 100% !important;
  /*
   * GF's orbital theme pins controls to a fixed height (38px on the select).
   * With 28px of vertical padding that leaves ~10px of content box, and the
   * selected option's text gets clipped clean out of view — the select renders
   * blank with only the arrow showing. Let height follow content instead.
   */
  height: auto !important;
  min-height: 0 !important;
  padding: 14px 16px !important;
  background-color: rgba(247, 247, 245, .04) !important;
  border: 1px solid rgba(247, 247, 245, .12) !important;
  border-radius: 10px !important;
  color: #f7f7f5 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  line-height: 1.4 !important;
  transition: border-color .3s, background-color .3s;
}

/*
 * A padding + `background` shorthand on a <select> can make it paint empty with
 * no arrow in some browsers — set the arrow explicitly and keep background-color
 * separate from background-image.
 */
.c-form-card select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b1b1bc' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
  padding-right: 40px !important;
}

.c-form-card select option { background: #0e0e12; color: #f7f7f5; }

/* background-color, not the `background` shorthand — the shorthand resets
   background-image and would erase the select's arrow on focus. */
.c-form-card input:focus,
.c-form-card select:focus,
.c-form-card textarea:focus {
  border-color: #7a7cff !important;
  background-color: rgba(122, 124, 255, .05) !important;
  outline: none;
}

.c-form-card textarea { min-height: 140px; resize: vertical; }

.c-form-card ::placeholder { color: rgba(247, 247, 245, .25); }

.c-form-card .gform_footer { margin: 24px 0 0 !important; padding: 0 !important; }

.c-form-card .gform_button {
  font-family: 'IBM Plex Mono', monospace !important;
  font-size: 12px !important;
  letter-spacing: .05em;
  padding: 15px 28px !important;
  border-radius: 100px !important;
  border: 1px solid #f7f7f5 !important;
  background: #f7f7f5 !important;
  color: #08080a !important;
  cursor: pointer;
  transition: background .3s, border-color .3s, color .3s;
  width: auto !important;
}

.c-form-card .gform_button:hover { background: #7a7cff !important; border-color: #7a7cff !important; color: #08080a !important; }

.c-form-card .gfield_description.validation_message,
.c-form-card .gform_validation_errors {
  background: rgba(212, 24, 61, .08) !important;
  border: 1px solid rgba(212, 24, 61, .4) !important;
  border-radius: 8px;
  color: #ff8fa3 !important;
  font-size: 12px !important;
  padding: 10px 12px !important;
}

.c-form-card .gform_confirmation_message {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  color: #f7f7f5;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .c-form-card .gform_fields { grid-template-columns: 1fr; }
}

/* ======================================================================== */
/* Proposal                                                                 */
/* ======================================================================== */

/* The sticky summary bar is fixed to the bottom of the viewport, so the page
   needs room underneath it or the last section sits behind the bar. */
body.p-root { padding-bottom: 80px; }

/* --- Shared section furniture ------------------------------------------- */
.p-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 400;
  color: var(--p-line-strong);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}

.p-sec-title {
  font-size: clamp(28px, 3.5vw, 48px);
  max-width: 560px;
  margin: 0;
}

.p-sec-head { margin-bottom: 56px; }
.p-sec-head--wide { margin-bottom: 72px; }
.p-sec-head--wide .p-sec-title { max-width: 660px; }

.p-body {
  font-size: 16px;
  color: var(--p-gray);
  line-height: 1.8;
  margin: 0 0 24px;
}

.p-body:last-child { margin-bottom: 0; }

.p-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--p-gray);
  margin-bottom: 4px;
}

.p-btn--sm { font-size: 11px; }

.p-section--center { text-align: center; }

.p-thin-divider {
  border-top: 1px solid var(--p-line-strong);
  margin: 0 48px;
}

@media (max-width: 700px) {
  .p-thin-divider { margin: 0 24px; }
}

/* --- Cover -------------------------------------------------------------- */
.p-cover {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.p-cover-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
  text-align: center;
  position: relative;
}

.p-cover-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(122, 124, 255, .12), transparent 60%);
  pointer-events: none;
}

/* Keep the copy above the glow without giving every element its own rule. */
.p-cover-inner > *:not(.p-cover-glow) {
  position: relative;
  z-index: 1;
}

.p-cover-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--p-peri);
  margin-bottom: 48px;
}

.p-cover-title {
  font-size: clamp(52px, 10vw, 140px);
  letter-spacing: -.04em;
  line-height: .92;
  color: var(--p-white);
  max-width: 900px;
  margin: 0 0 64px;
}

.p-cover-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  justify-content: center;
}

.p-cover-company {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--p-white);
  letter-spacing: -.01em;
}

.p-cover-plus {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--p-gray-dim);
}

.p-cover-rule {
  height: 1px;
  width: 120px;
  background: var(--p-line-strong);
  margin-bottom: 48px;
}

.p-cover-meta {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.p-meta-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--p-gray);
  margin-bottom: 6px;
}

.p-meta-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  color: var(--p-white);
}

@media (max-width: 700px) {
  .p-cover-inner { padding: 100px 24px 64px; }
  .p-cover-meta { gap: 32px; }
}

/* --- Sticky summary bar ------------------------------------------------- */
.p-sticky-facts {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.p-sticky-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--p-gray);
  margin-bottom: 3px;
}

.p-sticky-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--p-peri);
}

.p-sticky-time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--p-white);
}

.p-sticky-rule {
  width: 1px;
  height: 32px;
  background: var(--p-line-strong);
}

.p-sticky-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* In the editor the bar is part of the flow — fixed chrome would sit on top of
   the block list. */
.p-sticky-bar--static {
  position: static;
  backdrop-filter: none;
  border-top: none;
  border-bottom: 1px solid var(--p-line-strong);
}

@media (max-width: 700px) {
  .p-sticky-facts { gap: 16px; }
  .p-sticky-actions { gap: 8px; }
  .p-sticky-bar .p-btn { padding: 10px 16px; }
}

/* --- Overview ----------------------------------------------------------- */
.p-overview-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.p-overview-grid .p-sec-title { margin-bottom: 28px; }
.p-overview-grid .p-body { max-width: 560px; }

.p-snapshot { padding-top: 40px; }

.p-snapshot-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--p-peri);
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .p-overview-grid { grid-template-columns: 1fr; gap: 48px; }
  .p-snapshot { padding-top: 0; }
}

/* --- Goals -------------------------------------------------------------- */
.p-goal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-goal-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  color: var(--p-peri);
  margin-bottom: 16px;
}

.p-goal-title { font-size: 18px; margin: 0 0 10px; }
.p-goal-card .p-body { line-height: 1.7; }

@media (max-width: 900px) { .p-goal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .p-goal-grid { grid-template-columns: 1fr; } }

/* --- Deliverables checklist --------------------------------------------- */
.p-check-grid { list-style: none; margin: 0; padding: 0; }

/* --- Scope -------------------------------------------------------------- */
.p-phase-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-phase-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--p-peri);
  margin-bottom: 6px;
}

.p-phase-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  margin: 0;
}

.p-phase-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.p-phase-stat { text-align: right; }

.p-stat-hours {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  color: var(--p-white);
}

.p-stat-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--p-peri);
}

.p-phase-body-inner {
  padding: 24px 32px 28px;
  border-top: 1px solid var(--p-line);
}

.p-deliv-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--p-peri);
  margin-bottom: 12px;
}

.p-deliv-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-deliv-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--p-white);
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--p-line);
}

.p-deliv-list li:last-child { border-bottom: none; margin-bottom: 0; }

.p-deliv-list--dim li { color: var(--p-gray); }

.p-tick { color: var(--p-peri); font-size: 10px; }

.p-theme + .p-theme { margin-top: 28px; }

.p-theme-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--p-line-strong);
}

.p-theme-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--p-peri);
  margin-bottom: 4px;
}

.p-theme-title { font-size: 17px; color: var(--p-white); }

.p-theme-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--p-peri);
}

.p-theme-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--p-line-strong);
}

.p-theme-total .p-stat-label { margin-bottom: 0; }

@media (max-width: 700px) {
  .p-phase-header { flex-wrap: wrap; padding: 22px 20px; }
  .p-phase-stats { gap: 20px; width: 100%; justify-content: space-between; }
  .p-phase-body-inner { padding: 20px; }
}

/* --- Investment --------------------------------------------------------- */
.p-invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.p-invest-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--p-gray);
  margin-bottom: 16px;
}

.p-invest-time { margin-top: 32px; }
.p-invest-time .p-stat-label { margin-bottom: 6px; }

.p-invest-time-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  color: var(--p-white);
}

.p-breakdown-toggle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--p-peri);
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-breakdown-caret { transition: transform .3s ease; display: inline-block; }
.p-breakdown-toggle[aria-expanded="true"] .p-breakdown-caret { transform: rotate(90deg); }

.p-breakdown { border-top: 1px solid var(--p-line); }

.p-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--p-line);
}

.p-breakdown-row .p-body { margin: 0; }

.p-breakdown-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--p-white);
}

.p-breakdown-row--total {
  border-bottom: none;
  padding: 16px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--p-white);
}

.p-breakdown-total { color: var(--p-peri); font-weight: 600; }

.p-invest-block { margin-top: 32px; }
.p-invest-block > .p-stat-label { margin-bottom: 16px; }

.p-pay-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--p-line);
}

.p-pay-title { font-size: 16px; color: var(--p-white); }

.p-pay-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--p-gray);
  text-align: right;
}

.p-addon-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--p-line);
}

.p-addon-row .p-body { margin: 0; }

.p-addon-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  color: var(--p-white);
}

.p-disclaimer {
  margin-top: 48px;
  padding: 24px 28px;
  border: 1px solid var(--p-line-strong);
  border-radius: 8px;
  background: var(--p-black-soft);
}

.p-disclaimer .p-stat-label { margin-bottom: 10px; }

@media (max-width: 900px) {
  .p-invest-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* --- What you'll gain --------------------------------------------------- */
.p-gain-intro { max-width: 720px; margin-bottom: 56px; }
.p-gain-intro .p-body { line-height: 1.9; }

.p-gain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--p-line-strong);
  border: 1px solid var(--p-line-strong);
  border-radius: 12px;
  overflow: hidden;
}

.p-gain-card {
  background: var(--p-black-soft);
  padding: 36px 32px;
}

.p-gain-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  color: var(--p-peri);
  margin-bottom: 14px;
}

.p-gain-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--p-white);
  line-height: 1.4;
  margin: 0 0 10px;
}

.p-gain-card .p-body { line-height: 1.75; }

@media (max-width: 900px) { .p-gain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .p-gain-grid { grid-template-columns: 1fr; } }

/* --- Next steps --------------------------------------------------------- */
.p-next-wrap { margin-bottom: 80px; }

.p-next-steps { list-style: none; margin: 0; padding: 0; }

.p-next-rail {
  display: flex;
  align-items: center;
  width: 100%;
}

.p-next-line--hidden { visibility: hidden; }

.p-next-copy {
  padding: 20px 12px 0;
  text-align: center;
}

.p-next-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--p-white);
  margin-bottom: 6px;
}

.p-next-copy .p-body { line-height: 1.6; margin: 0; }

.p-next-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .p-next-steps { flex-direction: column; gap: 28px; }
  .p-next-line { display: none; }
  .p-next-copy { padding-top: 12px; }
}

/* --- Reputation carousel ------------------------------------------------ */
.p-statement {
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--p-white);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 48px;
}

.p-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 80px;
  background: var(--p-black-soft);
  border: 1px solid var(--p-line-strong);
  border-radius: 20px;
}

.p-carousel-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.p-carousel-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}

.p-carousel-slide { margin: 0; }
.p-carousel-slide[hidden] { display: none; }

.p-carousel-quote { margin: 0 0 48px; }

.p-quote-mark {
  color: var(--p-peri);
  font-family: 'IBM Plex Mono', monospace;
  font-size: .6em;
  line-height: 1;
  vertical-align: bottom;
  margin-left: .2em;
}

.p-quote-mark--open {
  vertical-align: top;
  margin: 0 .3em 0 0;
}

.p-carousel-attr { margin-bottom: 32px; }

.p-carousel-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--p-white);
}

.p-carousel-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--p-gray);
  letter-spacing: .04em;
  margin-top: 4px;
}

/* Arrows are pinned to the card edges so a longer quote can't shift them. */
.p-carousel-btn--prev,
.p-carousel-btn--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-carousel-btn--prev { left: 20px; }
.p-carousel-btn--next { right: 20px; }

.p-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .p-carousel { padding: 44px 44px 36px; }
  .p-carousel-badge { margin-bottom: 32px; }
  .p-carousel-btn--prev { left: 6px; }
  .p-carousel-btn--next { right: 6px; }
}

/* --- About -------------------------------------------------------------- */
.p-about-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--p-peri);
  margin-bottom: 48px;
}

.p-about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--p-line);
}

.p-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.p-about-heading {
  font-size: clamp(20px, 2.5vw, 32px);
  margin: 0 0 16px;
}

.p-about-lede {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--p-peri);
  margin: 0 0 24px;
}

.p-about-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin: 32px 0 40px;
}

.p-about-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  color: var(--p-peri);
}

.p-about-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--p-gray);
  margin-top: 4px;
}

.p-caps {
  border-top: 1px solid var(--p-line);
  padding-top: 24px;
}

.p-caps .p-stat-label { margin-bottom: 16px; }

.p-caps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p-cap {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--p-line-strong);
  color: var(--p-gray);
}

.p-proposal-footer {
  padding: 40px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.p-proposal-footer-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--p-gray);
}

@media (max-width: 700px) {
  .p-proposal-footer { padding: 32px 24px; }
}

/* --- Print -------------------------------------------------------------- */
/* "Download PDF" is the browser's own print-to-PDF, so the page has to survive
   printing: the fixed chrome would otherwise stamp itself onto every sheet. */
@media print {
  .p-progress-bar,
  .p-chapter-nav,
  .p-sticky-bar,
  .wmd-nav,
  .wmd-footer { display: none !important; }

  body.p-root { padding-bottom: 0; }
  .p-cover { min-height: 0; }
  .p-section { padding: 32px 0; }
  .p-phase-body { max-height: none !important; overflow: visible; }
  .p-carousel-slide[hidden] { display: block; }
  .p-carousel-btn--prev,
  .p-carousel-btn--next,
  .p-carousel-dots { display: none; }
  .p-reveal { opacity: 1 !important; transform: none !important; }
}

/* ======================================================================== */
/* Free Quote Builder                                                       */
/* ======================================================================== */

/* blueprint.css was extracted verbatim and hard-codes its hexes inline. The
   wizard is new work, so it gets tokens — same values, named. */
.bl-root {
  --bl-black: #08080a;
  --bl-black-soft: #0e0e12;
  --bl-white: #f7f7f5;
  --bl-peri: #7a7cff;
  --bl-gray: rgba(247, 247, 245, .55);
  --bl-gray-dim: rgba(247, 247, 245, .35);
  --bl-line: rgba(247, 247, 245, .09);
  --bl-line-strong: rgba(247, 247, 245, .16);
}

.bl-dim { color: var(--bl-gray-dim); }

.bl-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --- Hero --------------------------------------------------------------- */
.bl-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 64px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bl-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122, 124, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 124, 255, .04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

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

.bl-hero-heading {
  font-size: clamp(36px, 5.5vw, 88px);
  max-width: 1100px;
  margin: 28px auto 32px;
}

.bl-hero-intro {
  max-width: 560px;
  margin: 0 auto 48px;
}

.bl-hero-intro p {
  font-size: 18px;
  color: rgba(247, 247, 245, .6);
  line-height: 1.8;
  margin: 0;
}

.bl-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.bl-hero-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  color: #b1b1bc;
  letter-spacing: .06em;
}

@media (max-width: 700px) {
  .bl-hero { padding: 120px 24px 80px; }
  .bl-hero-intro p { font-size: 16px; }
}

/* --- Shared section furniture ------------------------------------------- */
.bl-sec-head { margin-bottom: 64px; }

.bl-sec-title {
  font-size: clamp(32px, 4.5vw, 60px);
  max-width: 600px;
  margin: 0;
}

.bl-eyebrow--center { justify-content: center; }

/* --- Why ---------------------------------------------------------------- */
.bl-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bl-why-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  color: var(--bl-peri);
  margin-bottom: 20px;
}

.bl-why-title { font-size: 22px; margin: 0 0 12px; }

.bl-why-desc {
  font-size: 14px;
  color: var(--bl-gray);
  line-height: 1.8;
  margin: 0 0 24px;
}

.bl-why-stat {
  border-top: 1px solid rgba(247, 247, 245, .07);
  padding-top: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bl-peri);
}

@media (max-width: 900px) { .bl-why-grid { grid-template-columns: 1fr; } }

/* --- Deliverables ------------------------------------------------------- */
.bl-deliv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.bl-deliv-heading {
  font-size: clamp(32px, 4vw, 54px);
  margin: 0 0 24px;
}

.bl-deliv-intro {
  font-size: 15px;
  color: rgba(247, 247, 245, .5);
  line-height: 1.8;
  margin: 0 0 36px;
}

.bl-check-list { list-style: none; margin: 0; padding: 0; }

.bl-check-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--bl-white);
  margin-bottom: 3px;
}

.bl-check-desc {
  display: block;
  font-size: 15px;
  color: rgba(247, 247, 245, .4);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .bl-deliv-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* --- Form section shell ------------------------------------------------- */
.bl-form-section {
  padding: 120px 64px;
  background: rgba(122, 124, 255, .025);
  border-top: 1px solid rgba(122, 124, 255, .1);
  border-bottom: 1px solid rgba(122, 124, 255, .1);
}

.bl-form-shell { max-width: 720px; margin: 0 auto; }

.bl-form-head { text-align: center; margin-bottom: 40px; }

.bl-form-heading {
  font-size: clamp(28px, 4vw, 48px);
  margin: 0 0 16px;
}

.bl-form-intro {
  font-size: 15px;
  color: rgba(247, 247, 245, .5);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 700px) { .bl-form-section { padding: 80px 20px; } }

/* --- Wizard progress ---------------------------------------------------- */
.bl-progress { margin-bottom: 20px; }

.bl-progress-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, .45);
  margin-bottom: 10px;
  text-align: center;
}

.bl-progress-track {
  height: 2px;
  background: var(--bl-line);
  border-radius: 2px;
  overflow: hidden;
}

.bl-progress-bar {
  height: 100%;
  width: 0;
  background: var(--bl-peri);
  transition: width .45s cubic-bezier(.16, 1, .3, 1);
}

/* --- Wizard steps ------------------------------------------------------- */
.bl-step-head { margin-bottom: 28px; }

.bl-step-q {
  font-size: clamp(20px, 2.6vw, 28px);
  margin: 0 0 8px;
  outline: none;
}

.bl-step-help {
  font-size: 14px;
  color: rgba(247, 247, 245, .45);
  line-height: 1.6;
  margin: 0;
}

.bl-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 600px) { .bl-choice-grid { grid-template-columns: 1fr; } }

.bl-choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  padding: 16px 18px;
  border-radius: 9px;
  /* A <button> without an explicit background paints buttonface — solid white
     on this dark card. */
  background: rgba(247, 247, 245, .03);
  border: 1px solid var(--bl-line);
  color: var(--bl-white);
  font: inherit;
  cursor: pointer;
  transition: border-color .25s, background .25s, transform .2s cubic-bezier(.16, 1, .3, 1);
}

.bl-choice:hover {
  border-color: rgba(122, 124, 255, .45);
  background: rgba(122, 124, 255, .05);
}

.bl-choice:active { transform: scale(.99); }

.bl-choice.is-on {
  border-color: var(--bl-peri);
  background: rgba(122, 124, 255, .1);
}

.bl-choice-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid var(--bl-line-strong);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: border-color .25s, background .25s;
}

.bl-choice-mark--radio { border-radius: 50%; }

.bl-choice.is-on .bl-choice-mark {
  border-color: var(--bl-peri);
  background: var(--bl-peri);
}

.bl-choice.is-on .bl-choice-mark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid var(--bl-black);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.bl-choice-body { display: block; }

.bl-choice-label {
  display: block;
  font-size: 15px;
  line-height: 1.4;
}

.bl-choice-note {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .06em;
  color: rgba(247, 247, 245, .4);
  margin-top: 4px;
}

.bl-step-error { min-height: 16px; margin-top: 12px; }

.bl-wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.bl-cta--sm { padding: 13px 26px; font-size: 12px; }

/* --- Details step ------------------------------------------------------- */
.bl-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bl-req { color: var(--bl-peri); }

/* Off-screen rather than display:none — some bots skip hidden inputs. */
.bl-pot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bl-privacy {
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: rgba(247, 247, 245, .2);
  letter-spacing: .06em;
  line-height: 1.6;
}

.bl-form-error:empty { display: none; }

.bl-form-error {
  text-align: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 100, 100, .35);
  border-radius: 7px;
  background: rgba(212, 24, 61, .08);
}

.bl-noscript { margin: 0; font-size: 14px; color: var(--bl-gray); line-height: 1.7; }
.bl-noscript a { color: var(--bl-peri); }

/* --- The blueprint ------------------------------------------------------ */
.bl-blueprint {
  animation: bl-fade-up .7s cubic-bezier(.16, 1, .3, 1) both;
}

.bl-bp-head { text-align: center; margin-bottom: 40px; }

.bl-badge--center { margin: 0 auto; }

.bl-bp-heading {
  font-size: clamp(26px, 3.6vw, 42px);
  margin: 16px 0 12px;
  outline: none;
}

.bl-bp-intro {
  font-size: 15px;
  color: var(--bl-gray);
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto;
}

.bl-bp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bl-line);
  border: 1px solid var(--bl-line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 36px;
}

.bl-bp-stat {
  background: var(--bl-black-soft);
  padding: 24px 20px;
  text-align: center;
}

.bl-bp-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--bl-peri);
  letter-spacing: -.02em;
  line-height: 1.1;
}

.bl-bp-stat--range .bl-bp-stat-num { font-size: 20px; }

.bl-bp-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, .45);
  margin-top: 6px;
}

@media (max-width: 600px) {
  .bl-bp-stats { grid-template-columns: 1fr; }
}

.bl-bp-block {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--bl-line);
}

.bl-bp-block:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }

.bl-bp-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bl-peri);
  margin-bottom: 14px;
}

.bl-bp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.bl-bp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--bl-white);
  line-height: 1.5;
}

.bl-bp-ux { grid-template-columns: 1fr; }
.bl-bp-ux li { color: var(--bl-gray); }

.bl-bp-tick { color: var(--bl-peri); font-size: 10px; margin-top: 4px; }

@media (max-width: 600px) { .bl-bp-list { grid-template-columns: 1fr; } }

.bl-bp-timeline { list-style: none; margin: 0; padding: 0; }

.bl-bp-phase {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bl-line);
}

.bl-bp-phase:last-child { border-bottom: none; }

.bl-bp-phase-name { font-size: 14px; color: var(--bl-white); }

.bl-bp-phase-weeks {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(247, 247, 245, .45);
  white-space: nowrap;
}

.bl-bp-disclaimer {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid var(--bl-line);
  border-radius: 8px;
  background: rgba(247, 247, 245, .02);
}

.bl-bp-disclaimer p {
  margin: 0;
  font-size: 12px;
  color: rgba(247, 247, 245, .4);
  line-height: 1.7;
}

.bl-bp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

/* --- Editor note -------------------------------------------------------- */
.bl-editor-note p { margin: 0 0 8px; color: var(--bl-gray); font-size: 14px; }
.bl-editor-warn { color: #ff8fa3 !important; }

/* --- Print -------------------------------------------------------------- */
/* The blueprint is the one thing on this page worth printing. */
@media print {
  .bl-hero,
  .bl-sec,
  .bl-form-head,
  .bl-progress,
  .bl-bp-actions,
  .wmd-nav,
  .wmd-footer { display: none !important; }

  .bl-form-section { padding: 0; background: none; border: none; }
  .bl-form-wrap { border: none; padding: 0; }
  .bl-reveal { opacity: 1 !important; transform: none !important; }

  /*
   * Recolour the blueprint for paper.
   *
   * Every colour on this route is tuned for the dark page: blueprint.css sets
   * .bl-root { background:#08080a; color:#f7f7f5 } and the .bl-bp-* rules below
   * pull near-white and translucent-white out of the tokens. Browsers drop
   * background paint when printing but keep text colour, so the dark backdrop
   * vanished while the type stayed near-white — the blueprint printed as pale
   * grey on white and was barely readable.
   *
   * Rebinding the tokens flips everything that consumes them in one place
   * instead of restating each rule. The translucent lines have to become
   * opaque blacks: alpha-over-dark reads as a hairline, alpha-over-white reads
   * as nothing. Periwinkle darkens too — #7a7cff is a mid-tone that only works
   * against black and washes out on paper.
   *
   * This overrides blueprint.css because layout.css is enqueued after it at
   * equal specificity; the extracted file itself stays untouched.
   */
  .bl-root {
    background: #fff;
    color: #000;

    --bl-black: #fff;
    --bl-black-soft: #fff;
    --bl-white: #000;
    --bl-peri: #3a3ca8;
    --bl-gray: #2b2b2b;
    --bl-gray-dim: #4a4a4a;
    --bl-line: rgba(0, 0, 0, .22);
    --bl-line-strong: rgba(0, 0, 0, .38);
  }

  .bl-blueprint { color: #000; }
}

/* --- Editor ------------------------------------------------------------- */
/* Blocks render on a white canvas in Gutenberg; give them the dark backdrop. */
.editor-styles-wrapper .wmd-hero,
.editor-styles-wrapper .wmd-section,
.editor-styles-wrapper .wmd-cta,
.editor-styles-wrapper .wmd-marquee-wrap {
  background: var(--wmd-black);
}

.editor-styles-wrapper .wmd-hero { min-height: 0; padding-top: 80px; }
