/* ===========================================================
   Bob Ike Picks — prototype styles
   Greyscale theme (grey + white). Easy to reskin later:
   change the variables in :root below.
   Green/red are kept ONLY for the live/off status indicator
   because they communicate state — easy to neutralize if you
   want pure greyscale there too.
   =========================================================== */

:root {
  --dark: #0f241a;       /* darkest green — navbar (unchanged) + buttons */
  --dark-2: #163123;
  --dark-3: #1e3d2d;
  --accent: #4b5159;     /* mid grey accent */
  --accent-soft: #c9ced5;/* light grey text on dark backgrounds */
  --bg: #15240c;         /* page background */
  --paper: #ffffff;
  --ink: #1f2226;
  --muted: #6b7280;
  --line: #e4e6e9;
  --green: #2f7d4f;
  --green-soft: #eaf3ee;
  --red: #9b3a32;
  --red-soft: #f6ecea;
  --shadow: 0 10px 30px rgba(20, 24, 30, 0.12);
  --radius: 14px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Top nav ---------- */
.nav {
  background: var(--bg);
  color: #fff;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.brand .name {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: .5px;
}
.brand .name small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.nav-links { display: flex; gap: 26px; font-size: 14px; }
.nav-links a { text-decoration: none; color: #cbd0d6; }
.nav-links a:hover { color: #fff; }
.nav-banner {
  display: block;
  width: 400px;
  height: 60px;
  max-width: 100%;
  border-radius: 5px;
}

/* ---------- Meet Bob ---------- */
.meet { display: flex; gap: 32px; align-items: flex-start; }
.meet .meet-photo { flex: 0 0 220px; margin: 0; }
.meet .meet-photo img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.meet .sub { flex: 1; margin-top: 0; text-align: left; }

/* Meet Bob section: same dark-green background as the hero */
#record {
  background:
    linear-gradient(180deg, rgba(21,36,12,.95), rgba(21,36,12,.95)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 39h40M39 0v40' stroke='%23ffffff10'/%3E%3C/svg%3E");
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: none;
  color: #fff;
  padding-top: 36px;
}
#record h2 { color: #fff; }
#record .sub { color: #eef3ef; }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(180deg, rgba(21,36,12,.95), rgba(21,36,12,.95)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 39h40M39 0v40' stroke='%23ffffff10'/%3E%3C/svg%3E");
  color: #fff;
  padding: 56px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--accent-soft);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 16px;
}
.hero p.lead {
  font-size: 18px;
  color: #eff2f6;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 460px;
}
.trust-row {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust-row .stat .num {
  font-family: var(--serif);
  font-size: 28px;
  color: #fff;
}
.trust-row .stat .lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-soft);
}

/* ---------- Purchase card ---------- */
.buy-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.buy-card .card-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 11px;
  border-radius: 999px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; }
.badge.live { background: var(--green-soft); color: var(--green); }
.badge.live .dot { background: var(--green); box-shadow: 0 0 0 3px rgba(47,125,79,.18); }
.badge.off { background: var(--red-soft); color: var(--red); }
.badge.off .dot { background: var(--red); }

.card-body { padding: 22px; }
.price {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
}
.price small { font-size: 15px; color: var(--muted); font-family: var(--sans); }
.includes { list-style: none; padding: 0; margin: 16px 0 20px; }
.includes li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 6px 0; font-size: 14px; color: #333;
}
.includes li::before { content: "✓"; color: var(--green); font-weight: 700; }

label.fld { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
input[type=email], input[type=text], input[type=time] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--sans);
}
input:focus { outline: 2px solid var(--accent); border-color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .05s ease, filter .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-paypal { background: var(--dark); color: #fff; font-size: 16px; }
.btn-paypal:hover { filter: brightness(1.12); }
.btn-paypal i { font-style: normal; font-weight: 800; }
.btn-primary { background: var(--dark); color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); width: auto; padding: 9px 14px; }
.btn-ghost:hover { background: var(--bg); }
.btn-danger { background: var(--red); color: #fff; }
.btn-sm { width: auto; padding: 8px 12px; font-size: 13px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

.fineprint { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* OFF state */
.off-state { text-align: center; padding: 8px 0; }
.off-state .lock { font-size: 34px; }
.off-state h3 { font-family: var(--serif); margin: 10px 0 6px; }
.off-state p { color: var(--muted); font-size: 14px; margin: 0 0 18px; }

.hidden { display: none !important; }

/* ---------- Sections ---------- */
section.block { padding: 56px 0; }
section.block.alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.block h2 {
  font-family: var(--serif);
  font-size: 30px;
  text-align: center;
  margin: 0 0 8px;
}
.block .sub { color: var(--muted); margin: 0 0 36px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.step .n {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--dark); color: #fff;
  display: grid; place-items: center; margin: 0 auto 14px;
  font-family: var(--serif); font-size: 18px;
}
.step h4 { margin: 0 0 8px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.5; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  color: #aeb4bc;
  padding: 30px 0;
  font-size: 13px;
  text-align: center;
}
.footer .accent { color: #fff; }

/* ---------- Demo toolbar ---------- */
.demo-bar {
  position: fixed;
  left: 50%; transform: translateX(-50%);
  bottom: 16px;
  background: #111418;
  color: #fff;
  border: 1px solid #383d44;
  border-radius: 999px;
  padding: 8px 10px 8px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  z-index: 999;
  font-size: 13px;
}
.demo-bar .tag {
  background: #5b626b; color: #fff;
  font-weight: 800; font-size: 10px; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 6px; text-transform: uppercase;
}
.demo-bar button {
  background: #2a2f36; color: #fff; border: 1px solid #3d434b;
  border-radius: 8px; padding: 7px 12px; cursor: pointer; font-size: 13px;
}
.demo-bar button:hover { background: #3d434b; }
.demo-bar a { color: #cbd0d6; text-decoration: none; }

/* ---------- Admin ---------- */
.admin-wrap { max-width: 720px; margin: 40px auto; padding: 0 20px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card .hd {
  padding: 18px 22px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.card .hd h3 { margin: 0; font-family: var(--serif); }
.card .bd { padding: 22px; }
.status-banner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-radius: 12px; margin-bottom: 22px;
}
.status-banner.live { background: var(--green-soft); border: 1px solid #cfe3d6; }
.status-banner.off { background: var(--red-soft); border: 1px solid #ecd6d2; }
.status-banner .big {
  font-family: var(--serif); font-size: 22px; display: flex; align-items: center; gap: 10px;
}
.status-banner.live .big { color: var(--green); }
.status-banner.off .big { color: var(--red); }

.upload-zone {
  border: 2px dashed var(--line);
  border-radius: 12px;
  padding: 26px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.upload-zone:hover { border-color: var(--accent); background: #fafbfc; }
.upload-zone.has-file { border-style: solid; border-color: var(--green); background: var(--green-soft); }
.upload-zone .ic { font-size: 30px; }
.upload-zone .fname { font-weight: 700; margin-top: 8px; }

.row { display: flex; gap: 12px; align-items: center; }
.row.between { justify-content: space-between; }
.mt { margin-top: 18px; }
.muted { color: var(--muted); font-size: 13px; }

.countdown {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 8px 12px; border-radius: 8px; display: inline-block;
}

.sales { width: 100%; border-collapse: collapse; margin-top: 8px; }
.sales th, .sales td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); font-size: 14px; }
.sales th { color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.pill { font-size: 12px; padding: 3px 9px; border-radius: 999px; background: var(--green-soft); color: var(--green); font-weight: 600; }

.toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%);
  background: var(--dark); color: #fff; padding: 12px 20px; border-radius: 10px;
  box-shadow: var(--shadow); z-index: 1000; font-size: 14px;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-6px); }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .meet { flex-direction: column; }
  .meet .meet-photo { flex: 0 0 auto; align-self: center; max-width: 340px; }
}
@media (max-width: 600px) {
  .nav-banner { height: auto; }
}
