/* FieldForm landing — truck-ticket type, not a SaaS kit.
   Black / paper / safety yellow. Sharp corners. Form bars. */

:root {
  --ink: #0d0d0d;
  --ink-2: #1a1a1a;
  --paper: #f3f1e8;
  --paper-2: #e7e4d8;
  --rule: #0d0d0d;
  --muted: #5a584e;
  --faint: #8a8778;
  --yellow: #f5d000;
  --yellow-ink: #161400;
  --white: #fffdf6;
  --focus: #f5d000;
  --wrap: 72rem;
  --gutter: 1.25rem;
  --header-h: 3.75rem;
  --sans: "IBM Plex Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --cond: "IBM Plex Sans Condensed", "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--cond);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 200;
  background: var(--yellow);
  color: var(--yellow-ink);
  padding: 0.5rem 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.skip:focus { top: 0.75rem; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

/* —— header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--white);
  border-bottom: 3px solid var(--yellow);
  min-height: var(--header-h);
}

.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0.55rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--white);
  flex: 0 0 auto;
}

.brand img {
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid #3a3a3a;
}

.brand-name {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  padding: 0.15em 0.05em 0.08em;
  line-height: 1;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.95rem;
  align-items: center;
  margin-left: auto;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav a {
  color: #dedbd0;
  text-decoration: none;
}

.nav a:hover { color: var(--yellow); }

.header-ctas {
  display: flex;
  gap: 0.4rem;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.header-ctas .btn { padding: 0.45rem 0.7rem; font-size: 0.78rem; }

@media (max-width: 40em) {
  .nav { display: none; }
  .brand-name { font-size: 1.05rem; letter-spacing: 0.12em; }
  .header-ctas { flex: 0 0 auto; margin-left: auto; }
  .section-head { flex-wrap: wrap; }
  .section-head .meta { display: none; }
}

/* —— buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.1rem;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--ink);
  line-height: 1;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.08s ease;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--yellow-ink);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--yellow);
  box-shadow: 3px 3px 0 #000;
}

.btn-ghost:hover { background: rgba(245, 208, 0, 0.1); }

.btn-ink {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-line {
  background: var(--white);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

/* —— tape —— */
.tape {
  height: 0.7rem;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink) 0 10px,
    var(--yellow) 10px 20px
  );
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

/* —— layout —— */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 3rem 0; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.55rem 0.85rem 0.5rem;
  margin: 0 0 1.4rem;
}

.section-head h2 {
  margin: 0;
  flex: 1 1 auto;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-head .num {
  font-family: var(--cond);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--yellow);
  font-size: 0.95rem;
  flex: 0 0 auto;
}

.section-head .meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8c4b4;
  margin-left: auto;
}

.lede {
  font-size: 1.08rem;
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.muted { color: var(--muted); }
.fine { font-size: 0.88rem; color: var(--muted); }

/* —— hero —— */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 2rem 0 2.4rem;
}

.hero-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 58em) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2.5rem;
  }
}

.kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.kicker span + span::before {
  content: "·";
  margin-right: 0.75rem;
  color: #6a675c;
}

.hero h1 {
  font-size: clamp(2.05rem, 6.4vw, 3.55rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.7em;
  max-width: 14ch;
}

.hero .rule {
  width: 4.5rem;
  height: 4px;
  background: var(--yellow);
  margin: 0 0 1.1rem;
}

.hero p {
  color: #dedbd0;
  max-width: 38rem;
  font-size: 1.08rem;
}

.hero-frame {
  position: relative;
  background: #111;
  border: 2px solid var(--yellow);
  box-shadow: 8px 8px 0 #000;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
}

.hero-cap {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0.7rem;
  background: var(--ink);
  color: #c8c4b4;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid #2a2a2a;
}

/* —— forms grid —— */
.forms { background: var(--paper); }

.grid-4 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 40em) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 72em) {
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card figure {
  margin: 0;
  background: #d8d5c8;
  border-bottom: 1px solid var(--ink);
}

.card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
}

.card-body {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}

.sku-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.card p { font-size: 0.95rem; color: #2a2a2a; }

.card .more {
  margin-top: auto;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid var(--yellow);
  align-self: flex-start;
  padding-bottom: 0.1rem;
}

.card .more:hover { background: var(--yellow); }

/* —— pack —— */
.pack { background: var(--paper-2); }

.pack-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 58em) {
  .pack-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.shot {
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.shot img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top; }

.file-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--white);
}

.file-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  padding: 0.65rem 0.8rem;
  border-top: 1px solid #d8d5c8;
  font-size: 0.95rem;
}

.file-list li:first-child { border-top: 0; }

.file-list .ext {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--yellow);
  padding: 0.2rem 0.4rem;
  align-self: start;
}

.not-list {
  margin: 0 0 1.2rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
}

.price {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.price span { font-size: 1.1rem; }

/* —— free —— */
.free { background: var(--paper); }

.free-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 58em) {
  .free-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }
}

.blanks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
}

.blanks li {
  border-bottom: 1px solid #cfcabb;
  padding: 0.28rem 0;
}

.blanks li::before {
  content: attr(data-n);
  font-family: var(--cond);
  font-weight: 700;
  color: var(--muted);
  margin-right: 0.4rem;
  letter-spacing: 0.04em;
}

/* —— faq —— */
.faq { background: var(--paper-2); }

.faq-list { display: grid; gap: 0.5rem; }

details {
  background: var(--white);
  border: 1px solid var(--ink);
}

summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--muted);
  line-height: 1;
}

details[open] summary::after { content: "–"; }

details .ans {
  padding: 0 1rem 1rem;
  color: #2a2a2a;
  max-width: 46rem;
}

/* —— footer —— */
.site-footer {
  background: var(--ink);
  color: #c8c4b4;
  padding: 2.2rem 0 1.6rem;
}

.foot-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 50em) {
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.site-footer a { color: var(--yellow); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 0 0 0.35rem; }

.disclaimer {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a2a;
  font-size: 0.82rem;
  color: #8a8778;
  max-width: 52rem;
}

.byline {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6a675c;
}

.blanks-label { margin-bottom: 0.5rem; }

.ans a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

@media print {
  .site-header, .header-ctas, .tape, .btn-row, .skip { display: none !important; }
  body { background: #fff; color: #000; }
  .hero { background: #fff; color: #000; }
  .hero p, .hero-cap { color: #000; }
  a { color: #000; }
}
