:root {
  /* Accent used for subline; change here if you want a different highlight later */
  --accent: #F6B800;     /* premium yellow */
}

/* System-sans stack for clean, fast rendering */
html, body {
  height: 100%;
  min-height: 100svh;
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background from first paint */
html, body {
  background: linear-gradient(180deg, #1E0F4A 0%, #130A38 60%, #0E082D 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #0E082D;
  overflow: hidden; /* one-screen site, no scroll */
}

/* Nuke any leftover overlay assets that might reappear */
.overlay, .intro, .fade, .vignette, .bg, .bg-radial, .pulse, .ripple, .glow,
.hero::before, .hero::after, img.bg, svg.bg { display: none !important; }
script[data-overlay], [data-overlay], [data-intro] { display: none !important; }

/* One-screen hero. Footer height is ~56px; reserve space so content never collides */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: calc(100svh - 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;  /* vertical center */
  align-items: center;
  text-align: center;
  gap: 14px;                /* tight stack spacing */
  transform: translateY(-4%); /* slight upward bias for better balance */
}

/* Headline with forced line breaks */
h1 {
  color: #fff;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
  line-height: 1.06;
  letter-spacing: -0.3px;
}
h1 .line {
  display: block;                    /* hard line breaks */
  font-size: clamp(38px, 6.2vw, 76px);
  text-wrap: balance;
}

/* Subline in accent color for hierarchy */
.subline {
  color: var(--accent);
  font-size: clamp(18px, 3.5vw, 22px);
  font-weight: 600;
  margin: 2px 0 0;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

/* Footer pinned and always a single line */
.foot {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;    /* keep on one line */
  pointer-events: none;   /* never intercept taps */
}

/* Slightly smaller footer on narrow phones to guarantee single line */
@media (max-width: 420px) {
  .foot { font-size: 12px; }
}

/* No surprise transitions */
.hero, body { opacity: 1 !important; transition: none !important; }
