/* ===== Launching Soon — Karthik Seenivasan ===== */

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #020C1A;
    background-image:
        radial-gradient(ellipse at top right, rgba(201, 168, 76, 0.06), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(201, 168, 76, 0.04), transparent 60%);
    color: #F0ECE4;
    -webkit-font-smoothing: antialiased;
}

::selection { background: #C9A84C; color: #020C1A; }

/* Subtle pulsing for headline */
@keyframes softPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.85; }
}
h1 { animation: softPulse 4s ease-in-out infinite; }
