:root {
  --ink: #0a1020;
  --ink-2: #111a31;
  --paper: #f3f5f8;
  --white: #ffffff;
  --blue: #2852ff;
  --blue-dark: #173edb;
  --mint: #b9f4df;
  --line: #dce0e8;
  --line-dark: #c7ccd6;
  --muted: #626a78;
  --soft: #eef1f7;
  --danger: #a33a3a;
  --radius: 6px;
  --shadow: 0 32px 90px rgba(5, 11, 24, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
.hidden { display: none !important; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 6px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  max-width: 1440px;
  margin: auto;
  padding: 1.25rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 820;
  letter-spacing: -.04em;
}
.brand > span:last-child > span { color: var(--blue); }
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 2.15rem;
  background: var(--ink);
  color: white;
  border-radius: 6px;
  font-size: 0;
  letter-spacing: 0;
}
.brand-mark::before { content: ""; width: 12px; height: 16px; border: 1.5px solid currentColor; box-shadow: 4px -4px 0 -1px var(--ink), 4px -4px 0 0 currentColor; }
.brand-mark::after { content: ""; position: absolute; left: 11px; top: 12px; width: 6px; height: 1px; background: currentColor; box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor; }
.site-header nav { display: flex; align-items: center; gap: 1.65rem; }
.site-header nav a { text-decoration: none; font-size: .92rem; font-weight: 670; }
.site-header nav a:hover { color: var(--blue); }
.site-header .nav-cta { background: var(--ink); color: white; padding: .72rem 1rem; border-radius: 7px; }
.site-header .nav-cta:hover { background: var(--blue); color: white; }
.home-header { max-width: none; background: var(--ink); color: white; border-bottom: 1px solid rgba(255,255,255,.1); }
.home-header .brand-mark { background: var(--blue); }
.home-header .brand-mark::before { box-shadow: 4px -4px 0 -1px var(--blue), 4px -4px 0 0 currentColor; }
.home-header nav a { color: #dce3f0; }
.home-header .nav-cta { background: white; color: var(--ink); }
.home-header .nav-cta:hover { background: var(--mint); color: var(--ink); }

.hero-builder {
  max-width: none;
  margin: auto;
  padding: 5.5rem max(4vw, calc((100vw - 1360px)/2)) 6.5rem;
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(580px, 1.18fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  min-height: calc(100vh - 78px);
  background: var(--ink);
  color: white;
}
.eyebrow, .mini-label {
  margin: 0;
  color: var(--blue);
  font-size: .76rem;
  line-height: 1.4;
  font-weight: 820;
  letter-spacing: .17em;
}
.hero-copy h1 {
  margin: 1.1rem 0 1.7rem;
  max-width: 760px;
  font-size: clamp(3.7rem, 5.6vw, 6.4rem);
  line-height: .91;
  letter-spacing: -.067em;
  font-weight: 790;
}
.hero-copy h1 span { display: block; color: #aebeff; }
.hero-copy .eyebrow { color: var(--mint); }
.hero-lead { max-width: 37rem; color: #c0c9d9; font-size: 1.16rem; }
.hero-actions { display: flex; align-items: center; gap: .8rem; margin-top: 2rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.35rem; }
.hero-proof span { padding-right: .85rem; border-right: 1px solid #35405a; color: #bdc5d3; font-size: .79rem; font-weight: 620; }
.hero-proof span:last-child { border-right: 0; }
.hero-copy .text-button { color: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: .82rem 1.05rem;
  color: var(--ink);
  background: white;
  text-decoration: none;
  font-weight: 760;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, .tab:focus-visible, summary:focus-visible, .dialog-close:focus-visible, .text-link:focus-visible { outline: 3px solid rgba(47, 91, 255, .38); outline-offset: 2px; }
.button.primary { background: var(--blue); color: white; }
.button.primary:hover { background: var(--blue-dark); }
.button.primary:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.button.quiet { border-color: var(--line-dark); background: white; }
.button.full { width: 100%; border-color: #343b49; background: #222834; color: white; }
.button.small { min-height: 38px; padding: .55rem .75rem; font-size: .86rem; border-color: var(--line); }
.text-button { color: var(--ink); background: transparent; padding-inline: .4rem; }
.text-link { border: 0; background: transparent; text-decoration: underline; cursor: pointer; padding: .4rem; }
.text-link.danger { color: #d8a4a4; margin: .65rem auto 0; display: block; }

.pack-showcase { position: relative; min-height: 640px; }
.showcase-photo { position: absolute; inset: 0 0 3.5rem 4.5rem; overflow: hidden; border-radius: 3px; background: #14213e; box-shadow: 0 34px 80px rgba(0,0,0,.34); }
.showcase-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); pointer-events: none; }
.showcase-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.showcase-label { position: absolute; top: 2rem; left: 0; z-index: 3; width: 230px; padding: 1.1rem 1.2rem; display: grid; background: white; color: var(--ink); box-shadow: 0 18px 50px rgba(0,0,0,.24); }
.showcase-label span { color: var(--blue); font-size: .63rem; font-weight: 820; letter-spacing: .15em; }
.showcase-label strong { margin-top: .45rem; font-size: 1.15rem; }
.showcase-label small { margin-top: .1rem; color: var(--muted); }
.document-fan { position: absolute; right: .5rem; bottom: 0; z-index: 4; width: 455px; height: 275px; }
.fan-sheet { position: absolute; width: 174px; height: 236px; padding: 1rem; overflow: hidden; background: white; color: var(--ink); box-shadow: 0 18px 45px rgba(0,0,0,.34); font-size: .58rem; }
.fan-sheet > span, .fan-brand { display: block; color: var(--blue); font-size: .52rem; font-weight: 850; letter-spacing: .13em; }
.fan-catalog { left: 0; bottom: 0; transform: rotate(-7deg); }
.fan-catalog .fan-image { height: 100px; margin: .8rem 0 1rem; background: url('/assets/catalogpack-hero.webp') 73% 65% / 250% auto; }
.fan-catalog b { display: block; font: 760 1.25rem/1 Georgia, serif; }
.fan-catalog small { display: block; margin-top: .55rem; color: var(--muted); }
.fan-linesheet { left: 94px; bottom: 13px; transform: rotate(-2deg); }
.fan-linesheet b { position: absolute; bottom: 1rem; left: 1rem; }
.fan-linesheet i, .fan-price i, .fan-order i { display: block; height: 29px; border-bottom: 1px solid #d7dce5; }
.fan-linesheet i::before { content: ""; display: inline-block; width: 25px; height: 20px; margin-top: 5px; background: #dce4ff; }
.fan-price { left: 188px; bottom: 6px; transform: rotate(3deg); }
.fan-price i { background: linear-gradient(90deg,#dce4ff 0 20%,transparent 20% 27%,#e1e4e9 27% 78%,transparent 78%); }
.fan-price b { position: absolute; bottom: 1rem; left: 1rem; }
.fan-order { right: 0; bottom: 0; transform: rotate(8deg); background: #e5fff5; }
.fan-order strong { display: block; margin-top: 1.3rem; font-size: .8rem; }

.catalogue-stage {
  position: relative;
  min-height: 660px;
  padding: 2.25rem 11.5rem 2.25rem 2.25rem;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.stage-label { display: flex; justify-content: space-between; color: white; font-size: .68rem; letter-spacing: .13em; font-weight: 800; }
.catalogue-sample {
  position: relative;
  z-index: 2;
  min-height: 570px;
  margin-top: 1.2rem;
  padding: 2.1rem;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 4px;
  color: var(--ink);
}
.sample-head, .sample-footer { display: flex; justify-content: space-between; gap: 1rem; font-size: .62rem; letter-spacing: .13em; font-weight: 820; }
.catalogue-sample h2 { margin: 4.2rem 0 3rem; font: 780 clamp(2.4rem, 4vw, 4.5rem)/.95 Georgia, serif; letter-spacing: -.05em; }
.sample-products { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sample-products > div { display: grid; gap: .2rem; font-size: .68rem; }
.sample-products b { font-size: .8rem; }
.sample-products span { color: var(--muted); }
.shape { display: block; height: 122px; margin-bottom: .5rem; background: #dbe2ff; }
.shape.two { background: #d6f3ea; }
.sample-footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); letter-spacing: .04em; }
.stage-card { position: absolute; z-index: 3; right: 1.3rem; width: 210px; padding: 1.15rem; border-radius: 6px; box-shadow: 0 18px 40px rgba(0,0,0,.24); font-size: .68rem; }
.stage-card > span { font-size: .61rem; letter-spacing: .15em; font-weight: 820; }
.stage-card > strong { display: block; margin: .55rem 0 1rem; font-size: 1.05rem; line-height: 1.15; }
.stage-card-price { top: 9rem; background: var(--mint); color: var(--ink); }
.stage-card-price div { display: flex; justify-content: space-between; padding: .5rem 0; border-top: 1px solid rgba(16,19,26,.18); }
.stage-card-order { bottom: 4.2rem; background: var(--blue); color: white; }
.stage-card-order p { margin: 0; opacity: .84; }

.format-strip {
  padding: 1.05rem 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 4rem);
  background: white;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: .84rem;
}
.format-strip span { color: var(--blue); font-size: .68rem; letter-spacing: .15em; font-weight: 820; }
.format-strip p { margin: 0; }

.builder-section, .included-section, .workflow-section, .seo-links-section, .faq-section { max-width: 1440px; margin: auto; padding: 7rem 4vw; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 5vw; align-items: end; margin-bottom: 3rem; }
.section-heading h2, .workflow-section h2, .use-cases h2, .seo-links-section h2, .faq-section h2 {
  margin: .75rem 0 0;
  font-size: clamp(2.45rem, 4.2vw, 5rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.section-heading > p { max-width: 35rem; color: var(--muted); font-size: 1.05rem; }
.builder-heading { align-items: center; }
.price-ticket { justify-self: end; min-width: 240px; padding: 1.2rem 1.35rem; display: grid; border: 1px solid var(--line-dark); background: white; border-radius: 10px; }
.price-ticket small { font-size: .64rem; letter-spacing: .13em; font-weight: 820; }
.price-ticket strong { font-size: 2.25rem; letter-spacing: -.06em; }
.price-ticket span { color: var(--muted); font-size: .8rem; }

.builder-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 1.35rem; }
.form-panel { min-width: 0; border: 1px solid var(--line); background: white; border-radius: 14px; overflow: hidden; box-shadow: 0 16px 48px rgba(16,19,26,.07); }
.form-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: #f2f4f8; }
.tab { min-height: 54px; padding: .8rem; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted); font-size: .86rem; font-weight: 780; cursor: pointer; }
.tab:last-child { border-right: 0; }
.tab span { display: inline-grid; place-items: center; min-width: 1.4rem; height: 1.4rem; margin-left: .3rem; padding: 0 .3rem; border-radius: 99px; background: #dfe4ef; font-size: .68rem; }
.tab.active { background: white; color: var(--blue); box-shadow: inset 0 3px 0 var(--blue); }
.tab-panel { display: none; padding: 2rem; }
.tab-panel.active { display: block; }
.panel-intro { padding-bottom: 1.4rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.panel-intro > span, .panel-title-row .mini-label { color: var(--blue); font-size: .68rem; letter-spacing: .15em; font-weight: 820; }
.panel-intro h3, .panel-title-row h3 { margin: .35rem 0; font-size: 1.75rem; letter-spacing: -.04em; }
.panel-intro p, .panel-title-row p { margin: 0; color: var(--muted); }
.panel-title-row { display: flex; align-items: start; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.field-grid { display: grid; gap: .95rem; }
.field-grid.two { grid-template-columns: 1fr 1fr; }
label { display: grid; gap: .42rem; margin-bottom: 1rem; color: #313846; font-size: .78rem; font-weight: 740; }
input, select, textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  padding: .82rem .88rem;
  background: white;
  color: var(--ink);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(47,91,255,.17); border-color: var(--blue); }
input[type="color"] { height: 49px; padding: .3rem; }
.upload-box, .csv-upload {
  min-height: 76px;
  padding: 1rem;
  border: 1px dashed #aeb6c5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #f8f9fb;
  cursor: pointer;
}
.upload-box span, .csv-upload { color: var(--ink); }
.upload-box small, .csv-upload span { display: block; color: var(--muted); font-weight: 500; }
.upload-box input, .csv-upload input { width: auto; max-width: 48%; padding: .45rem; background: white; }
.microcopy { margin: -.4rem 0 .8rem; color: var(--muted); font-size: .78rem; }
.import-row { display: grid; grid-template-columns: 1.35fr .65fr; gap: .85rem; align-items: stretch; margin-bottom: 1rem; }
.csv-upload { margin: 0; display: grid; grid-template-columns: auto 1fr; justify-content: start; }
.csv-upload input { grid-row: 1 / 3; width: 160px; max-width: 160px; }
.notice { margin: 0 0 1rem; padding: .8rem 1rem; border-left: 4px solid var(--blue); background: #edf1ff; color: #263358; }
.notice.error { border-color: var(--danger); background: #fff0f0; color: #702c2c; }
.product-editor-list { display: grid; gap: .9rem; }
.product-editor { border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.product-editor-head { padding: .75rem .9rem; display: flex; justify-content: space-between; gap: .8rem; background: #f3f5f9; }
.product-editor-head > div { display: flex; gap: .65rem; align-items: center; }
.product-number { display: grid; place-items: center; min-width: 1.6rem; height: 1.6rem; padding: 0 .5rem; border-radius: 3px; background: var(--ink); color: white; font-size: .62rem; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.remove-product { border: 0; background: transparent; color: var(--danger); text-decoration: underline; cursor: pointer; }
.product-editor-body { padding: 1rem; display: grid; grid-template-columns: 130px minmax(0,1fr); gap: 1rem; }
.product-image-upload { position: relative; width: 130px; height: 160px; margin: 0; overflow: hidden; border: 1px dashed #aeb6c5; border-radius: 7px; background: #f7f8fb; cursor: pointer; }
.product-image-upload input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.product-image-preview { width: 100%; height: 100%; display: grid; place-items: center; padding: .7rem; text-align: center; color: var(--muted); background-position: center; background-size: cover; }
.product-fields label { margin-bottom: .4rem; }
.output-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.3rem; }
.output-grid label, .style-option { display: flex; align-items: start; gap: .75rem; padding: 1rem; margin: 0; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.output-grid input, .style-option input { width: 1.05rem; height: 1.05rem; margin-top: .18rem; accent-color: var(--blue); }
.output-grid b, .style-option b { display: block; color: var(--ink); }
.output-grid small, .style-option small { display: block; color: var(--muted); font-weight: 500; }
.style-option { margin-top: .75rem; }
.builder-actions { padding: 1rem 2rem; display: flex; justify-content: flex-end; gap: .7rem; border-top: 1px solid var(--line); background: #f6f7fa; }

.summary-panel { position: sticky; top: 1rem; padding: 1.25rem; background: var(--ink); color: white; border-radius: 14px; box-shadow: var(--shadow); }
.summary-top { display: flex; align-items: center; justify-content: space-between; font-size: .69rem; letter-spacing: .12em; font-weight: 800; }
.summary-top strong { color: var(--mint); font-size: .85rem; }
.completion-track { height: 4px; margin: .75rem 0 1.1rem; overflow: hidden; border-radius: 99px; background: #323946; }
.completion-track span { display: block; height: 100%; width: 20%; background: var(--mint); transition: width .25s ease; }
.mini-document { min-height: 345px; padding: 1.2rem; display: flex; flex-direction: column; background: white; color: var(--ink); border-radius: 5px; }
.mini-doc-head { display: flex; align-items: center; gap: .55rem; font-size: .7rem; font-weight: 800; letter-spacing: .07em; }
.mini-doc-head div { width: 1.8rem; height: 1.8rem; display: grid; place-items: center; background: var(--blue); color: white; border-radius: 4px; background-size: contain; background-repeat: no-repeat; background-position: center; }
.mini-document > p { margin: 2.2rem 0 .2rem; font-size: .56rem; letter-spacing: .15em; color: var(--blue); font-weight: 800; }
.mini-document > h3 { margin: 0; font: 760 1.75rem/.95 Georgia, serif; letter-spacing: -.04em; }
.mini-products { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; margin-top: 1.5rem; }
.mini-products i { height: 56px; background: url('/assets/catalogpack-hero.webp') 58% 48% / 320% auto; }
.mini-products i:nth-child(2) { background-position: 77% 50%; }
.mini-products i:nth-child(3) { background-position: 54% 76%; }
.mini-products i:nth-child(4) { background-position: 84% 78%; }
.mini-rule { margin-top: auto; border-top: 1px solid var(--line); }
.mini-document dl { margin: .75rem 0 0; display: flex; justify-content: space-between; gap: .5rem; }
.mini-document dl div { display: grid; }
.mini-document dt { color: var(--muted); font-size: .58rem; }
.mini-document dd { margin: 0; font-weight: 800; font-size: .75rem; }
.privacy-note { display: flex; gap: .7rem; margin: 1rem 0; color: #c7ccd6; font-size: .75rem; }
.privacy-note > span { color: var(--mint); font-size: 1.2rem; }
.privacy-note p { margin: 0; }
.privacy-note b { color: white; }

.included-section { border-top: 1px solid var(--line); }
.document-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.document-grid article { min-height: 360px; padding: 1.35rem; background: white; border: 1px solid var(--line); }
.document-grid article > span { color: var(--blue); font-size: .7rem; font-weight: 820; letter-spacing: .14em; }
.document-grid h3 { margin: 1.35rem 0 .65rem; font-size: 1.35rem; letter-spacing: -.035em; }
.document-grid p { margin: 0; color: var(--muted); }
.doc-card-preview { height: 125px; margin-top: 1.35rem; padding: .75rem; background: #f5f6f8; border: 1px solid var(--line); }
.doc-card-preview i { display: block; }
.catalogue-preview { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 1fr 1fr; gap: .4rem; }
.catalogue-preview i { background: #dce4ff; }
.catalogue-preview i:first-child { grid-row: 1 / 3; background: url('/assets/catalogpack-hero.webp') 72% 56% / 260% auto; }
.rows-preview i, .price-preview i, .order-preview i { height: 23px; border-bottom: 1px solid #cdd2dc; background: linear-gradient(90deg,#ced8fb 0 18%,transparent 18% 24%,#dfe2e8 24% 78%,transparent 78%); }
.order-preview i { background: linear-gradient(90deg,#dfe2e8 0 58%,transparent 58% 64%,#c9d4fa 64% 100%); }

.workflow-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; }
.workflow-image { min-height: 620px; overflow: hidden; }
.workflow-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.workflow-card, .use-cases { padding: clamp(2.2rem,4vw,4.5rem); border-radius: 0; }
.workflow-card { background: var(--ink); color: white; }
.workflow-card .eyebrow { color: var(--mint); }
.workflow-points { margin: 2.2rem 0; }
.workflow-points > div { padding: 1.1rem 0; border-top: 1px solid #35405a; }
.workflow-points b { font-size: 1.02rem; }
.workflow-points p { margin: .25rem 0 0; color: #b8c1d0; }
.use-cases { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; background: #dfe5f4; }
.use-cases .eyebrow { color: var(--ink); }
.use-cases > .eyebrow { grid-column: 1; grid-row: 1; }
.use-cases > h2 { grid-column: 1; grid-row: 2 / span 2; }
.use-cases > p:not(.eyebrow) { grid-column: 2; grid-row: 2; color: var(--muted); font-size: 1.05rem; }
.use-cases .audience-list { grid-column: 2; grid-row: 3; display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin: 0; }
.use-cases .audience-list span { padding: .85rem 0; border-top: 1px solid #aeb9d0; border-radius: 0; font-size: .88rem; font-weight: 720; }

.seo-links-section { display: grid; grid-template-columns: .55fr 1.45fr; gap: 5vw; align-items: start; }
.seo-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.seo-card-grid a { min-height: 220px; padding: 1.35rem; display: flex; flex-direction: column; border: 1px solid var(--line); background: white; text-decoration: none; border-radius: 10px; }
.seo-card-grid a:hover { border-color: var(--blue); box-shadow: 0 12px 28px rgba(47,91,255,.1); }
.seo-card-grid span { color: var(--blue); font-size: .65rem; letter-spacing: .14em; font-weight: 820; }
.seo-card-grid h3 { margin: auto 0 .6rem; font-size: 1.28rem; letter-spacing: -.035em; }
.seo-card-grid p { margin: 0; color: var(--muted); }

.faq-section { display: grid; grid-template-columns: .55fr 1.45fr; gap: 5vw; border-top: 1px solid var(--line); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 1.2rem 2.3rem 1.2rem 0; position: relative; cursor: pointer; font-weight: 760; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .25rem; top: 1rem; font-size: 1.4rem; color: var(--blue); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: 0; padding: 0 2.3rem 1.4rem 0; color: var(--muted); }

.site-footer { padding: 3.5rem 4vw 1.5rem; display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2rem; background: var(--ink); color: white; }
.site-footer > div { display: grid; align-content: start; gap: .45rem; }
.site-footer a { color: #cbd0d9; text-decoration: none; font-size: .88rem; }
.site-footer a:hover { color: var(--mint); }
.site-footer b { margin-bottom: .5rem; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer .footer-brand { color: white; font-size: 1.3rem; }
.site-footer .footer-brand .brand-mark { background: white; color: var(--ink); }
.site-footer .footer-brand .brand-mark::before { box-shadow: 4px -4px 0 -1px white, 4px -4px 0 0 currentColor; }
.footer-main p { max-width: 260px; color: #aeb5c1; }
.footer-legal { grid-column: 1 / -1; padding-top: 1.5rem; margin: 1rem 0 0; border-top: 1px solid #343b48; color: #929aa8; font-size: .78rem; }

.preview-dialog { width: min(1180px, calc(100vw - 2rem)); height: calc(100vh - 2rem); max-width: none; max-height: none; padding: 0; border: 0; border-radius: 14px; background: #e9ecf2; color: var(--ink); box-shadow: 0 35px 100px rgba(0,0,0,.45); overflow: hidden; }
.preview-dialog::backdrop { background: rgba(8,11,16,.78); backdrop-filter: blur(5px); }
.dialog-bar { min-height: 78px; padding: 1rem 1.3rem; display: flex; justify-content: space-between; align-items: center; background: var(--ink); color: white; }
.dialog-bar span { color: var(--mint); font-size: .63rem; letter-spacing: .15em; font-weight: 820; }
.dialog-bar h2 { margin: .1rem 0 0; font-size: 1.35rem; }
.dialog-close { width: 42px; height: 42px; border: 1px solid #464d5a; border-radius: 7px; background: transparent; color: white; font-size: 1.75rem; cursor: pointer; }
.preview-toolbar { padding: .75rem 1.3rem; display: flex; justify-content: space-between; background: white; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.dialog-content { height: calc(100vh - 245px); overflow: auto; padding: 1.5rem; }
#packOutput { width: 794px; max-width: 100%; margin: auto; }
.purchase-bar { min-height: 118px; padding: 1rem 1.3rem; display: grid; grid-template-columns: 1fr 1.45fr auto; align-items: center; gap: 1rem; background: white; border-top: 1px solid var(--line); }
.purchase-bar > div { display: grid; }
.purchase-bar > div span { color: var(--muted); font-size: .8rem; }
.digital-consent { margin: 0; display: flex; align-items: start; gap: .55rem; font-size: .72rem; font-weight: 520; }
.digital-consent input { flex: 0 0 1rem; width: 1rem; height: 1rem; margin-top: .15rem; accent-color: var(--blue); }
.checkout-status { grid-column: 1 / -1; margin: -.35rem 0 0; color: var(--danger); font-size: .75rem; }

.pdf-page {
  --pack-accent: #2852ff;
  position: relative;
  width: 210mm;
  min-height: 296.5mm;
  margin: 0 auto 18px;
  padding: 16mm 15mm 14mm;
  overflow: hidden;
  background: white;
  color: #11141a;
  box-shadow: 0 5px 22px rgba(16,19,26,.16);
  font: 14px/1.45 Inter, Arial, sans-serif;
  page-break-after: always;
}
.pdf-page:last-child { page-break-after: auto; }
.pdf-page.letter { width: 215.9mm; min-height: 279mm; }
.watermark { position: absolute; z-index: 8; inset: 46% auto auto 8%; transform: rotate(-30deg); color: rgba(47,91,255,.12); font-size: 78px; line-height: 1; font-weight: 900; letter-spacing: .12em; pointer-events: none; }
.pdf-header { padding-bottom: 7mm; display: flex; align-items: center; justify-content: space-between; gap: 10mm; border-bottom: 1px solid #d9dde5; }
.pdf-brand { display: flex; align-items: center; gap: 4mm; }
.pdf-logo { width: 13mm; height: 13mm; display: grid; place-items: center; overflow: hidden; border-radius: 2mm; background: var(--pack-accent); color: white; font-weight: 850; background-size: contain; background-repeat: no-repeat; background-position: center; }
.pdf-company { font-weight: 850; font-size: 14px; }
.pdf-contact { color: #68707f; font-size: 10px; }
.pdf-doc-label { color: var(--pack-accent); font-size: 9px; letter-spacing: .15em; font-weight: 850; }
.pdf-kicker { color: var(--pack-accent); font-size: 10px; letter-spacing: .14em; font-weight: 850; }
.pdf-title { margin: 6mm 0 3mm; font-size: 34px; line-height: 1; letter-spacing: -.045em; }
.pdf-lead { max-width: 145mm; color: #5f6673; font-size: 14px; }
.pdf-cover { min-height: 250mm; display: flex; flex-direction: column; }
.pdf-cover-copy { margin-top: 38mm; }
.pdf-cover .pdf-title { max-width: 155mm; font: 780 52px/.95 Georgia, serif; }
.pdf-cover-footer { margin-top: auto; padding-top: 8mm; display: flex; justify-content: space-between; border-top: 1px solid #d9dde5; color: #5f6673; font-size: 11px; }
.pdf-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8mm 7mm; margin-top: 8mm; }
.pdf-product-card { break-inside: avoid; }
.pdf-product-image { height: 64mm; margin-bottom: 4mm; display: grid; place-items: center; background: #eef1f6; background-size: cover; background-position: center; color: #8991a0; font-size: 22px; font-weight: 850; }
.pdf-product-meta { display: flex; justify-content: space-between; gap: 3mm; color: #707786; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.pdf-product-card h3 { margin: 2mm 0 1mm; font-size: 17px; line-height: 1.15; }
.pdf-product-card p { margin: 1mm 0 3mm; color: #5d6572; font-size: 10px; }
.pdf-price-row { display: flex; flex-wrap: wrap; gap: 2mm 6mm; font-size: 10px; }
.pdf-price-row b { color: var(--pack-accent); }
.pdf-detail-product { min-height: 230mm; display: grid; grid-template-columns: 1.08fr .92fr; gap: 10mm; align-items: center; }
.pdf-detail-product .pdf-product-image { height: 155mm; }
.pdf-detail-copy h2 { font-size: 34px; line-height: 1; letter-spacing: -.045em; }
.pdf-detail-copy .pdf-description { color: #5d6572; font-size: 14px; }
.pdf-specs { margin-top: 8mm; border-top: 1px solid #d9dde5; }
.pdf-specs div { padding: 2.5mm 0; display: flex; justify-content: space-between; gap: 5mm; border-bottom: 1px solid #e5e8ee; }
.pdf-table { width: 100%; margin-top: 7mm; border-collapse: collapse; font-size: 10px; }
.pdf-table th { padding: 2.6mm 2mm; background: #11141a; color: white; text-align: left; font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.pdf-table td { padding: 2.7mm 2mm; border-bottom: 1px solid #dfe3e9; vertical-align: top; }
.pdf-table tr:nth-child(even) td { background: #f6f7f9; }
.pdf-table .money { white-space: nowrap; font-weight: 750; }
.pdf-category { margin: 7mm 0 1mm; color: var(--pack-accent); font-size: 10px; letter-spacing: .13em; font-weight: 850; }
.pdf-order-details { margin: 7mm 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4mm 8mm; }
.pdf-order-details div { height: 12mm; border-bottom: 1px solid #8f96a3; color: #6d7481; font-size: 9px; }
.pdf-order-total { margin: 6mm 0 0 auto; width: 70mm; }
.pdf-order-total div { padding: 2.5mm 0; display: flex; justify-content: space-between; border-bottom: 1px solid #d9dde5; }
.pdf-terms { margin-top: 8mm; padding: 6mm; background: #f2f4f7; }
.pdf-terms h3 { margin: 0 0 3mm; font-size: 12px; }
.pdf-terms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5mm 8mm; font-size: 9px; }
.pdf-terms-grid div { display: flex; justify-content: space-between; gap: 3mm; }
.pdf-notes { margin-top: 7mm; min-height: 26mm; padding-top: 3mm; border-top: 1px solid #aab0bb; color: #69717e; font-size: 9px; }
.pdf-footer { position: absolute; left: 15mm; right: 15mm; bottom: 8mm; display: flex; justify-content: space-between; color: #7c8491; font-size: 8px; }

.content-hero { max-width: 1180px; margin: auto; padding: 5rem 4vw 3.5rem; display: grid; grid-template-columns: 1.2fr .8fr; gap: 5vw; align-items: end; }
.content-hero h1 { margin: .8rem 0 1.2rem; font-size: clamp(3rem,6vw,6rem); line-height: .91; letter-spacing: -.07em; }
.content-hero .lead { color: var(--muted); font-size: 1.15rem; max-width: 42rem; }
.content-hero-card { padding: 1.5rem; border-radius: 12px; background: var(--ink); color: white; }
.content-hero-card b { display: block; margin-bottom: .6rem; color: var(--mint); font-size: .7rem; letter-spacing: .14em; }
.content-hero-card p { margin: 0; }
.content-main { max-width: 1180px; margin: auto; padding: 0 4vw 6rem; display: grid; grid-template-columns: minmax(0,1fr) 290px; gap: 5vw; }
.article-body { min-width: 0; }
.article-body h2 { margin: 3rem 0 1rem; font-size: clamp(1.9rem,3.2vw,3rem); line-height: 1.05; letter-spacing: -.05em; }
.article-body h3 { margin: 2rem 0 .7rem; font-size: 1.3rem; letter-spacing: -.03em; }
.article-body p, .article-body li { color: #4e5664; }
.article-body li { margin: .45rem 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background: white; }
.article-body th, .article-body td { padding: .8rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-body th { background: var(--ink); color: white; }
.article-callout { margin: 2rem 0; padding: 1.3rem; border-left: 5px solid var(--blue); background: white; }
.content-aside { position: sticky; top: 1rem; align-self: start; padding: 1.3rem; border-radius: 12px; background: white; border: 1px solid var(--line); }
.content-aside h2 { margin: 0 0 .6rem; font-size: 1.35rem; letter-spacing: -.04em; }
.content-aside p { color: var(--muted); }
.content-aside .button { width: 100%; }
.related-links { margin-top: 1.2rem; display: grid; gap: .45rem; }
.related-links a { color: var(--blue); font-size: .88rem; }

.tools-hero { max-width: 1180px; margin: auto; padding: 5rem 4vw 3rem; }
.tools-hero h1 { max-width: 850px; margin: .8rem 0 1rem; font-size: clamp(3rem,6vw,6rem); line-height: .91; letter-spacing: -.07em; }
.tool-grid { max-width: 1180px; margin: auto; padding: 0 4vw 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tool-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: 12px; background: white; }
.tool-card h2 { margin: 0 0 .4rem; font-size: 1.6rem; letter-spacing: -.04em; }
.tool-card > p { color: var(--muted); }
.tool-result { margin-top: 1rem; padding: 1rem; background: var(--ink); color: white; border-radius: 8px; }
.tool-result strong { color: var(--mint); font-size: 1.5rem; }
.sku-output { margin-top: 1rem; padding: 1rem; border: 1px dashed #aeb6c5; border-radius: 8px; word-break: break-all; font-weight: 800; }

.simple-page { max-width: 900px; margin: auto; padding: 5rem 4vw 7rem; }
.simple-page h1 { margin: .7rem 0 1.2rem; font-size: clamp(3rem,6vw,5.7rem); line-height: .91; letter-spacing: -.07em; }
.simple-page h2 { margin-top: 2.5rem; font-size: 1.55rem; letter-spacing: -.035em; }
.simple-page p, .simple-page li { color: #4f5765; }
.simple-page .contact-card { margin-top: 2rem; padding: 1.3rem; border: 1px solid var(--line); background: white; border-radius: 10px; }
.legal-page { max-width: 780px; }
.legal-page a, .simple-page a:not(.button) { color: var(--blue); }
.resource-grid { max-width: 1180px; margin: auto; padding: 0 4vw 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.resource-grid a { min-height: 245px; padding: 1.5rem; color: inherit; text-decoration: none; background: white; border: 1px solid var(--line); border-radius: 12px; transition: transform .2s ease, border-color .2s ease; }
.resource-grid a:hover { transform: translateY(-3px); border-color: var(--blue); }
.resource-grid span { color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.resource-grid h2 { margin: 2.5rem 0 .6rem; font-size: 1.55rem; letter-spacing: -.04em; }
.resource-grid p { color: var(--muted); }
.resource-grid .featured { grid-column: span 3; min-height: 190px; color: white; background: var(--ink); border-color: var(--ink); }
.resource-grid .featured span { color: var(--mint); }
.resource-grid .featured p { color: #cbd0da; }
.resource-cta { padding-top: 3rem; }

@media (max-width: 1100px) {
  .hero-builder { grid-template-columns: 1fr; padding-top: 3rem; }
  .hero-copy { max-width: 730px; }
  .pack-showcase { width: min(900px, 100%); justify-self: center; }
  .catalogue-stage { max-width: 850px; width: 100%; justify-self: center; }
  .builder-layout { grid-template-columns: 1fr; }
  .summary-panel { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .summary-top, .completion-track, .text-link { grid-column: 1 / -1; }
  .privacy-note { align-self: center; }
  .document-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .site-header nav a:not(.nav-cta) { display: none; }
  .format-strip { justify-content: flex-start; overflow-x: auto; }
  .format-strip > * { flex: 0 0 auto; }
  .section-heading, .seo-links-section, .faq-section, .content-hero, .content-main { grid-template-columns: 1fr; }
  .price-ticket { justify-self: start; }
  .workflow-section { grid-template-columns: 1fr; }
  .workflow-image { min-height: 460px; }
  .use-cases { grid-column: 1; }
  .content-aside { position: static; }
  .site-footer { grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer > div:nth-of-type(4) { grid-column: 2; }
  .purchase-bar { grid-template-columns: 1fr auto; }
  .digital-consent { grid-column: 1 / -1; grid-row: 2; }
  .checkout-status { grid-row: 3; }
  .dialog-content { height: calc(100vh - 285px); }
}

@media (max-width: 640px) {
  .site-header { padding: 1rem; }
  .hero-builder { padding: 2.4rem 1rem 4rem; gap: 2rem; }
  .hero-copy h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: .55rem; }
  .hero-proof span { width: 100%; padding: 0; border-right: 0; }
  .pack-showcase { min-height: 500px; }
  .showcase-photo { inset: 0 0 4.5rem 0; }
  .showcase-label { top: 1rem; left: .75rem; width: 190px; }
  .document-fan { right: -1.4rem; bottom: 0; transform: scale(.78); transform-origin: right bottom; }
  .catalogue-stage { min-height: 560px; padding: 1rem 5.2rem 1rem 1rem; border-radius: 12px; }
  .catalogue-sample { min-height: 500px; padding: 1.2rem; }
  .catalogue-sample h2 { margin: 3rem 0 2rem; font-size: 2.25rem; }
  .shape { height: 92px; }
  .stage-card { right: .5rem; width: 150px; padding: .8rem; }
  .stage-card-price { top: 8rem; }
  .stage-card-order { bottom: 3.2rem; }
  .stage-card > strong { font-size: .82rem; }
  .stage-card-price div { display: grid; }
  .builder-section, .included-section, .workflow-section, .seo-links-section, .faq-section { padding: 4.5rem 1rem; }
  .section-heading { margin-bottom: 2rem; }
  .form-tabs { grid-template-columns: 1fr 1fr; }
  .tab:nth-child(2) { border-right: 0; }
  .tab:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .tab-panel { padding: 1.2rem; }
  .field-grid.two, .output-grid, .import-row, .product-editor-body, .summary-panel, .seo-card-grid, .tool-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; padding-left: 1rem; padding-right: 1rem; }
  .resource-grid .featured { grid-column: span 1; }
  .product-image-upload { width: 100%; height: 190px; }
  .builder-actions { padding: 1rem 1.2rem; }
  .builder-actions .button { flex: 1; }
  .summary-top, .completion-track, .text-link { grid-column: 1; }
  .document-grid { grid-template-columns: 1fr; }
  .document-grid article { min-height: 330px; }
  .document-grid h3 { margin-top: 1.25rem; }
  .workflow-image { min-height: 340px; }
  .use-cases { grid-template-columns: 1fr; }
  .use-cases > .eyebrow, .use-cases > h2, .use-cases > p:not(.eyebrow), .use-cases .audience-list { grid-column: 1; grid-row: auto; }
  .use-cases .audience-list { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 3rem 1rem 1.5rem; }
  .site-footer .footer-main, .footer-legal { grid-column: 1 / -1; }
  .site-footer > div:nth-of-type(4) { grid-column: auto; }
  .preview-dialog { width: 100vw; height: 100vh; border-radius: 0; }
  .dialog-content { height: calc(100vh - 325px); padding: .75rem; }
  .purchase-bar { min-height: 185px; grid-template-columns: 1fr; gap: .6rem; }
  .digital-consent, .checkout-status { grid-column: 1; grid-row: auto; }
  .purchase-bar .button { width: 100%; }
  #packOutput { width: 210mm; transform-origin: top left; transform: scale(.42); margin-bottom: -58%; }
  .content-hero, .tools-hero, .simple-page { padding-left: 1rem; padding-right: 1rem; }
  .content-main, .tool-grid { padding-left: 1rem; padding-right: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  body { background: white; }
  body > *:not(.preview-dialog) { display: none !important; }
  .preview-dialog, .dialog-content { display: block !important; position: static; width: auto; height: auto; overflow: visible; border: 0; }
  .dialog-bar, .preview-toolbar, .purchase-bar { display: none !important; }
  #packOutput { width: auto; }
  .pdf-page { margin: 0; box-shadow: none; }
}
