:root {
  /* Palette — research-result.md §3, shared with landing.html */
  --orange:      #E85D1F;  /* Hi-Vis Orange — accents, divider rule */
  --orange-deep: #C44A14;
  --black:       #1A1A1A;  /* Worksite Black — CTAs, body text */
  --green:       #2E5D3B;  /* Ironbark Green — sub-headings */
  --green-paid:  #3F7F58;
  --sandstone:   #F7F1E6;  /* warm base */
  --white:       #FFFFFF;
  --text-2:      #5A5A5A;
  --border:      #E7E1D4;
  --yellow:      #D9A21B;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black); background: var(--sandstone);
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; font-weight: 700; line-height: 1.08; margin: 0; }
p { margin: 0 0 1rem; }
a { color: var(--green); }
.mono { font-family: "IBM Plex Mono", monospace; font-weight: 600; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 84px 0; }

/* ---------- Top accent bar ---------- */
.top-bar { height: 6px; background: var(--orange); }

/* ---------- Nav ---------- */
header.wrap { padding-top: 20px; }
nav { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
/* louie-crop: the Louie.png has wide transparent margins; the wrapper clips
   them so the dog fills the box without the empty padding inflating layout */
.louie-crop { position: relative; width: 70px; height: 96px;
  overflow: hidden; flex-shrink: 0; display: block; }
.louie { position: absolute; top: 50%; left: 50%;
  width: 146px; height: 146px; transform: translate(-50%, -50%); object-fit: contain; }
.brand .name { font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: 64px; letter-spacing: -0.035em; color: var(--black); }
.brand .chippie-wordmark { height: 72px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 24px; font-size: 15px; }
.nav-right a, .nav-right .nav-link-btn { color: var(--black); text-decoration: none; }

/* ---------- Buttons ---------- */
.btn { display: inline-block; font-family: "General Sans", sans-serif; font-weight: 600;
  font-size: 16px; text-decoration: none; padding: 15px 28px; border-radius: 8px;
  cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--black); color: #fff; }
.btn-primary:hover { background: #000; }
/* Play CTA — Hi-Vis Orange, the page's single action accent. Soft lift. */
.btn-play {
  background: var(--orange); color: #fff;
  box-shadow: 0 6px 18px rgba(232, 93, 31, 0.32);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.btn-play:hover {
  background: var(--orange-deep);
  box-shadow: 0 8px 22px rgba(232, 93, 31, 0.42);
  transform: translateY(-1px);
}
.btn-ghost { background: transparent; color: var(--black); border-color: var(--black); }
.btn-ghost:hover { background: rgba(0,0,0,0.05); }
.btn-lg { padding: 17px 34px; font-size: 17px; }

/* ---------- Hero ---------- */
.feat-hero { text-align: center; padding: 56px 0 60px; }
.feat-hero .eyebrow { font-family: "IBM Plex Mono", monospace; font-weight: 600;
  font-size: 13px; letter-spacing: 0.14em; color: var(--orange); }
.feat-hero h1 { font-size: 56px; letter-spacing: -0.02em;
  max-width: 17ch; margin: 16px auto 18px; }
.feat-hero .lead { font-size: 19px; color: var(--text-2);
  max-width: 54ch; margin: 0 auto 26px; }
.hero-chips { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.hero-chips span { font-size: 14px; color: var(--text-2); }
.hero-chips i { color: var(--green-paid); margin-right: 6px; }

/* ---------- Section heading ---------- */
.sec-head { text-align: center; margin-bottom: 44px; }
.sec-head h2 { font-size: 36px; letter-spacing: -0.01em; margin-bottom: 10px; }
.sec-head p { color: var(--text-2); margin: 0; }

/* ---------- Feature overview grid ---------- */
.overview { padding: 16px 0 84px; }
.feat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat-card { background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 26px 18px; text-align: center;
  text-decoration: none; color: var(--black); display: block;
  transition: transform 0.15s ease, box-shadow 0.15s ease; }
.feat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.feat-card .ico { width: 56px; height: 56px; border-radius: 12px;
  background: rgba(232,93,31,0.1); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 14px; }
.feat-card .ico i { font-size: 1.6rem; color: var(--orange); }
.feat-card h3 { font-size: 17px; margin-bottom: 4px; }
.feat-card p { font-size: 13px; color: var(--text-2); margin: 0; }

/* ---------- Feature deep-dive sections ---------- */
.feat { padding: 78px 0; }
.feat--white { background: var(--white); }
.feat-grid { display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center; }
.feat-grid--rev .feat-copy { order: 2; }
.feat-tag { font-family: "IBM Plex Mono", monospace; font-weight: 600;
  font-size: 12px; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 12px; }
.feat-copy h2 { font-size: 34px; letter-spacing: -0.01em; margin-bottom: 14px; }
.feat-copy .lead { font-size: 18px; color: var(--text-2); margin-bottom: 4px; }
.feat-list { list-style: none; padding: 0; margin: 22px 0 28px; }
.feat-list li { position: relative; padding: 9px 0 9px 28px;
  border-bottom: 1px solid var(--border); font-size: 15.5px; }
.feat--white .feat-list li { border-bottom-color: #ece6d8; }
.feat-list li:last-child { border-bottom: none; }
.feat-list li::before { content: "✓"; position: absolute; left: 0;
  color: var(--green-paid); font-weight: 700; }
.feat-list strong { color: var(--black); }
.feat-shot { background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 64px 40px; text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.feat--white .feat-shot { background: var(--sandstone); }
.feat-shot i { font-size: 5.5rem; color: var(--orange); }
.feat-shot p { margin: 18px 0 0; font-family: "IBM Plex Mono", monospace;
  font-size: 13px; color: var(--text-2); }

/* ---------- Pricing ---------- */
.pricing { text-align: center; }
.tiers { display: grid; grid-template-columns: repeat(3,1fr);
  gap: 22px; text-align: left; }
.tier { background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; position: relative; }
.tier.popular { border-color: var(--orange); border-width: 2px; }
.tier-pop-tag { position: absolute; top: -13px; left: 28px; background: var(--orange);
  color: #fff; font-family: "IBM Plex Mono", monospace; font-size: 11px;
  font-weight: 600; padding: 4px 12px; border-radius: 5px; letter-spacing: 0.06em; }
.tier-name { font-family: "IBM Plex Mono", monospace; font-size: 13px;
  letter-spacing: 0.1em; color: var(--text-2); }
.tier-price { font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: 30px; margin: 8px 0 2px; }
.tier-price small { font-size: 14px; color: var(--text-2);
  font-family: "General Sans", sans-serif; font-weight: 400; }
.tier ul { list-style: none; padding: 0; margin: 16px 0 0; font-size: 15px; }
.tier li { padding: 6px 0; border-bottom: 1px solid var(--border); }
.tier li:last-child { border-bottom: none; }
.tier li::before { content: "✓"; color: var(--green-paid);
  font-weight: 700; margin-right: 9px; }
.pricing-cta { margin-top: 40px; }

/* ---------- Cross-links ---------- */
.links { background: var(--white); border-top: 1px solid var(--border); }
.links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.links h3 { font-size: 20px; margin-bottom: 8px; }
.links .links-sub { color: var(--text-2); font-size: 15px; margin-bottom: 14px; }
.links ul { list-style: none; padding: 0; margin: 0; }
.links li { padding: 7px 0; border-bottom: 1px solid var(--border); }
.links li:last-child { border-bottom: none; }
.links a { color: var(--green); text-decoration: none; }
.links a:hover { color: var(--orange); }

/* ---------- Final CTA ---------- */
.final { text-align: center; background: var(--orange); }
.final h2 { font-size: 42px; color: #fff; margin-bottom: 8px; }
.final p { color: #ffe7d6; margin-bottom: 26px; }
/* On the orange band, invert the play button so it still pops */
.final .btn-play {
  background: #fff; color: var(--orange-deep);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
.final .btn-play:hover {
  background: var(--sandstone); color: var(--orange-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.final-chips { margin-top: 22px; display: flex; gap: 22px;
  justify-content: center; flex-wrap: wrap; }
.final-chips span { font-size: 14px; color: #ffe7d6; }
.final-chips i { margin-right: 6px; }

/* ---------- Footer ---------- */
footer { background: var(--black); color: #b4afa3; font-size: 14px; padding: 44px 0; }
footer .brand { gap: 12px; }
footer .louie-badge { width: 78px; height: 78px; border-radius: 50%;
  background: var(--sandstone); padding: 7px; object-fit: contain; }
footer .brand .name { color: #fff; font-size: 34px; }
footer .brand .chippie-wordmark { height: 40px; filter: brightness(0) invert(1); }
footer .frow { display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-top: 14px; }
footer a { color: #cdc8bc; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  section { padding: 56px 0; }
  .feat { padding: 52px 0; }
  .feat-hero h1 { font-size: 38px; }
  .brand .name { font-size: 44px; }
  .louie-crop { width: 52px; height: 72px; }
  .louie { width: 108px; height: 108px; }
  .feat-cards { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: 1fr; gap: 32px; }
  .feat-grid--rev .feat-copy { order: 0; }
  .feat-shot { padding: 44px 28px; }
  .tiers, .links-grid { grid-template-columns: 1fr; }
  .nav-right .hide-m { display: none; }
}
