/* Cue Killer — shared styles. Booth-black + ghost-light amber. */
:root {
  --bg:      #0a0a0b;   /* booth black */
  --bg-2:    #141417;   /* panel */
  --bg-3:    #1c1c20;   /* raised */
  --line:    #2a2a30;
  --amber:   #FFB23E;   /* ghost-light accent */
  --red:     #FF3B47;   /* standby / next */
  --green:   #2BD66A;   /* GO / live */
  --blue:    #3E9BFF;   /* camera */
  --teal:    #2BD6C4;   /* audio */
  --text:    #f6f6f5;
  --muted:   #9b9ba4;
  --radius:  16px;
  --maxw:    1080px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI",
               system-ui, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;          /* nothing scrolls the page sideways on mobile */
}
img { max-width: 100%; }       /* images never force the layout wider than the screen */

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10,10,11,.78);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: .3px; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand .cue { color: var(--text); }
.brand .killer { color: var(--amber); }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-links .btn { color: #1a1205; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--amber); color: #1a1205;
  font-weight: 800; font-size: 16px;
  padding: 13px 22px; border-radius: 12px;
  border: none; cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease;
  box-shadow: 0 6px 24px rgba(255,178,62,.28);
}
.btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 10px 30px rgba(255,178,62,.4); }
.btn.ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line); box-shadow: none;
}
.btn.ghost:hover { border-color: var(--amber); color: var(--amber); }

/* ---------- hero ---------- */
.hero { padding: 72px 0 56px; }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--amber);
  border: 1px solid rgba(255,178,62,.4); border-radius: 999px;
  padding: 5px 14px; margin-bottom: 22px;
}
.hero h1 { font-size: 56px; line-height: 1.04; font-weight: 850; letter-spacing: -1px; }
.hero h1 .amber { color: var(--amber); }
.hero p.lead { font-size: 20px; color: var(--muted); margin: 20px 0 30px; max-width: 32ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 14px; color: var(--muted); margin-top: 18px; }
.hero-note b { color: var(--text); }

/* Killian, glowing on black so the black robe reads */
.killian-stage { display: flex; justify-content: center; align-items: center; position: relative; }
.killian-stage::before {
  content: ""; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,178,62,.42) 0%, rgba(255,178,62,.10) 45%, transparent 70%);
  filter: blur(8px);
}
.killian-stage img { position: relative; width: 100%; max-width: 360px; filter: drop-shadow(0 12px 30px rgba(0,0,0,.6)); }

/* ---------- sections ---------- */
section { padding: 60px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: 36px; font-weight: 800; letter-spacing: -.5px; }
.section-head p { color: var(--muted); font-size: 18px; margin-top: 12px; }
.divider { border: none; border-top: 1px solid var(--line); }

/* feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  transition: border-color .2s ease, transform .1s ease;
}
.card:hover { border-color: rgba(255,178,62,.45); transform: translateY(-3px); }
.card .ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-size: 22px; margin-bottom: 16px; background: var(--bg-3);
}
.card h3 { font-size: 19px; font-weight: 750; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.dot-amber { box-shadow: inset 0 0 0 2px rgba(255,178,62,.5); color: var(--amber); }
.dot-green { box-shadow: inset 0 0 0 2px rgba(43,214,106,.5); color: var(--green); }
.dot-red   { box-shadow: inset 0 0 0 2px rgba(255,59,71,.5);  color: var(--red); }
.dot-blue  { box-shadow: inset 0 0 0 2px rgba(62,155,255,.5); color: var(--blue); }
.dot-teal  { box-shadow: inset 0 0 0 2px rgba(43,214,196,.5); color: var(--teal); }

/* tagline band */
.tagline-band { padding: 38px 0; text-align: center; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tagline-band p { font-size: 30px; font-weight: 820; letter-spacing: -.5px; }
.tagline-band .amber { color: var(--amber); }
@media (max-width: 560px) { .tagline-band p { font-size: 22px; } }

/* hands-free spotlight */
.spotlight { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spotlight .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.spotlight .eyebrow { margin-bottom: 14px; }
.spotlight h2 { font-size: 34px; font-weight: 820; letter-spacing: -.5px; line-height: 1.1; }
.spotlight > .wrap > div > p.intro { color: var(--muted); font-size: 18px; margin: 14px 0 10px; max-width: 46ch; }
.spotlight-art { display: flex; justify-content: center; position: relative; }
.spotlight-art::before {
  content: ""; position: absolute; width: 74%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(62,155,255,.30) 0%, transparent 68%); filter: blur(8px);
}
.spotlight-art img { position: relative; width: 100%; max-width: 320px; filter: drop-shadow(0 12px 30px rgba(0,0,0,.6)); }
.trigger-block { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; }
.trigger-block + .trigger-block { border-top: 1px solid var(--line); }
.trigger-block .ico { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-size: 23px; background: var(--bg-3); }
.trigger-block h3 { font-size: 21px; font-weight: 750; margin-bottom: 6px; }
.trigger-block p { color: var(--muted); font-size: 15px; }

/* beta section */
.beta { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.beta .wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; }
.beta-art { display: flex; justify-content: center; position: relative; }
.beta-art::before {
  content: ""; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,214,106,.28) 0%, transparent 68%); filter: blur(6px);
}
.beta-art img { position: relative; width: 100%; max-width: 260px; }
.steps { list-style: none; counter-reset: step; margin-top: 22px; }
.steps li { counter-increment: step; position: relative; padding: 0 0 18px 46px; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: -2px;
  width: 30px; height: 30px; border-radius: 50%; background: var(--amber); color: #1a1205;
  font-weight: 800; display: grid; place-items: center; font-size: 15px;
}
.steps li b { color: var(--text); }
.steps li span { color: var(--muted); }
.req { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 26px; }
.req .pill { background: var(--bg-3); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 14px; color: var(--muted); }
.req .pill b { color: var(--text); }

/* ---------- meet killian ---------- */
.meet .wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.meet-art { display: flex; justify-content: center; position: relative; }
.meet-art::before { content: ""; position: absolute; width: 80%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,178,62,.42) 0%, transparent 68%); filter: blur(10px); }
.meet-art img { position: relative; width: 100%; max-width: 340px; filter: drop-shadow(0 16px 38px rgba(0,0,0,.6)); }
.meet h2 { font-size: 40px; font-weight: 850; letter-spacing: -.5px; }
.meet h2 .amber { color: var(--amber); }
.meet p { color: #d4d4d6; font-size: 18px; line-height: 1.55; margin-top: 16px; max-width: 56ch; }
.meet p b { color: var(--text); }
.meet .sig { margin-top: 20px; color: var(--amber); font-weight: 800; font-size: 19px; }

/* ---------- app examples ---------- */
.shots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shot { background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px; padding: 18px;
  text-align: center; transition: border-color .2s ease, transform .1s ease; }
.shot:hover { border-color: rgba(255,178,62,.45); transform: translateY(-3px); }
.shot .frame { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: #000; }
.shot .frame img { width: 100%; display: block; }
.shot h3 { font-size: 17px; font-weight: 750; margin-top: 14px; }
.shot p { color: var(--muted); font-size: 14px; margin-top: 5px; }

/* ---------- comparison ---------- */
.why .table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 560px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.compare-table th, .compare-table td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 16px; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table thead th { font-size: 18px; font-weight: 800; }
.compare-table .col-ck { background: rgba(255,178,62,.07); color: var(--text); font-weight: 650; }
.compare-table thead .col-ck { color: var(--amber); }
.compare-table .dim { color: var(--muted); font-weight: 700; width: 32%; }
.compare-table .col-old { color: #bcbcc0; }
.compare-note { color: var(--muted); font-size: 15px; margin-top: 18px; text-align: center; }

/* ---------- content pages (privacy / support) ---------- */
.page { padding: 56px 0 80px; }
.page h1 { font-size: 40px; font-weight: 850; letter-spacing: -.5px; margin-bottom: 8px; }
.page .updated { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.page h2 { font-size: 24px; font-weight: 750; margin: 38px 0 12px; }
.page p, .page li { color: #d8d8da; font-size: 16px; }
.page ul { margin: 12px 0 12px 22px; }
.page li { margin-bottom: 8px; }
.callout {
  background: var(--bg-2); border: 1px solid var(--line); border-left: 3px solid var(--amber);
  border-radius: 12px; padding: 20px 22px; margin: 26px 0;
}
.callout p { color: var(--text); }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0; margin-top: 20px; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer .brand { font-size: 16px; }
footer .brand img { width: 24px; height: 24px; }
.foot-links { display: flex; gap: 20px; }
.foot-links a { color: var(--muted); font-size: 14px; font-weight: 600; }
.foot-links a:hover { color: var(--text); text-decoration: none; }
.copy { color: #6a6a72; font-size: 13px; width: 100%; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  /* every two-column section stacks; the art goes on top */
  .hero .wrap, .beta .wrap, .meet .wrap, .spotlight .wrap { grid-template-columns: 1fr; gap: 28px; }
  .killian-stage, .meet-art, .spotlight-art { order: -1; }
  .hero h1 { font-size: 42px; }
  .features, .shots-grid { grid-template-columns: 1fr 1fr; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  section { padding: 46px 0; }
  .hero { padding: 36px 0 30px; }
  .hero h1 { font-size: 32px; }
  .hero .lead { font-size: 17px; }
  /* stack the hero buttons full-width so they never overflow */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-note { font-size: 13px; }
  .tagline-band p { font-size: 19px; }
  .features, .shots-grid { grid-template-columns: 1fr; }
  .section-head h2, .meet h2, .spotlight h2 { font-size: 26px; }
  .section-head p, .spotlight .intro, .meet p { font-size: 16px; }
  /* images never dominate the small screen */
  .killian-stage img, .meet-art img, .spotlight-art img, .beta-art img { max-width: 200px; }
  /* comparison table: stack each row as a card on mobile — no horizontal
     scroll, no cut-off, every row fully visible on a 320px+ screen. */
  .table-wrap { overflow-x: visible; }
  .compare-table, .compare-table tbody, .compare-table tr, .compare-table td { display: block; width: 100%; }
  .compare-table { min-width: 0; border-radius: 16px; }
  .compare-table thead { display: none; }
  .compare-table tr { padding: 14px 16px; border-bottom: 1px solid var(--line); }
  .compare-table tr:last-child { border-bottom: none; }
  .compare-table td { padding: 5px 0; border: none; font-size: 15px; }
  .compare-table td.dim { font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); font-weight: 800; margin-bottom: 4px; width: auto; }
  .compare-table td.col-ck { color: var(--amber); font-weight: 700; background: transparent; }
  .compare-table td.col-ck::before { content: "Cue Killer · "; color: var(--muted); font-weight: 500; }
  .compare-table td.col-old::before { content: "Traditional rig · "; color: var(--muted); font-weight: 500; }
  footer .wrap { flex-direction: column; align-items: flex-start; gap: 14px; }
}
