/* ============================================================================
   Binwash Pro — platform-facing pages (apex host).
   Palette: neutral slate base + deep-blue accent (#0369a1). Blue reads
   "clean + trustworthy + professional" — distinct from the teal siblings
   (totes.pro) and the cyan of mobile-detailer.directory, while still
   signaling water / hygiene / service.
   All accent changes flow through --tp-accent.
   ============================================================================ */

:root {
  --tp-accent:       #0369a1;   /* platform teal */
  --tp-accent-deep:  #075985;
  --tp-accent-soft:  #dbeafe;
  --tp-ink:          #0f172a;
  --tp-ink-2:        #334155;
  --tp-muted:        #64748b;
  --tp-line:         #e2e8f0;
  --tp-bg:           #f8fafc;
  --tp-card:         #ffffff;
  --tp-max:          1120px;
  --tp-shadow:       0 8px 24px rgba(15, 23, 42, .07);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font: 16px/1.55 system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--tp-ink);
  background: var(--tp-bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--tp-accent); }

/* Nav */
.tp-nav {
  background: #0f172a; color: #fff; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.tp-nav a { color: #fff; text-decoration: none; }
.tp-nav__brand { font-weight: 700; letter-spacing: .2px; }
.tp-nav ul { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }

/* Hero */
.tp-hero {
  background:
    radial-gradient(1100px 480px at 88% 12%, rgba(3,105,161,.28), transparent 62%),
    radial-gradient(700px 400px at 8% 90%, rgba(7,89,133,.22), transparent 60%),
    linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 72px 20px 80px;
  overflow: hidden;
  position: relative;
}
.tp-hero__inner { max-width: var(--tp-max); margin: 0 auto; }
.tp-hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--tp-accent-soft);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 22px;
}
.tp-hero__eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.25);
}
.tp-hero h1 {
  color: #fff; font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1; letter-spacing: -.02em;
  margin: 0 0 16px; max-width: 22ch;
}
.tp-hero__sub {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 60ch; margin: 0 0 28px;
}
.tp-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Buttons */
.tp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 10px;
  font: 700 15px/1 system-ui, -apple-system, sans-serif;
  text-decoration: none; border: 2px solid transparent;
  cursor: pointer; transition: transform .1s, box-shadow .15s, background .15s;
}
.tp-btn--primary {
  background: var(--tp-accent); color: #fff;
  box-shadow: 0 6px 18px rgba(3,105,161,.35);
}
.tp-btn--primary:hover { background: var(--tp-accent-deep); transform: translateY(-1px); color: #fff; }
.tp-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.tp-btn--ghost:hover { background: rgba(255,255,255,.10); color: #fff; }
.tp-btn--outline {
  background: transparent; color: var(--tp-accent); border-color: var(--tp-accent);
}
.tp-btn--outline:hover { background: var(--tp-accent); color: #fff; }

/* Sections */
.tp-section { padding: 64px 20px; }
.tp-section--alt { background: #fff; }
.tp-section__inner { max-width: var(--tp-max); margin: 0 auto; }
.tp-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 4px 0 12px; letter-spacing: -.015em;
}
.tp-section__lede { color: var(--tp-muted); max-width: 60ch; margin: 0 0 32px; }
.tp-eyebrow {
  color: var(--tp-accent); font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 6px;
}

/* Value grid */
.tp-value {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.tp-value__card {
  background: #fff; padding: 24px;
  border: 1px solid var(--tp-line); border-radius: 12px;
  box-shadow: var(--tp-shadow);
}
.tp-value__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--tp-accent-soft); color: var(--tp-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.tp-value__card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.tp-value__card p { margin: 0; color: var(--tp-ink-2); font-size: 15px; }

/* Steps */
.tp-steps {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 16px;
}
.tp-step {
  background: #fff; border: 1px solid var(--tp-line);
  border-radius: 10px; padding: 20px;
}
.tp-step h3 { font-size: 1rem; margin: 0 0 6px; }
.tp-step p  { margin: 0; color: var(--tp-ink-2); font-size: 14px; }

/* Pricing */
.tp-pricing {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 20px;
}
.tp-price {
  background: #fff; border: 1px solid var(--tp-line);
  border-radius: 12px; padding: 24px 22px;
  display: flex; flex-direction: column;
}
.tp-price--featured {
  border-color: var(--tp-accent); box-shadow: 0 12px 32px rgba(3,105,161,.18);
  transform: translateY(-4px);
}
.tp-price h3 { margin: 0 0 12px; font-size: 1.05rem; }
.tp-price__amount {
  font-size: 2.2rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px;
}
.tp-price__amount small {
  font-size: .9rem; font-weight: 500; color: var(--tp-muted); margin-left: 2px;
}
.tp-price ul { list-style: none; padding: 0; margin: 0 0 16px; }
.tp-price ul li {
  padding: 6px 0 6px 22px; position: relative;
  color: var(--tp-ink-2); font-size: 14.5px;
  border-bottom: 1px solid var(--tp-line);
}
.tp-price ul li:last-child { border-bottom: 0; }
.tp-price ul li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--tp-accent-soft);
  box-shadow: inset 0 0 0 2px var(--tp-accent);
}
.tp-price__foot { margin-top: auto; padding-top: 4px; }
.tp-pricing__note {
  margin-top: 32px; text-align: center;
  padding: 18px; background: var(--tp-accent-soft);
  color: var(--tp-accent-deep); border-radius: 10px;
  font-size: 15px;
}

/* Featured */
.tp-featured {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.tp-fcard {
  background: #fff; border: 1px solid var(--tp-line); border-radius: 12px;
  padding: 20px; text-decoration: none; color: var(--tp-ink);
  display: block; transition: transform .1s, box-shadow .15s;
}
.tp-fcard:hover { transform: translateY(-2px); box-shadow: var(--tp-shadow); }
.tp-fcard__name { font-weight: 700; font-size: 1.05rem; }
.tp-fcard__loc  { color: var(--tp-muted); font-size: 13.5px; margin-top: 2px; }
.tp-fcard__tag  { color: var(--tp-ink-2); font-size: 14px; margin-top: 8px; font-style: italic; }
.tp-fcard__chips { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.tp-fcard__chip {
  background: var(--tp-accent-soft); color: var(--tp-accent-deep);
  font-size: 11.5px; font-weight: 600;
  padding: 3px 8px; border-radius: 999px;
}
.tp-fcard__badge { margin-top: 12px; color: var(--tp-accent); font-size: 13px; font-weight: 600; }

/* Vocab callout */
.tp-vocab {
  max-width: 720px; text-align: center;
  padding: 12px 0;
}
.tp-vocab h2 { color: var(--tp-ink); }
.tp-vocab p { color: var(--tp-ink-2); font-size: 17px; }

/* Final CTA */
.tp-final {
  background: linear-gradient(180deg, var(--tp-accent-deep), var(--tp-accent));
  color: #fff; text-align: center; padding: 64px 20px;
}
.tp-final h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 8px; }
.tp-final p  { color: rgba(255,255,255,.85); margin: 0 0 22px; }
.tp-final .tp-btn--primary { background: #fff; color: var(--tp-accent-deep); }
.tp-final .tp-btn--primary:hover { background: rgba(255,255,255,.9); color: var(--tp-accent-deep); }

/* Footer */
.tp-footer {
  background: #0f172a; color: rgba(255,255,255,.75);
  padding: 32px 20px; text-align: center;
}
.tp-footer__brand { display: block; font-weight: 700; color: #fff; margin-bottom: 12px; }
.tp-footer a { color: rgba(255,255,255,.85); text-decoration: none; margin: 0 12px; font-size: 14px; }
.tp-footer a:hover { color: #fff; }

/* ---- Binwash Sprint-0 additions -------------------------------------- */
.tp-hero__note { color: rgba(219,234,254,.85); font-size: 13px; margin-top: 14px; }
.tp-h2 { text-align: center; font-size: 28px; margin: 0 0 32px; }
.tp-lede { color: var(--tp-ink-2); font-size: 17px; margin: 0 0 24px; }
.tp-price__card {
  background: var(--tp-card); border: 1px solid var(--tp-line);
  border-radius: 14px; padding: 24px; display: flex; flex-direction: column;
  gap: 12px; position: relative;
}
.tp-price__card h3 { margin: 0; font-size: 1.1rem; }
.tp-price__amount { font-size: 32px; font-weight: 700; color: var(--tp-ink); }
.tp-price__amount span { font-size: 14px; color: var(--tp-muted); font-weight: 500; }
.tp-price__card ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--tp-ink-2); }
.tp-price__card ul li::before { content: "✓  "; color: var(--tp-accent); font-weight: 700; }
.tp-price__card--featured {
  border: 2px solid var(--tp-accent);
  box-shadow: 0 10px 28px rgba(3,105,161,.15);
}
.tp-price__ribbon {
  position: absolute; top: -12px; right: 16px;
  background: var(--tp-accent); color: #fff;
  padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600;
}
.tp-callout {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #fff; padding: 32px 28px; border-radius: 14px;
  max-width: 820px; margin: 0 auto;
}
.tp-callout h2 { margin: 0 0 10px; color: #fff; }
.tp-callout p { margin: 0; color: rgba(219,234,254,.9); font-size: 16px; line-height: 1.6; }
.tp-callout--soft {
  background: var(--tp-card); color: var(--tp-ink); border: 1px solid var(--tp-line);
}
.tp-callout--soft h2 { color: var(--tp-ink); }
.tp-callout--soft p { color: var(--tp-ink-2); }
.tp-section--cta {
  background: var(--tp-accent); color: #fff; text-align: center;
  padding: 56px 20px;
}
.tp-section--cta h2 { color: #fff; margin: 0 0 8px; }
.tp-section--cta p { color: rgba(219,234,254,.9); margin: 0 0 20px; }
.tp-section--cta .tp-btn--primary { background: #fff; color: var(--tp-accent); }
.tp-footer { background: #0f172a; color: rgba(219,234,254,.65); padding: 32px 20px; }
.tp-footer__inner { max-width: var(--tp-max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.tp-footer__brand { color: #fff; font-weight: 700; }
.tp-footer__links { display: flex; gap: 16px; }
.tp-footer__links a { color: rgba(219,234,254,.65); text-decoration: none; font-size: 14px; }
.tp-footer__links a:hover { color: #fff; }
.tp-mute { color: var(--tp-muted); }
