/* eNDS — one stylesheet, no external anything.
   No web fonts, no analytics, no third-party requests: the privacy policy
   says this site collects nothing, and the simplest way to keep that true is
   for the page to have nowhere to send anything. */

:root {
  --crimson: #e8546a;          /* Color.indsCrimsonLight in the app */
  --crimson-deep: #ac1e3e;     /* Color.indsCrimsonDark */
  --bg: #0d0d11;
  --surface: #16161d;
  --border: #26262f;
  --text: #f2f2f5;
  --muted: #9a9aa8;
  --max: 980px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- top bar ---------- */

header.bar {
  position: sticky; top: 0; z-index: 10;
  background: rgba(13, 13, 17, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
header.bar .wrap {
  display: flex; align-items: center; gap: 12px;
  height: 60px;
}
header.bar img { width: 30px; height: 30px; border-radius: 7px; }
header.bar strong { font-size: 17px; letter-spacing: -0.01em; }
header.bar nav { margin-left: auto; display: flex; gap: 20px; font-size: 14px; }
header.bar nav a { color: var(--muted); }
header.bar nav a:hover { color: var(--text); text-decoration: none; }

/* ---------- hero ---------- */

.hero { padding: 72px 0 56px; text-align: center; }
.hero img.icon {
  width: 104px; height: 104px; border-radius: 24px;
  box-shadow: 0 14px 40px rgba(172, 30, 62, 0.45);
}
.hero h1 {
  margin: 26px 0 10px;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero .tagline {
  margin: 0 auto;
  max-width: 30ch;
  font-size: clamp(17px, 2.4vw, 20px);
  color: var(--muted);
}
.badge {
  display: inline-block;
  margin-top: 26px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 14px;
  color: var(--muted);
}
.badge b { color: var(--crimson); font-weight: 600; }

/* ---------- shots ---------- */

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  padding: 24px 0 8px;
}
.shots figure { margin: 0; text-align: center; }
.shots img {
  width: 100%; height: auto; display: block;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #000;
}
.shots figcaption {
  margin-top: 10px; font-size: 13px; color: var(--muted);
}

/* ---------- sections ---------- */

section { padding: 56px 0; border-top: 1px solid var(--border); }
section h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3.6vw, 30px);
  letter-spacing: -0.02em;
}
section > .wrap > p.lead { margin: 0 0 30px; color: var(--muted); max-width: 62ch; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.card h3 { margin: 0 0 6px; font-size: 16px; }
.card p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ---------- legal pages ---------- */

.legal { padding: 56px 0 24px; }
.legal h1 { font-size: clamp(28px, 4.6vw, 38px); letter-spacing: -0.02em; margin: 0 0 6px; }
.legal .updated { color: var(--muted); font-size: 14px; margin: 0 0 36px; }
.legal h2 { margin: 38px 0 10px; font-size: 20px; letter-spacing: -0.01em; }
.legal p, .legal li { color: #cfcfd8; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 7px; }
.legal .callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--crimson);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 26px 0;
}
.legal .callout p { margin: 0; }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 56px;
  color: var(--muted);
  font-size: 14px;
}
footer .links { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 18px; }
footer p { margin: 6px 0; max-width: 70ch; }

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-deep));
  color: #fff; font-weight: 600; font-size: 15px;
}
.btn:hover { text-decoration: none; opacity: 0.92; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
