/* Marca sincorchetes — carácter editorial/terminal, hecho a mano, sin humo.
   Motivo propio: los corchetes [ ] del nombre, que la marca "quita". */
:root {
    --bg-0: #0b0a09;
    --bg-1: #17140e;
    --fg: #f3f1ec;
    --muted: #938f86;
    --accent: #f2b544;   /* ámbar: cálido, premium, nada de morado-IA */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
    background: radial-gradient(130% 120% at 12% 8%, var(--bg-1) 0%, var(--bg-0) 55%);
    color: var(--fg);
    font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.stage {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 6vw, 5rem);
}

/* Corchetes gigantes, tenues, sangrando por las esquinas = textura de marca */
.deco-bracket {
    position: absolute;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-size: clamp(16rem, 46vw, 40rem);
    line-height: 0.72;
    color: var(--accent);
    opacity: 0.07;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}
.deco-l { top: -0.12em; left: -0.06em; }
.deco-r { bottom: -0.18em; right: -0.04em; }

.content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Retrato que emerge del fondo: bordes difuminados hacia el negro */
.portrait {
    width: clamp(190px, 44vw, 300px);
    margin-bottom: 1.6rem;
}
.portrait img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-mask-image: radial-gradient(circle at 50% 43%, #000 46%, rgba(0,0,0,0) 72%);
    mask-image: radial-gradient(circle at 50% 43%, #000 46%, rgba(0,0,0,0) 72%);
}

.mark {
    font-family: "Space Mono", monospace;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: lowercase;
    color: var(--muted);
    margin-bottom: 1.4rem;
}
.cursor {
    color: var(--accent);
    animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.headline {
    font-weight: 700;
    font-size: clamp(2rem, 6.4vw, 4rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
}
.hl { color: var(--accent); }

.tag {
    font-weight: 700;
    font-size: clamp(1.6rem, 5.4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-top: 0.35em;
}

.support {
    font-family: "Space Mono", monospace;
    color: var(--muted);
    font-size: clamp(0.9rem, 2.3vw, 1.05rem);
    line-height: 1.65;
    margin-top: 1.8rem;
    max-width: 46ch;
}

.social {
    display: flex;
    justify-content: center;
    gap: 1.7rem;
    margin-top: 2.6rem;
}
.social a {
    color: var(--muted);
    display: inline-flex;
    transition: color 0.2s ease, transform 0.2s ease;
}
.social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}
.social svg {
    width: 23px;
    height: 23px;
    display: block;
}
