/* Harshware funnel: shared styles. Plain CSS, no framework, mobile-first. */

:root {
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --paper: #ffffff;
  --paper-soft: #f6f5f2;
  --line: #e2e0da;
  --accent: #14532d;
  --accent-soft: #eef4ef;
  --max-width: 720px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
}

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

/* Wordmark: identity, not navigation. Never linked. */
.wordmark {
  padding: 20px 0 0;
}
.wordmark .wrap {
  display: flex;
  align-items: center;
}
.wordmark-text {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

section {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
section:first-of-type {
  border-top: none;
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 12px;
}
h2 {
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 0 0 16px;
}
h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
}
p {
  margin: 0 0 16px;
}
ul, ol {
  margin: 0 0 16px;
  padding-left: 1.25em;
}
li {
  margin-bottom: 8px;
}

.eyebrow {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0 0 8px;
  font-weight: 600;
}

.qualifier {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.subhead {
  font-size: 1.2rem;
  margin: 0 0 24px;
}

.microline {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 10px 0 0;
}

.orient {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 20px;
}

/* CTA */
.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  text-align: center;
}
.cta:hover {
  opacity: 0.92;
}
.cta-block {
  margin: 24px 0 8px;
}

/* Deliverable / list cards */
.item-block {
  margin-bottom: 24px;
}
.item-block strong {
  display: block;
  margin-bottom: 4px;
}

.callout {
  background: var(--accent-soft);
  border-radius: 6px;
  padding: 16px 20px;
  margin: 16px 0;
}

.work-sample-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.work-sample-card h3 {
  margin-bottom: 8px;
}
.work-sample-card a {
  color: var(--accent);
  font-weight: 600;
}

/* FAQ */
.faq-item {
  margin-bottom: 20px;
}
.faq-item h3 {
  font-size: 1.05rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 48px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
footer a {
  color: var(--ink-soft);
}
footer .footer-brand {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
footer .footer-line {
  margin: 4px 0;
}

/* Mobile-first, single column always: no device-specific reordering */
@media (min-width: 640px) {
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 2.4rem;
  }
}

a {
  color: inherit;
}

/* Visually-hidden honeypot support (used by intake form in a later build step) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
