/* Dangle Down — stealth mode */
:root {
  --bg: #0b0e13;
  --fg: #e8edf4;
  --muted: #a8b4c3;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --accent: #d7e3ff;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(215,227,255,0.10), transparent 60%),
    radial-gradient(900px 500px at 90% 40%, rgba(255,255,255,0.06), transparent 60%),
    var(--bg);
  color: var(--fg);
  line-height: 1.45;
}

a { color: var(--accent); text-underline-offset: 3px; }
a:hover { opacity: 0.9; }

.wrap { max-width: 980px; margin: 0 auto; padding: 48px 20px; }
.hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}

.logo {
  width: 220px;
  height: 220px;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 18px;
  display: grid;
  place-items: center;
  position: sticky;
  top: 28px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.55));
}

.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  margin: 0 0 14px 0;
}

h1 {
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.03em;
  margin: 0 0 10px 0;
}

.tagline {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 18px 0;
  max-width: 62ch;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  max-width: 72ch;
}

.small { font-size: 14px; color: var(--muted); }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

.bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  display: grid;
  gap: 10px;
  max-width: 72ch;
}
.bullets li {
  padding-left: 16px;
  position: relative;
  color: var(--fg);
}
.bullets li:before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.85;
}

.foot {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.dot { color: rgba(255,255,255,0.25); }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; }
  .logo { position: relative; top: 0; width: 160px; height: 160px; }
}
