:root {
  --bg: #060708;
  --panel: rgba(16, 18, 21, 0.88);
  --panel-border: rgba(255, 166, 72, 0.18);
  --text: #f5f7fa;
  --muted: rgba(245, 247, 250, 0.68);
  --accent: #f6b44a;
  --accent-2: #ffdf78;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 420px at 85% 12%, rgba(246, 180, 74, 0.18), transparent 62%),
    radial-gradient(700px 380px at 10% 85%, rgba(97, 142, 255, 0.1), transparent 70%),
    linear-gradient(180deg, #08090b 0%, #050607 100%);
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 38%, black 35%, transparent 92%);
}

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

.card {
  width: min(780px, 100%);
  padding: 30px 30px 26px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 205, 102, 0.36), rgba(255,255,255,0.03), rgba(255, 167, 71, 0.16));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.brand-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff5bf 0%, var(--accent) 55%, #c87a14 100%);
  box-shadow: 0 0 18px rgba(246, 180, 74, 0.7);
}

.brand-text {
  font-family: "Unbounded", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.9);
}

.eyebrow {
  margin: 6px 0 8px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  max-width: 12ch;
}

.subtitle {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
  max-width: 52ch;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #111;
  font-weight: 800;
  font-size: 15px;
  background:
    linear-gradient(180deg, #ffe188 0%, #f6b44a 58%, #d98a20 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65),
    0 14px 35px rgba(214, 134, 16, 0.28);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 18px 42px rgba(214, 134, 16, 0.34);
}

.cta:active {
  transform: translateY(0);
}

.cta-arrow {
  font-size: 15px;
}

.meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.meta-label {
  color: rgba(255,255,255,0.55);
}

.meta-link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
}

.meta-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .wrap {
    padding: 16px;
  }

  .card {
    padding: 20px 18px 18px;
    border-radius: 18px;
  }

  .subtitle {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none;
  }
}
