/* LOCK TF IN — marketing site. Same industrial caution-sign language as the app. */

:root {
  --bg: #0a0a0b;
  --surface: #141416;
  --surface-raised: #1d1d20;
  --line: #2a2a2e;
  --yellow: #ffc800;
  --orange: #ff6a00;
  --red: #e8102e;
  --bone: #f7f7f2;
  --steel: #9a9aa0;
  --radius: 4px;
  --radius-sm: 2px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { background: var(--bg); scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--bone);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  overflow-x: hidden;
}

a { color: inherit; }

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.stamp {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.display {
  font-family: "Anton", "Archivo Black", -apple-system, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.96;
}

.heading {
  font-family: "Anton", "Archivo Black", -apple-system, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.accent { color: var(--yellow); }

/* ---------- ticker ---------- */

.ticker {
  background: var(--yellow);
  color: #0a0a0b;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid #000;
  position: relative;
  z-index: 40;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding: 7px 0;
  animation: ticker 22s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-right: 2.5rem;
  border-right: 2px solid rgba(0,0,0,0.35);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- nav ---------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10,10,11,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Anton", sans-serif;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--bone);
}
.brand img { width: 30px; height: 30px; border-radius: 7px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a:not(.btn) {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  transition: color .15s ease;
}
.nav-links a:not(.btn):hover { color: var(--bone); }

@media (max-width: 720px) {
  .brand { font-size: 17px; }
  .brand img { width: 26px; height: 26px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn) { display: none; }
  .nav-links .btn { padding: 10px 16px; font-size: 12px; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--yellow); color: #0a0a0b; }
.btn-primary:hover { background: #ffd633; }
.btn-ghost { background: transparent; color: var(--bone); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--steel); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding-top: clamp(56px, 9vw, 108px);
  padding-bottom: clamp(56px, 9vw, 96px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--yellow);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  color: var(--bone);
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero p.lede {
  margin-top: 22px;
  max-width: 46ch;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--steel);
}
.hero .ctas {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .fineprint {
  margin-top: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

/* phone mockup */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone {
  position: relative;
  width: min(300px, 78vw);
  border: 3px solid #000;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 0 0 1.5px var(--line), 0 40px 90px -30px rgba(255,200,0,0.18), 0 20px 60px rgba(0,0,0,0.6);
  background: #000;
  transform: rotate(2deg);
}
.phone img { width: 100%; display: block; }
.phone-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(closest-side, rgba(255,200,0,0.16), transparent 70%);
  z-index: -1;
}
.stripe-corner {
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: repeating-linear-gradient(45deg, var(--yellow) 0 14px, #0a0a0b 14px 28px);
  opacity: 0.12;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
}

/* ---------- hairline section frame ---------- */

.section {
  padding: clamp(56px, 9vw, 104px) 0;
  border-top: 1px solid var(--line);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 5vw, 52px);
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 46px);
}
.section-head .stamp { color: var(--steel); }
.bar {
  width: 64px; height: 4px;
  background: var(--yellow);
  margin-bottom: 14px;
}

/* ---------- feature grid ---------- */

.grid-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature {
  background: var(--surface);
  padding: 28px 26px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature .icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,200,0,0.1);
  color: var(--yellow);
  border: 1px solid rgba(255,200,0,0.35);
  border-radius: var(--radius-sm);
  font-size: 18px;
}
.feature h3 {
  font-family: "Anton", sans-serif;
  font-size: 19px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.feature p { color: var(--steel); font-size: 14.5px; }

@media (max-width: 860px) {
  .grid-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-features { grid-template-columns: 1fr; }
}

/* ---------- screenshots (auto-scrolling marquee, same seamless-loop
   technique as the ticker: track holds two copies, animates 0 to -50%) ---------- */

.shots-viewport {
  overflow: hidden;
  padding: 4px 4px 20px;
  /* fade the hard edges so cards drift in/out instead of clipping */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
}
.shots-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: shots-marquee 32s linear infinite;
}
.shots-viewport:hover .shots-track,
.shots-viewport:focus-within .shots-track {
  animation-play-state: paused;
}
@keyframes shots-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 10px)); }
}
@media (prefers-reduced-motion: reduce) {
  .shots-track { animation: none; }
  .shots-viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
.shot-card {
  flex: 0 0 auto;
  width: min(240px, 62vw);
  border: 3px solid #000;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 0 0 1.5px var(--line);
  background: #000;
}
.shot-card img { display: block; width: 100%; pointer-events: none; -webkit-user-drag: none; }

/* ---------- coach quotes ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 22px;
}
.quote-card .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
  display: block;
}
.quote-card p { font-size: 15.5px; color: var(--bone); }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- pricing ---------- */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan.featured {
  border-color: var(--yellow);
  background: var(--surface-raised);
}
.plan .badge {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--yellow);
  color: #0a0a0b;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: var(--radius-sm);
}
.plan .name {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}
.plan .price {
  font-family: "Anton", sans-serif;
  font-size: 40px;
  color: var(--bone);
}
.plan .price span {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--steel);
  font-weight: 700;
}
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.plan li { font-size: 14px; color: var(--steel); padding-left: 18px; position: relative; }
.plan li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 2px;
  background: var(--yellow);
}
.pricing-note {
  margin-top: 22px;
  text-align: center;
  color: var(--steel);
  font-size: 14px;
}
@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */

.cta-band {
  border-top: 1px solid var(--line);
  padding: clamp(56px, 9vw, 96px) 0;
  text-align: center;
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,200,0,0.05) 0 18px, transparent 18px 36px);
}
.cta-band h2 { font-size: clamp(32px, 6vw, 60px); }
.cta-band p { color: var(--steel); margin: 16px auto 32px; max-width: 44ch; }

/* ---------- footer ---------- */

footer.site {
  border-top: 1px solid var(--line);
  padding: 44px 0 34px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 26px; height: 26px; border-radius: 6px; }
.footer-brand span { font-family: "Anton", sans-serif; font-size: 16px; letter-spacing: 0.02em; }
.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
}
.footer-links a:hover { color: var(--bone); }
.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--steel);
  font-size: 12.5px;
}
.footer-bottom a { color: var(--steel); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- responsive hero ---------- */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-stage { order: -1; margin-bottom: 8px; }
  .phone { width: min(240px, 58vw); }
}
@media (max-width: 480px) {
  .hero { padding-top: 28px; padding-bottom: 40px; }
  .phone { width: 190px; }
  .phone-stage { margin-bottom: -4px; }
  .hero h1 { font-size: 46px; }
  .hero .ctas { margin-top: 24px; }
}

/* ---------- legal / prose pages ---------- */

.prose-page { padding: clamp(48px, 8vw, 80px) 0 96px; }
.prose-page .back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  margin-bottom: 28px;
}
.prose-page .back:hover { color: var(--yellow); }
.prose-page h1 {
  font-size: clamp(34px, 6vw, 54px);
  margin-bottom: 6px;
}
.prose-page .updated {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 40px;
  display: block;
}
.prose {
  max-width: 74ch;
}
.prose h2 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--steel); font-size: 15.5px; line-height: 1.7; }
.prose strong { color: var(--bone); }
.prose ul { margin: 12px 0 12px 20px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--yellow); text-decoration: underline; text-underline-offset: 2px; }
