/* Minimal, modern landing page (no external assets required) */

:root {
  --bg: #0b1020;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --accent: #34d399;
  --accent2: #60a5fa;
  --danger: #fb7185;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  --radius: 18px;
}

* { 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";
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 15% 15%, rgba(96,165,250,0.25), transparent 55%),
    radial-gradient(900px 700px at 90% 35%, rgba(52,211,153,0.20), transparent 55%),
    radial-gradient(1000px 900px at 60% 100%, rgba(167,139,250,0.18), transparent 55%),
    var(--bg);
}

a { color: inherit; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 28px 20px 56px; }

.small { font-size: 13px; color: rgba(255,255,255,0.70); line-height: 1.6; }
.muted { color: var(--muted); }
.sep { height: 1px; background: rgba(255,255,255,0.10); margin: 14px 0; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(45deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(52,211,153,0.12);
}

.links { display: flex; gap: 10px; flex-wrap: wrap; }
.btn {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.10);
  transition: transform 120ms ease, background 120ms ease;
  font-weight: 600;
}
.btn:hover { transform: translateY(-1px); background: rgba(255,255,255,0.10); }
.btn.primary {
  border-color: rgba(52,211,153,0.55);
  background: rgba(52,211,153,0.12);
}
.btn.ghost {
  border-color: rgba(96,165,250,0.40);
  background: rgba(96,165,250,0.10);
}

.hero {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.heroText { padding: 22px 22px 18px; }
.heroText h1 {
  margin: 0 0 8px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.8px;
}
.heroText p { margin: 0 0 14px; color: var(--muted); font-size: 16px; line-height: 1.6; }

.lead {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
}
.ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.80);
}
.ul li { margin: 6px 0; }
.ul strong { color: rgba(255,255,255,0.95); }

.ctaRow { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.code {
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.18);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12.5px;
  line-height: 1.55;
  overflow-x: auto;
  white-space: pre;
}

.codeLabel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.12);
  font-weight: 800;
}
.codeLabel a { color: rgba(255,255,255,0.86); }

.pillRow { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06);
}
.pill strong { color: rgba(255,255,255,0.95); }

.preview {
  display: grid;
  grid-template-rows: auto 1fr;
}
.preview header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.12);
  color: rgba(255,255,255,0.86);
  font-weight: 700;
}
.preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0,0,0,0.12);
  display: block;
}

.preview .heroGif {
  width: 100%;
  height: auto;
  max-height: min(520px, 72vh);
  object-fit: contain;
  background: rgba(0,0,0,0.12);
}

.preview .heroGifNote {
  padding: 0 16px 14px;
  line-height: 1.55;
}

.preview .heroGifNote code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.20);
  color: rgba(255,255,255,0.86);
}

.grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tile { padding: 16px 16px 14px; }
.tile h3 { margin: 0 0 8px; font-size: 16px; letter-spacing: -0.2px; }
.tile p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }
.k {
  display: inline-block;
  margin-top: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  padding: 7px 9px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.14);
}

.section { margin-top: 20px; }
.section h2 { font-size: 18px; margin: 0 0 10px; color: rgba(255,255,255,0.92); }
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.shot img { width: 100%; display: block; }
.shot header { padding: 12px 14px; border-bottom: 1px solid var(--border); background: rgba(0,0,0,0.12); font-weight: 700; color: rgba(255,255,255,0.86); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery header { padding: 12px 14px; border-bottom: 1px solid var(--border); background: rgba(0,0,0,0.12); font-weight: 700; color: rgba(255,255,255,0.86); }
.gallery img { width: 100%; height: 280px; object-fit: contain; display: block; background: rgba(0,0,0,0.12); }

.cards3 {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.look {
  padding: 14px 14px 12px;
}
.lookTop {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 900;
  letter-spacing: -0.2px;
}
.tag .chip {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
}
.tag.safe .chip { border-color: rgba(96,165,250,0.55); background: rgba(96,165,250,0.10); }
.tag.clean .chip { border-color: rgba(52,211,153,0.60); background: rgba(52,211,153,0.10); }
.tag.bold .chip { border-color: rgba(167,139,250,0.60); background: rgba(167,139,250,0.10); }
.look p { margin: 0; }
.look .summary { font-weight: 800; color: rgba(255,255,255,0.92); line-height: 1.5; }
.look .reason { margin-top: 10px; color: rgba(255,255,255,0.76); line-height: 1.65; font-size: 13.5px; }
.look .ids { margin-top: 10px; color: rgba(255,255,255,0.60); font-size: 12px; }

.lookLink {
  display: block;
  text-decoration: none;
  color: inherit;
}
.lookLink .card {
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}
.lookLink:hover .card {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.07);
}

.stack {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}
.faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(0,0,0,0.10);
  padding: 12px 14px;
  margin: 10px 0;
}
.faq summary { cursor: pointer; font-weight: 700; color: rgba(255,255,255,0.90); }
.faq p { margin: 10px 0 0; color: rgba(255,255,255,0.76); line-height: 1.7; }

.footer {
  margin-top: 24px;
  padding: 16px 18px;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.10);
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .two { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .cards3 { grid-template-columns: 1fr; }
  .stack { grid-template-columns: 1fr; }
  .heroText h1 { font-size: 36px; }
}

