/* ============================================================
   ZYLEM — Brutalist landing page
   ============================================================ */

:root {
  --cream: #f3e9d2;
  --cream-2: #ece0c4;
  --ink: #15130c;
  --green: #1f9d55;
  --green-dark: #178045;
  --yellow: #ffd83d;
  --red: #d23a1a;
  --muted: #6b6857;
  --body: #3a382c;
  --on-dark: #f3e9d2;
  --on-green: #eafff2;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 50px);
  --border: 3px solid var(--ink);

  --font-head: 'Archivo Expanded', 'Archivo', system-ui, sans-serif;
  --font-body: 'Archivo', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;
  --font-serif: 'IM Fell English', Georgia, serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

::selection { background: var(--green); color: #fff; }

a { color: inherit; text-decoration: none; }

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-weight: 700;
}
.skip-link:focus { left: 8px; }

/* ---- Shared hard-shadow "pop" treatment ---- */
.pop { box-shadow: 6px 6px 0 var(--ink); transition: transform .14s ease, box-shadow .14s ease; }
.pop:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  max-width: 100%;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  border: 2.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
  cursor: pointer;
  text-align: center;
  line-height: 1.1;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--ink); }
.btn--sm  { font-size: 14px; padding: 11px 18px; }
.btn--lg  { font-size: 18px; padding: 18px 30px; }
.btn--green  { background: var(--green); color: #fff; }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--white  { background: #fff; color: var(--ink); }

.link-arrow {
  font-weight: 700;
  font-size: 17px;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--green);
}
.link-arrow:hover { text-decoration-color: var(--ink); }

.badge {
  display: inline-block;
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 8px 14px;
}
.badge--tilt { transform: rotate(-2deg); }

.brand {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -.02em;
}
.brand--sm { font-size: 22px; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track { display: inline-flex; will-change: transform; animation: marquee 28s linear infinite; }
.ticker__group { padding-right: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: clamp(40px, 7vw, 70px) 0; }

.section__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(30px, 5.2vw, 48px);
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: uppercase;
  max-width: 20ch;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.pricing__title { max-width: none; white-space: nowrap; font-size: clamp(22px, 5vw, 48px); text-align: center; }
@media (max-width: 480px) {
  .pricing__title { white-space: normal; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px var(--pad);
  border-bottom: var(--border);
}

@media (max-width: 480px) {
  .nav { padding: 14px 16px; }
  .nav .brand { font-size: 21px; }
  .nav .btn--sm { font-size: 12px; padding: 9px 10px; white-space: nowrap; }
}

@media (max-width: 360px) {
  .nav .btn--sm span.btn-arrow { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  padding: clamp(44px, 7vw, 72px) 0 clamp(40px, 6vw, 64px);
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(33px, 8.5vw, 92px);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
  max-width: 14ch;
  margin: 22px 0;
  overflow-wrap: break-word;
}
.hl {
  background: var(--green);
  color: #fff;
  padding: 0 .12em;
  display: inline-block;
  transform: rotate(-1.5deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.hero__lede {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 500;
  line-height: 1.45;
  max-width: 44ch;
  color: var(--body);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Browser window mock */
.window { border: var(--border); background: #fff; box-shadow: 6px 6px 0 var(--ink); }
.window__bar {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 11px 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.window__body { padding: 16px; display: flex; flex-direction: column; gap: 16px; }

.shot { border: 2.5px solid var(--ink); background: #fff; transition: transform .15s ease, box-shadow .15s ease; }
.shot__link { display: block; color: inherit; text-decoration: none; }
.shot__link:hover .shot, .shot__link:focus-visible .shot { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--ink); }
.shot__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-bottom: 2px solid var(--ink);
  background: var(--cream);
}
.shot__dot { width: 9px; height: 9px; border: 1.5px solid var(--ink); border-radius: 50%; }
.shot__url { margin-left: 8px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--muted); }
.shot__canvas {
  height: 280px;
  background: var(--cream-2);
  overflow: hidden;
}
.shot__canvas img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ============================================================
   OWNERSHIP BAND
   ============================================================ */
.bizband {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  color: var(--ink);
  padding: 28px 0 32px;
  margin-bottom: 10px;
  overflow: hidden;
}
.bizband__title {
  display: block;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.bizband__viewport { overflow: hidden; }
.bizband__track { display: inline-flex; will-change: transform; animation: marquee 48s linear infinite; }
.bizband__group { display: inline-flex; align-items: center; gap: 16px; padding-left: 16px; }
.bizband__item {
  font-family: var(--font-mono);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.bizband__dot { color: var(--green); font-weight: 900; font-size: clamp(16px, 2vw, 20px); }
.bizband__rule { border-bottom: var(--border); }
.bizband__rule:first-child { margin-bottom: 24px; }
.bizband__rule:last-child { margin-top: 24px; }

/* ============================================================
   PROBLEM / COMPARE
   ============================================================ */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare__card { border: var(--border); padding: 30px; }
.compare__card--bad { background: #fff; }
.compare__card--good { background: var(--green); color: #fff; box-shadow: 6px 6px 0 var(--ink); }
.compare__head {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.compare__head--bad { color: var(--red); }
.compare__head--good { color: var(--yellow); }

.ticklist { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 15px; }
.ticklist li { display: flex; gap: 12px; font-size: 17px; font-weight: 500; line-height: 1.4; }
.ticklist .mark { font-weight: 800; flex-shrink: 0; }
.compare__card--bad .mark { color: var(--red); }
.compare__card--good li { font-weight: 600; }
.compare__card--good .mark { color: var(--yellow); }

/* ============================================================
   THE HONEST BIT
   ============================================================ */
.honest { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 4.5vw, 56px); align-items: center; }
.honest__eyebrow { margin-bottom: 4px; }
.honest__title { margin-top: 16px; margin-bottom: 18px; font-size: clamp(28px, 4.8vw, 46px); max-width: 16ch; }
.honest__dot { color: var(--green); }
.accent-dot { color: var(--green); }
.honest__intro { font-size: clamp(16px, 1.8vw, 19px); font-weight: 500; line-height: 1.5; color: var(--body); max-width: 42ch; }
.honest__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.honest__item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: #fff;
  border: 2.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  line-height: 1.4;
  transition: transform .14s ease, box-shadow .14s ease;
}
.honest__item:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.honest__bull { width: 16px; height: 16px; border: 2px solid var(--ink); background: var(--green); flex-shrink: 0; }
@media (max-width: 860px) {
  .honest { grid-template-columns: 1fr; }
  .honest__title { max-width: 18ch; }
}

/* ============================================================
   BENEFITS
   ============================================================ */
.work__title { margin-top: 16px; margin-bottom: 16px; max-width: 50ch; font-size: clamp(22px, 3.6vw, 39px); }
.benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.benefit {
  flex: 0 1 calc((100% - 48px) / 3);
  border: var(--border);
  background: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease;
}
.benefit:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.benefit__no {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 40px;
  color: var(--green);
  line-height: .9;
}
.benefit__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 24px);
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.benefit__body { font-size: 16px; font-weight: 500; line-height: 1.5; color: var(--body); margin-top: 8px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how__head { max-width: 760px; }
#how .how__title { margin-top: 18px; margin-bottom: 0; max-width: 28ch; font-size: clamp(28px, 4.4vw, 44px); }
.how__lede { font-size: clamp(17px, 2.2vw, 20px); font-weight: 500; line-height: 1.5; color: var(--body); margin-top: 10px; max-width: 54ch; }
.how__steps { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 38px; }
.how-step {
  display: grid;
  grid-template-columns: 180px 1fr;
  border: var(--border);
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease;
}
.how-step:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.how-step__day {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ink);
  color: var(--green);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 20px 16px;
  border-right: 3px solid var(--ink);
}
.how-step__body { padding: 22px 26px; }
.how-step__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(20px, 2.4vw, 24px); text-transform: uppercase; letter-spacing: -.01em; }
.how-step__text { font-size: 16px; font-weight: 500; line-height: 1.5; color: var(--body); margin-top: 8px; }
@media (max-width: 640px) {
  .how-step { grid-template-columns: 1fr; }
  .how-step__day { border-right: 0; border-bottom: 3px solid var(--ink); }
}

/* ============================================================
   FAQ — "the bit you're thinking"
   ============================================================ */
.faq { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.faq__head { position: sticky; top: clamp(90px, 12vh, 140px); padding-top: 4px; }
.faq__eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.faq__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 52px);
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: none;
  margin-top: 14px;
}
.faq__list { display: flex; flex-direction: column; gap: 16px; }
.faq__item {
  border: var(--border);
  background: #fff;
  padding: 0 24px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease;
}
.faq__item:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--ink);
  text-align: left;
}
.faq__icon {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--green);
  transition: transform .2s ease;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--body);
  max-width: 60ch;
  padding: 0 0 22px;
}
@media (max-width: 860px) {
  .faq { grid-template-columns: 1fr; }
  .faq__head { position: static; }
}

/* ============================================================
   PRICING
   ============================================================ */
.tiers { display: flex; justify-content: center; }
.tier {
  border: var(--border);
  padding: clamp(30px, 4vw, 44px);
  position: relative;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease;
  width: 100%;
  max-width: 640px;
}
.tier:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--ink); }
.tier--light { background: #fff; color: var(--ink); }
.tier--feature { background: var(--green); color: #fff; }
.tier__pop {
  position: absolute;
  top: -16px;
  right: -12px;
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  padding: 7px 12px;
  transform: rotate(4deg);
}
.tier__name { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 3vw, 28px); text-transform: uppercase; }
.tier__pricerow { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0 6px; margin-top: 12px; }
.tier__price { font-family: var(--font-head); font-weight: 900; font-size: clamp(36px, 5vw, 48px); letter-spacing: -.02em; line-height: 1; }
.tier__pricelead { font-family: var(--font-body); font-size: 14px; font-weight: 800; }
.tier--light .tier__pricelead { color: var(--body); }
.tier--feature .tier__pricelead { color: #fff; }
.tier__pricenote { width: 100%; font-size: 14px; font-weight: 500; line-height: 1.3; margin-top: -4px; }
.tier--light .tier__pricenote { color: var(--muted); }
.tier--feature .tier__pricenote { color: #cfe9d8; }
.tier__sub { font-size: clamp(16px, 1.8vw, 18px); font-weight: 500; line-height: 1.4; margin-top: 10px; }
.tier--light .tier__sub { color: var(--body); }
.tier--feature .tier__sub { color: var(--on-green); }
.tier__anchor {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  margin-top: 14px;
  opacity: .7;
}
.tier--light .tier__anchor { color: var(--muted); }
.tier--feature .tier__anchor { color: rgba(255, 255, 255, .65); }
.tier__cta { display: block; width: 100%; margin-top: 26px; padding: 16px; font-size: 16px; }
.tier__features { list-style: none; margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.tier__features li { display: flex; gap: 10px; font-size: 15px; font-weight: 500; line-height: 1.4; }
.tier--light .tier__features li { color: var(--body); }
.tier--feature .tier__features li { color: var(--on-green); }
.tier__features .mark { font-weight: 800; flex-shrink: 0; }
.tier--light .tier__features .mark { color: var(--green); }
.tier--feature .tier__features .mark { color: var(--yellow); }

/* ============================================================
   GROW (STAGE TWO)
   ============================================================ */
.grow { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4.5vw, 56px); align-items: center; }
#grow .grow__title { margin-top: 18px; margin-bottom: 0; max-width: 19ch; font-size: clamp(28px, 4vw, 42px); }
.grow__intro {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.45;
  max-width: 48ch;
  color: var(--body);
  margin: 14px 0 0;
}
.grow__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.grow__chips li {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--ink);
  background: #fff;
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  padding: 8px 16px;
}
.grow__soon { margin-bottom: 2px; }

.grow__box {
  border: var(--border);
  background: var(--green);
  color: #fff;
  padding: clamp(24px, 4vw, 36px);
  width: 100%;
  box-shadow: 6px 6px 0 var(--ink);
}
.grow__boxeyebrow { font-family: var(--font-mono); font-weight: 700; font-size: 13px; letter-spacing: .1em; color: var(--yellow); margin: 0; }
.grow__boxtitle {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 28px);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin: 8px 0 0;
}
.grow__form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; text-align: left; }
.grow__form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; grid-column: 1 / -1; }
.grow__cta { font-size: 16px; padding: 15px 26px; }
.grow__formnote { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--yellow); margin: 0; }
.grow__formnote.is-error { color: var(--red); }

/* ============================================================
   PROOF
   ============================================================ */
.trustbox {
  border: var(--border);
  background: var(--yellow);
  padding: clamp(28px, 5vw, 44px);
  box-shadow: 6px 6px 0 var(--ink);
  text-align: center;
}
.trustbox__eyebrow { font-family: var(--font-mono); font-weight: 700; font-size: 13px; letter-spacing: .1em; }
.trustbox__stars { font-size: clamp(28px, 4vw, 36px); color: var(--ink); letter-spacing: .12em; margin-top: 10px; }
.trustbox__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 38px);
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-top: 12px;
}
.trustbox__sub { font-size: 16px; font-weight: 500; margin-top: 10px; }
.trustbox__cta { margin-top: 24px; display: inline-block; }

/* ============================================================
   CTA + CONTACT FORM
   ============================================================ */
.cta {
  border: var(--border);
  background: var(--green);
  color: #fff;
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 56px);
  text-align: center;
  box-shadow: 6px 6px 0 var(--ink);
}
.cta__eyebrow { font-family: var(--font-mono); font-weight: 700; font-size: 14px; letter-spacing: .1em; color: var(--yellow); }
.cta__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 60px);
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 16px auto 0;
  max-width: 18ch;
}
.cta__sub { font-size: clamp(16px, 2.2vw, 19px); font-weight: 500; line-height: 1.45; color: var(--on-green); margin: 18px auto 0; max-width: 46ch; }

.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 620px;
  margin: 36px auto 0;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.field__opt { color: var(--on-green); text-transform: none; font-weight: 400; }
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 2.5px solid var(--ink);
  padding: 13px 14px;
  width: 100%;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: #9a978a; }
.field input:focus-visible,
.field textarea:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
.field input.invalid,
.field textarea.invalid { outline: 3px solid var(--red); outline-offset: 2px; }

.cta__form-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.cta__formnote { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--yellow); margin: 0; }
.cta__formnote.is-error { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-top: var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__links { display: flex; gap: 20px; font-weight: 700; font-size: 14px; flex-wrap: wrap; }
.footer__links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer__legal { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; }
  .tier__pop { right: 12px; }
  .tier__features { grid-template-columns: 1fr; }
  .benefit { flex-basis: calc((100% - 24px) / 2); }
  .grow { grid-template-columns: 1fr; }
  #grow .grow__title { max-width: 18ch; }
  .grow__box { margin-top: 8px; }
  /* Once the hero stacks, show the example-site screenshots proportionally
     (whole preview, scaled to fit) instead of a zoomed, cropped slice. */
  .shot__canvas { height: auto; }
  .shot__canvas img { height: auto; }
}

@media (max-width: 620px) {
  .benefit { flex-basis: 100%; }
}

@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; }
  .bizband__group { padding-left: 12px; gap: 12px; }
  .cta__form { grid-template-columns: 1fr; }
  .grow__form { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .ticker { font-size: 11px; }
}

/* ============================================================
   MOTION PREFERENCES
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
  .bizband__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; }
}
