/* ============================================================
   vibecodingthatsactuallygood.com
   Tokens harvested from the Figma file (frame "vctag home").
   ============================================================ */

:root {
  --blue:        #147cf3;
  --highlight:   #d7eaff;
  --dark:        #22262c;
  --grey:        #5a6069;
  --hairline:    #e2e6ea;
  --white:       #ffffff;

  --font-sans:   "Poppins", system-ui, sans-serif;
  --font-serif:  "Crimson Pro", Georgia, serif;

  --content:     1128px;   /* matches Figma's 136px margins on a 1400 canvas */
  --gutter:      clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--grey);
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap, main > section, .site-header, .site-footer, .rule {
  width: 100%;
  max-width: calc(var(--content) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Marker / highlighter ---------- */
.mark {
  background: transparent;
  color: inherit;
}
/* swipe: marker through the lower portion of the text */
.mark--swipe {
  background-image: linear-gradient(transparent 38%, var(--highlight) 38%, var(--highlight) 92%, transparent 92%);
  padding: 0 .08em;
  border-radius: 2px;
}
/* block: marker swipe behind the hero "I'm a designer." — sits ~halfway up,
   shorter than the text, matching the Figma. */
.mark--block {
  background-image: linear-gradient(transparent 42%, var(--highlight) 42%, var(--highlight) 90%, transparent 90%);
  padding: 0 .1em;
  border-radius: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header { padding-top: 56px; padding-bottom: 24px; }

.wordmark {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.wordmark-accent {
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
  font-size: 1.36em;
  color: var(--blue);
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(40px, 8vw, 110px); padding-bottom: clamp(40px, 6vw, 80px); }

.disclaimer {
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1;
  margin: 0 0 .08em;
}

.headline {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--dark);
  font-size: clamp(40px, 9vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}
.headline-line { display: block; }
.headline-line--1 { padding-left: clamp(0px, 4vw, 56px); }
.headline-line--2 { padding-left: clamp(0px, 30vw, 392px); color: var(--blue); }

/* pitch — right aligned on the desktop, like the Figma */
.pitch {
  margin-top: clamp(28px, 4vw, 52px);
  margin-left: auto;
  max-width: 580px;
  text-align: right;
  border-right: 1.5px solid var(--dark);
  padding-right: 22px;
}
.pitch-text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.35;
  color: var(--grey);
  margin: 0 0 .6em;
}
.pitch-sig {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--dark);
  margin: 0;
}

/* ============================================================
   SLASHES RULE
   ============================================================ */
.rule {
  font-family: var(--font-serif);
  font-weight: 300;
  color: #000;
  letter-spacing: 3.84px;
  font-size: clamp(18px, 2vw, 24px);
  overflow: hidden;
  white-space: nowrap;
  margin-block: clamp(48px, 8vw, 96px);
  user-select: none;
}

/* ============================================================
   SECTION HEADS
   ============================================================ */
.section-head {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--blue);
  font-size: clamp(28px, 3.4vw, 37px);
  margin: 0 0 32px;
}
.section-head--center { text-align: center; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding-block: 8px; }
.service-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;   /* span the full width, edge to edge */
  align-items: center;
  gap: 8px 14px;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(16px, 1.9vw, 24px);
  color: var(--grey);
  text-align: center;
}
.service-list .dot { color: var(--grey); flex: none; }

/* ============================================================
   QUESTIONS
   ============================================================ */
.questions { padding-top: clamp(60px, 9vw, 120px); }
.questions-head {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--dark);
  font-size: clamp(26px, 3.2vw, 37px);
  margin: 0 0 .8em;
}
.question {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  font-size: clamp(26px, 4vw, 49px);
  line-height: 1.32;
  margin: 0 0 .35em;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding-top: 8px; }
.pricing-subhead {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(19px, 2vw, 24px);
  color: var(--grey);
  margin: 0 0 clamp(40px, 5vw, 56px);
  max-width: 760px;
}

/* shared text bits */
.tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  font-size: clamp(21px, 2.3vw, 26px);
  line-height: 1.25;
  margin: 0;
}
.desc {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--grey);
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.4;
  margin: 8px 0 0;
}

.row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }

/* "starts at" prefix on prices */
.from {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.46em;
  color: var(--grey);
  white-space: nowrap;
}

/* ---- Gut Check front-door panel ---- */
.gutcheck {
  background: var(--highlight);
  border-radius: 10px;
  padding: clamp(28px, 4vw, 44px);
  margin-bottom: clamp(48px, 6vw, 64px);
}
.gutcheck-name {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--dark);
  font-size: clamp(28px, 3.4vw, 37px);
}
.gutcheck-price {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--blue);
  font-size: clamp(28px, 3.4vw, 37px);
  white-space: nowrap;
}
.gutcheck .tagline { margin-top: 18px; }
.bullets {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--grey);
  font-size: clamp(18px, 1.9vw, 22px);
}
.bullets li { padding-left: 28px; position: relative; }
.bullets li::before { content: "\2022"; position: absolute; left: 4px; color: inherit; }
.bullet-accent { color: var(--blue); }
.gutcheck-closer {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--grey);
  font-size: clamp(17px, 1.8vw, 21px);
  margin: 22px 0 0;
}

/* ---- Stacked blocks ---- */
.blocks { display: flex; flex-direction: column; }
.block {
  border-top: 0.5px solid var(--hairline);
  padding-block: clamp(22px, 3vw, 28px);
}
.blocks .block:last-child { border-bottom: 0.5px solid var(--hairline); }
.block-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.block-name {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--dark);
  font-size: clamp(24px, 2.8vw, 30px);
}
.block-name--featured {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--blue);
  font-size: clamp(27px, 3.2vw, 36px);
}
.block-pricecol { display: flex; flex-direction: column; align-items: flex-end; text-align: right; gap: 3px; }
.block-priceline {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--blue);
  font-size: clamp(20px, 2.3vw, 25px);
  white-space: nowrap;
}
.block-rate {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--grey);
  font-size: clamp(15px, 1.5vw, 19px);
  white-space: nowrap;
}
.block .tagline { margin-top: 10px; }

/* ---- Ongoing / On Call ---- */
.ongoing { margin-top: clamp(48px, 6vw, 64px); }
.ongoing-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--grey);
  font-size: clamp(19px, 2vw, 22px);
  margin: 0 0 16px;
}
.oncall {
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: clamp(26px, 3.5vw, 40px) clamp(28px, 4vw, 44px);
}
.oncall .tagline { margin-top: 12px; }

/* ---- Fine print + prompt note ---- */
.fineprint {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--grey);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.45;
  margin: clamp(40px, 5vw, 56px) 0 0;
  max-width: 880px;
}
.prompt-note {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--grey);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.45;
  margin: 24px 0 0;
  max-width: 880px;
}
.prompt-note strong { color: var(--dark); font-weight: 600; }

/* ============================================================
   DELIVERY (two ways to get the fixes)
   ============================================================ */
.delivery { padding-top: clamp(60px, 9vw, 120px); }
.delivery-subhead {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(19px, 2vw, 24px);
  color: var(--grey);
  margin: 0 0 clamp(32px, 4vw, 44px);
}
.options { display: flex; gap: clamp(20px, 3vw, 32px); align-items: stretch; }
.option {
  flex: 1;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: clamp(28px, 4vw, 40px);
}
.option-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.option-title {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--dark);
  font-size: clamp(22px, 2.6vw, 29px);
  margin: 0 0 12px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  text-align: center;
  padding-top: clamp(72px, 10vw, 130px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.cta-head {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--dark);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15;
  margin: 0 auto clamp(28px, 4vw, 40px);
  max-width: 700px;
}
.text-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(19px, 2.2vw, 24px);
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 8px 24px rgba(20, 124, 243, 0.28);
}
.text-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(20, 124, 243, 0.36); background: #0f6fe0; }
.text-btn:active { transform: translateY(0); }
.text-btn-icon { width: 1.05em; height: 1.05em; flex: none; }
.cta-sub {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--grey);
  font-size: clamp(17px, 1.9vw, 22px);
  margin: clamp(22px, 3vw, 30px) auto 0;
  max-width: 520px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 36px;
  padding-bottom: 48px;
  border-top: 0.5px solid var(--hairline);
}
.wordmark--footer { font-size: 15px; }
.footer-meta {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--grey);
  font-size: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
  body { font-size: 18px; }

  .headline-line--1,
  .headline-line--2 { padding-left: 0; }

  .pitch {
    text-align: left;
    margin-left: 0;
    border-right: none;
    border-left: 1.5px solid var(--dark);
    padding-right: 0;
    padding-left: 18px;
    max-width: 100%;
  }

  .block-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .block-pricecol { align-items: flex-start; text-align: left; flex-direction: row; gap: 12px; align-items: baseline; }

  .row { flex-wrap: wrap; }

  .rule { letter-spacing: 2px; }

  /* services wrap + center on small screens */
  .service-list { flex-wrap: wrap; justify-content: center; gap: 6px 14px; }
  .service-list .dot { display: none; }

  /* deliverable options stack */
  .options { flex-direction: column; }
}
