/* Companion homepage — The Golden Stick */

html, body { background-color: var(--marble); }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h3, h4, h5 { font-family: var(--font); }

.page-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 88px 24px 88px 0;
}
.page-block p,
.measure {
  max-width: 62ch;
}

/* ── HERO: the one loud room ── */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 0 32px;
  align-items: stretch;
  max-width: none;
  margin: 0;
  padding: 0 0 0 max(0px, calc((100vw - 1100px) / 2));
  background:
    linear-gradient(105deg, rgba(201, 162, 74, 0.38) 0%, rgba(201, 162, 74, 0.12) 34%, transparent 58%),
    var(--marble);
  overflow: hidden;
}
.hero > * { position: relative; z-index: 1; }

.hero-left {
  height: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 32px 36px 32px 0;
  min-width: 0;
}
.hero-left > * { margin: 0; }

.hero h1 {
  font-size: clamp(38px, 3.9vw, 58px);
  line-height: 1.08;
  max-width: none;
}
.hero h1 span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 0.92em;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-sub {
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 42ch;
}
.hero-sub2 {
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-actions .btn-primary,
.hero-cta .btn-primary {
  font-size: 17px;
  padding: 17px 32px;
  min-height: 52px;
}
.hero-how-link {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.hero-how-link:hover { color: var(--ribbon); }

.hero-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.price-was {
  font-size: 18px;
  color: var(--muted-light);
  text-decoration: line-through;
}
.price-now {
  font-size: clamp(26px, 2vw, 32px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-family: var(--font);
  line-height: 1.12;
}
.price-badge {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: none;
  padding: 0;
  border-radius: 0;
  letter-spacing: 0;
}
.per-day-inline {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep2);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0;
  border-radius: 0;
}
.trust-icon { display: none; }

.hero-right {
  position: relative;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  z-index: 1;
  line-height: 0;
}
.product-img-wrap {
  line-height: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
}
.product-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

/* ── DOSE STRIP ── */
.ticker-wrap {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid var(--champagne);
  border-bottom: 1px solid var(--champagne);
  background: var(--marble);
  transform: translateZ(0);
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
  will-change: transform;
}
.ticker-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 0 32px;
  white-space: nowrap;
  font-family: var(--font);
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--foil);
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-inner {
    animation: none !important;
    transform: none !important;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .ticker-track {
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
  }
  .ticker-track:last-child { display: none; }
}

/* ── PROBLEM ── */
.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: start;
}
.problem-left h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin-bottom: 20px;
  max-width: 16ch;
}
.problem-left p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
}
.problem-left h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 10px;
  letter-spacing: 0;
  line-height: 1.3;
}
.problem-left p:last-child { margin-bottom: 0; }

.symptom-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--champagne);
}
.symptom-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--champagne);
}
.symptom-list h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0;
}
.symptom-list p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ── LIFE BACK ── */
.life-back {
  border-top: 1px solid var(--champagne);
  border-bottom: 1px solid var(--champagne);
  background: var(--marble);
}
.life-back h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin-bottom: 16px;
  max-width: 18ch;
  text-align: left;
}
.life-back-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 36px;
}
.life-back-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
}
.life-back-copy strong { color: var(--ink); font-weight: 600; }
.outcome-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--champagne);
}
.outcome-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--champagne);
}
.outcome-list h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.outcome-list p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.life-back-note-line {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 52ch;
}
.life-back-cta {
  margin-top: 28px;
  text-align: left;
}
.life-back-cta .btn-primary { min-height: 48px; }
.life-back-fine {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* ── HOW ── */
.how {
  background: var(--marble);
  border-bottom: 1px solid var(--champagne);
}
.how-intro h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin-bottom: 14px;
}
.how-intro p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--champagne);
}
.step {
  padding: 24px 0 0;
  background: none;
  border: 0;
  border-radius: 0;
}
.step-num {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--foil);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── FLAVOURS ── */
.product-flavors h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 10px;
}
.product-flavors > p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
}
.flavor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--champagne);
}
.flavor-list a,
.flavor-list .flavor-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: baseline;
  min-height: 44px;
  padding: 16px 0;
  border-bottom: 1px solid var(--champagne);
  text-decoration: none;
  color: inherit;
}
.flavor-list h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
}
.flavor-list .is-live h3 { color: var(--ribbon); }
.flavor-list .is-oos h3 { color: var(--muted); }
.flavor-list .is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
  filter: grayscale(1);
}
.flavor-list .flavor-status {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
  padding: 0;
  background: none;
  border-radius: 0;
  grid-column: 2;
  grid-row: 1;
}
.flavor-list p {
  font-size: 14px;
  color: var(--muted);
  margin: 4px 0 0;
  grid-column: 1 / -1;
  grid-row: 2;
  text-align: left;
}

/* ── FORMULA TABLE ── */
.formula-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.formula-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}
.formula-head a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.formula-head a:hover { color: var(--ribbon); }

.dose-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font);
}
.dose-table th,
.dose-table td {
  text-align: left;
  padding: 14px 12px 14px 0;
  border-bottom: 1px solid var(--champagne);
  vertical-align: top;
}
.dose-table th {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.dose-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 28%;
}
.dose-table td:nth-child(2) {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  width: 18%;
  color: var(--ink);
}
.dose-table td:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.formula-note {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 62ch;
}
.formula-note a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── WHAT ── */
.what {
  border-top: 1px solid var(--champagne);
  border-bottom: 1px solid var(--champagne);
}
.what h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 32px;
  text-align: left;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.what-col { background: none; border: 0; box-shadow: none; padding: 0; border-radius: 0; }
.what-col-head {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--champagne);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.what-col-head.is,
.what-col-head.not { color: var(--ink); }
.what-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--champagne);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
}
.what-item:last-child { border-bottom: none; }
.what-check { flex-shrink: 0; margin-top: 2px; line-height: 0; color: var(--muted); }

/* ── FAQ ── */
.faq {
  background: var(--marble);
}
.faq-inner {
  max-width: 62ch;
  margin: 0;
  padding: 0;
}
.faq .page-block { padding-bottom: 40px; }
.faq h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 28px;
  color: var(--ink);
}
.faq-item { border-bottom: 1px solid var(--champagne); overflow: hidden; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: 16px;
  min-height: 44px;
}
.faq-q:hover { color: var(--ink); }
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--champagne);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink);
}
.faq-item.open .faq-icon { background: var(--foil); border-color: var(--foil); color: var(--ink); }
.faq-a { max-height: 0; overflow: hidden; }
.faq-a-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FOUNDER ── */
.founder-section { border-top: 1px solid var(--champagne); }
.founder-card {
  background: none;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 56px;
  overflow: visible;
}
.founder-copy h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--ink);
}
.founder-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
}
.founder-email {
  display: block;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.founder-email a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.founder-stats { display: flex; flex-direction: column; }
.founder-stat {
  background: none;
  border: 0;
  border-top: 1px solid var(--champagne);
  border-radius: 0;
  padding: 18px 0;
}
.founder-stat:last-child { border-bottom: 1px solid var(--champagne); }
.founder-stat-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-family: var(--font);
}
.founder-stat-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.45;
}
.founder-stat-note.emph { color: var(--ink); }

/* ── CTA BAND ── */
.cta-band {
  max-width: none;
  margin: 0;
  padding: 72px 24px;
  background:
    linear-gradient(105deg, rgba(201, 162, 74, 0.28) 0%, rgba(201, 162, 74, 0.08) 40%, transparent 62%),
    var(--marble);
  border-top: 1px solid var(--champagne);
}
.cta-inner {
  background: var(--white);
  border: 1px solid var(--champagne);
  border-radius: 0;
  padding: 52px 56px 48px;
  text-align: center;
  box-shadow: none;
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--ink);
  margin: 0 auto 16px;
  max-width: 20ch;
}
.cta-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 auto 12px;
  max-width: 42ch;
}
.cta-kicker {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 auto 28px;
}
.cta-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 0;
}
.cta-was { font-size: 16px; color: var(--muted-light); text-decoration: line-through; }
.cta-now { font-size: 32px; font-weight: 600; color: var(--ink); font-family: var(--font); }
.cta-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: none;
  padding: 0;
  letter-spacing: 0;
  border-radius: 0;
}
.per-day-inline-light {
  display: block;
  width: auto;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--deep2);
}
.cta-small {
  font-size: 13px;
  color: var(--muted);
  margin: 22px auto 0;
  max-width: 48ch;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .page-block { padding: 64px 18px; }
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 18px 0;
    overflow: visible;
  }
  .hero-left {
    height: auto;
    min-height: 0;
    padding: 0;
    gap: 20px;
    justify-content: flex-start;
  }
  .hero h1 { font-size: clamp(34px, 8vw, 48px); max-width: none; }
  .hero-right { order: 0; max-width: none; overflow: visible; margin-left: -18px; margin-right: -18px; margin-bottom: -20px; width: calc(100% + 36px); }
  .product-img-wrap { width: 100%; max-width: none; }
  .problem-grid,
  .what-grid,
  .founder-card,
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .flavor-list p { display: none; }
  .cta-band { padding: 48px 16px; }
  .cta-inner { padding: 40px 22px; }
}

@media (max-width: 600px) {
  .page-block { padding: 48px 16px; }
  .hero { padding: 32px 16px 0; }
  .hero-right { margin-left: -16px; margin-right: -16px; width: calc(100% + 32px); }
  .hero-sub,
  .hero-sub2 { font-size: 16px; }
  .hero-sub2 { margin-bottom: 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-cta .btn-primary { width: 100%; }
  .ticker-item { padding: 0 20px; font-size: 12px; }
  .faq-q { font-size: 15px; }
  .cta-now { font-size: 26px; }
  .dose-table td:nth-child(3),
  .dose-table th:nth-child(3) { display: none; }
}
