*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --accent: #c8f04a;
  --text-primary: #f0ede6;
  --text-muted: #888;
  --border: rgba(255,255,255,0.07);
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 100;
}

/* Glowing orb */
.orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 240, 74, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

/* Main container */
.container {
  position: relative;
  z-index: 1;
  max-width: 780px;
  width: 90%;
  padding: 2rem;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tag / eyebrow */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.1s both;
}

.tag::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--accent);
}

/* Heading */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.2s both;
}

h1 span {
  color: var(--accent);
}

/* Divider */
.divider {
  width: 48px;
  height: 2px;
  background: var(--border);
  margin-bottom: 1.6rem;
  animation: fadeUp 1s ease 0.3s both;
}

/* Body text */
p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.8rem;
  animation: fadeUp 1s ease 0.4s both;
}

/* CTA buttons */
.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.5s both;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0d0d0d;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text-primary);
}

/* Corner decorations */
.corner {
  position: fixed;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  opacity: 0.45;
}

.corner-tl { top: 2rem;    left: 2rem;  }
.corner-tr { top: 2rem;    right: 2rem; }
.corner-bl { bottom: 2rem; left: 2rem;  }
.corner-br { bottom: 2rem; right: 2rem; }

/* Responsive */
@media (max-width: 600px) {
  .corner { display: none; }
  html, body { overflow: hidden; }
}
