:root {
  --bg: #050505;
  --card: rgba(18, 18, 18, .88);
  --card-2: rgba(255, 255, 255, .045);
  --text: #f7f7f7;
  --muted: #a8a8a8;
  --line: rgba(255, 255, 255, .10);
  --red: #ef171c;
  --red-2: #b90005;
  --shadow: 0 30px 80px rgba(0, 0, 0, .55);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(239, 23, 28, .18), transparent 30%),
    radial-gradient(circle at 88% 85%, rgba(239, 23, 28, .10), transparent 28%),
    linear-gradient(145deg, #030303, #0b0b0b 58%, #030303);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.card {
  position: relative;
  width: min(100%, 520px);
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(24,24,24,.92), rgba(9,9,9,.94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.brand-wrap {
  display: flex;
  justify-content: center;
  margin: -8px -10px 14px;
}

.brand-logo {
  width: min(100%, 430px);
  height: auto;
  display: block;
  mix-blend-mode: screen;
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 8px 12px;
  border: 1px solid rgba(239, 23, 28, .34);
  border-radius: 999px;
  color: #ff7175;
  background: rgba(239, 23, 28, .08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(28px, 7vw, 42px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.subtitle {
  margin: 14px auto 26px;
  max-width: 430px;
  color: var(--muted);
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
}

.links { display: grid; gap: 12px; }

.link-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 72px;
  padding: 11px 14px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card-2);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 23, 28, .48);
  background: rgba(239, 23, 28, .075);
}

.link-card:active { transform: translateY(0) scale(.99); }
.link-card.disabled { opacity: .46; pointer-events: none; }

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  color: #111;
  font-size: 22px;
  font-weight: 800;
}

.link-card[data-accent="red"] .icon { background: linear-gradient(145deg, #ff3a3f, #b60005); color: #fff; }
.link-card[data-accent="blue"] .icon { background: linear-gradient(145deg, #41a7f6, #1976d2); color: #fff; }
.link-card[data-accent="gradient"] .icon { background: linear-gradient(145deg, #7c3aed, #ef4444 52%, #f59e0b); color: #fff; }
.link-card[data-accent="white"] .icon { background: #f4f4f4; color: #0b0b0b; }

.link-title { display: block; font-weight: 750; font-size: 16px; }
.link-desc { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.3; }
.arrow { color: #d0d0d0; font-size: 22px; text-align: center; }

.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #7f7f7f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.trust-row i { width: 3px; height: 3px; border-radius: 50%; background: var(--red); }

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
  color: #626262;
  font-size: 11px;
}
.footer-dot { color: var(--red); }

@media (max-width: 420px) {
  .card { padding: 24px 18px; border-radius: 24px; }
  .link-card { min-height: 68px; grid-template-columns: 44px 1fr 24px; gap: 12px; }
  .icon { width: 44px; height: 44px; border-radius: 13px; }
}
