/* styles.css, PitchDeckCost.com. The per-site Claude Design ("deck polish studio": bold
   Helvetica, #ff5436 accent, dark scorecard, warm paper, pill buttons) mapped onto the stable
   structural classes the templates emit. Mobile-first. No em dashes anywhere. */

:root {
  --accent: #ff5436;
  --accent-d: #e8431f;
  --ink: #111111;
  --ink-soft: #1c1c1c;
  --ink-2: #555555;
  --muted: #777777;
  --muted-2: #999999;
  --paper: #f6f4ef;
  --paper-2: #f3f1ec;
  --line: #e6e3db;
  --line-2: #ececec;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 22px;
  --pill: 999px;
  --shadow: 0 24px 48px -32px rgba(0, 0, 0, .35);
  --shadow-sm: 0 12px 28px -22px rgba(0, 0, 0, .4);
  --font: 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  --wrap: 1140px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--font); font-size: 16px; line-height: 1.5;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
body.has-sticky { padding-bottom: 72px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -.03em; line-height: 1.05; }
p { margin: 0 0 14px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(16px, 3vw, 34px); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 14px; line-height: 1;
  padding: 13px 22px; border-radius: var(--pill); border: 2px solid transparent;
  cursor: pointer; transition: transform .15s, background .15s, color .15s, border-color .15s;
  text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.btn-clay { background: var(--accent); color: #fff; }
.btn-clay:hover { background: var(--accent-d); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-ghost, .btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover, .btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .6); }
.btn-white { background: #fff; color: var(--ink); }
.btn-underline { background: transparent; color: var(--ink); border: 0; border-radius: 0; padding: 13px 4px; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 2px; }
.btn-underline:hover { color: var(--accent); transform: none; }
.btn-lg { font-size: 15px; padding: 16px 30px; }
.btn-sm { font-size: 13px; padding: 10px 16px; }
.btn-block { display: flex; width: 100%; }

.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.eyebrow-pill { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); background: var(--paper); border: 1px solid var(--line); padding: 7px 14px; border-radius: var(--pill); margin-bottom: 20px; }

/* ---- nav ---- */
.nav { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, .88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-2); }
.nav .bar { display: flex; align-items: center; gap: 14px; padding: 14px clamp(16px, 3vw, 34px); }
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 17px; letter-spacing: -.03em; }
.brand-badge { display: inline-grid; place-items: center; width: 26px; height: 26px; background: var(--accent); color: #fff; border-radius: 7px; font-size: 15px; font-weight: 800; }
.name .wm-accent { color: var(--accent); }
.nav-links { margin-left: auto; display: none; gap: 24px; font-size: 13px; font-weight: 600; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; }
.nav-toggle { background: none; border: 0; font-size: 24px; line-height: 1; cursor: pointer; color: var(--ink); padding: 4px 6px; }
.nav-menu { display: flex; flex-direction: column; padding: 6px clamp(16px, 3vw, 34px) 14px; border-top: 1px solid var(--line-2); }
.nav-menu[hidden] { display: none; }
.nav-menu a { padding: 11px 0; font-size: 15px; font-weight: 600; border-bottom: 1px solid var(--line-2); }
.nav-menu a:last-child { border-bottom: 0; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { margin-left: 6px; }
  .nav-toggle, .nav-menu { display: none !important; }
}

/* ---- sections ---- */
.section { padding: clamp(40px, 6vw, 72px) 0; }
.section.paper { background: var(--paper); }
.sec-head { margin-bottom: 26px; }
.sec-head.center { text-align: center; }
.sec-head .eyebrow { display: block; }
.sec-head h2 { font-size: clamp(26px, 4.2vw, 46px); }
.sec-head p { margin-top: 12px; font-size: 16px; color: var(--ink-2); max-width: 52ch; }
.sec-head.center p { margin-left: auto; margin-right: auto; }
.sec-head.row { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: flex-end; justify-content: space-between; }
.sec-aside { font-size: 12px; font-weight: 600; color: var(--muted-2); }

/* ---- hero ---- */
.hero { padding: clamp(36px, 6vw, 72px) 0 clamp(24px, 4vw, 40px); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.hero-copy h1 { font-size: clamp(38px, 8vw, 80px); line-height: .96; letter-spacing: -.045em; margin-bottom: 20px; }
.hero-sub { font-size: clamp(16px, 1.9vw, 20px); line-height: 1.45; color: var(--ink-2); margin-bottom: 28px; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.trust-line { font-size: 12.5px; color: var(--muted-2); margin: 20px 0 0; }
.audience-strip { background: var(--ink); color: #cfcabd; font-size: 13px; font-weight: 600; text-align: center; padding: 12px 16px; letter-spacing: .01em; }

/* hero scorecard preview card */
.hero-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.hc-photo { position: relative; height: 120px; border-radius: var(--radius-sm); background: linear-gradient(135deg, #2a2a2a, #161616); margin-bottom: 16px; }
.hc-tag { position: absolute; left: 12px; bottom: 10px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #8a8a8a; }
.hc-badge { position: absolute; right: 12px; top: 12px; font-size: 10px; font-weight: 800; letter-spacing: .1em; color: var(--accent); }
.hc-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.hc-price { font-size: 30px; font-weight: 800; letter-spacing: -.03em; }
.hc-price span { font-size: 13px; font-weight: 500; color: #888; margin-left: 4px; }
.hc-items { font-size: 11px; color: #888; }
.hc-bars { display: flex; gap: 5px; height: 10px; margin-bottom: 10px; }
.hc-bars span { background: var(--accent); border-radius: 3px; }
.hc-bars span.g { background: #4a4a4a; }
.hc-bars span.n { background: #2e2e2e; }
.hc-legend { font-size: 11px; color: #777; }

/* ---- the tool ---- */
.tool { padding: clamp(20px, 4vw, 40px) 0 clamp(36px, 5vw, 64px); scroll-margin-top: 80px; }
.tool-layout { display: grid; grid-template-columns: 1fr; gap: 18px; }
.tool-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 2.6vw, 30px); box-shadow: var(--shadow); }
.tool-h { font-size: 22px; letter-spacing: -.02em; margin-bottom: 6px; }
.tool-h.dark { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.tool-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.tool-section-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin: 18px 0 10px; }
.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tool-field { display: flex; flex-direction: column; gap: 5px; }
.tool-field.num { }
.tf-label { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.tool-field select, .tool-field input { width: 100%; font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; }
.tool-field select:focus, .tool-field input:focus { outline: none; border-color: var(--accent); background: #fff; }
.num-wrap { position: relative; display: flex; align-items: center; }
.num-wrap .unit { position: absolute; left: 12px; font-size: 13px; font-weight: 700; color: var(--muted-2); pointer-events: none; }
.num-wrap input { padding-left: 26px; }
.tool-card .btn { margin-top: 22px; }

.tool-result { background: var(--ink); color: #fff; border-radius: var(--radius); padding: clamp(20px, 2.6vw, 30px); scroll-margin-top: 80px; }
.result-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0 18px; }
.result-row { background: var(--ink-soft); border-radius: var(--radius-sm); padding: 15px; }
.rr-label { font-size: 11px; color: #9a9a9a; margin-bottom: 6px; }
.rr-note { display: none; }
.rr-val { font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.result-disc { border-top: 1px solid #2a2a2a; padding-top: 14px; }
.result-disc p { font-size: 11.5px; color: #888; line-height: 1.5; margin: 0 0 6px; }
.result-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; }
  .tool-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ---- steps ---- */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.step-d { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.step-card h3 { font-size: 19px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--ink-2); margin: 0; }

/* ---- workflow cards ---- */
.wf-grid, .guide-grid, .related-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.wf-card { display: block; background: var(--paper); border-radius: var(--radius); padding: 24px; transition: transform .2s, box-shadow .2s, background .2s; }
.wf-card:hover { transform: translateY(-4px); background: #fff; box-shadow: var(--shadow-sm); }
.wf-ic { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; background: var(--accent); color: #fff; margin-bottom: 14px; }
.wf-card h3 { font-size: 18px; margin-bottom: 8px; }
.wf-card p { font-size: 13px; line-height: 1.5; color: var(--ink-2); margin: 0; }

/* ---- guide cards ---- */
.guide-card { display: block; background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 22px; transition: border-color .15s, transform .15s; }
.guide-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.g-kicker { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.guide-card h3 { font-size: 18px; margin-bottom: 9px; }
.guide-card p { font-size: 13.5px; line-height: 1.5; color: var(--ink-2); margin: 0 0 12px; }
.cta-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--accent); }
.cta-link .ar { transition: transform .15s; }
.guide-card:hover .cta-link .ar, .wf-card:hover .ar { transform: translateX(3px); }

/* ---- why ---- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.why-grid h2 { font-size: clamp(24px, 3.6vw, 40px); margin: 8px 0 12px; }
.why-grid > div p { color: var(--ink-2); margin: 0; }
.why-bullets { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.why-bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; font-weight: 600; }
.tick { display: inline-grid; place-items: center; width: 24px; height: 24px; min-width: 24px; border-radius: 50%; background: var(--accent); color: #fff; }

@media (min-width: 760px) {
  .steps-grid, .wf-grid, .guide-grid, .related-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (min-width: 760px) {
  .wf-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- lead band ---- */
.lead-band { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(24px, 3.4vw, 48px); display: grid; grid-template-columns: 1fr; gap: 28px; }
.lead-band-copy h2 { font-size: clamp(26px, 4vw, 44px); margin-bottom: 12px; }
.lead-band-copy p { color: var(--ink-2); margin: 0 0 10px; }
.lead-band .fineprint, .fineprint { font-size: 12.5px; color: var(--muted-2); }
.lead-band-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
@media (min-width: 880px) { .lead-band { grid-template-columns: .9fr 1.1fr; align-items: center; } }

/* ---- forms ---- */
.lead-form { display: block; }
.grid2 { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .grid2 { grid-template-columns: 1fr 1fr; } }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.fg .req { color: var(--accent); }
.fg input, .fg select, .fg textarea { width: 100%; font-family: var(--font); font-size: 15px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 14px; }
.fg textarea { min-height: 92px; resize: vertical; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--accent); }
.fg .err { display: none; font-size: 12px; color: var(--accent-d); font-weight: 600; }
.fg.invalid input, .fg.invalid select, .fg.invalid textarea { border-color: var(--accent-d); }
.fg.invalid .err { display: block; }
.form-status { display: none; background: #fde9e4; color: var(--accent-d); font-size: 13px; font-weight: 600; padding: 11px 14px; border-radius: 10px; margin-bottom: 14px; }
.form-status.show { display: block; }
.form-note { font-size: 12px; color: var(--muted); margin: 6px 0 14px; line-height: 1.5; }
.noscript-note { font-size: 13px; color: var(--accent-d); }
.form-success { display: none; text-align: center; padding: 20px 6px; }
.form-success.show { display: block; }
.form-success .check { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--accent); color: #fff; margin-bottom: 14px; }
.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--ink-2); margin: 0 auto 8px; max-width: 42ch; }
.success-next { font-weight: 600; color: var(--ink); }

/* ---- modal ---- */
.modal { display: none; position: fixed; inset: 0; z-index: 60; background: rgba(17, 17, 17, .55); padding: 18px; overflow-y: auto; }
.modal.open { display: flex; align-items: flex-start; justify-content: center; }
.modal-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 34px); width: 100%; max-width: 620px; margin: clamp(20px, 6vh, 70px) auto; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5); }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.modal-head h3 { font-size: 23px; }
.modal .x { background: none; border: 0; font-size: 26px; line-height: 1; color: var(--muted); cursor: pointer; padding: 0 4px; }
.modal .sub, .sub { font-size: 14px; color: var(--ink-2); margin-bottom: 18px; }

/* ---- sticky CTA (mobile only) ---- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; background: rgba(255, 255, 255, .94); backdrop-filter: blur(8px); border-top: 1px solid var(--line); padding: 10px clamp(12px, 3vw, 20px); }
@media (min-width: 900px) { .sticky-cta { display: none; } body.has-sticky { padding-bottom: 0; } }

/* ---- interior pages ---- */
.phero { padding: clamp(28px, 4vw, 52px) 0 clamp(16px, 2.5vw, 28px); }
.crumbs { font-size: 12.5px; color: var(--muted-2); margin-bottom: 16px; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.crumbs a:hover { color: var(--accent); }
.phero h1 { font-size: clamp(30px, 5.4vw, 56px); letter-spacing: -.04em; margin-bottom: 16px; }
.phero .lead { font-size: clamp(16px, 1.9vw, 20px); color: var(--ink-2); max-width: 60ch; margin-bottom: 22px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.page-body { padding: clamp(12px, 2vw, 28px) 0 clamp(36px, 5vw, 64px); }
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(22px, 3vw, 32px); margin: 32px 0 14px; }
.prose p { font-size: 16px; line-height: 1.65; color: #2c2c2c; margin: 0 0 16px; }
.prose ul { padding-left: 20px; margin: 0 0 18px; }
.prose li { font-size: 16px; line-height: 1.6; color: #2c2c2c; margin-bottom: 8px; }
.prose a { color: var(--accent-d); text-decoration: underline; text-underline-offset: 3px; }
.note { background: var(--paper); border-left: 3px solid var(--accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 18px; font-size: 14px; color: var(--ink-2); margin: 18px 0; }
.crosslink { display: block; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; margin: 18px 0; }
.crosslink:hover { border-color: var(--accent); }
.crosslink .k { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.crosslink .t { font-size: 16px; font-weight: 700; }
.mini-card { display: block; background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 20px; transition: border-color .15s, transform .15s; }
.mini-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.mini-card h3 { font-size: 16px; margin-bottom: 7px; }
.mini-card p { font-size: 13px; color: var(--ink-2); margin: 0; }

/* ---- faq ---- */
.faq { max-width: 800px; }
.faq-layout { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
@media (min-width: 880px) { .faq-layout { grid-template-columns: 1.4fr .9fr; gap: 44px; } }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary { list-style: none; cursor: pointer; font-size: 16px; font-weight: 700; padding: 16px 30px 16px 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 4px; top: 14px; font-size: 22px; font-weight: 400; color: var(--accent); }
.faq details[open] summary::after { content: '\2013'; }
.faq .ans { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); padding: 0 30px 18px 0; }
.disc-card { background: var(--ink); color: #bbb; border-radius: var(--radius); padding: 26px; align-self: start; }
.disc-kicker { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }

/* ---- signal preview table (internal) ---- */
.signal-table-wrap { overflow-x: auto; margin: 16px 0; }
.signal-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.signal-table th, .signal-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.signal-table th { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.signal-table code { font-size: 12px; background: var(--paper); padding: 1px 5px; border-radius: 4px; }

/* ---- footer ---- */
.foot { background: var(--ink); color: #bbb; }
.foot .wrap { padding: clamp(36px, 5vw, 56px) clamp(16px, 3vw, 34px) 28px; }
.foot-top { display: grid; grid-template-columns: 1fr; gap: 28px; padding-bottom: 26px; border-bottom: 1px solid #2a2a2a; }
.bizcol .brand { color: #fff; margin-bottom: 14px; }
.foot-blurb { font-size: 13px; color: #999; max-width: 40ch; margin: 0; }
.foot-col h4 { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.foot-col a { display: block; font-size: 13px; color: #aaa; padding: 5px 0; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { display: flex; flex-direction: column; gap: 14px; padding-top: 22px; }
.foot-bottom .disc { font-size: 11.5px; color: #888; line-height: 1.6; }
.foot-bottom .meta { font-size: 12px; color: #777; }
.foot-bottom .meta a:hover { color: var(--accent); }
@media (min-width: 760px) { .foot-top { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; } }
