/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: #222;
  background: radial-gradient(1200px 800px at 70% -10%, rgba(255, 220, 180, 0.35), rgba(255, 220, 180, 0) 60%),
              radial-gradient(900px 600px at 10% 110%, rgba(255, 120, 60, 0.18), rgba(255, 120, 60, 0) 60%),
              #f7f4ef;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.content {
  max-width: 720px;
  width: 100%;
}

.logo {
  width: min(65vw, 260px);
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.18));
}

h1 {
  margin: 16px 0 4px;
  font-weight: 600;
  letter-spacing: 0.4px;
  font-size: clamp(28px, 6vw, 48px);
}

.tag {
  margin: 0 0 8px;
  font-size: clamp(16px, 3.6vw, 22px);
  color: #6b6b6b;
}

.soon {
  margin: 22px 0 8px;
  font-size: clamp(16px, 3.4vw, 20px);
  color: #444;
}

/* Subtle noise overlay for texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140" viewBox="0 0 140 140"><filter id="n"><feTurbulence baseFrequency="0.6" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.02"/></svg>');
  background-size: 280px 280px;
}

/* Make it friendly on very small screens */
@media (max-width: 360px) {
  .by { font-size: 14px; }
}
