/* =========================================================
   PORTFOLIO CAREER PROMPT PACK — FUNNEL STYLES
   Design language: annotated field notebook / highlighted dossier.
   Paper white + ink black + one loud highlighter yellow + one
   confident coral. Mono labels do the "eyebrow" work because the
   product itself is prompts — things you copy off a page.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  --paper:      #FCFAF4;
  --paper-dim:  #F3EFE4;
  --ink:        #17140F;
  --ink-soft:   #4A463E;
  --highlight:  #F4CB3A;
  --coral:      #E85A45;
  --coral-dark: #C1432F;
  --line:       #E4DECD;
  --card:       #FFFFFF;

  --display: 'Space Grotesk', 'Arial Black', sans-serif;
  --body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    'IBM Plex Mono', 'Courier New', monospace;

  --radius: 4px;
  --max: 760px;
}

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

html{ scroll-behavior: smooth; }

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

img, svg{ display:block; max-width:100%; }

a{ color: inherit; }

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

.wrap--wide{ max-width: 900px; }

/* ---------- Eyebrow / mono labels ---------- */
.eyebrow{
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before{
  content: "";
  width: 16px;
  height: 1px;
  background: var(--coral-dark);
  display: inline-block;
}

/* ---------- Marks: the highlighter-stroke signature ---------- */
mark{
  background: transparent;
  color: inherit;
  position: relative;
  padding: 0 2px;
}
mark::before{
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  bottom: 2px;
  height: 0.42em;
  background: var(--highlight);
  z-index: -1;
  transform: rotate(-0.6deg);
}

/* ---------- Typography ---------- */
h1, h2, h3{
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1{ font-size: clamp(34px, 6vw, 58px); }
h2{ font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
h3{ font-size: 19px; margin-bottom: 8px; }

p{ color: var(--ink-soft); }

.lede{
  font-size: clamp(17px, 2.4vw, 20px);
  color: var(--ink-soft);
  max-width: 58ch;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  padding: 17px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
  width: 100%;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--coral);
  border-color: var(--ink);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--primary:hover{
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.btn--dark{
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--highlight);
}
.btn--dark:hover{
  box-shadow: 2px 2px 0 var(--highlight);
  transform: translate(2px, 2px);
}

.btn--ghost{
  background: transparent;
  border-color: var(--line);
  color: var(--ink-soft);
  box-shadow: none;
  font-weight: 600;
}
.btn--ghost:hover{ border-color: var(--ink); color: var(--ink); }

.btn-sub{
  display:block;
  text-align:center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* ---------- Header ---------- */
.site-header{
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.brand span{ color: var(--coral-dark); }

/* ---------- Hero ---------- */
.hero{
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
}
.hero .eyebrow{ margin-bottom: 18px; }
.hero h1{ margin-bottom: 20px; }
.hero .lede{ margin-bottom: 32px; }
.hero-cta{ max-width: 340px; }

/* ---------- Prompt card strip (signature element) ---------- */
.card-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.prompt-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--line);
}
.prompt-card:nth-child(2){ transform: rotate(0.6deg); }
.prompt-card:nth-child(3){ transform: rotate(-0.5deg); }
.prompt-card .tag{
  display:inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--coral-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* ---------- Sections ---------- */
section{ padding: 56px 0; }
.section-border{ border-bottom: 1px solid var(--line); }
.section-dark{
  background: var(--ink);
  color: var(--paper);
}
.section-dark p{ color: #C9C4B6; }
.section-dark .eyebrow{ color: var(--highlight); }
.section-dark .eyebrow::before{ background: var(--highlight); }

/* ---------- Problem list ---------- */
.problem-list{
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.problem-list li{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 17px;
  color: var(--ink);
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.problem-list li::before{
  content: "→";
  font-family: var(--mono);
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- What's included ---------- */
.include-grid{
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.include-item{
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.include-num{
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--paper);
  background: var(--ink);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ---------- Bonus boxes ---------- */
.bonus-box{
  border: 2px dashed var(--coral);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 18px;
  background: #FFF8ED;
}
.bonus-box .eyebrow{ margin-bottom: 10px; }
.bonus-value{
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
}
.bonus-value s{ opacity: .6; }
.bonus-value strong{ color: var(--coral-dark); }

/* ---------- Who / who-not ---------- */
.fit-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.fit-col{
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.fit-col.yes{ background: #F2F8F1; border-color: #CFE3CC; }
.fit-col.no{ background: #FBF0EE; border-color: #EBCFC8; }
.fit-col h3{ margin-bottom: 12px; }
.fit-col ul{ list-style:none; display:grid; gap:10px; }
.fit-col li{ font-size: 15px; color: var(--ink); padding-left: 20px; position: relative; }
.fit-col.yes li::before{ content:"✓"; position:absolute; left:0; color:#3E7D3C; font-weight:700; }
.fit-col.no li::before{ content:"✕"; position:absolute; left:0; color:var(--coral-dark); font-weight:700; }

/* ---------- Proof ---------- */
.proof-block{
  border-left: 3px solid var(--highlight);
  padding: 4px 0 4px 22px;
  margin-top: 24px;
}
.proof-block p{ color: var(--ink); font-size: 17px; }

/* ---------- FAQ ---------- */
.faq-item{
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-q{
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  gap: 16px;
}
.faq-q .plus{
  font-family: var(--mono);
  font-size: 20px;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform .15s ease;
}
.faq-item.open .plus{ transform: rotate(45deg); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease;
}
.faq-a p{ padding-top: 12px; }
.faq-item.open .faq-a{ max-height: 300px; }

/* ---------- Final CTA ---------- */
.final-cta{
  text-align: center;
  padding: 72px 0;
}
.final-cta h2{ margin-bottom: 12px; }
.final-cta .lede{ margin: 0 auto 32px; }
.final-cta .hero-cta{ margin: 0 auto; }

/* ---------- Footer ---------- */
.site-footer{
  padding: 28px 0;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
}

/* =========================================================
   CHECKOUT PAGE
   ========================================================= */
.checkout-shell{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.checkout-summary{
  background: var(--ink);
  color: var(--paper);
  padding: 56px 40px;
}
.checkout-summary .wrap{ max-width: 420px; margin: 0; padding: 0; }
.checkout-form{
  padding: 56px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.checkout-form .wrap{ max-width: 420px; padding: 0; margin: 0; }

.product-line{
  display: flex;
  gap: 14px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #3A362D;
}
.product-thumb{
  width: 56px; height: 56px;
  background: var(--highlight);
  border-radius: var(--radius);
  flex-shrink: 0;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--ink);
  font-size: 18px;
}
.product-line h3{ color: var(--paper); margin-bottom: 4px; font-size: 16px; }
.product-line p{ color: #B9B4A6; font-size: 13px; }
.product-line .price{
  margin-left: auto;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--paper);
  white-space: nowrap;
}

.checkout-includes{ margin-bottom: 26px; }
.checkout-includes .eyebrow{ color: var(--highlight); margin-bottom: 14px; }
.checkout-includes .eyebrow::before{ background: var(--highlight); }
.checkout-includes ul{ list-style:none; display:grid; gap:10px; }
.checkout-includes li{
  font-size: 14px;
  color: #D8D4C7;
  display:flex;
  gap: 10px;
}
.checkout-includes li::before{ content:"✓"; color: var(--highlight); font-weight:700; }

.total-row{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 20px;
  margin-top: 8px;
  border-top: 1px solid #3A362D;
}
.total-row .label{ font-family: var(--mono); font-size: 13px; color: #B9B4A6; }
.total-row .amount{
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--paper);
}
.total-row .amount span{ font-size: 15px; color: var(--highlight); font-family: var(--mono); }

.form-label{
  display:block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
  margin-top: 16px;
}
.form-input{
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: 15px;
  background: var(--card);
  color: var(--ink);
}
.form-input:focus{
  outline: none;
  border-color: var(--coral);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.bump{
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 14px;
  cursor: pointer;
  transition: border-color .12s ease, background .12s ease;
  display: flex;
  gap: 14px;
}
.bump:hover{ border-color: var(--coral); }
.bump.checked{
  border-color: var(--coral);
  background: #FFF8ED;
}
.bump input[type="checkbox"]{
  width: 20px; height: 20px;
  margin-top: 2px;
  accent-color: var(--coral);
  flex-shrink: 0;
}
.bump-body{ flex: 1; }
.bump-title{
  display:flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  gap: 10px;
}
.bump-title .bump-price{
  font-family: var(--mono);
  color: var(--coral-dark);
  white-space: nowrap;
}
.bump-tag{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  display:block;
  margin-bottom: 4px;
}
.bump-body p{ font-size: 13.5px; margin-top: 4px; color: var(--ink-soft); }

.checkout-btn-wrap{ margin-top: 26px; }

.trust-row{
  display:flex;
  gap: 18px;
  justify-content: center;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.guarantee{
  display:flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 16px;
  background: var(--paper-dim);
  border-radius: var(--radius);
}
.guarantee .badge{
  font-family: var(--mono);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  flex-shrink: 0;
}
.guarantee p{ font-size: 13px; color: var(--ink-soft); }
.guarantee strong{ color: var(--ink); }

/* =========================================================
   UPSELL PAGE
   ========================================================= */
.upsell-shell{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 48px 0;
}
.upsell-card{
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 48px;
  box-shadow: 6px 6px 0 var(--ink);
}
.upsell-flag{
  display:inline-block;
  background: var(--highlight);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.upsell-card h1{ font-size: clamp(28px, 5vw, 38px); margin-bottom: 16px; }
.upsell-card .lede{ margin-bottom: 28px; max-width: none; }
.upsell-price-row{
  display:flex;
  align-items: baseline;
  gap: 12px;
  margin: 28px 0;
}
.upsell-price{
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
}
.upsell-price-old{
  font-family: var(--mono);
  font-size: 16px;
  color: var(--ink-soft);
  text-decoration: line-through;
}
.upsell-actions{ margin-top: 30px; }
.upsell-actions .btn{ margin-bottom: 12px; }
.no-thanks{
  display:block;
  text-align:center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 6px;
  background: none;
  border: none;
  width: 100%;
}

.confirm-panel{
  display:none;
  text-align:center;
  padding: 60px 0;
}
.confirm-panel.show{ display:block; }
.confirm-panel h1{ margin-bottom: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px){
  .checkout-shell{ grid-template-columns: 1fr; }
  .checkout-summary, .checkout-form{ padding: 40px 24px; }
  .card-strip{ grid-template-columns: 1fr; }
  .fit-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .upsell-card{ padding: 30px 24px; }
}
