:root {
  --bg:        #0b0c0f;
  --ink:       #e9ecf2;
  --ink-soft:  #7c8494;
  --ember-dim: #c2603a;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  overflow: hidden;
}

.glow {
  position: fixed;
  inset: -30vh -20vw auto -20vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(46% 50% at 30% 26%, rgba(255, 138, 76, .15), transparent 68%),
    radial-gradient(40% 44% at 74% 12%, rgba(94, 128, 255, .10), transparent 70%);
  filter: blur(6px);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .5) 80%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0 1px, transparent 1px 3px);
}

.wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mark {
  margin: 0;
  font-size: clamp(34px, 8.5vw, 64px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #ffffff 12%, #b9c0cd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* No opacity/color here: this span sits inside gradient-clipped text, and
   giving it its own paint layer would drop the clipped background and render
   it fully transparent. Weight alone carries the de-emphasis. */
.tld { font-weight: 300; }

.mark::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 24px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--ember-dim), transparent);
}

.lede {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  letter-spacing: .01em;
}
