/*
Theme Name: Antonio MTZ Landing
Theme URI: https://antoniomtz.es/
Author: Antonio Martínez
Description: Página temporal de antoniomtz.es.
Version: 1.0.0
Text Domain: antoniomtz-landing
*/

:root {
  color-scheme: dark;
  --ink: #f7f5ef;
  --muted: #a7a5a0;
  --accent: #d8ff69;
  --surface: #0b0c10;
}

* { box-sizing: border-box; }

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(216, 255, 105, 0.1), transparent 30rem),
    radial-gradient(circle at 85% 85%, rgba(123, 97, 255, 0.11), transparent 32rem),
    var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  position: relative;
  width: min(88vw, 68rem);
  padding: 3rem 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 1.1rem rgba(216, 255, 105, 0.65);
  animation: pulse 2.4s ease-in-out infinite;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.5rem, 11vw, 9.5rem);
  font-weight: 540;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-wrap: balance;
}

.line { display: block; }
.accent { color: var(--accent); }

footer {
  position: fixed;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.25rem, 4vw, 2.5rem);
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orbital {
  position: fixed;
  top: -20vmin;
  right: -18vmin;
  width: 62vmin;
  height: 62vmin;
  border: 1px solid rgba(247, 245, 239, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.orbital::after {
  position: absolute;
  top: 50%;
  left: -0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 1rem rgba(216, 255, 105, 0.55);
  content: "";
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1.12); }
}

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

body.admin-bar .orbital { top: calc(-20vmin + 32px); }

@media screen and (max-width: 782px) {
  body.admin-bar .orbital { top: calc(-20vmin + 46px); }
}
