/* iCatch-it marketing homepage — draft */
:root {
  --bg: #000;
  --gold: #C9A96A;
  --gold-ghost: rgba(201, 169, 106, 0.16);
  --text: #EDEDED;
  --muted: #9CA3AF;
  --card: #0D0D0D;
  --line: rgba(201, 169, 106, 0.35);
  --radius: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.logo {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 15px;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}
nav a:hover { color: var(--gold); text-decoration: none; }

.hero {
  padding: 72px 22px 56px;
  background:
    radial-gradient(70vw 50vw at 110% -10%, var(--gold-ghost), transparent 60%),
    radial-gradient(50vw 40vw at -10% 110%, var(--gold-ghost), transparent 55%),
    var(--bg);
}
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero h1 {
  color: var(--gold);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.hero .sub {
  color: var(--muted);
  font-size: clamp(16px, 2.4vw, 20px);
  max-width: 34em;
  margin: 0 0 28px;
}
.ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-block;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  text-align: center;
}
.btn:hover { text-decoration: none; }
.btn-gold { background: var(--gold); color: #000; }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

section { padding: 56px 22px; }
.section-inner { max-width: 1040px; margin: 0 auto; }
h2 {
  color: var(--gold);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin: 0 0 8px;
}
.lead { color: var(--muted); margin: 0 0 28px; max-width: 40em; }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.card h3 {
  color: var(--gold);
  font-size: 18px;
  margin: 0 0 8px;
}
.card p { color: var(--text); margin: 0; font-size: 15px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.step::before {
  counter-increment: step;
  content: "Step " counter(step);
  display: block;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin-bottom: 10px;
}
.step h3 { color: var(--gold); font-size: 18px; margin: 0 0 8px; }
.step p { color: var(--text); margin: 0; font-size: 15px; }

.get {
  padding-bottom: 80px;
}
.get-box {
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 32px 24px;
  background:
    radial-gradient(40vw 20vw at 100% 0%, var(--gold-ghost), transparent 60%),
    var(--card);
}
.get-box p { color: var(--muted); margin: 0 0 18px; max-width: 36em; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}
.site-footer nav { gap: 16px; }
.site-footer nav a { color: var(--gold); font-weight: 600; }

@media (max-width: 860px) {
  .grid, .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-header { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 48px; }
  .grid, .steps { grid-template-columns: 1fr; }
  .ctas { flex-direction: column; }
  .btn { width: 100%; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { display: block; width: 36px; height: 36px; object-fit: contain; }
.fine { color: var(--muted); font-size: 13px; margin: 16px 0 0; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.phones { display: flex; justify-content: center; min-height: 0; }
.phone {
  width: 260px;
  max-width: 100%;
  aspect-ratio: 260 / 534;
  height: auto;
  margin: 0 auto 14px;
  padding: 0;
  background: #000;
  border: 8px solid #111;
  border-radius: 36px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(201,169,106,.35);
  overflow: hidden;
  position: relative;
}
.phone img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero .phone { margin: 0; }
.step .phone { margin: 0 auto 14px; }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .phones { min-height: 0; display: flex; justify-content: center; }
}

.waitlist { max-width: 420px; }
.waitlist label {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  margin: 12px 0 6px;
}
.waitlist .opt { color: var(--muted); font-weight: 600; }
.waitlist input {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #111;
  color: var(--text);
  padding: 12px 14px;
  font-size: 16px;
}
.waitlist input:focus { outline: 2px solid var(--gold); }
.waitlist .btn { width: 100%; margin-top: 18px; border: 0; cursor: pointer; }
.waitlist .btn:disabled { opacity: .55; cursor: default; }
.form-err, .form-ok { display: none; margin: 10px 0 0; font-size: 14px; }
.form-err.show { display: block; color: #FF7C7C; }
.form-ok.show { display: block; color: #7FD48A; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { color: var(--gold); font-weight: 800; letter-spacing: .04em; }
.logo-tag { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .02em; opacity: .9; }
.lockup { display: block; width: min(280px, 70%); height: auto; margin: 0 0 18px -12px; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr 1fr; }
}


.device {
  width: 260px;
  max-width: 100%;
  height: 534px;
  margin: 0 auto 14px;
  background: #000;
  border: 8px solid #1a1a1a;
  border-radius: 32px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(201,169,106,.35);
  overflow: hidden;
  color: #EDEDED;
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.device-status {
  display: flex; justify-content: space-between; padding: 7px 14px 0;
  color: #9CA3AF; font-size: 9px; font-weight: 700;
}
.app-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 12px 8px; border-bottom: 1px solid #C9A96A;
}
.app-head img { width: 22px; height: 22px; object-fit: contain; }
.app-who {
  display: flex; align-items: center; gap: 6px;
  color: #C9A96A; font-weight: 600; font-size: 11px;
}
.app-ava {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid #C9A96A; background: #111; display: block;
}
.legend {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px;
  padding: 8px 10px 7px; border-bottom: 1px solid #7D6537;
  text-align: center; color: #C9A96A; font-size: 8px; font-weight: 700;
}
.legend i {
  display: block; height: 4px; border-radius: 2px;
  background: #C9A96A; margin-bottom: 4px;
}
.device-body { padding: 8px 8px 44px; flex: 1; min-height: 0; overflow: hidden; }
.device-body.pad-top { padding-top: 10px; }
.jobcard {
  background: #0E0E0E;
  border: 1px solid #3A2F1C;
  border-radius: 12px;
  padding: 8px 9px 9px;
  margin-bottom: 7px;
}
.jobtop { display: flex; justify-content: space-between; gap: 6px; align-items: flex-start; }
.jobcard strong { display: block; color: #fff; font-size: 11px; font-weight: 700; line-height: 1.25; }
.jobcard em { display: block; color: #9CA3AF; font-size: 9px; font-style: normal; margin-top: 2px; }
.who { color: #C9A96A; font-size: 9px; line-height: 1.45; font-weight: 600; }
.pill {
  flex: 0 0 auto;
  border: 1px solid #C9A96A; color: #C9A96A;
  border-radius: 999px; padding: 2px 6px;
  font-size: 8px; font-weight: 700; white-space: nowrap;
}
.pbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-top: 7px; }
.pbar i { display: block; height: 4px; border-radius: 2px; background: #3A2F1C; }
.pbar i.on { background: #C9A96A; }
.fab {
  position: absolute; right: 12px; bottom: 46px;
  background: #C9A96A; color: #000; font-weight: 800;
  border-radius: 999px; padding: 6px 10px; font-size: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,.4);
}
.tabs5 {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #C9A96A;
  padding: 7px 2px 9px; text-align: center;
  color: #C9A96A; font-size: 7px; font-weight: 700;
  background: #000;
}
.tabs5 .on { color: #E8D19A; }
.seg {
  display: flex; margin: 8px 10px 4px;
  border: 1px solid #C9A96A; border-radius: 10px; overflow: hidden;
}
.seg span {
  flex: 1; text-align: center; padding: 5px 0;
  color: #9CA3AF; font-size: 9px; font-weight: 700;
}
.seg .on {
  color: #C9A96A; border: 1.5px solid #C9A96A; border-radius: 8px; margin: 1px;
}
.dayrow {
  display: flex; justify-content: space-between; align-items: center;
  margin: 8px 2px 5px; color: #C9A96A; font-size: 10px; font-weight: 800;
}
.dayrow span { font-size: 9px; }
.slotcard {
  border: 1px solid #C9A96A; border-radius: 12px;
  padding: 7px 9px; margin-bottom: 6px;
  display: flex; justify-content: space-between; align-items: center;
}
.slotcard b { display: block; color: #C9A96A; font-size: 12px; font-weight: 800; }
.slotcard em { display: block; color: #9CA3AF; font-size: 9px; font-style: normal; margin-top: 2px; }
.slotcard span { color: #9CA3AF; font-size: 8px; font-weight: 700; }
.slotcard.filled { border-color: #4B5563; background: #141414; opacity: .85; }
.slotcard.filled b { color: #9CA3AF; }
.slotcard.filled i { display: block; color: #4B5563; font-size: 8px; font-style: normal; font-weight: 700; margin-top: 1px; }
.hours { text-align: center; color: #C9A96A; font-size: 9px; font-weight: 600; margin-top: 8px; }

.device.lite { background: #F6F3EC; color: #222; }
.rl-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 10px 8px; color: #111; font-weight: 800; font-size: 11px;
}
.rl-brand { display: flex; align-items: center; gap: 5px; }
.rl-brand img { width: 16px; height: 16px; }
.rl-acts { color: #8a6d2e; font-size: 8px; font-weight: 700; }
.rl-hero {
  background: linear-gradient(180deg, #4a4030, #1b1812);
  color: #fff; padding: 36px 12px 14px;
}
.rl-hero b { display: block; font-size: 14px; }
.rl-hero span { font-size: 10px; opacity: .9; }
.rl-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 8px;
}
.rl-stats div {
  background: #fff; border-radius: 8px; padding: 7px 2px; text-align: center;
}
.rl-stats b { display: block; font-size: 13px; color: #111; }
.rl-stats span { display: block; color: #C9A96A; font-size: 7px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.rl-stats .focus { box-shadow: inset 3px 0 0 #C9A96A; }
.rl-item {
  margin: 0 8px 6px; background: #fff; border-radius: 8px; padding: 8px;
  display: flex; justify-content: space-between; gap: 6px; align-items: flex-start;
}
.rl-item b { display: block; font-size: 10px; color: #111; }
.rl-item em { display: block; font-size: 8px; color: #555; font-style: normal; margin-top: 2px; line-height: 1.3; }
.rpill {
  flex: 0 0 auto;
  border: 1px solid #C9A96A; color: #8a6d2e;
  border-radius: 999px; padding: 1px 6px; font-size: 7px; font-weight: 800;
}

.device-body.findings { padding: 8px 10px 10px; display: flex; flex-direction: column; }
.back { color: #C9A96A; font-weight: 800; font-size: 10px; margin-bottom: 4px; }
.ftitle { color: #C9A96A; font-size: 16px; font-weight: 800; line-height: 1.15; }
.faddr { color: #C9A96A; font-size: 9px; margin: 4px 0 8px; }
.frow {
  border: 1px solid #C9A96A; border-radius: 12px;
  padding: 8px 8px; margin-bottom: 6px;
  display: flex; align-items: center; gap: 7px;
}
.frow i { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; display: block; }
.frow b { display: block; color: #C9A96A; font-size: 10px; }
.frow em { display: block; color: #9CA3AF; font-size: 8px; font-style: normal; margin-top: 2px; }
.frow span { color: #C9A96A; font-size: 8px; font-weight: 700; }
.frow .chev { font-size: 14px; font-weight: 300; }
.dot-red { background: #EF4444; }
.dot-org { background: #F59E0B; }
.dot-grn { background: #22C55E; }
.addf {
  margin-top: auto;
  background: #C9A96A; color: #000; font-weight: 800;
  border-radius: 999px; text-align: center; padding: 8px 0; font-size: 11px;
}

.device.lite { background: #F7F4EE; color: #2C2A26; }
.pv-top {
  display: flex; align-items: center; justify-content: space-between;
  background: #000; color: #C9A96A; padding: 8px 10px;
  font-size: 10px; font-weight: 800;
}
.pv-top b { flex: 1; text-align: center; }
.pv-top i { width: 36px; }
.pv-top span { width: 48px; }
.pv-body { flex: 1; min-height: 0; overflow: hidden; padding: 8px 10px 6px; }
.pv-co { color: #C9A96A; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.pv-h { color: #2C2A26; font-size: 15px; font-weight: 800; margin: 2px 0 6px; }
.pv-cover {
  height: 78px; border-radius: 8px; margin-bottom: 7px;
  background-size: cover; background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 8px; color: #fff;
  box-shadow: inset 0 -40px 30px rgba(0,0,0,.45);
}
.pv-cover b { font-size: 11px; }
.pv-cover span { font-size: 8px; opacity: .9; }
.pv-counts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-bottom: 7px; }
.pv-counts div {
  background: #EFE8DC; border-radius: 8px; padding: 6px 2px; text-align: center;
}
.pv-counts b { display: block; font-size: 14px; font-weight: 800; }
.pv-counts span { color: #6B655C; font-size: 7px; font-weight: 700; }
.c-red { color: #C23B3B; }
.c-org { color: #C47A1A; }
.c-grn { color: #2E7D4F; }
.pv-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  border-bottom: 1px solid #E2D8C8; padding-bottom: 6px; margin-bottom: 6px;
}
.pv-meta i { display: block; color: #C9A96A; font-size: 6px; font-weight: 800; letter-spacing: .04em; font-style: normal; margin-bottom: 2px; }
.pv-meta strong { display: block; font-size: 9px; }
.pv-meta em { display: block; font-size: 8px; font-style: normal; }
.pv-find { border-bottom: 1px solid #E2D8C8; padding: 5px 0; }
.pv-find b { display: block; font-size: 10px; }
.pv-find em { display: block; color: #6B655C; font-size: 8px; font-style: normal; }
.sev {
  display: inline-block; color: #fff; border-radius: 999px;
  padding: 1px 6px; font-size: 7px; font-weight: 800; margin-bottom: 2px;
}
.sev-s { background: #C23B3B; }
.sev-r { background: #C47A1A; }
.sev-m { background: #2E7D4F; }
.pv-bot {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  padding: 8px 10px 10px; background: #F7F4EE;
}
.pv-bot span {
  border: 1px solid #C9A96A; color: #C9A96A; border-radius: 999px;
  text-align: center; padding: 6px 0; font-size: 9px; font-weight: 800;
}
.pv-bot .on { background: #C9A96A; color: #000; border-color: #C9A96A; }
