/* PitchReady, brucecolab26.com
   Built for a stage projector + a phone.
   Large fonts, high contrast, Inter only.
   No em dashes in any user-facing string. */

:root {
  --bg: #0F0E0D;
  --bg-2: #161311;
  --card: #1A1816;
  --line: #2A2724;
  --text: #F5F1EA;
  --muted: #9C968D;
  --accent: #FF5C39;
  --accent-2: #FFB199;
  --max: 1240px;
  --pad: 28px;
  --radius: 18px;
  --shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); color: var(--text); }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-feature-settings: 'ss01' on, 'cv02' on, 'cv11' on;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

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

/* ====== Top bar ====== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 14, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand .dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 999px;
  display: inline-block;
}
.brand-name { font-size: 18px; }
.topbar-link {
  font-weight: 600;
  font-size: 16px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.topbar-link:hover { border-color: var(--accent); color: var(--accent); }

/* ====== Section shell ====== */
section { padding: 96px 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: none; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 18px;
}
.section-title {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 16px;
}
.section-sub {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--muted);
  max-width: 760px;
  margin: 0 0 36px;
}

/* ====== Hero ====== */
.hero { padding: 120px 0 96px; background:
  radial-gradient(60% 80% at 20% 0%, rgba(255,92,57,0.18), transparent 60%),
  radial-gradient(40% 60% at 100% 0%, rgba(255,177,153,0.10), transparent 60%),
  var(--bg);
}
.hero-title {
  font-size: clamp(44px, 8vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 900;
  margin: 0 0 28px;
}
.hero-sub {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  color: var(--text);
  max-width: 820px;
  margin: 0 0 40px;
  font-weight: 500;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ====== API stack pills + build stamp ====== */
.api-stack {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stack-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 14px;
}
.pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pill-live {
  border-color: var(--accent);
  color: var(--accent);
}
.pill-stack {
  color: var(--muted);
}
.pill-tag {
  background: var(--accent);
  color: #0F0E0D;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
}
.build-stamp {
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
}
.build-stamp-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.build-stamp-text {
  font-weight: 600;
  color: var(--text);
}
.build-stamp-time {
  font-size: 13px;
  color: var(--muted);
  width: 100%;
}
@media (max-width: 600px) {
  .build-stamp-num { font-size: 24px; }
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 16px 26px;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #0F0E0D;
}
.btn-primary:hover { background: var(--accent-2); color: #0F0E0D; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-big { padding: 20px 32px; font-size: 20px; }
.btn-sm { padding: 10px 16px; font-size: 14px; }

/* ====== Try / Demo ====== */
.try { background: var(--bg-2); }
.samples {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.chip {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 600;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }

.pitch-form { margin-top: 8px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}
@media (max-width: 700px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-input {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  font-size: 22px;
  font-weight: 500;
  font-family: inherit;
  outline: none;
  min-width: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,92,57,0.15);
}
.form-input::placeholder { color: var(--muted); }
.form-hint {
  color: var(--muted);
  font-size: 15px;
  margin: 10px 2px 0;
}
.status {
  margin: 20px 0 0;
  font-size: 17px;
  color: var(--accent);
  font-weight: 600;
  min-height: 26px;
}

/* ====== Packet ====== */
.packet {
  margin-top: 44px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.packet[hidden] { display: none; }
.packet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  margin-bottom: 28px;
}
.packet-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 4px;
}
.packet-title {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 800;
}

.panel-signal {
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 14px;
  padding: 24px 26px;
  margin-bottom: 20px;
}
.panel-signal .panel-kicker { color: var(--accent); }
.signal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px 22px;
  margin-top: 6px;
}
.signal-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.signal-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.signal-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
}
.signal-value.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
}
.signal-pill {
  display: inline-block;
  background: rgba(255,92,57,0.12);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  margin: 2px 4px 2px 0;
}

.panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .panels { grid-template-columns: 1fr; }
}
.panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
}
.panel-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 8px;
}
.panel-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.panel-body {
  font-size: 17px;
  color: var(--text);
}
.panel-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.panel-body li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.panel-body li:last-child { border-bottom: none; }
.panel-body .tag {
  display: inline-block;
  background: rgba(255,92,57,0.12);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 4px 6px 0 0;
}
.panel-body blockquote {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}
.panel-body .num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.panel-body .num-sub {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}
.panel-source {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pitch-block {
  margin-top: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
}
.pitch-text {
  margin: 12px 0 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--text);
}

/* ====== How it works ====== */
.steps {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.step-title {
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.step-body {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .step { grid-template-columns: 56px 1fr; gap: 16px; }
  .step-num { font-size: 40px; }
}

/* ====== Who it's for ====== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
@media (max-width: 880px) { .who-grid { grid-template-columns: 1fr; } }
.who-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}
.who-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}
.who-body {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

/* ====== Why ====== */
.why-body {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  color: var(--text);
  max-width: 920px;
  margin: 0;
  font-weight: 500;
}

/* ====== Built ====== */
.built-body {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 820px;
  margin: 0;
}
.logos {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.logos li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
}

/* ====== Footer ====== */
.foot {
  padding: 56px 0;
  background: var(--bg-2);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.foot-tag, .foot-link {
  color: var(--muted);
  margin: 6px 0;
  font-size: 15px;
}
.foot-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* ====== Reduced motion + selection ====== */
::selection { background: var(--accent); color: #0F0E0D; }
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
