/* ============================================================
   personalVDI — "Infrastructure Console" design system
   Dark ink canvas · engineering dot-grid · emerald live-accent
   Bricolage Grotesque (display) · Geist (body) · Geist Mono (technical)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700&family=Geist:wght@400;500;600&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --ink:        #07080b;
  --ink-2:      #0b0d12;
  --surface:    #101319;
  --surface-2:  #151922;
  --raised:     #1a1f2a;
  --border:     #232936;
  --border-soft:#1a1f29;
  --hair:       rgba(255,255,255,.06);

  --text:       #eef1f5;
  --text-2:     #aab2c0;
  --text-3:     #6b7385;

  --accent:     #2fe0a8;   /* emerald-teal — secure / live */
  --accent-2:   #19c594;
  --accent-ink: #04130d;   /* text on accent fills */
  --accent-dim: rgba(47,224,168,.10);
  --accent-line:rgba(47,224,168,.30);
  --accent-glow:rgba(47,224,168,.28);

  --live:   #34d399;
  --warn:   #f5b14b;
  --danger: #f06a6a;
  --danger-dim: rgba(240,106,106,.12);

  --font-display: 'Bricolage Grotesque', ui-sans-serif, sans-serif;
  --font-sans: 'Geist', ui-sans-serif, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 18px 48px -18px rgba(0,0,0,.7);
  --shadow-lift: 0 28px 60px -20px rgba(0,0,0,.8);
}

* { box-sizing: border-box; }

html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
  /* engineering dot-grid + layered ambient glow */
  background-image:
    radial-gradient(1100px 620px at 78% -10%, rgba(47,224,168,.10), transparent 60%),
    radial-gradient(900px 600px at 10% 110%, rgba(40,120,255,.06), transparent 55%),
    radial-gradient(circle at center, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: auto, auto, 26px 26px;
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
.muted { color: var(--text-3); }
.error {
  color: var(--danger);
  background: var(--danger-dim);
  border: 1px solid rgba(240,106,106,.25);
  padding: 9px 14px; border-radius: var(--radius-sm); font-size: 13px;
}
code {
  font-family: var(--font-mono); font-size: .85em;
  background: #0a0c10; border: 1px solid var(--border-soft);
  padding: 1px 6px; border-radius: 5px; color: var(--text-2);
}

/* ---------- brand lockup ---------- */
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); }
.brand .mark {
  width: 26px; height: 26px; border-radius: 8px; flex: none;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  position: relative; box-shadow: 0 0 0 1px rgba(47,224,168,.4), 0 6px 18px -6px var(--accent-glow);
}
.brand .mark::before {
  content: ''; position: absolute; inset: 6px 6px 9px;
  border: 2px solid var(--accent-ink); border-radius: 2px; opacity: .85;
}
.brand .mark::after {
  content: ''; position: absolute; left: 50%; bottom: 5px; transform: translateX(-50%);
  width: 9px; height: 2px; background: var(--accent-ink); border-radius: 2px; opacity: .85;
}
.brand .word { font-weight: 700; font-size: 17px; letter-spacing: -.02em; color: var(--text); }
.brand .word b { color: var(--accent); font-weight: 700; }

/* ---------- top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 30px;
  background: rgba(9,11,15,.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}
.topbar nav { display: flex; gap: 18px; align-items: center; }
.topbar nav a { color: var(--text-2); font-size: 13.5px; font-weight: 500; transition: color .15s; }
.topbar nav a:hover { color: var(--text); }
.whoami {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-2);
  padding: 4px 10px 4px 4px; border: 1px solid var(--border); border-radius: 99px; background: var(--surface);
}
.whoami .av {
  width: 22px; height: 22px; border-radius: 50%; flex: none; font-size: 11px; font-weight: 600;
  display: grid; place-items: center; color: var(--accent-ink);
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
}

/* ---------- layout ---------- */
main { max-width: 1080px; margin: 0 auto; padding: 40px 30px 80px; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; }
.page-head h1 {
  font-family: var(--font-display); font-weight: 600; font-size: 26px;
  letter-spacing: -.02em; margin: 0;
}
.page-head .sub { color: var(--text-3); font-size: 13.5px; margin-top: 3px; }
.kbd-count { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); }

.section-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-3); margin: 0 0 14px;
}

/* ---------- buttons ---------- */
button, .btn {
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 600;
  border: 0; border-radius: var(--radius-sm); padding: 9px 16px; cursor: pointer;
  color: var(--accent-ink); background: linear-gradient(180deg, var(--accent), var(--accent-2));
  transition: transform .12s, box-shadow .15s, filter .15s; letter-spacing: -.01em;
}
button:hover, .btn:hover { filter: brightness(1.06); box-shadow: 0 8px 22px -8px var(--accent-glow); }
button:active { transform: translateY(1px); }
button.ghost {
  background: var(--surface); color: var(--text-2); border: 1px solid var(--border);
}
button.ghost:hover { color: var(--text); border-color: #2e3645; box-shadow: none; filter: none; background: var(--surface-2); }
button.ghost.danger:hover { color: var(--danger); border-color: rgba(240,106,106,.45); }
button.chip {
  background: var(--surface); color: var(--text-3); border: 1px dashed var(--border);
  border-radius: 99px; padding: 4px 13px; font-size: 12px; font-weight: 500; margin: 3px 4px 0 0;
}
button.chip:hover { color: var(--text-2); border-color: #2e3645; filter: none; box-shadow: none; }
button.chip.on {
  background: var(--accent-dim); color: var(--accent); border: 1px solid var(--accent-line); font-weight: 600;
}

/* ---------- inputs ---------- */
input, select {
  font-family: var(--font-sans); font-size: 13.5px; color: var(--text);
  background: #0a0c11; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 13px; transition: border-color .15s, box-shadow .15s;
}
input::placeholder { color: var(--text-3); }
input:focus, select:focus {
  outline: none; border-color: var(--accent-line); box-shadow: 0 0 0 3px var(--accent-dim);
}
label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: var(--text-3); font-weight: 500; }

/* ---------- cards ---------- */
.card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); position: relative;
}
.card::before {  /* top inner highlight hairline */
  content: ''; position: absolute; inset: 0 0 auto; height: 1px; border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, transparent, var(--hair), transparent);
}
.card + .card { margin-top: 22px; }
.card h2 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 0 0 4px; letter-spacing: -.01em; }
.card h3 { font-size: 13px; font-weight: 600; color: var(--text-2); margin: 22px 0 12px; }

/* ---------- app launch grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); gap: 18px; }
.app-card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  padding: 20px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  transition: transform .16s cubic-bezier(.2,.7,.3,1), border-color .16s, box-shadow .16s;
}
.app-card::after {  /* hover glow wash */
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .2s;
  background: radial-gradient(420px 140px at 50% -20%, var(--accent-dim), transparent 70%);
  pointer-events: none;
}
.app-card:hover {
  transform: translateY(-3px); border-color: var(--accent-line);
  box-shadow: var(--shadow-lift), 0 0 0 1px var(--accent-line);
}
.app-card:hover::after { opacity: 1; }
.app-icon {
  width: 54px; height: 54px; margin-bottom: 16px; display: grid; place-items: center;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45));
}
.app-icon img { width: 54px; height: 54px; object-fit: contain; }
.app-icon { position: relative; }
.app-icon img.os-badge {
  position: absolute; right: -7px; bottom: -7px; width: 22px; height: 22px;
  padding: 3.5px; box-sizing: border-box; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 5px rgba(0,0,0,.55);
}
/* The Apple mark is the light (#f5f5f7) variant — give it a dark chip. */
.app-icon img.os-badge.apple { background: #1d1d1f; }
.app-icon .glyph {
  width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center; font-size: 26px;
  background: linear-gradient(160deg, var(--raised), #0f1218); border: 1px solid var(--border);
}
.app-name { font-weight: 600; font-size: 15px; letter-spacing: -.01em; }
.app-meta {
  display: flex; align-items: center; gap: 8px; margin-top: 7px;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-3);
}
.app-meta .tag {
  text-transform: uppercase; letter-spacing: .06em;
  border: 1px solid var(--border); border-radius: 5px; padding: 1px 6px; color: var(--text-2);
}
.app-launch {
  position: absolute; top: 18px; right: 18px; font-family: var(--font-mono); font-size: 12px;
  color: var(--accent); opacity: 0; transform: translateX(-4px); transition: all .18s;
}
.app-card:hover .app-launch { opacity: 1; transform: translateX(0); }

.empty {
  border: 1px dashed var(--border); border-radius: var(--radius); padding: 44px;
  text-align: center; color: var(--text-3); background: rgba(255,255,255,.012);
}

/* ---------- tables ---------- */
table { width: 100%; border-collapse: collapse; margin: 6px 0 4px; }
th {
  text-align: left; font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-3);
  padding: 8px 12px; border-bottom: 1px solid var(--border);
}
td { padding: 11px 12px; border-bottom: 1px solid var(--border-soft); font-size: 13.5px; vertical-align: middle; }
tr:last-child td { border-bottom: 0; }
.icon-cell { width: 30px; }
.mini-icon { width: 22px; height: 22px; object-fit: contain; vertical-align: middle; display: block; }
.actions-cell { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.pill {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono);
  font-size: 11px; padding: 3px 9px; border-radius: 99px; border: 1px solid var(--border); color: var(--text-2);
}
.pill.app { color: var(--accent); border-color: var(--accent-line); background: var(--accent-dim); }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- forms (admin rows) ---------- */
.row-form { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.row-form input, .row-form select { flex: 1 1 150px; min-width: 120px; }
.group { display: contents; }
form.inline, label.inline { display: inline-flex; align-items: center; gap: 7px; }
.hint { color: var(--text-3); font-size: 12.5px; margin-top: 12px; line-height: 1.7; }

/* ============================================================
   LOGIN — atmospheric centered console
   ============================================================ */
.auth-wrap {
  min-height: 100vh; display: grid; place-items: center; padding: 24px; position: relative; overflow: hidden;
}
.auth-wrap::before {  /* sweeping aurora */
  content: ''; position: absolute; width: 900px; height: 900px; top: -300px; right: -200px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  filter: blur(40px); opacity: .5; animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translate(-80px, 60px) scale(1.1); } }

.auth-card {
  position: relative; width: 380px; max-width: 100%;
  background: linear-gradient(180deg, rgba(21,25,34,.92), rgba(14,17,23,.92));
  border: 1px solid var(--border); border-radius: 18px;
  padding: 36px 34px; box-shadow: var(--shadow-lift); backdrop-filter: blur(10px);
  animation: rise .5s cubic-bezier(.2,.7,.3,1) both;
}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } }
.auth-card .brand { margin-bottom: 22px; }
.auth-card .brand .word { font-size: 19px; }
.auth-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -.02em; margin: 0; }
.auth-sub { color: var(--text-3); font-size: 13.5px; margin: 4px 0 24px; }
.auth-card form { display: flex; flex-direction: column; gap: 15px; }
.auth-card label { gap: 7px; }
.auth-card input { padding: 11px 14px; }
.auth-card button[type=submit] { margin-top: 6px; padding: 11px; font-size: 14px; }
.auth-foot {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 8px; color: var(--text-3); font-size: 12px;
}
.auth-foot .lock { color: var(--accent); display: inline-flex; }
.auth-foot .lock .svg-ic { width: 14px; height: 14px; }
.auth-card .error { margin-bottom: 2px; }

/* stagger the form fields on load */
.auth-card form > * { animation: rise .5s cubic-bezier(.2,.7,.3,1) both; }
.auth-card form > *:nth-child(1) { animation-delay: .06s; }
.auth-card form > *:nth-child(2) { animation-delay: .12s; }
.auth-card form > *:nth-child(3) { animation-delay: .18s; }
.auth-card form > *:nth-child(4) { animation-delay: .24s; }

/* ============================================================
   LANDING PAGE (Product Hunt)
   ============================================================ */
.lp { background-attachment: fixed; }

/* inline SVG icons */
.svg-ic { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; }
.strip .svg-ic { width: 16px; height: 16px; color: var(--accent); vertical-align: -3px; margin-right: 2px; }
.ic {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 11px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-2);
}
.ic .svg-ic { width: 22px; height: 22px; }
.ic.accent { background: var(--accent-dim); border-color: var(--accent-line); color: var(--accent); }
.grad {
  background: linear-gradient(110deg, var(--accent), #6ee7ff 60%, var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.btn-sm {
  background: var(--accent); color: var(--accent-ink); padding: 8px 16px; border-radius: 8px;
  font-weight: 600; font-size: 13.5px;
}
.btn-sm:hover { filter: brightness(1.07); }

.lp-nav {
  position: sticky; top: 0; z-index: 50; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 40px; background: rgba(7,8,11,.7); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.lp-nav nav { display: flex; gap: 26px; align-items: center; }
.lp-nav nav a { color: var(--text-2); font-size: 14px; font-weight: 500; transition: color .15s; }
.lp-nav nav a:hover { color: var(--text); }
@media (max-width: 720px) { .lp-nav nav a:not(.btn-sm) { display: none; } }

/* hero */
.hero {
  max-width: 1180px; margin: 0 auto; padding: 70px 40px 40px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
  position: relative; overflow: hidden;
}
/* Grok-generated ambient hero motion, kept subtle behind the copy + demo. */
.hero-bg {
  position: absolute; inset: -2% -2% auto -2%; width: 104%; height: 104%;
  object-fit: cover; opacity: .26; filter: blur(1px) saturate(1.12);
  z-index: 0; pointer-events: none;
}
.hero-bg-veil {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 460px at 32% 42%, transparent, var(--ink) 76%),
    linear-gradient(180deg, rgba(7,8,11,.35), var(--ink));
}
.hero-copy, .hero .demo { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .hero-bg { display: none; } }
.step-ic { width: 40px; height: 40px; margin-bottom: 10px; display: block; filter: drop-shadow(0 4px 14px rgba(47,224,168,.14)); }
/* Download-for-Mac CTA on the hero */
.dl-row { margin-top: 8px; }
.btn-dl {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 14px 26px; border-radius: 14px; text-decoration: none;
  background: linear-gradient(180deg, #f4f6fb, #d7dde8); color: #0a0d12;
  font-weight: 700; font-size: 17px; box-shadow: 0 8px 30px rgba(0,0,0,.35);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-dl:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(0,0,0,.45); }
.btn-dl svg { flex: none; }
.btn-dl .btn-dl-sub { width: 100%; font-size: 12px; font-weight: 500; color: #4a5160; letter-spacing: 0; }
@media (max-width: 940px) { .hero { grid-template-columns: 1fr; padding-top: 44px; gap: 38px; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  font-size: 12px; color: var(--accent); border: 1px solid var(--accent-line);
  background: var(--accent-dim); padding: 5px 13px; border-radius: 99px; letter-spacing: .02em;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 10px var(--live); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.hero h1 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04; letter-spacing: -.03em; margin: 20px 0 0;
}
.lead { color: var(--text-2); font-size: 17px; line-height: 1.6; margin: 20px 0 26px; max-width: 540px; }

.waitlist { display: flex; gap: 10px; max-width: 480px; }
.waitlist .hp { position: absolute; left: -9999px; width: 1px; height: 1px; }
.waitlist input[type=email] { flex: 1; padding: 13px 16px; font-size: 15px; }
.waitlist button { padding: 13px 22px; font-size: 15px; white-space: nowrap; }
.waitlist.big { margin: 0 auto; }
.wl-note { color: var(--text-3); font-size: 13px; margin-top: 14px; }
.wl-note strong { color: var(--text-2); }
.wl-ok {
  font-family: var(--font-mono); color: var(--accent); font-size: 15px; padding: 13px 0;
  animation: rise .4s both;
}

/* browser mockup demo */
.demo { animation: rise .6s .1s both; }
.browser {
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  background: #06070a; box-shadow: var(--shadow-lift), 0 0 0 1px rgba(47,224,168,.08);
}
.bc-bar {
  display: flex; align-items: center; gap: 7px; padding: 11px 14px;
  background: linear-gradient(180deg, #14171e, #0e1116); border-bottom: 1px solid var(--border);
}
.bc-dot { width: 11px; height: 11px; border-radius: 50%; }
.bc-dot.r { background: #ff5f57; } .bc-dot.y { background: #febc2e; } .bc-dot.g { background: #28c840; }
.bc-url {
  margin-left: 12px; font-family: var(--font-mono); font-size: 12px; color: var(--text-3);
  background: #0a0c11; border: 1px solid var(--border-soft); border-radius: 6px; padding: 3px 12px;
}
.bc-screen { position: relative; aspect-ratio: 16/10.5; overflow: hidden; background: radial-gradient(120% 100% at 70% 0%, #14161d, #0a0b0e); }
.shot { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }

/* animated frame player */
.player { position: absolute; inset: 0; }
.player .frame {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top left;
  opacity: 0; transition: opacity .08s linear;
}
.player .frame.on { opacity: 1; }
.dcursor {
  position: absolute; left: 52%; top: 54%; z-index: 5; width: 18px; height: 18px;
  transition: left .12s linear, top .12s linear; pointer-events: none;
  background: #fff;
  clip-path: polygon(0 0, 0 75%, 22% 55%, 40% 92%, 56% 84%, 38% 48%, 70% 48%);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.7));
}
.dcursor.drag::after {
  content: ''; position: absolute; left: -7px; top: -7px; width: 30px; height: 30px;
  border-radius: 50%; border: 2px solid var(--accent); opacity: .5;
}
.live-badge {
  position: absolute; top: 14px; right: 14px; z-index: 3; display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; color: var(--live);
  background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.4); padding: 3px 10px; border-radius: 99px;
}
.lb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--live); animation: pulse 1.4s infinite; }
.mock-app { position: absolute; inset: 0; display: grid; grid-template-columns: 30% 1fr; }
.mock-side { background: #0d0f14; border-right: 1px solid var(--border-soft); padding: 18px 14px; display: flex; flex-direction: column; gap: 11px; }
.ms-row { height: 11px; border-radius: 4px; background: #1b2027; }
.ms-row.on { background: var(--accent-dim); border: 1px solid var(--accent-line); }
.ms-row.sm { height: 8px; width: 80%; opacity: .6; }
.mock-main { padding: 40px 34px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; }
.mm-title { font-family: var(--font-display); font-size: clamp(15px, 2.4vw, 26px); color: var(--text); font-weight: 600; }
.mm-input {
  width: 86%; height: 46px; border-radius: 12px; background: #12151c; border: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 16px;
}
.caret { width: 2px; height: 18px; background: var(--accent); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.mm-cards { display: flex; gap: 12px; width: 86%; }
.mm-cards span { flex: 1; height: 54px; border-radius: 10px; background: #10131a; border: 1px solid var(--border-soft); }
.cursor {
  position: absolute; width: 16px; height: 16px; left: 62%; top: 58%; z-index: 4;
  background: #fff; clip-path: polygon(0 0, 0 75%, 22% 55%, 40% 92%, 56% 84%, 38% 48%, 70% 48%);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.6)); animation: nudge 3.2s ease-in-out infinite;
}
@keyframes nudge { 0%,100% { transform: translate(0,0);} 40% { transform: translate(-90px,-40px);} 60% { transform: translate(-90px,-40px);} }
.demo-cap { text-align: center; color: var(--text-3); font-size: 13px; margin-top: 16px; font-family: var(--font-mono); }

/* trust strip */
.strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px;
  padding: 22px 40px; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
  margin-top: 30px; color: var(--text-3); font-size: 13.5px;
}

/* content bands */
.band { max-width: 1000px; margin: 0 auto; padding: 78px 40px; }
.kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
.band h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 3.6vw, 38px); letter-spacing: -.02em; margin: 0 0 18px; }
.band-lead { color: var(--text-2); font-size: 17px; line-height: 1.65; max-width: 660px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 14px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { border: 1px solid var(--border); border-radius: 14px; padding: 26px; background: linear-gradient(180deg, var(--surface), var(--surface-2)); }
.step .num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }
.step h3 { font-size: 17px; margin: 12px 0 8px; font-weight: 600; }
.step p { color: var(--text-3); font-size: 14px; margin: 0; line-height: 1.6; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 14px; }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }
.uc {
  border: 1px solid var(--border); border-radius: 16px; padding: 28px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--surface-2)); transition: border-color .16s, transform .16s;
}
.uc:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.uc-ic { font-size: 30px; margin-bottom: 14px; }
.uc h3 { font-size: 18px; margin: 0 0 10px; font-weight: 600; }
.uc p { color: var(--text-3); font-size: 14.5px; line-height: 1.6; margin: 0; }
.soon { display: inline-block; margin-top: 14px; font-family: var(--font-mono); font-size: 11px; color: var(--warn); border: 1px solid rgba(245,177,75,.35); background: rgba(245,177,75,.1); padding: 3px 9px; border-radius: 99px; }

/* product showcase */
.shots-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 22px; margin-top: 14px; }
@media (max-width: 820px) { .shots-grid { grid-template-columns: 1fr; } }
.shots-grid figure { margin: 0; }
.shots-grid img {
  width: 100%; border-radius: 14px; border: 1px solid var(--border);
  box-shadow: var(--shadow); display: block; background: #06070a;
}
.shots-grid figcaption { color: var(--text-3); font-size: 13px; margin-top: 12px; }

.sec { border-top: 1px solid var(--border-soft); }
.sec-grid .ic { margin-bottom: 4px; }
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
@media (max-width: 820px) { .sec-grid { grid-template-columns: repeat(2, 1fr); } }
.sec-grid > div { border: 1px solid var(--border); border-radius: 13px; padding: 20px; background: var(--surface); }
.sec-grid span { font-size: 22px; }
.sec-grid b { display: block; margin: 10px 0 6px; font-size: 14.5px; }
.sec-grid p { color: var(--text-3); font-size: 13px; margin: 0; line-height: 1.55; }

.final { max-width: 760px; margin: 0 auto; padding: 90px 40px 80px; text-align: center; }
.final h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4.5vw, 46px); letter-spacing: -.03em; margin: 0 0 28px; }
.final .waitlist { margin: 0 auto; }

.lp-foot {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  max-width: 1180px; margin: 0 auto; padding: 30px 40px; border-top: 1px solid var(--border-soft);
}

/* ---------- live VM metrics dashboard ---------- */
.vm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }
.vm-card { background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.vm-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.vm-top b { font-size: 15px; }
.vm-sub { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-3); margin-bottom: 16px; }
.metric { margin-bottom: 12px; }
.metric-l { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--text-2); margin-bottom: 5px; }
.metric-l span:last-child { font-family: var(--font-mono); color: var(--text); }
.meter { height: 7px; border-radius: 99px; background: #0a0c11; border: 1px solid var(--border-soft); overflow: hidden; }
.meter-fill { display: block; height: 100%; border-radius: 99px; transition: width .6s ease; }
.c-cpu { background: linear-gradient(90deg, var(--accent), #6ee7ff); }
.c-mem { background: linear-gradient(90deg, #f5b14b, #f0875a); }
.c-disk { background: linear-gradient(90deg, #8b7cf0, #6ee7ff); }
.vm-apps { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-soft); }
.vm-install { display: flex; gap: 8px; margin-top: 12px; }
.vm-install .app-search { flex: 1; font-size: 12.5px; padding: 8px 11px; }
.vm-install .install-btn { font-size: 12.5px; padding: 8px 14px; white-space: nowrap; }

/* ---------- security page ---------- */
.sec-hero { max-width: 900px; margin: 0 auto; padding: 64px 40px 20px; text-align: center; }
.sec-hero .eyebrow { margin-bottom: 22px; }
.sec-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 5vw, 52px); letter-spacing: -.03em; line-height: 1.05; margin: 0 0 18px; }
.sec-hero .lead { margin: 0 auto; }
.verify-badge {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 34px;
  border: 1px solid var(--accent-line); background: var(--accent-dim);
  border-radius: 16px; padding: 16px 22px; text-align: left;
}
.vb-num { font-family: var(--font-display); font-weight: 700; font-size: 34px; color: var(--accent); line-height: 1; }
.vb-txt { display: flex; flex-direction: column; }
.vb-txt b { font-size: 15px; } .vb-txt span { color: var(--text-3); font-size: 12.5px; }
.vb-stamp { font-family: var(--font-mono); font-size: 12px; padding: 5px 12px; border-radius: 99px; }
.vb-stamp.ok { color: var(--live); background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.4); }
.vb-stamp.warn { color: var(--warn); background: rgba(245,177,75,.1); border: 1px solid rgba(245,177,75,.4); }

.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 12px; }
@media (max-width: 720px) { .checks { grid-template-columns: 1fr; } }
.chk {
  display: flex; gap: 13px; align-items: flex-start; padding: 15px 18px;
  border: 1px solid var(--border); border-radius: 12px; background: var(--surface);
}
.chk-mark {
  flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
}
.chk.ok .chk-mark { color: var(--accent-ink); background: var(--accent); }
.chk.bad .chk-mark { color: #fff; background: var(--danger); }
.chk-name { font-size: 14px; font-weight: 500; }
.chk-detail { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-3); margin-top: 3px; }

.layers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 14px; }
@media (max-width: 760px) { .layers { grid-template-columns: 1fr; } }
.layer { border: 1px solid var(--border); border-radius: 16px; padding: 26px; background: linear-gradient(180deg, var(--surface), var(--surface-2)); }
.layer h3 { font-size: 17px; margin: 14px 0 12px; display: flex; align-items: center; gap: 10px; }
.layer ul { margin: 0; padding-left: 18px; color: var(--text-2); font-size: 14px; line-height: 1.7; }
.layer li { margin-bottom: 5px; }
.layer li b { color: var(--text); }

.std-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
@media (max-width: 720px) { .std-grid { grid-template-columns: 1fr; } }
.std-grid > div { border: 1px solid var(--border); border-radius: 13px; padding: 22px; background: var(--surface); }
.std-grid b { font-size: 15px; } .std-grid p { color: var(--text-3); font-size: 13.5px; margin: 8px 0 0; line-height: 1.6; }

/* ---------- responsive ---------- */
@media (max-width: 640px) {
  .topbar { padding: 12px 18px; flex-wrap: wrap; gap: 8px 12px; }
  .topbar nav { gap: 12px; flex-wrap: wrap; }
  main { padding: 28px 18px 60px; }
  .page-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 12px; }
  .app-card { padding: 16px; }
  .app-icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .app-icon img { width: 44px; height: 44px; }
  .app-icon .glyph { width: 44px; height: 44px; font-size: 22px; }
  .app-name { font-size: 14px; }
  .actions-cell { flex-direction: column; align-items: stretch; }
  .waitlist { flex-direction: column; }
  .hero, .band, .final, .sec-hero { padding-left: 22px; padding-right: 22px; }
  .verify-badge { flex-direction: column; align-items: flex-start; }
  table { display: block; overflow-x: auto; }
}

/* Touch devices have no hover: keep the Launch affordance always visible. */
@media (hover: none) {
  .app-launch { opacity: 1; transform: none; }
  .app-card:active { transform: scale(.98); border-color: var(--accent-line); }
}
