/* Scratchworks multi-SKU landing — static, no build */
:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-soft: #ccfbf1;
  --charcoal: #1c1917;
  --ink: #292524;
  --muted: #78716c;
  --line: #e7e5e4;
  --paper: #fafaf9;
  --white: #ffffff;
  --shadow: 0 1px 2px rgb(28 25 23 / 4%), 0 8px 24px rgb(28 25 23 / 6%);
  --shadow-hover: 0 2px 4px rgb(28 25 23 / 6%), 0 16px 40px rgb(13 148 136 / 12%);
  --radius: 14px;
  --max: 68rem;
  --sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: var(--teal-dark); }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgb(255 255 255 / 92%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 36px;
  width: auto;
}

.brand-word {
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.nav-shop {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--teal-dark);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-shop:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}

/* Hero */
.hero {
  padding: 3.25rem 0 2.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgb(13 148 136 / 10%), transparent 55%),
    var(--paper);
}

.hero-inner {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.hero-logo {
  height: 52px;
  width: auto;
  margin: 0 auto 1.35rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--charcoal);
  font-weight: 700;
}

.hero-lead {
  margin: 0 auto 1.5rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 1px 2px rgb(13 148 136 / 25%);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

/* Products */
.products {
  padding: 0.5rem 0 3.5rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.35rem;
}

.section-head h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.3rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.card:hover {
  border-color: rgb(13 148 136 / 35%);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.price {
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  line-height: 1;
}

.badge {
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.benefit {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.card .btn {
  width: 100%;
}

/* Trust strip */
.trust {
  background: var(--white);
  border-block: 1px solid var(--line);
  padding: 1.75rem 0;
}

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

@media (min-width: 720px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.trust-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.trust-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Disclaimer */
.disclaimer {
  padding: 2.5rem 0 1rem;
}

.disclaimer-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.disclaimer-box h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--charcoal);
}

.disclaimer-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.disclaimer-box p + p { margin-top: 0.65rem; }

/* Footer */
.site-footer {
  padding: 2rem 0 2.75rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.footer-links a:hover { color: var(--teal-dark); }

@media (max-width: 480px) {
  .brand-word { display: none; }
  .hero { padding-top: 2.25rem; }
}

/* Free sample + FAQ (sales-alert 2026-09-14) */
.card-note {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
}
.card-note a { font-weight: 600; }

.sample-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.sample-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
}
.sample-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--charcoal);
}
.sample-card blockquote {
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--teal-soft);
  border-left: 3px solid var(--teal);
  border-radius: 0 10px 10px 0;
  color: var(--ink);
  font-style: normal;
}
.sample-cta {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.sample-cta .fineprint {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.faq {
  padding: 2.5rem 0 1rem;
}
.faq-grid {
  display: grid;
  gap: 0.75rem;
  max-width: 46rem;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--charcoal);
}
.faq-item p {
  margin: 0.65rem 0 0.15rem;
  color: var(--muted);
}

.runway-badge {
  margin: 0 0 0.75rem;
}
.runway-badge a {
  display: inline-block;
  line-height: 0;
}
.runway-badge img {
  width: min(250px, 100%);
  height: auto;
}

/* How it works — conversion strip (2026-09-15 sales-alert step-up) */
.how { padding: 2.5rem 0 0.5rem; background: var(--white); border-block: 1px solid var(--line); }
.how-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}
.how-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: var(--shadow);
}
.how-item strong { color: var(--charcoal); font-size: 1.02rem; }
.how-item span { color: var(--muted); font-size: 0.95rem; }
.how-cta { margin: 1.25rem 0 0; text-align: center; }


/* Discreet mobile conversion bar (sales-alert 2026-09-16) */
.mobile-cta { display: none; }

@media (max-width: 639px) {
  .has-mobile-cta { padding-bottom: 4.75rem; }
  .has-mobile-cta .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.5rem 0.45rem 0.75rem;
    background: rgb(255 255 255 / 96%);
    border: 1px solid rgb(13 148 136 / 30%);
    border-radius: 999px;
    box-shadow: 0 4px 18px rgb(28 25 23 / 12%);
    backdrop-filter: blur(8px);
  }
  .mobile-cta a {
    min-height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
  }
  .mobile-cta-buy {
    padding: 0.45rem 0.8rem;
    background: var(--teal);
    color: var(--white);
  }
  .mobile-cta-buy:hover { background: var(--teal-dark); }
  .mobile-cta-sample {
    padding: 0.35rem 0.55rem;
    color: var(--teal-dark);
  }
  .mobile-cta-sample:hover { background: var(--teal-soft); }
}

@media print {
  .mobile-cta { display: none !important; }
}


/* Which pack chooser — conversion step-up 2026-09-16 midday sales alert */
.chooser { padding: 2.25rem 0 0.25rem; }
.chooser-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.chooser-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.05rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.chooser-card:hover {
  border-color: rgb(13 148 136 / 45%);
  box-shadow: 0 6px 20px rgb(28 25 23 / 10%);
}
.chooser-if {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.35;
}
.chooser-then {
  font-size: 1.02rem;
  font-weight: 650;
  color: var(--teal-dark);
}
.chooser-sample {
  margin: 1.1rem 0 0;
  text-align: center;
  font-size: 0.95rem;
}
.chooser-sample a { color: var(--teal-dark); font-weight: 600; }
