/* ============================================================================
   BOOTCAMP REMIX — 3-Day AI Bootcamp, SAME dark terminal-green identity,
   elevated execution. Founder call (2026-07-13): keep the current palette
   exactly (dark bg + terminal green), rebuild the design — modern layout,
   stronger hero, more visual energy, premium. NOT white, NOT Mission Control,
   NOT new accents. Preview-only, non-canonical.

   Palette = live index.html hexes (verified): bg #08080f, surface #0d0d18,
   green #00ff88, cyan #00d4ff, text #e0e0e0. Elevation = restraint: hairline
   green borders + selective glow (not everywhere), sharper type scale,
   generous spacing, left-editorial-in-dark, an authentic terminal hero.
   ========================================================================= */

:root {
  /* ---------- COLOR (identity locked to live) ---------- */
  --bg:        #08080f;
  --bg-2:      #0b0b13;
  --panel:     #0f0f18;
  --panel-2:   #14141f;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.05);
  --line-grn:  rgba(0,255,136,0.20);
  --grn:       #00ff88;   /* primary terminal green */
  --grn-soft:  rgba(0,255,136,0.12);
  --grn-ghost: rgba(0,255,136,0.05);
  --cyan:      #00d4ff;   /* secondary, sparing */
  --ink:       #eef0ef;
  --ink-soft:  #a2a6ad;
  --ink-dim:   #6b6f78;
  --on-grn:    #06120c;   /* text on green fills */

  /* ---------- TYPE ---------- */
  --mono: 'JetBrains Mono', ui-monospace, 'Courier New', monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---------- RHYTHM ---------- */
  --maxw: 1200px;
  --r: 14px;
  --r-lg: 20px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* subtle fixed grid — part of the identity, kept restrained */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000 40%, transparent 100%);
}
img { max-width: 100%; display: block; }
a { color: var(--grn); text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--grn); outline-offset: 3px; border-radius: 4px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }

/* ---------- KICKER / LABELS ---------- */
.kick {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--grn);
}
.kick .sep { color: var(--ink-dim); margin: 0 8px; }

/* ---------- HEADER ---------- */
.hdr {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 22px 40px; position: relative; z-index: 2;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .gl {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: var(--panel-2); border: 1px solid var(--line-grn);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 700; font-size: 16px; color: var(--grn); letter-spacing: -0.05em;
}
.brand .wd { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; color: var(--ink); }
.status {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px;
}
.status .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--grn); box-shadow: 0 0 0 4px var(--grn-ghost); animation: pip 1.8s ease-in-out infinite; }
@keyframes pip { 0%,100%{opacity:1} 50%{opacity:.4} }
@media (prefers-reduced-motion: reduce){ .status .pip { animation: none; } }

/* ---------- HERO ---------- */
.hero { padding: 40px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: center; }
.hero h1 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(40px, 5vw, 66px); line-height: 1.04; letter-spacing: -0.03em;
  margin: 20px 0 20px; color: var(--ink); max-width: 15ch;
}
.hero h1 .g { color: var(--grn); }
.hero .lead { font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 46ch; margin: 0 0 26px; }
.metabar {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
  font-family: var(--mono); font-size: 13px; color: var(--ink); margin-bottom: 28px;
}
.metabar .k { color: var(--ink-dim); }
.metabar .bar { width: 1px; height: 13px; background: var(--line); }

.cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 16px;
  background: var(--grn); color: var(--on-grn);
  padding: 18px 34px; border-radius: 11px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(0,255,136,0.22); }
.btn .arw { width: 16px; height: 16px; }
.cta-note { font-family: var(--mono); font-size: 12px; color: var(--ink-dim); letter-spacing: 0.02em; }

/* countdown */
.cd { display: flex; gap: 12px; margin-top: 30px; }
.cd .u {
  min-width: 66px; text-align: center; background: var(--panel);
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 8px;
}
.cd .n { font-family: var(--mono); font-size: 28px; font-weight: 700; color: var(--grn); line-height: 1; }
.cd .l { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim); margin-top: 6px; }

/* ---------- HERO TERMINAL VISUAL (the "more visual" beat, on-brand) ---------- */
.term {
  background: #060609; border: 1px solid var(--line-grn); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,255,136,0.04);
}
.term .tbar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--line-2); background: var(--panel); }
.term .tbar i { width: 11px; height: 11px; border-radius: 50%; background: #2a2a34; }
.term .tbar i:nth-child(1){ background: var(--grn); }
.term .tbar span { margin-left: 8px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-dim); letter-spacing: 0.04em; }
.term .body { padding: 20px 20px 24px; font-family: var(--mono); font-size: 13.5px; line-height: 2; }
.term .body .cmd { color: var(--ink); }
.term .body .cmd b { color: var(--grn); font-weight: 700; }
.term .body .out { color: var(--ink-soft); }
.term .body .out .ok { color: var(--grn); }
.term .body .out .cy { color: var(--cyan); }
.term .body .run { color: var(--ink-dim); }
.term .cur { display: inline-block; width: 9px; height: 16px; vertical-align: -3px; background: var(--grn); margin-left: 2px; animation: cur 1.1s steps(1) infinite; }
@keyframes cur { 50%{opacity:0} }
@media (prefers-reduced-motion: reduce){ .term .cur { animation: none; } }

/* ---------- SECTIONS ---------- */
.sec { padding: 84px 0; border-top: 1px solid var(--line); position: relative; z-index: 1; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.sec-head .kick { display: block; margin-bottom: 14px; }
.sec-head h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(28px, 3.8vw, 44px); line-height: 1.1; letter-spacing: -0.02em; margin: 0; color: var(--ink);
}
.sec-head h2 .g { color: var(--grn); }

/* value nodes */
.nodes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 16px; }
.node {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; transition: border-color .18s ease, transform .18s ease;
}
.node:hover { border-color: var(--line-grn); transform: translateY(-2px); }
.node .n { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--grn); letter-spacing: 0.08em; margin-bottom: 12px; }
.node p { margin: 0; font-size: 15px; font-weight: 500; line-height: 1.5; color: var(--ink); }

/* 3 days */
.days { max-width: 860px; margin: 0 auto; display: grid; gap: 16px; }
.day { display: grid; grid-template-columns: 130px 1fr; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: border-color .18s ease; }
.day:hover { border-color: var(--line-grn); }
.day-s { background: var(--grn-ghost); border-right: 1px solid var(--line-grn); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 26px 14px; }
.day-s .d { font-family: var(--mono); font-weight: 700; font-size: 32px; color: var(--grn); line-height: 1; }
.day-s .dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }
.day-b { padding: 26px 28px; }
.day-b h3 { font-family: var(--sans); font-size: 19px; font-weight: 800; margin: 0 0 14px; color: var(--ink); letter-spacing: -0.01em; }
.day-b ul { list-style: none; margin: 0; padding: 0; }
.day-b li { position: relative; padding: 5px 0 5px 24px; font-size: 14.5px; color: var(--ink-soft); }
.day-b li::before { content: ">"; position: absolute; left: 0; color: var(--grn); font-family: var(--mono); font-weight: 700; }

/* proof */
.proof { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 16px; }
.pc { background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--grn); border-radius: var(--r); padding: 26px; }
.pc blockquote { margin: 0 0 14px; font-size: 15.5px; line-height: 1.65; color: var(--ink); }
.pc cite { font-family: var(--mono); font-size: 12px; font-style: normal; letter-spacing: 0.02em; color: var(--grn); }

/* faq */
.faq { max-width: 760px; margin: 0 auto; }
.faq-i { border-bottom: 1px solid var(--line); padding: 22px 4px; }
.faq-i:first-child { border-top: 1px solid var(--line); }
.faq-q { font-family: var(--sans); font-size: 16.5px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.faq-a { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* final cta */
.fcta { text-align: center; padding: 96px 0; border-top: 1px solid var(--line); position: relative; z-index: 1; }
.fcta h2 { font-family: var(--sans); font-weight: 800; font-size: clamp(30px,4vw,48px); letter-spacing: -0.02em; margin: 0 0 14px; color: var(--ink); }
.fcta h2 .g { color: var(--grn); }
.fcta p { color: var(--ink-soft); font-size: 18px; margin: 0 auto 30px; max-width: 46ch; }
.fcta .cta { justify-content: center; }
.foot { border-top: 1px solid var(--line); text-align: center; padding: 36px 40px; font-family: var(--mono); font-size: 12px; color: var(--ink-dim); letter-spacing: 0.03em; position: relative; z-index: 1; }

/* preview-only variant ribbon */
.flag { position: fixed; top: 0; left: 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; background: var(--grn); color: var(--on-grn); padding: 6px 12px; border-radius: 0 0 8px 0; z-index: 50; font-weight: 700; }

/* ---------- REGISTER SECTION (GHL form) ---------- */
.regsec { text-align: center; }
.regbox { background: var(--panel); border: 1px solid var(--line-grn); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.regbox-head { padding: 26px 28px 18px; border-bottom: 1px solid var(--line-2); }
.regbox-head .kick { display: block; margin-bottom: 10px; }
.regbox-head h3 { font-family: var(--sans); font-size: 22px; font-weight: 800; color: var(--ink); margin: 0 0 6px; letter-spacing: -0.01em; }
.regbox-sub { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--grn); margin: 0; }
.regbox-form { padding: 16px; position: relative; }
.regbox-form iframe { width: 100%; border: none; border-radius: 10px; display: block; min-height: 520px; background: transparent; }
.reg-fallback { padding: 22px 16px; text-align: center; }
.reg-fallback p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.reg-fallback a { color: var(--grn); font-weight: 700; }
@media (max-width: 560px){ .regbox-form iframe { min-height: 420px; } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .wrap, .hdr { padding-left: 24px; padding-right: 24px; }
  .sec { padding: 60px 0; }
  .day { grid-template-columns: 1fr; }
  .day-s { flex-direction: row; gap: 12px; justify-content: flex-start; padding: 16px 22px; border-right: 0; border-bottom: 1px solid var(--line-grn); }
  .day-s .dt { margin-top: 0; }
}
@media (max-width: 560px) {
  .status { display: none; }
  .cd .u { min-width: 56px; }
  .cta { flex-direction: column; align-items: flex-start; }
}
