:root {
  --ink-dark: #111;
  --ink: #1a1a1a;
  --ink-mid: #666;
  --ink-light: #aaa;
  --divider: #e2e2e2;
  --bg: #fafafa;
  --accent: #c97a3a;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* PARTICLES BACKGROUND */
.particles-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: fixed;
  left: 0;
  top: 0;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation-name: rise;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform, opacity;
  filter: blur(0.8px);
  box-shadow: 0 0 12px rgba(201, 122, 58, 0.35);
}

@keyframes rise {
  0% {
    transform: translate3d(var(--start-x), 110vh, 0);
    opacity: 0;
  }
  12% {
    opacity: var(--particle-opacity, 0.4);
  }
  88% {
    opacity: var(--particle-opacity, 0.4);
  }
  100% {
    transform: translate3d(calc(var(--start-x) + var(--sway, 30px)), -10vh, 0);
    opacity: 0;
  }
}

main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.container {
  width: 100%;
  max-width: 540px;
}

.brand {
  margin-bottom: 4.5rem;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 0.4rem;
  color: var(--ink-dark);
}

.claim {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  margin: 0;
  text-transform: uppercase;
}

.message {
  margin-bottom: 5rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin: 0 0 2rem;
  padding: 0.4rem 0.9rem 0.4rem 0.7rem;
  border: 1px solid var(--divider);
  border-radius: 999px;
  background: #fff;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.5; }
}

.lead {
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink-dark);
  margin: 0;
}

.contact {
  margin-bottom: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin: 0 0 0.6rem;
}

.contact a {
  font-size: 1.05rem;
  color: var(--ink-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--divider);
  transition: border-color 0.15s ease;
}

.contact a:hover {
  border-bottom-color: var(--ink-dark);
}

.legal {
  font-size: 0.75rem;
  color: var(--ink-light);
}

.legal p { margin: 0; }

@media (max-width: 600px) {
  main { padding: 2rem 1.5rem; }
  .brand { margin-bottom: 3rem; }
  .message { margin-bottom: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .particle { animation: none; opacity: 0; }
  .dot { animation: none; }
}
