/* The Weekly Combine — marketing site.
   Light-coded, responsive. Design tokens mirror the app's palette. */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --ground:   #F1EEEB;
  --ground-2: #E9E5E1;
  --ink:      #1A1715;
  --muted:    #6E6864;
  --faint:    #A8A199;
  --card:     #FFFFFF;
  --hairline: rgba(26,23,21,0.10);
  --red:      #BE3A2E;
  --red-dark: #9E2E24;
  --red-ink:  #FFF3F1;
  --strength: #BE3A2E;
  --power:    #6E5AB8;
  --endurance:#3E8F6E;
  --mobility: #C98A2E;
  --gutter:   clamp(20px, 6vw, 80px);
  --maxw:     1180px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: 'Archivo', system-ui, sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

.disp { font-family: 'Archivo Black','Arial Black',sans-serif; }
.mono { font-family: 'IBM Plex Mono', monospace; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.full { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gutter); border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap; gap: 12px;
}
.brand { font-size: 17px; letter-spacing: -0.01em; color: var(--ink); }
.brand span { color: var(--red); }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 3vw, 34px); flex-wrap: wrap; }
.nav-links a.mono { font-size: 11px; letter-spacing: 0.12em; color: var(--muted); }
.btn-ghost {
  font-size: 11px; letter-spacing: 0.12em; color: var(--ink);
  padding: 9px 15px; border: 1px solid rgba(26,23,21,0.22); border-radius: 6px;
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Ticker ---------- */
.ticker { display: flex; align-items: center; height: 34px; background: var(--ground-2);
  border-bottom: 1px solid var(--hairline); overflow: hidden; }
.ticker .tag {
  flex: none; background: var(--red); color: var(--red-ink); font-size: 9px; font-weight: 600;
  letter-spacing: 0.14em; height: 100%; display: flex; align-items: center; padding: 0 12px;
}
.ticker-track {
  display: flex; gap: 30px; padding-left: 22px; white-space: nowrap; font-size: 11px; color: var(--muted);
  animation: ticker 34s linear infinite;
}
.ticker-track b { color: var(--ink); font-weight: 600; }
.ticker-track .disp { font-size: 12px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- App Store badge ---------- */
.appstore {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--ground); padding: 13px 22px; border-radius: 10px;
}
.appstore:hover { color: var(--ground); opacity: 0.92; }
.appstore small { font-family: 'Archivo', sans-serif; font-size: 9px; letter-spacing: 0.02em; display: block; }
.appstore .disp { font-size: 19px; line-height: 1.05; letter-spacing: -0.01em; }

/* ---------- Hero ---------- */
.hero { display: flex; gap: 40px; align-items: center; padding: clamp(40px,6vw,76px) var(--gutter) clamp(40px,5vw,64px); }
.hero .wrap { display: contents; }
.hero-copy { flex: 1; min-width: 0; }
.eyebrow { font-size: 11px; letter-spacing: 0.22em; color: var(--red); margin-bottom: 20px; }
.hero h1 { margin: 0 0 24px; font-size: clamp(38px, 6.2vw, 66px); line-height: 0.98; letter-spacing: -0.03em; }
.hero h1 .accent { color: var(--red); }
.hero p { font-size: clamp(15px,1.6vw,17px); line-height: 1.6; color: var(--muted); max-width: 520px; margin: 0 0 32px; }
.hero p .ink { color: var(--ink); }
.cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cta-note { font-size: 10px; letter-spacing: 0.1em; color: var(--faint); max-width: 160px; line-height: 1.5; }

/* Phone mock */
.phone {
  flex: none; width: 280px; height: 568px; background: #0B0B0B; border: 10px solid #101012;
  border-radius: 44px; box-shadow: 0 40px 90px -40px rgba(26,23,21,0.45); padding: 22px 18px;
  display: flex; flex-direction: column;
}
.phone .disp { color: #F4F2F1; }
.phone .brand-sm { font-size: 12px; letter-spacing: -0.01em; margin-bottom: 20px; color: #F4F2F1; }
.phone .brand-sm span { color: var(--red); }
.phone .lbl { font-size: 9px; letter-spacing: 0.16em; color: #635E5B; }
.age-num { font-size: 96px; line-height: 0.9; letter-spacing: -0.04em; color: #F4F2F1; }
.phone .hr { height: 1px; background: rgba(244,242,241,0.08); margin: 6px 0 16px; }
.today-card { background: #141414; border: 1px solid rgba(244,242,241,0.08); border-radius: 12px; padding: 16px; margin-bottom: 12px; }
.pill-bars { display: flex; gap: 8px; }
.pill-bars span { flex: 1; height: 6px; border-radius: 3px; }

/* ---------- Pillars strip ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.pillars > div { padding: 20px var(--gutter); display: flex; align-items: center; gap: 10px; border-right: 1px solid var(--hairline); }
.pillars > div:last-child { border-right: 0; }
.pillars .dot { width: 9px; height: 9px; border-radius: 50%; }
.pillars .mono { font-size: 11px; letter-spacing: 0.14em; }

/* ---------- Sections ---------- */
.section { padding: clamp(48px,6vw,80px) var(--gutter) 0; }
.section-label { font-size: 11px; letter-spacing: 0.2em; color: var(--red); margin-bottom: 14px; }
.section h2 { margin: 0 0 40px; font-size: clamp(28px,4vw,40px); letter-spacing: -0.02em; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card {
  background: var(--card); border: 1px solid var(--hairline); border-radius: 14px; padding: clamp(24px,3vw,34px);
}
.card .num { font-size: 13px; color: var(--faint); margin-bottom: 18px; }
.card h3 { margin: 16px 0 10px; font-size: 22px; letter-spacing: -0.01em; }
.card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted); }
.span-all { grid-column: 1 / -1; }

/* Feature banner */
.feature-banner { display: flex; gap: 34px; align-items: center; }
.feature-banner .copy { flex: 1; }
.feature-banner .copy .mono { font-size: 10px; letter-spacing: 0.18em; color: var(--red); margin-bottom: 12px; }
.feature-banner .copy h3 { font-size: clamp(24px,3vw,30px); letter-spacing: -0.02em; margin: 0 0 12px; }
.feature-banner .copy p { font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 560px; margin: 0; }
.standings { flex: none; width: 230px; background: var(--ground); border: 1px solid var(--hairline); border-radius: 12px; padding: 16px; }
.standings .head { font-size: 8px; letter-spacing: 0.16em; color: var(--faint); margin-bottom: 12px; }
.standings .row { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.standings .row.you { background: rgba(190,58,46,0.10); margin: 0 -8px; padding: 8px; border-radius: 6px; }
.standings .rk { font-size: 14px; color: var(--faint); width: 16px; }
.standings .row.you .rk { color: var(--mobility); }
.standings .who { font-size: 13px; font-weight: 600; flex: 1; }
.standings .row.you .who { color: var(--red); }
.standings .val { font-size: 15px; }

/* Numbers */
.numbers { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); margin-top: clamp(40px,5vw,64px);
  border: 1px solid var(--hairline); border-radius: 14px; overflow: hidden; background: var(--card); }
.numbers > div { padding: clamp(22px,3vw,34px); border-right: 1px solid var(--hairline); }
.numbers > div:last-child { border-right: 0; }
.numbers .n { font-size: clamp(34px,5vw,44px); letter-spacing: -0.03em; }
.numbers .k { font-size: 10px; letter-spacing: 0.12em; color: var(--muted); margin-top: 6px; }

/* Final CTA */
.final-cta { margin: clamp(40px,5vw,64px) var(--gutter) 0; background: var(--red); border-radius: 18px;
  padding: clamp(36px,5vw,60px) clamp(28px,4vw,56px); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.final-cta h2 { margin: 0; font-size: clamp(30px,4vw,44px); line-height: 1.0; letter-spacing: -0.02em; color: var(--red-ink); }
.final-cta p { font-size: 16px; color: rgba(255,243,241,0.85); margin: 16px 0 0; max-width: 420px; line-height: 1.5; }

/* ---------- Support / legal ---------- */
.page-header { padding: clamp(48px,6vw,72px) var(--gutter) clamp(28px,4vw,44px); }
.page-header h1 { margin: 0 0 18px; font-size: clamp(36px,5vw,52px); letter-spacing: -0.03em; line-height: 1.0; }
.page-header p { font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 620px; margin: 0; }
.page-header p .ink { color: var(--ink); }

.faq { padding: clamp(32px,4vw,44px) var(--gutter) 0; }
.faq h2 { font-size: clamp(26px,3.5vw,34px); letter-spacing: -0.02em; margin: 0 0 28px; }
.qa { padding: 26px 0; border-top: 1px solid var(--hairline); display: flex; gap: 40px; }
.qa:last-child { border-bottom: 1px solid var(--hairline); }
.qa .q { font-size: 19px; letter-spacing: -0.01em; width: 340px; flex: none; }
.qa .a { font-size: 15px; line-height: 1.65; color: var(--muted); }
.qa .a .ink { color: var(--ink); }

.legal { padding: clamp(24px,3vw,36px) var(--gutter) 0; max-width: 820px; }
.legal .eff { font-size: 11px; letter-spacing: 0.1em; color: var(--faint); margin-bottom: 28px; }
.legal p { font-size: 15px; line-height: 1.7; color: #3A3633; margin: 0 0 16px; white-space: pre-wrap; }

/* ---------- Footer ---------- */
.footer { padding: clamp(40px,5vw,56px) var(--gutter) 40px; margin-top: clamp(40px,5vw,64px);
  border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer .made { font-size: 10px; letter-spacing: 0.06em; color: var(--faint); margin-top: 10px; }
.footer-cols { display: flex; gap: clamp(32px,6vw,64px); flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col .h { font-size: 9px; letter-spacing: 0.18em; color: var(--faint); }
.footer-col a { font-size: 14px; color: var(--muted); }
.copyright { padding: 0 var(--gutter) 40px; }
.copyright .mono { font-size: 10px; color: var(--faint); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .feature-banner { flex-direction: column; align-items: flex-start; }
  .standings { width: 100%; }
  .numbers { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .numbers > div:nth-child(2) { border-right: 0; }
  .numbers > div:nth-child(1), .numbers > div:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  .qa { flex-direction: column; gap: 10px; }
  .qa .q { width: auto; }
}
@media (max-width: 760px) {
  .hero { flex-direction: column-reverse; }
  .phone { transform: scale(0.92); }
  .pillars { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pillars > div:nth-child(2) { border-right: 0; }
  .pillars > div:nth-child(1), .pillars > div:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  .grid-2 { grid-template-columns: 1fr; }
  .nav-links { width: 100%; justify-content: flex-start; }
}
@media (max-width: 480px) {
  .numbers { grid-template-columns: 1fr; }
  .numbers > div { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .numbers > div:last-child { border-bottom: 0; }
}
