:root {
  --bg: #0b0b0c;
  --surface: #141417;
  --surface-2: #1c1c20;
  --text: #ffffff;
  --text-dim: #9b9b9f;
  --accent: #b11226;
  --accent-2: #e0233d;
  --border: #26262a;
  --radius: 14px;
  --max: 760px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.nav .brand .dot {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.nav .links a {
  color: var(--text-dim);
  margin-left: 18px;
  font-size: 14px;
  font-weight: 500;
}
.nav .links a:hover { color: var(--text); text-decoration: none; }

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

h1 { font-size: 32px; line-height: 1.2; margin: 0 0 12px; }
h2 { font-size: 22px; margin: 32px 0 12px; }
h3 { font-size: 17px; margin: 20px 0 8px; color: var(--text-dim); }

p, li { color: #d6d6da; }

.muted { color: var(--text-dim); font-size: 14px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}
.btn:hover { text-decoration: none; opacity: 0.92; }
.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.hero {
  text-align: center;
  padding: 60px 24px 30px;
}
.hero .badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(177,18,38,0.12);
  color: var(--accent-2);
  font-size: 12px;
  letter-spacing: 0.4px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 { font-size: 44px; max-width: 640px; margin: 0 auto 14px; }
.hero p { font-size: 17px; color: var(--text-dim); max-width: 560px; margin: 0 auto 28px; }
.hero .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 40px auto;
  max-width: var(--max);
  padding: 0 24px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.feature h3 { color: var(--text); margin: 0 0 8px; font-size: 16px; }
.feature p { color: var(--text-dim); margin: 0; font-size: 14px; }

.footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}
.footer a { color: var(--text-dim); margin: 0 10px; }

/* Deep-link redirect pages */
.redirect-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.redirect-page .thumb {
  width: 88px; height: 88px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
}
.redirect-page h1 { font-size: 26px; margin: 0 0 8px; }
.redirect-page p { color: var(--text-dim); margin: 0 0 28px; max-width: 420px; }
.redirect-page .ctas { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
